Remove the 'L' suffix on a number of constants to avoid comparison
[wine] / dlls / ntdll / virtual.c
1 /*
2  * Win32 virtual memory functions
3  *
4  * Copyright 1997, 2002 Alexandre Julliard
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <assert.h>
25 #include <errno.h>
26 #ifdef HAVE_SYS_ERRNO_H
27 #include <sys/errno.h>
28 #endif
29 #include <fcntl.h>
30 #ifdef HAVE_UNISTD_H
31 # include <unistd.h>
32 #endif
33 #include <stdarg.h>
34 #include <stdlib.h>
35 #include <stdio.h>
36 #include <string.h>
37 #include <sys/types.h>
38 #ifdef HAVE_SYS_MMAN_H
39 #include <sys/mman.h>
40 #endif
41
42 #define NONAMELESSUNION
43 #define NONAMELESSSTRUCT
44 #include "ntstatus.h"
45 #include "windef.h"
46 #include "winternl.h"
47 #include "winioctl.h"
48 #include "wine/library.h"
49 #include "wine/server.h"
50 #include "wine/list.h"
51 #include "wine/debug.h"
52 #include "ntdll_misc.h"
53
54 WINE_DEFAULT_DEBUG_CHANNEL(virtual);
55 WINE_DECLARE_DEBUG_CHANNEL(module);
56
57 #ifndef MS_SYNC
58 #define MS_SYNC 0
59 #endif
60
61 #ifndef MAP_NORESERVE
62 #define MAP_NORESERVE 0
63 #endif
64
65 /* File view */
66 typedef struct file_view
67 {
68     struct list   entry;       /* Entry in global view list */
69     void         *base;        /* Base address */
70     size_t        size;        /* Size in bytes */
71     HANDLE        mapping;     /* Handle to the file mapping */
72     BYTE          flags;       /* Allocation flags (VFLAG_*) */
73     BYTE          protect;     /* Protection for all pages at allocation time */
74     BYTE          prot[1];     /* Protection byte for each page */
75 } FILE_VIEW;
76
77 /* Per-view flags */
78 #define VFLAG_SYSTEM     0x01  /* system view (underlying mmap not under our control) */
79 #define VFLAG_VALLOC     0x02  /* allocated by VirtualAlloc */
80
81 /* Conversion from VPROT_* to Win32 flags */
82 static const BYTE VIRTUAL_Win32Flags[16] =
83 {
84     PAGE_NOACCESS,              /* 0 */
85     PAGE_READONLY,              /* READ */
86     PAGE_READWRITE,             /* WRITE */
87     PAGE_READWRITE,             /* READ | WRITE */
88     PAGE_EXECUTE,               /* EXEC */
89     PAGE_EXECUTE_READ,          /* READ | EXEC */
90     PAGE_EXECUTE_READWRITE,     /* WRITE | EXEC */
91     PAGE_EXECUTE_READWRITE,     /* READ | WRITE | EXEC */
92     PAGE_WRITECOPY,             /* WRITECOPY */
93     PAGE_WRITECOPY,             /* READ | WRITECOPY */
94     PAGE_WRITECOPY,             /* WRITE | WRITECOPY */
95     PAGE_WRITECOPY,             /* READ | WRITE | WRITECOPY */
96     PAGE_EXECUTE_WRITECOPY,     /* EXEC | WRITECOPY */
97     PAGE_EXECUTE_WRITECOPY,     /* READ | EXEC | WRITECOPY */
98     PAGE_EXECUTE_WRITECOPY,     /* WRITE | EXEC | WRITECOPY */
99     PAGE_EXECUTE_WRITECOPY      /* READ | WRITE | EXEC | WRITECOPY */
100 };
101
102 static struct list views_list = LIST_INIT(views_list);
103
104 static RTL_CRITICAL_SECTION csVirtual;
105 static RTL_CRITICAL_SECTION_DEBUG critsect_debug =
106 {
107     0, 0, &csVirtual,
108     { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
109       0, 0, { (DWORD_PTR)(__FILE__ ": csVirtual") }
110 };
111 static RTL_CRITICAL_SECTION csVirtual = { &critsect_debug, -1, 0, 0, 0, 0 };
112
113 #ifdef __i386__
114 /* These are always the same on an i386, and it will be faster this way */
115 # define page_mask  0xfff
116 # define page_shift 12
117 # define page_size  0x1000
118 /* Note: these are Windows limits, you cannot change them. */
119 # define ADDRESS_SPACE_LIMIT  ((void *)0xc0000000)  /* top of the total available address space */
120 # define USER_SPACE_LIMIT     ((void *)0x80000000)  /* top of the user address space */
121 #else
122 static UINT page_shift;
123 static UINT page_mask;
124 static UINT page_size;
125 # define ADDRESS_SPACE_LIMIT  0   /* no limit needed on other platforms */
126 # define USER_SPACE_LIMIT     0   /* no limit needed on other platforms */
127 #endif  /* __i386__ */
128 #define granularity_mask 0xffff  /* Allocation granularity (usually 64k) */
129
130 #define ROUND_ADDR(addr,mask) \
131    ((void *)((UINT_PTR)(addr) & ~(mask)))
132
133 #define ROUND_SIZE(addr,size) \
134    (((UINT)(size) + ((UINT_PTR)(addr) & page_mask) + page_mask) & ~page_mask)
135
136 #define VIRTUAL_DEBUG_DUMP_VIEW(view) \
137    if (!TRACE_ON(virtual)); else VIRTUAL_DumpView(view)
138
139 static void *user_space_limit = USER_SPACE_LIMIT;
140
141
142 /***********************************************************************
143  *           VIRTUAL_GetProtStr
144  */
145 static const char *VIRTUAL_GetProtStr( BYTE prot )
146 {
147     static char buffer[6];
148     buffer[0] = (prot & VPROT_COMMITTED) ? 'c' : '-';
149     buffer[1] = (prot & VPROT_GUARD) ? 'g' : '-';
150     buffer[2] = (prot & VPROT_READ) ? 'r' : '-';
151     buffer[3] = (prot & VPROT_WRITECOPY) ? 'W' : ((prot & VPROT_WRITE) ? 'w' : '-');
152     buffer[4] = (prot & VPROT_EXEC) ? 'x' : '-';
153     buffer[5] = 0;
154     return buffer;
155 }
156
157
158 /***********************************************************************
159  *           VIRTUAL_DumpView
160  */
161 static void VIRTUAL_DumpView( FILE_VIEW *view )
162 {
163     UINT i, count;
164     char *addr = view->base;
165     BYTE prot = view->prot[0];
166
167     DPRINTF( "View: %p - %p", addr, addr + view->size - 1 );
168     if (view->flags & VFLAG_SYSTEM)
169         DPRINTF( " (system)\n" );
170     else if (view->flags & VFLAG_VALLOC)
171         DPRINTF( " (valloc)\n" );
172     else if (view->mapping)
173         DPRINTF( " %p\n", view->mapping );
174     else
175         DPRINTF( " (anonymous)\n");
176
177     for (count = i = 1; i < view->size >> page_shift; i++, count++)
178     {
179         if (view->prot[i] == prot) continue;
180         DPRINTF( "      %p - %p %s\n",
181                  addr, addr + (count << page_shift) - 1, VIRTUAL_GetProtStr(prot) );
182         addr += (count << page_shift);
183         prot = view->prot[i];
184         count = 0;
185     }
186     if (count)
187         DPRINTF( "      %p - %p %s\n",
188                  addr, addr + (count << page_shift) - 1, VIRTUAL_GetProtStr(prot) );
189 }
190
191
192 /***********************************************************************
193  *           VIRTUAL_Dump
194  */
195 void VIRTUAL_Dump(void)
196 {
197     struct file_view *view;
198
199     DPRINTF( "\nDump of all virtual memory views:\n\n" );
200     RtlEnterCriticalSection(&csVirtual);
201     LIST_FOR_EACH_ENTRY( view, &views_list, FILE_VIEW, entry )
202     {
203         VIRTUAL_DumpView( view );
204     }
205     RtlLeaveCriticalSection(&csVirtual);
206 }
207
208
209 /***********************************************************************
210  *           VIRTUAL_FindView
211  *
212  * Find the view containing a given address. The csVirtual section must be held by caller.
213  *
214  * PARAMS
215  *      addr  [I] Address
216  *
217  * RETURNS
218  *      View: Success
219  *      NULL: Failure
220  */
221 static struct file_view *VIRTUAL_FindView( const void *addr )
222 {
223     struct file_view *view;
224
225     LIST_FOR_EACH_ENTRY( view, &views_list, struct file_view, entry )
226     {
227         if (view->base > addr) break;
228         if ((const char*)view->base + view->size > (const char*)addr) return view;
229     }
230     return NULL;
231 }
232
233
234 /***********************************************************************
235  *           find_view_range
236  *
237  * Find the first view overlapping at least part of the specified range.
238  * The csVirtual section must be held by caller.
239  */
240 static struct file_view *find_view_range( const void *addr, size_t size )
241 {
242     struct file_view *view;
243
244     LIST_FOR_EACH_ENTRY( view, &views_list, struct file_view, entry )
245     {
246         if ((const char *)view->base >= (const char *)addr + size) break;
247         if ((const char *)view->base + view->size > (const char *)addr) return view;
248     }
249     return NULL;
250 }
251
252
253 /***********************************************************************
254  *           add_reserved_area
255  *
256  * Add a reserved area to the list maintained by libwine.
257  * The csVirtual section must be held by caller.
258  */
259 static void add_reserved_area( void *addr, size_t size )
260 {
261     TRACE( "adding %p-%p\n", addr, (char *)addr + size );
262
263     if (addr < user_space_limit)
264     {
265         /* unmap the part of the area that is below the limit */
266         assert( (char *)addr + size > (char *)user_space_limit );
267         munmap( addr, (char *)user_space_limit - (char *)addr );
268         size -= (char *)user_space_limit - (char *)addr;
269         addr = user_space_limit;
270     }
271     /* blow away existing mappings */
272     wine_anon_mmap( addr, size, PROT_NONE, MAP_NORESERVE | MAP_FIXED );
273     wine_mmap_add_reserved_area( addr, size );
274 }
275
276
277 /***********************************************************************
278  *           remove_reserved_area
279  *
280  * Remove a reserved area from the list maintained by libwine.
281  * The csVirtual section must be held by caller.
282  */
283 static void remove_reserved_area( void *addr, size_t size )
284 {
285     struct file_view *view;
286
287     LIST_FOR_EACH_ENTRY( view, &views_list, struct file_view, entry )
288     {
289         if ((char *)view->base >= (char *)addr + size) break;
290         if ((char *)view->base + view->size <= (char *)addr) continue;
291         /* now we have an overlapping view */
292         if (view->base > addr)
293         {
294             wine_mmap_remove_reserved_area( addr, (char *)view->base - (char *)addr, TRUE );
295             size -= (char *)view->base - (char *)addr;
296             addr = view->base;
297         }
298         if ((char *)view->base + view->size >= (char *)addr + size)
299         {
300             /* view covers all the remaining area */
301             wine_mmap_remove_reserved_area( addr, size, FALSE );
302             size = 0;
303             break;
304         }
305         else  /* view covers only part of the area */
306         {
307             wine_mmap_remove_reserved_area( addr, (char *)view->base + view->size - (char *)addr, FALSE );
308             size -= (char *)view->base + view->size - (char *)addr;
309             addr = (char *)view->base + view->size;
310         }
311     }
312     /* remove remaining space */
313     if (size) wine_mmap_remove_reserved_area( addr, size, TRUE );
314 }
315
316
317 /***********************************************************************
318  *           is_beyond_limit
319  *
320  * Check if an address range goes beyond a given limit.
321  */
322 static inline int is_beyond_limit( void *addr, size_t size, void *limit )
323 {
324     return (limit && (addr >= limit || (char *)addr + size > (char *)limit));
325 }
326
327
328 /***********************************************************************
329  *           unmap_area
330  *
331  * Unmap an area, or simply replace it by an empty mapping if it is
332  * in a reserved area. The csVirtual section must be held by caller.
333  */
334 static inline void unmap_area( void *addr, size_t size )
335 {
336     if (wine_mmap_is_in_reserved_area( addr, size ))
337         wine_anon_mmap( addr, size, PROT_NONE, MAP_NORESERVE | MAP_FIXED );
338     else
339         munmap( addr, size );
340 }
341
342
343 /***********************************************************************
344  *           delete_view
345  *
346  * Deletes a view. The csVirtual section must be held by caller.
347  */
348 static void delete_view( struct file_view *view ) /* [in] View */
349 {
350     if (!(view->flags & VFLAG_SYSTEM)) unmap_area( view->base, view->size );
351     list_remove( &view->entry );
352     if (view->mapping) NtClose( view->mapping );
353     free( view );
354 }
355
356
357 /***********************************************************************
358  *           create_view
359  *
360  * Create a view. The csVirtual section must be held by caller.
361  */
362 static NTSTATUS create_view( struct file_view **view_ret, void *base, size_t size, BYTE vprot )
363 {
364     struct file_view *view;
365     struct list *ptr;
366
367     assert( !((UINT_PTR)base & page_mask) );
368     assert( !(size & page_mask) );
369
370     /* Create the view structure */
371
372     if (!(view = malloc( sizeof(*view) + (size >> page_shift) - 1 ))) return STATUS_NO_MEMORY;
373
374     view->base    = base;
375     view->size    = size;
376     view->flags   = 0;
377     view->mapping = 0;
378     view->protect = vprot;
379     memset( view->prot, vprot, size >> page_shift );
380
381     /* Insert it in the linked list */
382
383     LIST_FOR_EACH( ptr, &views_list )
384     {
385         struct file_view *next = LIST_ENTRY( ptr, struct file_view, entry );
386         if (next->base > base) break;
387     }
388     list_add_before( ptr, &view->entry );
389
390     /* Check for overlapping views. This can happen if the previous view
391      * was a system view that got unmapped behind our back. In that case
392      * we recover by simply deleting it. */
393
394     if ((ptr = list_prev( &views_list, &view->entry )) != NULL)
395     {
396         struct file_view *prev = LIST_ENTRY( ptr, struct file_view, entry );
397         if ((char *)prev->base + prev->size > (char *)base)
398         {
399             TRACE( "overlapping prev view %p-%p for %p-%p\n",
400                    prev->base, (char *)prev->base + prev->size,
401                    base, (char *)base + view->size );
402             assert( prev->flags & VFLAG_SYSTEM );
403             delete_view( prev );
404         }
405     }
406     if ((ptr = list_next( &views_list, &view->entry )) != NULL)
407     {
408         struct file_view *next = LIST_ENTRY( ptr, struct file_view, entry );
409         if ((char *)base + view->size > (char *)next->base)
410         {
411             TRACE( "overlapping next view %p-%p for %p-%p\n",
412                    next->base, (char *)next->base + next->size,
413                    base, (char *)base + view->size );
414             assert( next->flags & VFLAG_SYSTEM );
415             delete_view( next );
416         }
417     }
418
419     *view_ret = view;
420     VIRTUAL_DEBUG_DUMP_VIEW( view );
421     return STATUS_SUCCESS;
422 }
423
424
425 /***********************************************************************
426  *           VIRTUAL_GetUnixProt
427  *
428  * Convert page protections to protection for mmap/mprotect.
429  */
430 static int VIRTUAL_GetUnixProt( BYTE vprot )
431 {
432     int prot = 0;
433     if ((vprot & VPROT_COMMITTED) && !(vprot & VPROT_GUARD))
434     {
435         if (vprot & VPROT_READ) prot |= PROT_READ;
436         if (vprot & VPROT_WRITE) prot |= PROT_WRITE;
437         if (vprot & VPROT_WRITECOPY) prot |= PROT_WRITE;
438         if (vprot & VPROT_EXEC) prot |= PROT_EXEC;
439     }
440     return prot;
441 }
442
443
444 /***********************************************************************
445  *           VIRTUAL_GetWin32Prot
446  *
447  * Convert page protections to Win32 flags.
448  *
449  * RETURNS
450  *      None
451  */
452 static void VIRTUAL_GetWin32Prot(
453             BYTE vprot,     /* [in] Page protection flags */
454             DWORD *protect, /* [out] Location to store Win32 protection flags */
455             DWORD *state )  /* [out] Location to store mem state flag */
456 {
457     if (protect) {
458         *protect = VIRTUAL_Win32Flags[vprot & 0x0f];
459         if (vprot & VPROT_NOCACHE) *protect |= PAGE_NOCACHE;
460         if (vprot & VPROT_GUARD) *protect = PAGE_NOACCESS | PAGE_GUARD;
461     }
462
463     if (state) *state = (vprot & VPROT_COMMITTED) ? MEM_COMMIT : MEM_RESERVE;
464 }
465
466
467 /***********************************************************************
468  *           VIRTUAL_GetProt
469  *
470  * Build page protections from Win32 flags.
471  *
472  * PARAMS
473  *      protect [I] Win32 protection flags
474  *
475  * RETURNS
476  *      Value of page protection flags
477  */
478 static BYTE VIRTUAL_GetProt( DWORD protect )
479 {
480     BYTE vprot;
481
482     switch(protect & 0xff)
483     {
484     case PAGE_READONLY:
485         vprot = VPROT_READ;
486         break;
487     case PAGE_READWRITE:
488         vprot = VPROT_READ | VPROT_WRITE;
489         break;
490     case PAGE_WRITECOPY:
491         /* MSDN CreateFileMapping() states that if PAGE_WRITECOPY is given,
492          * that the hFile must have been opened with GENERIC_READ and
493          * GENERIC_WRITE access.  This is WRONG as tests show that you
494          * only need GENERIC_READ access (at least for Win9x,
495          * FIXME: what about NT?).  Thus, we don't put VPROT_WRITE in
496          * PAGE_WRITECOPY and PAGE_EXECUTE_WRITECOPY.
497          */
498         vprot = VPROT_READ | VPROT_WRITECOPY;
499         break;
500     case PAGE_EXECUTE:
501         vprot = VPROT_EXEC;
502         break;
503     case PAGE_EXECUTE_READ:
504         vprot = VPROT_EXEC | VPROT_READ;
505         break;
506     case PAGE_EXECUTE_READWRITE:
507         vprot = VPROT_EXEC | VPROT_READ | VPROT_WRITE;
508         break;
509     case PAGE_EXECUTE_WRITECOPY:
510         /* See comment for PAGE_WRITECOPY above */
511         vprot = VPROT_EXEC | VPROT_READ | VPROT_WRITECOPY;
512         break;
513     case PAGE_NOACCESS:
514     default:
515         vprot = 0;
516         break;
517     }
518     if (protect & PAGE_GUARD) vprot |= VPROT_GUARD;
519     if (protect & PAGE_NOCACHE) vprot |= VPROT_NOCACHE;
520     return vprot;
521 }
522
523
524 /***********************************************************************
525  *           VIRTUAL_SetProt
526  *
527  * Change the protection of a range of pages.
528  *
529  * RETURNS
530  *      TRUE: Success
531  *      FALSE: Failure
532  */
533 static BOOL VIRTUAL_SetProt( FILE_VIEW *view, /* [in] Pointer to view */
534                              void *base,      /* [in] Starting address */
535                              size_t size,     /* [in] Size in bytes */
536                              BYTE vprot )     /* [in] Protections to use */
537 {
538     TRACE("%p-%p %s\n",
539           base, (char *)base + size - 1, VIRTUAL_GetProtStr( vprot ) );
540
541     if (mprotect( base, size, VIRTUAL_GetUnixProt(vprot) ))
542         return FALSE;  /* FIXME: last error */
543
544     memset( view->prot + (((char *)base - (char *)view->base) >> page_shift),
545             vprot, size >> page_shift );
546     VIRTUAL_DEBUG_DUMP_VIEW( view );
547     return TRUE;
548 }
549
550
551 /***********************************************************************
552  *           map_view
553  *
554  * Create a view and mmap the corresponding memory area.
555  * The csVirtual section must be held by caller.
556  */
557 static NTSTATUS map_view( struct file_view **view_ret, void *base, size_t size, BYTE vprot )
558 {
559     void *ptr;
560     NTSTATUS status;
561
562     if (base)
563     {
564         if (is_beyond_limit( base, size, ADDRESS_SPACE_LIMIT ))
565             return STATUS_WORKING_SET_LIMIT_RANGE;
566
567         switch (wine_mmap_is_in_reserved_area( base, size ))
568         {
569         case -1: /* partially in a reserved area */
570             return STATUS_CONFLICTING_ADDRESSES;
571
572         case 0:  /* not in a reserved area, do a normal allocation */
573             if ((ptr = wine_anon_mmap( base, size, VIRTUAL_GetUnixProt(vprot), 0 )) == (void *)-1)
574             {
575                 if (errno == ENOMEM) return STATUS_NO_MEMORY;
576                 return STATUS_INVALID_PARAMETER;
577             }
578             if (ptr != base)
579             {
580                 /* We couldn't get the address we wanted */
581                 if (is_beyond_limit( ptr, size, user_space_limit )) add_reserved_area( ptr, size );
582                 else munmap( ptr, size );
583                 return STATUS_CONFLICTING_ADDRESSES;
584             }
585             break;
586
587         default:
588         case 1:  /* in a reserved area, make sure the address is available */
589             if (find_view_range( base, size )) return STATUS_CONFLICTING_ADDRESSES;
590             /* replace the reserved area by our mapping */
591             if ((ptr = wine_anon_mmap( base, size, VIRTUAL_GetUnixProt(vprot), MAP_FIXED )) != base)
592                 return STATUS_INVALID_PARAMETER;
593             break;
594         }
595     }
596     else
597     {
598         size_t view_size = size + granularity_mask + 1;
599
600         for (;;)
601         {
602             if ((ptr = wine_anon_mmap( NULL, view_size, VIRTUAL_GetUnixProt(vprot), 0 )) == (void *)-1)
603             {
604                 if (errno == ENOMEM) return STATUS_NO_MEMORY;
605                 return STATUS_INVALID_PARAMETER;
606             }
607             /* if we got something beyond the user limit, unmap it and retry */
608             if (is_beyond_limit( ptr, view_size, user_space_limit )) add_reserved_area( ptr, view_size );
609             else break;
610         }
611
612         /* Release the extra memory while keeping the range
613          * starting on the granularity boundary. */
614         if ((ULONG_PTR)ptr & granularity_mask)
615         {
616             size_t extra = granularity_mask + 1 - ((ULONG_PTR)ptr & granularity_mask);
617             munmap( ptr, extra );
618             ptr = (char *)ptr + extra;
619             view_size -= extra;
620         }
621         if (view_size > size)
622             munmap( (char *)ptr + size, view_size - size );
623     }
624
625     status = create_view( view_ret, ptr, size, vprot );
626     if (status != STATUS_SUCCESS) unmap_area( ptr, size );
627     return status;
628 }
629
630
631 /***********************************************************************
632  *           unaligned_mmap
633  *
634  * Linux kernels before 2.4.x can support non page-aligned offsets, as
635  * long as the offset is aligned to the filesystem block size. This is
636  * a big performance gain so we want to take advantage of it.
637  *
638  * However, when we use 64-bit file support this doesn't work because
639  * glibc rejects unaligned offsets. Also glibc 2.1.3 mmap64 is broken
640  * in that it rounds unaligned offsets down to a page boundary. For
641  * these reasons we do a direct system call here.
642  */
643 static void *unaligned_mmap( void *addr, size_t length, unsigned int prot,
644                              unsigned int flags, int fd, off_t offset )
645 {
646 #if defined(linux) && defined(__i386__) && defined(__GNUC__)
647     if (!(offset >> 32) && (offset & page_mask))
648     {
649         int ret;
650
651         struct
652         {
653             void        *addr;
654             unsigned int length;
655             unsigned int prot;
656             unsigned int flags;
657             unsigned int fd;
658             unsigned int offset;
659         } args;
660
661         args.addr   = addr;
662         args.length = length;
663         args.prot   = prot;
664         args.flags  = flags;
665         args.fd     = fd;
666         args.offset = offset;
667
668         __asm__ __volatile__("push %%ebx\n\t"
669                              "movl %2,%%ebx\n\t"
670                              "int $0x80\n\t"
671                              "popl %%ebx"
672                              : "=a" (ret)
673                              : "0" (90), /* SYS_mmap */
674                                "q" (&args)
675                              : "memory" );
676         if (ret < 0 && ret > -4096)
677         {
678             errno = -ret;
679             ret = -1;
680         }
681         return (void *)ret;
682     }
683 #endif
684     return mmap( addr, length, prot, flags, fd, offset );
685 }
686
687
688 /***********************************************************************
689  *           map_file_into_view
690  *
691  * Wrapper for mmap() to map a file into a view, falling back to read if mmap fails.
692  * The csVirtual section must be held by caller.
693  */
694 static NTSTATUS map_file_into_view( struct file_view *view, int fd, size_t start, size_t size,
695                                     off_t offset, BYTE vprot, BOOL removable )
696 {
697     void *ptr;
698     int prot = VIRTUAL_GetUnixProt( vprot );
699     BOOL shared_write = (vprot & VPROT_WRITE) != 0;
700
701     assert( start < view->size );
702     assert( start + size <= view->size );
703
704     /* only try mmap if media is not removable (or if we require write access) */
705     if (!removable || shared_write)
706     {
707         int flags = MAP_FIXED | (shared_write ? MAP_SHARED : MAP_PRIVATE);
708
709         if (unaligned_mmap( (char *)view->base + start, size, prot, flags, fd, offset ) != (void *)-1)
710             goto done;
711
712         /* mmap() failed; if this is because the file offset is not    */
713         /* page-aligned (EINVAL), or because the underlying filesystem */
714         /* does not support mmap() (ENOEXEC,ENODEV), we do it by hand. */
715         if ((errno != ENOEXEC) && (errno != EINVAL) && (errno != ENODEV)) return FILE_GetNtStatus();
716         if (shared_write) return FILE_GetNtStatus();  /* we cannot fake shared write mappings */
717     }
718
719     /* Reserve the memory with an anonymous mmap */
720     ptr = wine_anon_mmap( (char *)view->base + start, size, PROT_READ | PROT_WRITE, MAP_FIXED );
721     if (ptr == (void *)-1) return FILE_GetNtStatus();
722     /* Now read in the file */
723     pread( fd, ptr, size, offset );
724     if (prot != (PROT_READ|PROT_WRITE)) mprotect( ptr, size, prot );  /* Set the right protection */
725 done:
726     memset( view->prot + (start >> page_shift), vprot, size >> page_shift );
727     return STATUS_SUCCESS;
728 }
729
730
731 /***********************************************************************
732  *           decommit_view
733  *
734  * Decommit some pages of a given view.
735  * The csVirtual section must be held by caller.
736  */
737 static NTSTATUS decommit_pages( struct file_view *view, size_t start, size_t size )
738 {
739     if (wine_anon_mmap( (char *)view->base + start, size, PROT_NONE, MAP_FIXED ) != (void *)-1)
740     {
741         BYTE *p = view->prot + (start >> page_shift);
742         size >>= page_shift;
743         while (size--) *p++ &= ~VPROT_COMMITTED;
744         return STATUS_SUCCESS;
745     }
746     return FILE_GetNtStatus();
747 }
748
749
750 /***********************************************************************
751  *           do_relocations
752  *
753  * Apply the relocations to a mapped PE image
754  */
755 static int do_relocations( char *base, const IMAGE_DATA_DIRECTORY *dir,
756                            int delta, SIZE_T total_size )
757 {
758     IMAGE_BASE_RELOCATION *rel;
759
760     TRACE_(module)( "relocating from %p-%p to %p-%p\n",
761                     base - delta, base - delta + total_size, base, base + total_size );
762
763     for (rel = (IMAGE_BASE_RELOCATION *)(base + dir->VirtualAddress);
764          ((char *)rel < base + dir->VirtualAddress + dir->Size) && rel->SizeOfBlock;
765          rel = (IMAGE_BASE_RELOCATION*)((char*)rel + rel->SizeOfBlock) )
766     {
767         char *page = base + rel->VirtualAddress;
768         WORD *TypeOffset = (WORD *)(rel + 1);
769         int i, count = (rel->SizeOfBlock - sizeof(*rel)) / sizeof(*TypeOffset);
770
771         if (!count) continue;
772
773         /* sanity checks */
774         if ((char *)rel + rel->SizeOfBlock > base + dir->VirtualAddress + dir->Size ||
775             page > base + total_size)
776         {
777             ERR_(module)("invalid relocation %p,%lx,%ld at %p,%lx,%lx\n",
778                          rel, rel->VirtualAddress, rel->SizeOfBlock,
779                          base, dir->VirtualAddress, dir->Size );
780             return 0;
781         }
782
783         TRACE_(module)("%ld relocations for page %lx\n", rel->SizeOfBlock, rel->VirtualAddress);
784
785         /* patching in reverse order */
786         for (i = 0 ; i < count; i++)
787         {
788             int offset = TypeOffset[i] & 0xFFF;
789             int type = TypeOffset[i] >> 12;
790             switch(type)
791             {
792             case IMAGE_REL_BASED_ABSOLUTE:
793                 break;
794             case IMAGE_REL_BASED_HIGH:
795                 *(short*)(page+offset) += HIWORD(delta);
796                 break;
797             case IMAGE_REL_BASED_LOW:
798                 *(short*)(page+offset) += LOWORD(delta);
799                 break;
800             case IMAGE_REL_BASED_HIGHLOW:
801                 *(int*)(page+offset) += delta;
802                 /* FIXME: if this is an exported address, fire up enhanced logic */
803                 break;
804             default:
805                 FIXME_(module)("Unknown/unsupported fixup type %d.\n", type);
806                 break;
807             }
808         }
809     }
810     return 1;
811 }
812
813
814 /***********************************************************************
815  *           map_image
816  *
817  * Map an executable (PE format) image into memory.
818  */
819 static NTSTATUS map_image( HANDLE hmapping, int fd, char *base, SIZE_T total_size,
820                            SIZE_T header_size, int shared_fd, BOOL removable, PVOID *addr_ptr )
821 {
822     IMAGE_DOS_HEADER *dos;
823     IMAGE_NT_HEADERS *nt;
824     IMAGE_SECTION_HEADER *sec;
825     IMAGE_DATA_DIRECTORY *imports;
826     NTSTATUS status = STATUS_CONFLICTING_ADDRESSES;
827     int i;
828     off_t pos;
829     struct file_view *view = NULL;
830     char *ptr;
831
832     /* zero-map the whole range */
833
834     RtlEnterCriticalSection( &csVirtual );
835
836     if (base >= (char *)0x110000)  /* make sure the DOS area remains free */
837         status = map_view( &view, base, total_size,
838                            VPROT_COMMITTED | VPROT_READ | VPROT_EXEC | VPROT_WRITECOPY | VPROT_IMAGE );
839
840     if (status == STATUS_CONFLICTING_ADDRESSES)
841         status = map_view( &view, NULL, total_size,
842                            VPROT_COMMITTED | VPROT_READ | VPROT_EXEC | VPROT_WRITECOPY | VPROT_IMAGE );
843
844     if (status != STATUS_SUCCESS) goto error;
845
846     ptr = view->base;
847     TRACE_(module)( "mapped PE file at %p-%p\n", ptr, ptr + total_size );
848
849     /* map the header */
850
851     status = STATUS_INVALID_IMAGE_FORMAT;  /* generic error */
852     if (map_file_into_view( view, fd, 0, header_size, 0, VPROT_COMMITTED | VPROT_READ,
853                             removable ) != STATUS_SUCCESS) goto error;
854     dos = (IMAGE_DOS_HEADER *)ptr;
855     nt = (IMAGE_NT_HEADERS *)(ptr + dos->e_lfanew);
856     if ((char *)(nt + 1) > ptr + header_size) goto error;
857
858     sec = (IMAGE_SECTION_HEADER*)((char*)&nt->OptionalHeader+nt->FileHeader.SizeOfOptionalHeader);
859     if ((char *)(sec + nt->FileHeader.NumberOfSections) > ptr + header_size) goto error;
860
861     imports = nt->OptionalHeader.DataDirectory + IMAGE_DIRECTORY_ENTRY_IMPORT;
862     if (!imports->Size || !imports->VirtualAddress) imports = NULL;
863
864     /* check the architecture */
865
866     if (nt->FileHeader.Machine != IMAGE_FILE_MACHINE_I386)
867     {
868         MESSAGE("Trying to load PE image for unsupported architecture (");
869         switch (nt->FileHeader.Machine)
870         {
871         case IMAGE_FILE_MACHINE_UNKNOWN: MESSAGE("Unknown"); break;
872         case IMAGE_FILE_MACHINE_I860:    MESSAGE("I860"); break;
873         case IMAGE_FILE_MACHINE_R3000:   MESSAGE("R3000"); break;
874         case IMAGE_FILE_MACHINE_R4000:   MESSAGE("R4000"); break;
875         case IMAGE_FILE_MACHINE_R10000:  MESSAGE("R10000"); break;
876         case IMAGE_FILE_MACHINE_ALPHA:   MESSAGE("Alpha"); break;
877         case IMAGE_FILE_MACHINE_POWERPC: MESSAGE("PowerPC"); break;
878         case IMAGE_FILE_MACHINE_IA64:    MESSAGE("IA-64"); break;
879         case IMAGE_FILE_MACHINE_ALPHA64: MESSAGE("Alpha-64"); break;
880         case IMAGE_FILE_MACHINE_AMD64:   MESSAGE("AMD-64"); break;
881         default: MESSAGE("Unknown-%04x", nt->FileHeader.Machine); break;
882         }
883         MESSAGE(")\n");
884         goto error;
885     }
886
887     /* check for non page-aligned binary */
888
889     if (nt->OptionalHeader.SectionAlignment <= page_mask)
890     {
891         /* unaligned sections, this happens for native subsystem binaries */
892         /* in that case Windows simply maps in the whole file */
893
894         if (map_file_into_view( view, fd, 0, total_size, 0, VPROT_COMMITTED | VPROT_READ,
895                                 removable ) != STATUS_SUCCESS) goto error;
896
897         /* check that all sections are loaded at the right offset */
898         for (i = 0; i < nt->FileHeader.NumberOfSections; i++)
899         {
900             if (sec[i].VirtualAddress != sec[i].PointerToRawData)
901                 goto error;  /* Windows refuses to load in that case too */
902         }
903
904         /* set the image protections */
905         VIRTUAL_SetProt( view, ptr, total_size,
906                          VPROT_COMMITTED | VPROT_READ | VPROT_WRITECOPY | VPROT_EXEC );
907
908         /* perform relocations if necessary */
909         /* FIXME: not 100% compatible, Windows doesn't do this for non page-aligned binaries */
910         if (ptr != base)
911         {
912             const IMAGE_DATA_DIRECTORY *relocs;
913             relocs = &nt->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_BASERELOC];
914             if (relocs->VirtualAddress && relocs->Size)
915                 do_relocations( ptr, relocs, ptr - base, total_size );
916         }
917
918         goto done;
919     }
920
921
922     /* map all the sections */
923
924     for (i = pos = 0; i < nt->FileHeader.NumberOfSections; i++, sec++)
925     {
926         SIZE_T map_size, file_size, end;
927
928         if (!sec->Misc.VirtualSize)
929         {
930             file_size = sec->SizeOfRawData;
931             map_size  = ROUND_SIZE( 0, file_size );
932         }
933         else
934         {
935             map_size = ROUND_SIZE( 0, sec->Misc.VirtualSize );
936             file_size = min( sec->SizeOfRawData, map_size );
937         }
938
939         /* a few sanity checks */
940         end = sec->VirtualAddress + ROUND_SIZE( sec->VirtualAddress, map_size );
941         if (sec->VirtualAddress > total_size || end > total_size || end < sec->VirtualAddress)
942         {
943             ERR_(module)( "Section %.8s too large (%lx+%lx/%lx)\n",
944                           sec->Name, sec->VirtualAddress, map_size, total_size );
945             goto error;
946         }
947
948         if ((sec->Characteristics & IMAGE_SCN_MEM_SHARED) &&
949             (sec->Characteristics & IMAGE_SCN_MEM_WRITE))
950         {
951             TRACE_(module)( "mapping shared section %.8s at %p off %lx (%x) size %lx (%lx) flags %lx\n",
952                             sec->Name, ptr + sec->VirtualAddress,
953                             sec->PointerToRawData, (int)pos, file_size, map_size,
954                             sec->Characteristics );
955             if (map_file_into_view( view, shared_fd, sec->VirtualAddress, map_size, pos,
956                                     VPROT_COMMITTED | VPROT_READ | PROT_WRITE,
957                                     FALSE ) != STATUS_SUCCESS)
958             {
959                 ERR_(module)( "Could not map shared section %.8s\n", sec->Name );
960                 goto error;
961             }
962
963             /* check if the import directory falls inside this section */
964             if (imports && imports->VirtualAddress >= sec->VirtualAddress &&
965                 imports->VirtualAddress < sec->VirtualAddress + map_size)
966             {
967                 UINT_PTR base = imports->VirtualAddress & ~page_mask;
968                 UINT_PTR end = base + ROUND_SIZE( imports->VirtualAddress, imports->Size );
969                 if (end > sec->VirtualAddress + map_size) end = sec->VirtualAddress + map_size;
970                 if (end > base)
971                     map_file_into_view( view, shared_fd, base, end - base,
972                                         pos + (base - sec->VirtualAddress),
973                                         VPROT_COMMITTED | VPROT_READ | VPROT_WRITECOPY,
974                                         FALSE );
975             }
976             pos += map_size;
977             continue;
978         }
979
980         TRACE_(module)( "mapping section %.8s at %p off %lx size %lx virt %lx flags %lx\n",
981                         sec->Name, ptr + sec->VirtualAddress,
982                         sec->PointerToRawData, sec->SizeOfRawData,
983                         sec->Misc.VirtualSize, sec->Characteristics );
984
985         if (!sec->PointerToRawData || !file_size) continue;
986
987         /* Note: if the section is not aligned properly map_file_into_view will magically
988          *       fall back to read(), so we don't need to check anything here.
989          */
990         if (map_file_into_view( view, fd, sec->VirtualAddress, file_size, sec->PointerToRawData,
991                                 VPROT_COMMITTED | VPROT_READ | VPROT_WRITECOPY,
992                                 removable ) != STATUS_SUCCESS)
993         {
994             ERR_(module)( "Could not map section %.8s, file probably truncated\n", sec->Name );
995             goto error;
996         }
997
998         if (file_size & page_mask)
999         {
1000             end = ROUND_SIZE( 0, file_size );
1001             if (end > map_size) end = map_size;
1002             TRACE_(module)("clearing %p - %p\n",
1003                            ptr + sec->VirtualAddress + file_size,
1004                            ptr + sec->VirtualAddress + end );
1005             memset( ptr + sec->VirtualAddress + file_size, 0, end - file_size );
1006         }
1007     }
1008
1009
1010     /* perform base relocation, if necessary */
1011
1012     if (ptr != base)
1013     {
1014         const IMAGE_DATA_DIRECTORY *relocs;
1015
1016         relocs = &nt->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_BASERELOC];
1017         if (!relocs->VirtualAddress || !relocs->Size)
1018         {
1019             if (nt->OptionalHeader.ImageBase == 0x400000) {
1020                 ERR("Image was mapped at %p: standard load address for a Win32 program (0x00400000) not available\n", ptr);
1021                 ERR("Do you have exec-shield or prelink active?\n");
1022             } else
1023                 ERR( "FATAL: Need to relocate module from addr %lx, but there are no relocation records\n",
1024                      nt->OptionalHeader.ImageBase );
1025             goto error;
1026         }
1027
1028         /* FIXME: If we need to relocate a system DLL (base > 2GB) we should
1029          *        really make sure that the *new* base address is also > 2GB.
1030          *        Some DLLs really check the MSB of the module handle :-/
1031          */
1032         if ((nt->OptionalHeader.ImageBase & 0x80000000) && !((ULONG_PTR)base & 0x80000000))
1033             ERR( "Forced to relocate system DLL (base > 2GB). This is not good.\n" );
1034
1035         if (!do_relocations( ptr, relocs, ptr - base, total_size ))
1036         {
1037             goto error;
1038         }
1039     }
1040
1041     /* set the image protections */
1042
1043     sec = (IMAGE_SECTION_HEADER*)((char *)&nt->OptionalHeader+nt->FileHeader.SizeOfOptionalHeader);
1044     for (i = 0; i < nt->FileHeader.NumberOfSections; i++, sec++)
1045     {
1046         SIZE_T size = ROUND_SIZE( sec->VirtualAddress, sec->Misc.VirtualSize );
1047         BYTE vprot = VPROT_COMMITTED;
1048         if (sec->Characteristics & IMAGE_SCN_MEM_READ)    vprot |= VPROT_READ;
1049         if (sec->Characteristics & IMAGE_SCN_MEM_WRITE)   vprot |= VPROT_READ|VPROT_WRITECOPY;
1050         if (sec->Characteristics & IMAGE_SCN_MEM_EXECUTE) vprot |= VPROT_EXEC;
1051         VIRTUAL_SetProt( view, ptr + sec->VirtualAddress, size, vprot );
1052     }
1053
1054  done:
1055     if (!removable)  /* don't keep handle open on removable media */
1056         NtDuplicateObject( NtCurrentProcess(), hmapping,
1057                            NtCurrentProcess(), &view->mapping,
1058                            0, 0, DUPLICATE_SAME_ACCESS );
1059
1060     RtlLeaveCriticalSection( &csVirtual );
1061
1062     *addr_ptr = ptr;
1063     return STATUS_SUCCESS;
1064
1065  error:
1066     if (view) delete_view( view );
1067     RtlLeaveCriticalSection( &csVirtual );
1068     return status;
1069 }
1070
1071
1072 /***********************************************************************
1073  *           is_current_process
1074  *
1075  * Check whether a process handle is for the current process.
1076  */
1077 BOOL is_current_process( HANDLE handle )
1078 {
1079     BOOL ret = FALSE;
1080
1081     if (handle == NtCurrentProcess()) return TRUE;
1082     SERVER_START_REQ( get_process_info )
1083     {
1084         req->handle = handle;
1085         if (!wine_server_call( req ))
1086             ret = ((DWORD)reply->pid == GetCurrentProcessId());
1087     }
1088     SERVER_END_REQ;
1089     return ret;
1090 }
1091
1092
1093 /***********************************************************************
1094  *           virtual_init
1095  */
1096 static inline void virtual_init(void)
1097 {
1098 #ifndef page_mask
1099     page_size = getpagesize();
1100     page_mask = page_size - 1;
1101     /* Make sure we have a power of 2 */
1102     assert( !(page_size & page_mask) );
1103     page_shift = 0;
1104     while ((1 << page_shift) != page_size) page_shift++;
1105 #endif  /* page_mask */
1106 }
1107
1108
1109 /***********************************************************************
1110  *           VIRTUAL_alloc_teb
1111  *
1112  * Allocate a memory view for a new TEB. We don't care about granularity for TEBs.
1113  */
1114 NTSTATUS VIRTUAL_alloc_teb( void **ret, size_t size, BOOL first )
1115 {
1116     void *ptr;
1117     NTSTATUS status;
1118     struct file_view *view;
1119     BYTE vprot = VPROT_READ | VPROT_WRITE | VPROT_COMMITTED;
1120
1121     if (first) virtual_init();
1122
1123     *ret = NULL;
1124     size = ROUND_SIZE( 0, size );
1125
1126     for (;;)
1127     {
1128         if ((ptr = wine_anon_mmap( NULL, size, VIRTUAL_GetUnixProt(vprot), 0 )) == (void *)-1)
1129         {
1130             if (errno == ENOMEM) return STATUS_NO_MEMORY;
1131             return STATUS_INVALID_PARAMETER;
1132         }
1133         /* if we got something beyond the user limit, unmap it and retry */
1134         if (is_beyond_limit( ptr, size, user_space_limit )) add_reserved_area( ptr, size );
1135         else break;
1136     }
1137
1138     if (!first) RtlEnterCriticalSection( &csVirtual );
1139
1140     status = create_view( &view, ptr, size, vprot );
1141     if (status == STATUS_SUCCESS)
1142     {
1143         view->flags |= VFLAG_VALLOC;
1144         *ret = ptr;
1145     }
1146     else unmap_area( ptr, size );
1147
1148     if (!first) RtlLeaveCriticalSection( &csVirtual );
1149
1150     return status;
1151 }
1152
1153
1154 /***********************************************************************
1155  *           VIRTUAL_HandleFault
1156  */
1157 NTSTATUS VIRTUAL_HandleFault( LPCVOID addr )
1158 {
1159     FILE_VIEW *view;
1160     NTSTATUS ret = STATUS_ACCESS_VIOLATION;
1161
1162     RtlEnterCriticalSection( &csVirtual );
1163     if ((view = VIRTUAL_FindView( addr )))
1164     {
1165         BYTE vprot = view->prot[((const char *)addr - (const char *)view->base) >> page_shift];
1166         void *page = (void *)((UINT_PTR)addr & ~page_mask);
1167         char *stack = NtCurrentTeb()->Tib.StackLimit;
1168         if (vprot & VPROT_GUARD)
1169         {
1170             VIRTUAL_SetProt( view, page, page_mask + 1, vprot & ~VPROT_GUARD );
1171             ret = STATUS_GUARD_PAGE_VIOLATION;
1172         }
1173         /* is it inside the stack guard page? */
1174         if (((const char *)addr >= stack) && ((const char *)addr < stack + (page_mask+1)))
1175             ret = STATUS_STACK_OVERFLOW;
1176     }
1177     RtlLeaveCriticalSection( &csVirtual );
1178     return ret;
1179 }
1180
1181 /***********************************************************************
1182  *           VIRTUAL_HasMapping
1183  *
1184  * Check if the specified view has an associated file mapping.
1185  */
1186 BOOL VIRTUAL_HasMapping( LPCVOID addr )
1187 {
1188     FILE_VIEW *view;
1189     BOOL ret = FALSE;
1190
1191     RtlEnterCriticalSection( &csVirtual );
1192     if ((view = VIRTUAL_FindView( addr ))) ret = (view->mapping != 0);
1193     RtlLeaveCriticalSection( &csVirtual );
1194     return ret;
1195 }
1196
1197
1198 /***********************************************************************
1199  *           VIRTUAL_UseLargeAddressSpace
1200  *
1201  * Increase the address space size for apps that support it.
1202  */
1203 void VIRTUAL_UseLargeAddressSpace(void)
1204 {
1205     if (user_space_limit >= ADDRESS_SPACE_LIMIT) return;
1206     RtlEnterCriticalSection( &csVirtual );
1207     remove_reserved_area( user_space_limit, (char *)ADDRESS_SPACE_LIMIT - (char *)user_space_limit );
1208     user_space_limit = ADDRESS_SPACE_LIMIT;
1209     RtlLeaveCriticalSection( &csVirtual );
1210 }
1211
1212
1213 /***********************************************************************
1214  *             NtAllocateVirtualMemory   (NTDLL.@)
1215  *             ZwAllocateVirtualMemory   (NTDLL.@)
1216  */
1217 NTSTATUS WINAPI NtAllocateVirtualMemory( HANDLE process, PVOID *ret, ULONG zero_bits,
1218                                          SIZE_T *size_ptr, ULONG type, ULONG protect )
1219 {
1220     void *base;
1221     BYTE vprot;
1222     SIZE_T size = *size_ptr;
1223     NTSTATUS status = STATUS_SUCCESS;
1224     struct file_view *view;
1225
1226     TRACE("%p %p %08lx %lx %08lx\n", process, *ret, size, type, protect );
1227
1228     if (!size) return STATUS_INVALID_PARAMETER;
1229
1230     if (!is_current_process( process ))
1231     {
1232         ERR("Unsupported on other process\n");
1233         return STATUS_ACCESS_DENIED;
1234     }
1235
1236     /* Round parameters to a page boundary */
1237
1238     if (size > 0x7fc00000) return STATUS_WORKING_SET_LIMIT_RANGE; /* 2Gb - 4Mb */
1239
1240     if (*ret)
1241     {
1242         if (type & MEM_RESERVE) /* Round down to 64k boundary */
1243             base = ROUND_ADDR( *ret, granularity_mask );
1244         else
1245             base = ROUND_ADDR( *ret, page_mask );
1246         size = (((UINT_PTR)*ret + size + page_mask) & ~page_mask) - (UINT_PTR)base;
1247
1248         /* disallow low 64k, wrap-around and kernel space */
1249         if (((char *)base <= (char *)granularity_mask) ||
1250             ((char *)base + size < (char *)base) ||
1251             is_beyond_limit( base, size, ADDRESS_SPACE_LIMIT ))
1252             return STATUS_INVALID_PARAMETER;
1253     }
1254     else
1255     {
1256         base = NULL;
1257         size = (size + page_mask) & ~page_mask;
1258     }
1259
1260     if (type & MEM_TOP_DOWN) {
1261         /* FIXME: MEM_TOP_DOWN allocates the largest possible address. */
1262         WARN("MEM_TOP_DOWN ignored\n");
1263         type &= ~MEM_TOP_DOWN;
1264     }
1265
1266     if (zero_bits)
1267         WARN("zero_bits %lu ignored\n", zero_bits);
1268
1269     /* Compute the alloc type flags */
1270
1271     if (!(type & MEM_SYSTEM))
1272     {
1273         if (!(type & (MEM_COMMIT | MEM_RESERVE)) || (type & ~(MEM_COMMIT | MEM_RESERVE)))
1274         {
1275             WARN("called with wrong alloc type flags (%08lx) !\n", type);
1276             return STATUS_INVALID_PARAMETER;
1277         }
1278     }
1279     vprot = VIRTUAL_GetProt( protect );
1280     if (type & MEM_COMMIT) vprot |= VPROT_COMMITTED;
1281
1282     /* Reserve the memory */
1283
1284     RtlEnterCriticalSection( &csVirtual );
1285
1286     if (type & MEM_SYSTEM)
1287     {
1288         if (type & MEM_IMAGE) vprot |= VPROT_IMAGE;
1289         status = create_view( &view, base, size, vprot | VPROT_COMMITTED );
1290         if (status == STATUS_SUCCESS)
1291         {
1292             view->flags |= VFLAG_VALLOC | VFLAG_SYSTEM;
1293             base = view->base;
1294         }
1295     }
1296     else if ((type & MEM_RESERVE) || !base)
1297     {
1298         status = map_view( &view, base, size, vprot );
1299         if (status == STATUS_SUCCESS)
1300         {
1301             view->flags |= VFLAG_VALLOC;
1302             base = view->base;
1303         }
1304     }
1305     else  /* commit the pages */
1306     {
1307         if (!(view = VIRTUAL_FindView( base )) ||
1308             ((char *)base + size > (char *)view->base + view->size)) status = STATUS_NOT_MAPPED_VIEW;
1309         else if (!VIRTUAL_SetProt( view, base, size, vprot )) status = STATUS_ACCESS_DENIED;
1310     }
1311
1312     RtlLeaveCriticalSection( &csVirtual );
1313
1314     if (status == STATUS_SUCCESS)
1315     {
1316         *ret = base;
1317         *size_ptr = size;
1318     }
1319     return status;
1320 }
1321
1322
1323 /***********************************************************************
1324  *             NtFreeVirtualMemory   (NTDLL.@)
1325  *             ZwFreeVirtualMemory   (NTDLL.@)
1326  */
1327 NTSTATUS WINAPI NtFreeVirtualMemory( HANDLE process, PVOID *addr_ptr, SIZE_T *size_ptr, ULONG type )
1328 {
1329     FILE_VIEW *view;
1330     char *base;
1331     NTSTATUS status = STATUS_SUCCESS;
1332     LPVOID addr = *addr_ptr;
1333     SIZE_T size = *size_ptr;
1334
1335     TRACE("%p %p %08lx %lx\n", process, addr, size, type );
1336
1337     if (!is_current_process( process ))
1338     {
1339         ERR("Unsupported on other process\n");
1340         return STATUS_ACCESS_DENIED;
1341     }
1342
1343     /* Fix the parameters */
1344
1345     size = ROUND_SIZE( addr, size );
1346     base = ROUND_ADDR( addr, page_mask );
1347
1348     RtlEnterCriticalSection(&csVirtual);
1349
1350     if (!(view = VIRTUAL_FindView( base )) ||
1351         (base + size > (char *)view->base + view->size) ||
1352         !(view->flags & VFLAG_VALLOC))
1353     {
1354         status = STATUS_INVALID_PARAMETER;
1355     }
1356     else if (type & MEM_SYSTEM)
1357     {
1358         /* return the values that the caller should use to unmap the area */
1359         *addr_ptr = view->base;
1360         *size_ptr = view->size;
1361         view->flags |= VFLAG_SYSTEM;
1362         delete_view( view );
1363     }
1364     else if (type == MEM_RELEASE)
1365     {
1366         /* Free the pages */
1367
1368         if (size || (base != view->base)) status = STATUS_INVALID_PARAMETER;
1369         else
1370         {
1371             delete_view( view );
1372             *addr_ptr = base;
1373             *size_ptr = size;
1374         }
1375     }
1376     else if (type == MEM_DECOMMIT)
1377     {
1378         status = decommit_pages( view, base - (char *)view->base, size );
1379         if (status == STATUS_SUCCESS)
1380         {
1381             *addr_ptr = base;
1382             *size_ptr = size;
1383         }
1384     }
1385     else
1386     {
1387         WARN("called with wrong free type flags (%08lx) !\n", type);
1388         status = STATUS_INVALID_PARAMETER;
1389     }
1390
1391     RtlLeaveCriticalSection(&csVirtual);
1392     return status;
1393 }
1394
1395
1396 /***********************************************************************
1397  *             NtProtectVirtualMemory   (NTDLL.@)
1398  *             ZwProtectVirtualMemory   (NTDLL.@)
1399  */
1400 NTSTATUS WINAPI NtProtectVirtualMemory( HANDLE process, PVOID *addr_ptr, SIZE_T *size_ptr,
1401                                         ULONG new_prot, ULONG *old_prot )
1402 {
1403     FILE_VIEW *view;
1404     NTSTATUS status = STATUS_SUCCESS;
1405     char *base;
1406     UINT i;
1407     BYTE vprot, *p;
1408     ULONG prot;
1409     SIZE_T size = *size_ptr;
1410     LPVOID addr = *addr_ptr;
1411
1412     TRACE("%p %p %08lx %08lx\n", process, addr, size, new_prot );
1413
1414     if (!is_current_process( process ))
1415     {
1416         ERR("Unsupported on other process\n");
1417         return STATUS_ACCESS_DENIED;
1418     }
1419
1420     /* Fix the parameters */
1421
1422     size = ROUND_SIZE( addr, size );
1423     base = ROUND_ADDR( addr, page_mask );
1424
1425     RtlEnterCriticalSection( &csVirtual );
1426
1427     if (!(view = VIRTUAL_FindView( base )) || (base + size > (char *)view->base + view->size))
1428     {
1429         status = STATUS_INVALID_PARAMETER;
1430     }
1431     else
1432     {
1433         /* Make sure all the pages are committed */
1434
1435         p = view->prot + ((base - (char *)view->base) >> page_shift);
1436         VIRTUAL_GetWin32Prot( *p, &prot, NULL );
1437         for (i = size >> page_shift; i; i--, p++)
1438         {
1439             if (!(*p & VPROT_COMMITTED))
1440             {
1441                 status = STATUS_NOT_COMMITTED;
1442                 break;
1443             }
1444         }
1445         if (!i)
1446         {
1447             if (old_prot) *old_prot = prot;
1448             vprot = VIRTUAL_GetProt( new_prot ) | VPROT_COMMITTED;
1449             if (!VIRTUAL_SetProt( view, base, size, vprot )) status = STATUS_ACCESS_DENIED;
1450         }
1451     }
1452     RtlLeaveCriticalSection( &csVirtual );
1453
1454     if (status == STATUS_SUCCESS)
1455     {
1456         *addr_ptr = base;
1457         *size_ptr = size;
1458     }
1459     return status;
1460 }
1461
1462 #define UNIMPLEMENTED_INFO_CLASS(c) \
1463     case c: \
1464         FIXME("(process=%p,addr=%p) Unimplemented information class: " #c "\n", process, addr); \
1465         return STATUS_INVALID_INFO_CLASS
1466
1467 /***********************************************************************
1468  *             NtQueryVirtualMemory   (NTDLL.@)
1469  *             ZwQueryVirtualMemory   (NTDLL.@)
1470  */
1471 NTSTATUS WINAPI NtQueryVirtualMemory( HANDLE process, LPCVOID addr,
1472                                       MEMORY_INFORMATION_CLASS info_class, PVOID buffer,
1473                                       SIZE_T len, SIZE_T *res_len )
1474 {
1475     FILE_VIEW *view;
1476     char *base, *alloc_base = 0;
1477     struct list *ptr;
1478     SIZE_T size = 0;
1479     MEMORY_BASIC_INFORMATION *info = buffer;
1480
1481     if (info_class != MemoryBasicInformation)
1482     {
1483         switch(info_class)
1484         {
1485             UNIMPLEMENTED_INFO_CLASS(MemoryWorkingSetList);
1486             UNIMPLEMENTED_INFO_CLASS(MemorySectionName);
1487             UNIMPLEMENTED_INFO_CLASS(MemoryBasicVlmInformation);
1488
1489             default:
1490                 FIXME("(%p,%p,info_class=%d,%p,%ld,%p) Unknown information class\n", 
1491                       process, addr, info_class, buffer, len, res_len);
1492                 return STATUS_INVALID_INFO_CLASS;
1493         }
1494     }
1495     if (ADDRESS_SPACE_LIMIT && addr >= ADDRESS_SPACE_LIMIT)
1496         return STATUS_WORKING_SET_LIMIT_RANGE;
1497
1498     if (!is_current_process( process ))
1499     {
1500         ERR("Unsupported on other process\n");
1501         return STATUS_ACCESS_DENIED;
1502     }
1503
1504     base = ROUND_ADDR( addr, page_mask );
1505
1506     /* Find the view containing the address */
1507
1508     RtlEnterCriticalSection(&csVirtual);
1509     ptr = list_head( &views_list );
1510     for (;;)
1511     {
1512         if (!ptr)
1513         {
1514             /* make the address space end at the user limit, except if
1515              * the last view was mapped beyond that */
1516             if (alloc_base <= (char *)user_space_limit)
1517             {
1518                 if (user_space_limit && base >= (char *)user_space_limit)
1519                 {
1520                     RtlLeaveCriticalSection( &csVirtual );
1521                     return STATUS_WORKING_SET_LIMIT_RANGE;
1522                 }
1523                 size = (char *)user_space_limit - alloc_base;
1524             }
1525             else size = (char *)ADDRESS_SPACE_LIMIT - alloc_base;
1526             view = NULL;
1527             break;
1528         }
1529         view = LIST_ENTRY( ptr, struct file_view, entry );
1530         if ((char *)view->base > base)
1531         {
1532             size = (char *)view->base - alloc_base;
1533             view = NULL;
1534             break;
1535         }
1536         if ((char *)view->base + view->size > base)
1537         {
1538             alloc_base = view->base;
1539             size = view->size;
1540             break;
1541         }
1542         alloc_base = (char *)view->base + view->size;
1543         ptr = list_next( &views_list, ptr );
1544     }
1545
1546     /* Fill the info structure */
1547
1548     if (!view)
1549     {
1550         info->State             = MEM_FREE;
1551         info->Protect           = 0;
1552         info->AllocationProtect = 0;
1553         info->Type              = 0;
1554     }
1555     else
1556     {
1557         BYTE vprot = view->prot[(base - alloc_base) >> page_shift];
1558         VIRTUAL_GetWin32Prot( vprot, &info->Protect, &info->State );
1559         for (size = base - alloc_base; size < view->size; size += page_mask+1)
1560             if (view->prot[size >> page_shift] != vprot) break;
1561         VIRTUAL_GetWin32Prot( view->protect, &info->AllocationProtect, NULL );
1562         if (view->protect & VPROT_IMAGE) info->Type = MEM_IMAGE;
1563         else if (view->flags & VFLAG_VALLOC) info->Type = MEM_PRIVATE;
1564         else info->Type = MEM_MAPPED;
1565     }
1566     RtlLeaveCriticalSection(&csVirtual);
1567
1568     info->BaseAddress    = (LPVOID)base;
1569     info->AllocationBase = (LPVOID)alloc_base;
1570     info->RegionSize     = size - (base - alloc_base);
1571     if (res_len) *res_len = sizeof(*info);
1572     return STATUS_SUCCESS;
1573 }
1574
1575
1576 /***********************************************************************
1577  *             NtLockVirtualMemory   (NTDLL.@)
1578  *             ZwLockVirtualMemory   (NTDLL.@)
1579  */
1580 NTSTATUS WINAPI NtLockVirtualMemory( HANDLE process, PVOID *addr, SIZE_T *size, ULONG unknown )
1581 {
1582     if (!is_current_process( process ))
1583     {
1584         ERR("Unsupported on other process\n");
1585         return STATUS_ACCESS_DENIED;
1586     }
1587     return STATUS_SUCCESS;
1588 }
1589
1590
1591 /***********************************************************************
1592  *             NtUnlockVirtualMemory   (NTDLL.@)
1593  *             ZwUnlockVirtualMemory   (NTDLL.@)
1594  */
1595 NTSTATUS WINAPI NtUnlockVirtualMemory( HANDLE process, PVOID *addr, SIZE_T *size, ULONG unknown )
1596 {
1597     if (!is_current_process( process ))
1598     {
1599         ERR("Unsupported on other process\n");
1600         return STATUS_ACCESS_DENIED;
1601     }
1602     return STATUS_SUCCESS;
1603 }
1604
1605
1606 /***********************************************************************
1607  *             NtCreateSection   (NTDLL.@)
1608  *             ZwCreateSection   (NTDLL.@)
1609  */
1610 NTSTATUS WINAPI NtCreateSection( HANDLE *handle, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr,
1611                                  const LARGE_INTEGER *size, ULONG protect,
1612                                  ULONG sec_flags, HANDLE file )
1613 {
1614     NTSTATUS ret;
1615     BYTE vprot;
1616     DWORD len = (attr && attr->ObjectName) ? attr->ObjectName->Length : 0;
1617
1618     /* Check parameters */
1619
1620     if (len > MAX_PATH*sizeof(WCHAR)) return STATUS_NAME_TOO_LONG;
1621
1622     vprot = VIRTUAL_GetProt( protect );
1623     if (sec_flags & SEC_RESERVE)
1624     {
1625         if (file) return STATUS_INVALID_PARAMETER;
1626     }
1627     else vprot |= VPROT_COMMITTED;
1628     if (sec_flags & SEC_NOCACHE) vprot |= VPROT_NOCACHE;
1629     if (sec_flags & SEC_IMAGE) vprot |= VPROT_IMAGE;
1630
1631     /* Create the server object */
1632
1633     SERVER_START_REQ( create_mapping )
1634     {
1635         req->file_handle = file;
1636         req->size_high   = size ? size->u.HighPart : 0;
1637         req->size_low    = size ? size->u.LowPart : 0;
1638         req->protect     = vprot;
1639         req->access      = access;
1640         req->inherit     = (attr && (attr->Attributes & OBJ_INHERIT) != 0);
1641         if (len) wine_server_add_data( req, attr->ObjectName->Buffer, len );
1642         ret = wine_server_call( req );
1643         *handle = reply->handle;
1644     }
1645     SERVER_END_REQ;
1646     return ret;
1647 }
1648
1649
1650 /***********************************************************************
1651  *             NtOpenSection   (NTDLL.@)
1652  *             ZwOpenSection   (NTDLL.@)
1653  */
1654 NTSTATUS WINAPI NtOpenSection( HANDLE *handle, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr )
1655 {
1656     NTSTATUS ret;
1657     DWORD len = attr->ObjectName->Length;
1658
1659     if (len > MAX_PATH*sizeof(WCHAR)) return STATUS_NAME_TOO_LONG;
1660
1661     SERVER_START_REQ( open_mapping )
1662     {
1663         req->access  = access;
1664         req->inherit = (attr->Attributes & OBJ_INHERIT) != 0;
1665         wine_server_add_data( req, attr->ObjectName->Buffer, len );
1666         if (!(ret = wine_server_call( req ))) *handle = reply->handle;
1667     }
1668     SERVER_END_REQ;
1669     return ret;
1670 }
1671
1672
1673 /***********************************************************************
1674  *             NtMapViewOfSection   (NTDLL.@)
1675  *             ZwMapViewOfSection   (NTDLL.@)
1676  */
1677 NTSTATUS WINAPI NtMapViewOfSection( HANDLE handle, HANDLE process, PVOID *addr_ptr, ULONG zero_bits,
1678                                     SIZE_T commit_size, const LARGE_INTEGER *offset_ptr, SIZE_T *size_ptr,
1679                                     SECTION_INHERIT inherit, ULONG alloc_type, ULONG protect )
1680 {
1681     FILE_FS_DEVICE_INFORMATION device_info;
1682     NTSTATUS res;
1683     SIZE_T size = 0;
1684     int unix_handle = -1;
1685     int prot;
1686     void *base;
1687     struct file_view *view;
1688     DWORD size_low, size_high, header_size, shared_size;
1689     HANDLE shared_file;
1690     BOOL removable = FALSE;
1691     LARGE_INTEGER offset;
1692
1693     offset.QuadPart = offset_ptr ? offset_ptr->QuadPart : 0;
1694
1695     TRACE("handle=%p process=%p addr=%p off=%lx%08lx size=%lx access=%lx\n",
1696           handle, process, *addr_ptr, offset.u.HighPart, offset.u.LowPart, size, protect );
1697
1698     if (!is_current_process( process ))
1699     {
1700         ERR("Unsupported on other process\n");
1701         return STATUS_ACCESS_DENIED;
1702     }
1703
1704     /* Check parameters */
1705
1706     if ((offset.u.LowPart & granularity_mask) ||
1707         (*addr_ptr && ((UINT_PTR)*addr_ptr & granularity_mask)))
1708         return STATUS_INVALID_PARAMETER;
1709
1710     SERVER_START_REQ( get_mapping_info )
1711     {
1712         req->handle = handle;
1713         res = wine_server_call( req );
1714         prot        = reply->protect;
1715         base        = reply->base;
1716         size_low    = reply->size_low;
1717         size_high   = reply->size_high;
1718         header_size = reply->header_size;
1719         shared_file = reply->shared_file;
1720         shared_size = reply->shared_size;
1721     }
1722     SERVER_END_REQ;
1723     if (res) return res;
1724
1725     if ((res = wine_server_handle_to_fd( handle, 0, &unix_handle, NULL ))) return res;
1726
1727     if (FILE_GetDeviceInfo( unix_handle, &device_info ) == STATUS_SUCCESS)
1728         removable = device_info.Characteristics & FILE_REMOVABLE_MEDIA;
1729
1730     if (prot & VPROT_IMAGE)
1731     {
1732         if (shared_file)
1733         {
1734             int shared_fd;
1735
1736             if ((res = wine_server_handle_to_fd( shared_file, GENERIC_READ, &shared_fd,
1737                                                  NULL ))) goto done;
1738             res = map_image( handle, unix_handle, base, size_low, header_size,
1739                              shared_fd, removable, addr_ptr );
1740             wine_server_release_fd( shared_file, shared_fd );
1741             NtClose( shared_file );
1742         }
1743         else
1744         {
1745             res = map_image( handle, unix_handle, base, size_low, header_size,
1746                              -1, removable, addr_ptr );
1747         }
1748         wine_server_release_fd( handle, unix_handle );
1749         if (!res) *size_ptr = size_low;
1750         return res;
1751     }
1752
1753     if (size_high)
1754         ERR("Sizes larger than 4Gb not supported\n");
1755
1756     if ((offset.u.LowPart >= size_low) ||
1757         (*size_ptr > size_low - offset.u.LowPart))
1758     {
1759         res = STATUS_INVALID_PARAMETER;
1760         goto done;
1761     }
1762     if (*size_ptr) size = ROUND_SIZE( offset.u.LowPart, *size_ptr );
1763     else size = size_low - offset.u.LowPart;
1764
1765     switch(protect)
1766     {
1767     case PAGE_NOACCESS:
1768         break;
1769     case PAGE_READWRITE:
1770     case PAGE_EXECUTE_READWRITE:
1771         if (!(prot & VPROT_WRITE))
1772         {
1773             res = STATUS_INVALID_PARAMETER;
1774             goto done;
1775         }
1776         removable = FALSE;
1777         /* fall through */
1778     case PAGE_READONLY:
1779     case PAGE_WRITECOPY:
1780     case PAGE_EXECUTE:
1781     case PAGE_EXECUTE_READ:
1782     case PAGE_EXECUTE_WRITECOPY:
1783         if (prot & VPROT_READ) break;
1784         /* fall through */
1785     default:
1786         res = STATUS_INVALID_PARAMETER;
1787         goto done;
1788     }
1789
1790     /* FIXME: If a mapping is created with SEC_RESERVE and a process,
1791      * which has a view of this mapping commits some pages, they will
1792      * appear commited in all other processes, which have the same
1793      * view created. Since we don`t support this yet, we create the
1794      * whole mapping commited.
1795      */
1796     prot |= VPROT_COMMITTED;
1797
1798     /* Reserve a properly aligned area */
1799
1800     RtlEnterCriticalSection( &csVirtual );
1801
1802     res = map_view( &view, *addr_ptr, size, prot );
1803     if (res)
1804     {
1805         RtlLeaveCriticalSection( &csVirtual );
1806         goto done;
1807     }
1808
1809     /* Map the file */
1810
1811     TRACE("handle=%p size=%lx offset=%lx%08lx\n",
1812           handle, size, offset.u.HighPart, offset.u.LowPart );
1813
1814     res = map_file_into_view( view, unix_handle, 0, size, offset.QuadPart, prot, removable );
1815     if (res == STATUS_SUCCESS)
1816     {
1817         if (!removable)  /* don't keep handle open on removable media */
1818             NtDuplicateObject( NtCurrentProcess(), handle,
1819                                NtCurrentProcess(), &view->mapping,
1820                                0, 0, DUPLICATE_SAME_ACCESS );
1821
1822         *addr_ptr = view->base;
1823         *size_ptr = size;
1824     }
1825     else
1826     {
1827         ERR( "map_file_into_view %p %lx %lx%08lx failed\n",
1828              view->base, size, offset.u.HighPart, offset.u.LowPart );
1829         delete_view( view );
1830     }
1831
1832     RtlLeaveCriticalSection( &csVirtual );
1833
1834 done:
1835     wine_server_release_fd( handle, unix_handle );
1836     return res;
1837 }
1838
1839
1840 /***********************************************************************
1841  *             NtUnmapViewOfSection   (NTDLL.@)
1842  *             ZwUnmapViewOfSection   (NTDLL.@)
1843  */
1844 NTSTATUS WINAPI NtUnmapViewOfSection( HANDLE process, PVOID addr )
1845 {
1846     FILE_VIEW *view;
1847     NTSTATUS status = STATUS_INVALID_PARAMETER;
1848     void *base = ROUND_ADDR( addr, page_mask );
1849
1850     if (!is_current_process( process ))
1851     {
1852         ERR("Unsupported on other process\n");
1853         return STATUS_ACCESS_DENIED;
1854     }
1855     RtlEnterCriticalSection( &csVirtual );
1856     if ((view = VIRTUAL_FindView( base )) && (base == view->base))
1857     {
1858         delete_view( view );
1859         status = STATUS_SUCCESS;
1860     }
1861     RtlLeaveCriticalSection( &csVirtual );
1862     return status;
1863 }
1864
1865
1866 /***********************************************************************
1867  *             NtFlushVirtualMemory   (NTDLL.@)
1868  *             ZwFlushVirtualMemory   (NTDLL.@)
1869  */
1870 NTSTATUS WINAPI NtFlushVirtualMemory( HANDLE process, LPCVOID *addr_ptr,
1871                                       SIZE_T *size_ptr, ULONG unknown )
1872 {
1873     FILE_VIEW *view;
1874     NTSTATUS status = STATUS_SUCCESS;
1875     void *addr = ROUND_ADDR( *addr_ptr, page_mask );
1876
1877     if (!is_current_process( process ))
1878     {
1879         ERR("Unsupported on other process\n");
1880         return STATUS_ACCESS_DENIED;
1881     }
1882     RtlEnterCriticalSection( &csVirtual );
1883     if (!(view = VIRTUAL_FindView( addr ))) status = STATUS_INVALID_PARAMETER;
1884     else
1885     {
1886         if (!*size_ptr) *size_ptr = view->size;
1887         *addr_ptr = addr;
1888         if (msync( addr, *size_ptr, MS_SYNC )) status = STATUS_NOT_MAPPED_DATA;
1889     }
1890     RtlLeaveCriticalSection( &csVirtual );
1891     return status;
1892 }
1893
1894
1895 /***********************************************************************
1896  *             NtReadVirtualMemory   (NTDLL.@)
1897  *             ZwReadVirtualMemory   (NTDLL.@)
1898  */
1899 NTSTATUS WINAPI NtReadVirtualMemory( HANDLE process, const void *addr, void *buffer,
1900                                      SIZE_T size, SIZE_T *bytes_read )
1901 {
1902     NTSTATUS status;
1903
1904     SERVER_START_REQ( read_process_memory )
1905     {
1906         req->handle = process;
1907         req->addr   = (void *)addr;
1908         wine_server_set_reply( req, buffer, size );
1909         if ((status = wine_server_call( req ))) size = 0;
1910     }
1911     SERVER_END_REQ;
1912     if (bytes_read) *bytes_read = size;
1913     return status;
1914 }
1915
1916
1917 /***********************************************************************
1918  *             NtWriteVirtualMemory   (NTDLL.@)
1919  *             ZwWriteVirtualMemory   (NTDLL.@)
1920  */
1921 NTSTATUS WINAPI NtWriteVirtualMemory( HANDLE process, void *addr, const void *buffer,
1922                                       SIZE_T size, SIZE_T *bytes_written )
1923 {
1924     static const unsigned int zero;
1925     SIZE_T first_offset, last_offset, first_mask, last_mask;
1926     NTSTATUS status;
1927
1928     if (!size) return STATUS_INVALID_PARAMETER;
1929
1930     /* compute the mask for the first int */
1931     first_mask = ~0;
1932     first_offset = (ULONG_PTR)addr % sizeof(int);
1933     memset( &first_mask, 0, first_offset );
1934
1935     /* compute the mask for the last int */
1936     last_offset = (size + first_offset) % sizeof(int);
1937     last_mask = 0;
1938     memset( &last_mask, 0xff, last_offset ? last_offset : sizeof(int) );
1939
1940     SERVER_START_REQ( write_process_memory )
1941     {
1942         req->handle     = process;
1943         req->addr       = (char *)addr - first_offset;
1944         req->first_mask = first_mask;
1945         req->last_mask  = last_mask;
1946         if (first_offset) wine_server_add_data( req, &zero, first_offset );
1947         wine_server_add_data( req, buffer, size );
1948         if (last_offset) wine_server_add_data( req, &zero, sizeof(int) - last_offset );
1949
1950         if ((status = wine_server_call( req ))) size = 0;
1951     }
1952     SERVER_END_REQ;
1953     if (bytes_written) *bytes_written = size;
1954     return status;
1955 }