DEBUG_cmp_sym: micro optimization/cleanup.
[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 <stdlib.h>
34 #include <stdio.h>
35 #include <string.h>
36 #include <sys/types.h>
37 #ifdef HAVE_SYS_MMAN_H
38 #include <sys/mman.h>
39 #endif
40
41 #define NONAMELESSUNION
42 #define NONAMELESSSTRUCT
43 #include "ntstatus.h"
44 #include "thread.h"
45 #include "winternl.h"
46 #include "global.h"
47 #include "wine/library.h"
48 #include "wine/server.h"
49 #include "wine/debug.h"
50
51 WINE_DEFAULT_DEBUG_CHANNEL(virtual);
52 WINE_DECLARE_DEBUG_CHANNEL(module);
53
54 #ifndef MS_SYNC
55 #define MS_SYNC 0
56 #endif
57
58 /* File view */
59 typedef struct _FV
60 {
61     struct _FV   *next;        /* Next view */
62     struct _FV   *prev;        /* Prev view */
63     void         *base;        /* Base address */
64     UINT          size;        /* Size in bytes */
65     UINT          flags;       /* Allocation flags */
66     HANDLE        mapping;     /* Handle to the file mapping */
67     HANDLERPROC   handlerProc; /* Fault handler */
68     LPVOID        handlerArg;  /* Fault handler argument */
69     BYTE          protect;     /* Protection for all pages at allocation time */
70     BYTE          prot[1];     /* Protection byte for each page */
71 } FILE_VIEW;
72
73 /* Per-view flags */
74 #define VFLAG_SYSTEM     0x01
75 #define VFLAG_VALLOC     0x02  /* allocated by VirtualAlloc */
76
77 /* Conversion from VPROT_* to Win32 flags */
78 static const BYTE VIRTUAL_Win32Flags[16] =
79 {
80     PAGE_NOACCESS,              /* 0 */
81     PAGE_READONLY,              /* READ */
82     PAGE_READWRITE,             /* WRITE */
83     PAGE_READWRITE,             /* READ | WRITE */
84     PAGE_EXECUTE,               /* EXEC */
85     PAGE_EXECUTE_READ,          /* READ | EXEC */
86     PAGE_EXECUTE_READWRITE,     /* WRITE | EXEC */
87     PAGE_EXECUTE_READWRITE,     /* READ | WRITE | EXEC */
88     PAGE_WRITECOPY,             /* WRITECOPY */
89     PAGE_WRITECOPY,             /* READ | WRITECOPY */
90     PAGE_WRITECOPY,             /* WRITE | WRITECOPY */
91     PAGE_WRITECOPY,             /* READ | WRITE | WRITECOPY */
92     PAGE_EXECUTE_WRITECOPY,     /* EXEC | WRITECOPY */
93     PAGE_EXECUTE_WRITECOPY,     /* READ | EXEC | WRITECOPY */
94     PAGE_EXECUTE_WRITECOPY,     /* WRITE | EXEC | WRITECOPY */
95     PAGE_EXECUTE_WRITECOPY      /* READ | WRITE | EXEC | WRITECOPY */
96 };
97
98
99 static FILE_VIEW *VIRTUAL_FirstView;
100
101 static CRITICAL_SECTION csVirtual;
102 static CRITICAL_SECTION_DEBUG critsect_debug =
103 {
104     0, 0, &csVirtual,
105     { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
106       0, 0, { 0, (DWORD)(__FILE__ ": csVirtual") }
107 };
108 static CRITICAL_SECTION csVirtual = { &critsect_debug, -1, 0, 0, 0, 0 };
109
110 #ifdef __i386__
111 /* These are always the same on an i386, and it will be faster this way */
112 # define page_mask  0xfff
113 # define page_shift 12
114 # define page_size  0x1000
115 /* Note: ADDRESS_SPACE_LIMIT is a Windows limit, you cannot change it.
116  * If you are on Solaris you need to find a way to avoid having the system
117  * allocate things above 0xc000000. Don't touch that define.
118  */
119 # define ADDRESS_SPACE_LIMIT  ((void *)0xc0000000)  /* top of the user address space */
120 #else
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 #endif  /* __i386__ */
126 #define granularity_mask 0xffff  /* Allocation granularity (usually 64k) */
127
128 #define ROUND_ADDR(addr,mask) \
129    ((void *)((UINT_PTR)(addr) & ~(mask)))
130
131 #define ROUND_SIZE(addr,size) \
132    (((UINT)(size) + ((UINT_PTR)(addr) & page_mask) + page_mask) & ~page_mask)
133
134 #define VIRTUAL_DEBUG_DUMP_VIEW(view) \
135    if (!TRACE_ON(virtual)); else VIRTUAL_DumpView(view)
136
137 static LPVOID VIRTUAL_mmap( int fd, LPVOID start, DWORD size, DWORD offset_low,
138                             DWORD offset_high, int prot, int flags, BOOL *removable );
139
140
141 /***********************************************************************
142  *           VIRTUAL_GetProtStr
143  */
144 static const char *VIRTUAL_GetProtStr( BYTE prot )
145 {
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_WRITE) ?
151                     ((prot & VPROT_WRITECOPY) ? 'w' : '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     FILE_VIEW *view;
198     DPRINTF( "\nDump of all virtual memory views:\n\n" );
199     RtlEnterCriticalSection(&csVirtual);
200     view = VIRTUAL_FirstView;
201     while (view)
202     {
203         VIRTUAL_DumpView( view );
204         view = view->next;
205     }
206     RtlLeaveCriticalSection(&csVirtual);
207 }
208
209
210 /***********************************************************************
211  *           VIRTUAL_FindView
212  *
213  * Find the view containing a given address.
214  *
215  * RETURNS
216  *      View: Success
217  *      NULL: Failure
218  */
219 static FILE_VIEW *VIRTUAL_FindView( const void *addr ) /* [in] Address */
220 {
221     FILE_VIEW *view;
222
223     RtlEnterCriticalSection(&csVirtual);
224     view = VIRTUAL_FirstView;
225     while (view)
226     {
227         if (view->base > addr)
228         {
229             view = NULL;
230             break;
231         }
232         if ((char*)view->base + view->size > (char*)addr) break;
233         view = view->next;
234     }
235     RtlLeaveCriticalSection(&csVirtual);
236     return view;
237 }
238
239
240 /***********************************************************************
241  *           VIRTUAL_CreateView
242  *
243  * Create a new view and add it in the linked list.
244  */
245 static FILE_VIEW *VIRTUAL_CreateView( void *base, UINT size, UINT flags,
246                                       BYTE vprot, HANDLE mapping )
247 {
248     FILE_VIEW *view, *prev;
249
250     /* Create the view structure */
251
252     assert( !((unsigned int)base & page_mask) );
253     assert( !(size & page_mask) );
254     size >>= page_shift;
255     if (!(view = (FILE_VIEW *)malloc( sizeof(*view) + size - 1 ))) return NULL;
256     view->base    = base;
257     view->size    = size << page_shift;
258     view->flags   = flags;
259     view->mapping = mapping;
260     view->protect = vprot;
261     view->handlerProc = NULL;
262     memset( view->prot, vprot, size );
263
264     /* Duplicate the mapping handle */
265
266     if (view->mapping &&
267         NtDuplicateObject( GetCurrentProcess(), view->mapping,
268                            GetCurrentProcess(), &view->mapping,
269                            0, 0, DUPLICATE_SAME_ACCESS ))
270     {
271         free( view );
272         return NULL;
273     }
274
275     /* Insert it in the linked list */
276
277     RtlEnterCriticalSection(&csVirtual);
278     if (!VIRTUAL_FirstView || (VIRTUAL_FirstView->base > base))
279     {
280         view->next = VIRTUAL_FirstView;
281         view->prev = NULL;
282         if (view->next) view->next->prev = view;
283         VIRTUAL_FirstView = view;
284     }
285     else
286     {
287         prev = VIRTUAL_FirstView;
288         while (prev->next && (prev->next->base < base)) prev = prev->next;
289         view->next = prev->next;
290         view->prev = prev;
291         if (view->next) view->next->prev = view;
292         prev->next  = view;
293     }
294     RtlLeaveCriticalSection(&csVirtual);
295     VIRTUAL_DEBUG_DUMP_VIEW( view );
296     return view;
297 }
298
299
300 /***********************************************************************
301  *           VIRTUAL_DeleteView
302  * Deletes a view.
303  *
304  * RETURNS
305  *      None
306  */
307 static void VIRTUAL_DeleteView( FILE_VIEW *view ) /* [in] View */
308 {
309     if (!(view->flags & VFLAG_SYSTEM))
310         munmap( (void *)view->base, view->size );
311     RtlEnterCriticalSection(&csVirtual);
312     if (view->next) view->next->prev = view->prev;
313     if (view->prev) view->prev->next = view->next;
314     else VIRTUAL_FirstView = view->next;
315     RtlLeaveCriticalSection(&csVirtual);
316     if (view->mapping) NtClose( view->mapping );
317     free( view );
318 }
319
320
321 /***********************************************************************
322  *           VIRTUAL_GetUnixProt
323  *
324  * Convert page protections to protection for mmap/mprotect.
325  */
326 static int VIRTUAL_GetUnixProt( BYTE vprot )
327 {
328     int prot = 0;
329     if ((vprot & VPROT_COMMITTED) && !(vprot & VPROT_GUARD))
330     {
331         if (vprot & VPROT_READ) prot |= PROT_READ;
332         if (vprot & VPROT_WRITE) prot |= PROT_WRITE;
333         if (vprot & VPROT_WRITECOPY) prot |= PROT_WRITE;
334         if (vprot & VPROT_EXEC) prot |= PROT_EXEC;
335     }
336     return prot;
337 }
338
339
340 /***********************************************************************
341  *           VIRTUAL_GetWin32Prot
342  *
343  * Convert page protections to Win32 flags.
344  *
345  * RETURNS
346  *      None
347  */
348 static void VIRTUAL_GetWin32Prot(
349             BYTE vprot,     /* [in] Page protection flags */
350             DWORD *protect, /* [out] Location to store Win32 protection flags */
351             DWORD *state )  /* [out] Location to store mem state flag */
352 {
353     if (protect) {
354         *protect = VIRTUAL_Win32Flags[vprot & 0x0f];
355 /*      if (vprot & VPROT_GUARD) *protect |= PAGE_GUARD;*/
356         if (vprot & VPROT_NOCACHE) *protect |= PAGE_NOCACHE;
357
358         if (vprot & VPROT_GUARD) *protect = PAGE_NOACCESS;
359     }
360
361     if (state) *state = (vprot & VPROT_COMMITTED) ? MEM_COMMIT : MEM_RESERVE;
362 }
363
364
365 /***********************************************************************
366  *           VIRTUAL_GetProt
367  *
368  * Build page protections from Win32 flags.
369  *
370  * RETURNS
371  *      Value of page protection flags
372  */
373 static BYTE VIRTUAL_GetProt( DWORD protect )  /* [in] Win32 protection flags */
374 {
375     BYTE vprot;
376
377     switch(protect & 0xff)
378     {
379     case PAGE_READONLY:
380         vprot = VPROT_READ;
381         break;
382     case PAGE_READWRITE:
383         vprot = VPROT_READ | VPROT_WRITE;
384         break;
385     case PAGE_WRITECOPY:
386         /* MSDN CreateFileMapping() states that if PAGE_WRITECOPY is given,
387          * that the hFile must have been opened with GENERIC_READ and
388          * GENERIC_WRITE access.  This is WRONG as tests show that you
389          * only need GENERIC_READ access (at least for Win9x,
390          * FIXME: what about NT?).  Thus, we don't put VPROT_WRITE in
391          * PAGE_WRITECOPY and PAGE_EXECUTE_WRITECOPY.
392          */
393         vprot = VPROT_READ | VPROT_WRITECOPY;
394         break;
395     case PAGE_EXECUTE:
396         vprot = VPROT_EXEC;
397         break;
398     case PAGE_EXECUTE_READ:
399         vprot = VPROT_EXEC | VPROT_READ;
400         break;
401     case PAGE_EXECUTE_READWRITE:
402         vprot = VPROT_EXEC | VPROT_READ | VPROT_WRITE;
403         break;
404     case PAGE_EXECUTE_WRITECOPY:
405         /* See comment for PAGE_WRITECOPY above */
406         vprot = VPROT_EXEC | VPROT_READ | VPROT_WRITECOPY;
407         break;
408     case PAGE_NOACCESS:
409     default:
410         vprot = 0;
411         break;
412     }
413     if (protect & PAGE_GUARD) vprot |= VPROT_GUARD;
414     if (protect & PAGE_NOCACHE) vprot |= VPROT_NOCACHE;
415     return vprot;
416 }
417
418
419 /***********************************************************************
420  *           VIRTUAL_SetProt
421  *
422  * Change the protection of a range of pages.
423  *
424  * RETURNS
425  *      TRUE: Success
426  *      FALSE: Failure
427  */
428 static BOOL VIRTUAL_SetProt( FILE_VIEW *view, /* [in] Pointer to view */
429                              void *base,      /* [in] Starting address */
430                              UINT size,       /* [in] Size in bytes */
431                              BYTE vprot )     /* [in] Protections to use */
432 {
433     TRACE("%p-%p %s\n",
434           base, (char *)base + size - 1, VIRTUAL_GetProtStr( vprot ) );
435
436     if (mprotect( base, size, VIRTUAL_GetUnixProt(vprot) ))
437         return FALSE;  /* FIXME: last error */
438
439     memset( view->prot + (((char *)base - (char *)view->base) >> page_shift),
440             vprot, size >> page_shift );
441     VIRTUAL_DEBUG_DUMP_VIEW( view );
442     return TRUE;
443 }
444
445
446 /***********************************************************************
447  *           anon_mmap_aligned
448  *
449  * Create an anonymous mapping aligned to the allocation granularity.
450  */
451 static NTSTATUS anon_mmap_aligned( void **addr, unsigned int size, int prot, int flags )
452 {
453     void *ptr, *base = *addr;
454     unsigned int view_size = size + (base ? 0 : granularity_mask + 1);
455
456     if ((ptr = wine_anon_mmap( base, view_size, prot, flags )) == (void *)-1)
457     {
458         if (errno == ENOMEM) return STATUS_NO_MEMORY;
459         return STATUS_INVALID_PARAMETER;
460     }
461
462     if (!base)
463     {
464         /* Release the extra memory while keeping the range
465          * starting on the granularity boundary. */
466         if ((unsigned int)ptr & granularity_mask)
467         {
468             unsigned int extra = granularity_mask + 1 - ((unsigned int)ptr & granularity_mask);
469             munmap( ptr, extra );
470             ptr = (char *)ptr + extra;
471             view_size -= extra;
472         }
473         if (view_size > size)
474             munmap( (char *)ptr + size, view_size - size );
475     }
476     else if (ptr != base)
477     {
478         /* We couldn't get the address we wanted */
479         munmap( ptr, view_size );
480         return STATUS_CONFLICTING_ADDRESSES;
481     }
482     *addr = ptr;
483     return STATUS_SUCCESS;
484 }
485
486
487 /***********************************************************************
488  *           do_relocations
489  *
490  * Apply the relocations to a mapped PE image
491  */
492 static int do_relocations( char *base, const IMAGE_DATA_DIRECTORY *dir,
493                            int delta, DWORD total_size )
494 {
495     IMAGE_BASE_RELOCATION *rel;
496
497     TRACE_(module)( "relocating from %p-%p to %p-%p\n",
498                     base - delta, base - delta + total_size, base, base + total_size );
499
500     for (rel = (IMAGE_BASE_RELOCATION *)(base + dir->VirtualAddress);
501          ((char *)rel < base + dir->VirtualAddress + dir->Size) && rel->SizeOfBlock;
502          rel = (IMAGE_BASE_RELOCATION*)((char*)rel + rel->SizeOfBlock) )
503     {
504         char *page = base + rel->VirtualAddress;
505         WORD *TypeOffset = (WORD *)(rel + 1);
506         int i, count = (rel->SizeOfBlock - sizeof(*rel)) / sizeof(*TypeOffset);
507
508         if (!count) continue;
509
510         /* sanity checks */
511         if ((char *)rel + rel->SizeOfBlock > base + dir->VirtualAddress + dir->Size ||
512             page > base + total_size)
513         {
514             ERR_(module)("invalid relocation %p,%lx,%ld at %p,%lx,%lx\n",
515                          rel, rel->VirtualAddress, rel->SizeOfBlock,
516                          base, dir->VirtualAddress, dir->Size );
517             return 0;
518         }
519
520         TRACE_(module)("%ld relocations for page %lx\n", rel->SizeOfBlock, rel->VirtualAddress);
521
522         /* patching in reverse order */
523         for (i = 0 ; i < count; i++)
524         {
525             int offset = TypeOffset[i] & 0xFFF;
526             int type = TypeOffset[i] >> 12;
527             switch(type)
528             {
529             case IMAGE_REL_BASED_ABSOLUTE:
530                 break;
531             case IMAGE_REL_BASED_HIGH:
532                 *(short*)(page+offset) += HIWORD(delta);
533                 break;
534             case IMAGE_REL_BASED_LOW:
535                 *(short*)(page+offset) += LOWORD(delta);
536                 break;
537             case IMAGE_REL_BASED_HIGHLOW:
538                 *(int*)(page+offset) += delta;
539                 /* FIXME: if this is an exported address, fire up enhanced logic */
540                 break;
541             default:
542                 FIXME_(module)("Unknown/unsupported fixup type %d.\n", type);
543                 break;
544             }
545         }
546     }
547     return 1;
548 }
549
550
551 /***********************************************************************
552  *           map_image
553  *
554  * Map an executable (PE format) image into memory.
555  */
556 static NTSTATUS map_image( HANDLE hmapping, int fd, char *base, DWORD total_size,
557                            DWORD header_size, int shared_fd, DWORD shared_size,
558                            BOOL removable, PVOID *addr_ptr )
559 {
560     IMAGE_DOS_HEADER *dos;
561     IMAGE_NT_HEADERS *nt;
562     IMAGE_SECTION_HEADER *sec;
563     IMAGE_DATA_DIRECTORY *imports;
564     NTSTATUS status = STATUS_INVALID_IMAGE_FORMAT;  /* generic error (FIXME) */
565     int i, pos;
566     FILE_VIEW *view;
567     char *ptr;
568
569     /* zero-map the whole range */
570
571     if (base < (char *)0x110000 ||  /* make sure the DOS area remains free */
572         (ptr = wine_anon_mmap( base, total_size,
573                                PROT_READ | PROT_WRITE | PROT_EXEC, 0 )) == (char *)-1)
574     {
575         ptr = wine_anon_mmap( NULL, total_size,
576                             PROT_READ | PROT_WRITE | PROT_EXEC, 0 );
577         if (ptr == (char *)-1)
578         {
579             ERR_(module)("Not enough memory for module (%ld bytes)\n", total_size);
580             goto error;
581         }
582     }
583     TRACE_(module)( "mapped PE file at %p-%p\n", ptr, ptr + total_size );
584
585     /* map the header */
586
587     if (VIRTUAL_mmap( fd, ptr, header_size, 0, 0, PROT_READ,
588                       MAP_PRIVATE | MAP_FIXED, &removable ) == (char *)-1) goto error;
589     dos = (IMAGE_DOS_HEADER *)ptr;
590     nt = (IMAGE_NT_HEADERS *)(ptr + dos->e_lfanew);
591     if ((char *)(nt + 1) > ptr + header_size) goto error;
592
593     sec = (IMAGE_SECTION_HEADER*)((char*)&nt->OptionalHeader+nt->FileHeader.SizeOfOptionalHeader);
594     if ((char *)(sec + nt->FileHeader.NumberOfSections) > ptr + header_size) goto error;
595
596     imports = nt->OptionalHeader.DataDirectory + IMAGE_DIRECTORY_ENTRY_IMPORT;
597     if (!imports->Size || !imports->VirtualAddress) imports = NULL;
598
599     /* check the architecture */
600
601     if (nt->FileHeader.Machine != IMAGE_FILE_MACHINE_I386)
602     {
603         MESSAGE("Trying to load PE image for unsupported architecture (");
604         switch (nt->FileHeader.Machine)
605         {
606         case IMAGE_FILE_MACHINE_UNKNOWN: MESSAGE("Unknown"); break;
607         case IMAGE_FILE_MACHINE_I860:    MESSAGE("I860"); break;
608         case IMAGE_FILE_MACHINE_R3000:   MESSAGE("R3000"); break;
609         case IMAGE_FILE_MACHINE_R4000:   MESSAGE("R4000"); break;
610         case IMAGE_FILE_MACHINE_R10000:  MESSAGE("R10000"); break;
611         case IMAGE_FILE_MACHINE_ALPHA:   MESSAGE("Alpha"); break;
612         case IMAGE_FILE_MACHINE_POWERPC: MESSAGE("PowerPC"); break;
613         default: MESSAGE("Unknown-%04x", nt->FileHeader.Machine); break;
614         }
615         MESSAGE(")\n");
616         goto error;
617     }
618
619     /* map all the sections */
620
621     for (i = pos = 0; i < nt->FileHeader.NumberOfSections; i++, sec++)
622     {
623         DWORD size;
624
625         /* a few sanity checks */
626         size = sec->VirtualAddress + ROUND_SIZE( sec->VirtualAddress, sec->Misc.VirtualSize );
627         if (sec->VirtualAddress > total_size || size > total_size || size < sec->VirtualAddress)
628         {
629             ERR_(module)( "Section %.8s too large (%lx+%lx/%lx)\n",
630                           sec->Name, sec->VirtualAddress, sec->Misc.VirtualSize, total_size );
631             goto error;
632         }
633
634         if ((sec->Characteristics & IMAGE_SCN_MEM_SHARED) &&
635             (sec->Characteristics & IMAGE_SCN_MEM_WRITE))
636         {
637             size = ROUND_SIZE( 0, sec->Misc.VirtualSize );
638             TRACE_(module)( "mapping shared section %.8s at %p off %lx (%x) size %lx (%lx) flags %lx\n",
639                           sec->Name, ptr + sec->VirtualAddress,
640                           sec->PointerToRawData, pos, sec->SizeOfRawData,
641                           size, sec->Characteristics );
642             if (VIRTUAL_mmap( shared_fd, ptr + sec->VirtualAddress, size,
643                               pos, 0, PROT_READ|PROT_WRITE|PROT_EXEC,
644                               MAP_SHARED|MAP_FIXED, NULL ) == (void *)-1)
645             {
646                 ERR_(module)( "Could not map shared section %.8s\n", sec->Name );
647                 goto error;
648             }
649
650             /* check if the import directory falls inside this section */
651             if (imports && imports->VirtualAddress >= sec->VirtualAddress &&
652                 imports->VirtualAddress < sec->VirtualAddress + size)
653             {
654                 UINT_PTR base = imports->VirtualAddress & ~page_mask;
655                 UINT_PTR end = base + ROUND_SIZE( imports->VirtualAddress, imports->Size );
656                 if (end > sec->VirtualAddress + size) end = sec->VirtualAddress + size;
657                 if (end > base) VIRTUAL_mmap( shared_fd, ptr + base, end - base,
658                                               pos + (base - sec->VirtualAddress), 0,
659                                               PROT_READ|PROT_WRITE|PROT_EXEC,
660                                               MAP_PRIVATE|MAP_FIXED, NULL );
661             }
662             pos += size;
663             continue;
664         }
665
666         TRACE_(module)( "mapping section %.8s at %p off %lx size %lx flags %lx\n",
667                         sec->Name, ptr + sec->VirtualAddress,
668                         sec->PointerToRawData, sec->SizeOfRawData,
669                         sec->Characteristics );
670
671         if ((sec->Characteristics & IMAGE_SCN_CNT_UNINITIALIZED_DATA) &&
672             !(sec->Characteristics & IMAGE_SCN_CNT_INITIALIZED_DATA)) continue;
673         if (!sec->PointerToRawData || !sec->SizeOfRawData) continue;
674
675         /* Note: if the section is not aligned properly VIRTUAL_mmap will magically
676          *       fall back to read(), so we don't need to check anything here.
677          */
678         if (VIRTUAL_mmap( fd, ptr + sec->VirtualAddress, sec->SizeOfRawData,
679                           sec->PointerToRawData, 0, PROT_READ|PROT_WRITE|PROT_EXEC,
680                           MAP_PRIVATE | MAP_FIXED, &removable ) == (void *)-1)
681         {
682             ERR_(module)( "Could not map section %.8s, file probably truncated\n", sec->Name );
683             goto error;
684         }
685
686         if ((sec->SizeOfRawData < sec->Misc.VirtualSize) && (sec->SizeOfRawData & page_mask))
687         {
688             DWORD end = ROUND_SIZE( 0, sec->SizeOfRawData );
689             if (end > sec->Misc.VirtualSize) end = sec->Misc.VirtualSize;
690             TRACE_(module)("clearing %p - %p\n",
691                            ptr + sec->VirtualAddress + sec->SizeOfRawData,
692                            ptr + sec->VirtualAddress + end );
693             memset( ptr + sec->VirtualAddress + sec->SizeOfRawData, 0,
694                     end - sec->SizeOfRawData );
695         }
696     }
697
698
699     /* perform base relocation, if necessary */
700
701     if (ptr != base)
702     {
703         const IMAGE_DATA_DIRECTORY *relocs;
704
705         relocs = &nt->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_BASERELOC];
706         if (!relocs->VirtualAddress || !relocs->Size)
707         {
708             if (nt->OptionalHeader.ImageBase == 0x400000)
709                 ERR("Standard load address for a Win32 program (0x00400000) not available - security-patched kernel ?\n");
710             else
711                 ERR( "FATAL: Need to relocate module from addr %lx, but there are no relocation records\n",
712                      nt->OptionalHeader.ImageBase );
713             goto error;
714         }
715
716         /* FIXME: If we need to relocate a system DLL (base > 2GB) we should
717          *        really make sure that the *new* base address is also > 2GB.
718          *        Some DLLs really check the MSB of the module handle :-/
719          */
720         if ((nt->OptionalHeader.ImageBase & 0x80000000) && !((DWORD)base & 0x80000000))
721             ERR( "Forced to relocate system DLL (base > 2GB). This is not good.\n" );
722
723         if (!do_relocations( ptr, relocs, ptr - base, total_size ))
724         {
725             goto error;
726         }
727     }
728
729     if (removable) hmapping = 0;  /* don't keep handle open on removable media */
730     if (!(view = VIRTUAL_CreateView( ptr, total_size, 0, VPROT_COMMITTED|VPROT_READ, hmapping )))
731     {
732         status = STATUS_NO_MEMORY;
733         goto error;
734     }
735
736     /* set the image protections */
737
738     sec = (IMAGE_SECTION_HEADER*)((char *)&nt->OptionalHeader+nt->FileHeader.SizeOfOptionalHeader);
739     for (i = 0; i < nt->FileHeader.NumberOfSections; i++, sec++)
740     {
741         DWORD size = ROUND_SIZE( sec->VirtualAddress, sec->Misc.VirtualSize );
742         BYTE vprot = VPROT_COMMITTED;
743         if (sec->Characteristics & IMAGE_SCN_MEM_READ)    vprot |= VPROT_READ;
744         if (sec->Characteristics & IMAGE_SCN_MEM_WRITE)   vprot |= VPROT_WRITE|VPROT_WRITECOPY;
745         if (sec->Characteristics & IMAGE_SCN_MEM_EXECUTE) vprot |= VPROT_EXEC;
746
747         /* make sure the import directory is writable */
748         if (imports && imports->VirtualAddress >= sec->VirtualAddress &&
749             imports->VirtualAddress < sec->VirtualAddress + size)
750             vprot |= VPROT_READ|VPROT_WRITE|VPROT_WRITECOPY;
751
752         VIRTUAL_SetProt( view, ptr + sec->VirtualAddress, size, vprot );
753     }
754
755     close( fd );
756     *addr_ptr = ptr;
757     return STATUS_SUCCESS;
758
759  error:
760     if (ptr != (char *)-1) munmap( ptr, total_size );
761     close( fd );
762     return status;
763 }
764
765
766 /***********************************************************************
767  *           is_current_process
768  *
769  * Check whether a process handle is for the current process.
770  */
771 static BOOL is_current_process( HANDLE handle )
772 {
773     BOOL ret = FALSE;
774
775     if (handle == GetCurrentProcess()) return TRUE;
776     SERVER_START_REQ( get_process_info )
777     {
778         req->handle = handle;
779         if (!wine_server_call( req ))
780             ret = ((DWORD)reply->pid == GetCurrentProcessId());
781     }
782     SERVER_END_REQ;
783     return ret;
784 }
785
786
787 /***********************************************************************
788  *           VIRTUAL_Init
789  */
790 #ifndef page_mask
791 DECL_GLOBAL_CONSTRUCTOR(VIRTUAL_Init)
792 {
793     page_size = getpagesize();
794     page_mask = page_size - 1;
795     /* Make sure we have a power of 2 */
796     assert( !(page_size & page_mask) );
797     page_shift = 0;
798     while ((1 << page_shift) != page_size) page_shift++;
799 }
800 #endif  /* page_mask */
801
802
803 /***********************************************************************
804  *           VIRTUAL_SetFaultHandler
805  */
806 BOOL VIRTUAL_SetFaultHandler( LPCVOID addr, HANDLERPROC proc, LPVOID arg )
807 {
808     FILE_VIEW *view;
809
810     if (!(view = VIRTUAL_FindView( addr ))) return FALSE;
811     view->handlerProc = proc;
812     view->handlerArg  = arg;
813     return TRUE;
814 }
815
816 /***********************************************************************
817  *           VIRTUAL_HandleFault
818  */
819 DWORD VIRTUAL_HandleFault( LPCVOID addr )
820 {
821     FILE_VIEW *view = VIRTUAL_FindView( addr );
822     DWORD ret = EXCEPTION_ACCESS_VIOLATION;
823
824     if (view)
825     {
826         if (view->handlerProc)
827         {
828             if (view->handlerProc(view->handlerArg, addr)) ret = 0;  /* handled */
829         }
830         else
831         {
832             BYTE vprot = view->prot[((char *)addr - (char *)view->base) >> page_shift];
833             void *page = (void *)((UINT_PTR)addr & ~page_mask);
834             char *stack = (char *)NtCurrentTeb()->DeallocationStack + SIGNAL_STACK_SIZE + page_mask + 1;
835             if (vprot & VPROT_GUARD)
836             {
837                 VIRTUAL_SetProt( view, page, page_mask + 1, vprot & ~VPROT_GUARD );
838                 ret = STATUS_GUARD_PAGE_VIOLATION;
839             }
840             /* is it inside the stack guard pages? */
841             if (((char *)addr >= stack) && ((char *)addr < stack + 2*(page_mask+1)))
842                 ret = STATUS_STACK_OVERFLOW;
843         }
844     }
845     return ret;
846 }
847
848
849
850 /***********************************************************************
851  *           unaligned_mmap
852  *
853  * Linux kernels before 2.4.x can support non page-aligned offsets, as
854  * long as the offset is aligned to the filesystem block size. This is
855  * a big performance gain so we want to take advantage of it.
856  *
857  * However, when we use 64-bit file support this doesn't work because
858  * glibc rejects unaligned offsets. Also glibc 2.1.3 mmap64 is broken
859  * in that it rounds unaligned offsets down to a page boundary. For
860  * these reasons we do a direct system call here.
861  */
862 static void *unaligned_mmap( void *addr, size_t length, unsigned int prot,
863                              unsigned int flags, int fd, unsigned int offset_low,
864                              unsigned int offset_high )
865 {
866 #if defined(linux) && defined(__i386__) && defined(__GNUC__)
867     if (!offset_high && (offset_low & page_mask))
868     {
869         int ret;
870
871         struct
872         {
873             void        *addr;
874             unsigned int length;
875             unsigned int prot;
876             unsigned int flags;
877             unsigned int fd;
878             unsigned int offset;
879         } args;
880
881         args.addr   = addr;
882         args.length = length;
883         args.prot   = prot;
884         args.flags  = flags;
885         args.fd     = fd;
886         args.offset = offset_low;
887
888         __asm__ __volatile__("push %%ebx\n\t"
889                              "movl %2,%%ebx\n\t"
890                              "int $0x80\n\t"
891                              "popl %%ebx"
892                              : "=a" (ret)
893                              : "0" (90), /* SYS_mmap */
894                                "g" (&args) );
895         if (ret < 0 && ret > -4096)
896         {
897             errno = -ret;
898             ret = -1;
899         }
900         return (void *)ret;
901     }
902 #endif
903     return mmap( addr, length, prot, flags, fd, ((off_t)offset_high << 32) | offset_low );
904 }
905
906
907 /***********************************************************************
908  *           VIRTUAL_mmap
909  *
910  * Wrapper for mmap() that handles anonymous mappings portably,
911  * and falls back to read if mmap of a file fails.
912  */
913 static LPVOID VIRTUAL_mmap( int fd, LPVOID start, DWORD size,
914                             DWORD offset_low, DWORD offset_high,
915                             int prot, int flags, BOOL *removable )
916 {
917     int pos;
918     LPVOID ret;
919     off_t offset;
920     BOOL is_shared_write = FALSE;
921
922     if (fd == -1) return wine_anon_mmap( start, size, prot, flags );
923
924     if (prot & PROT_WRITE)
925     {
926 #ifdef MAP_SHARED
927         if (flags & MAP_SHARED) is_shared_write = TRUE;
928 #endif
929 #ifdef MAP_PRIVATE
930         if (!(flags & MAP_PRIVATE)) is_shared_write = TRUE;
931 #endif
932     }
933
934     if (removable && *removable)
935     {
936         /* if on removable media, try using read instead of mmap */
937         if (!is_shared_write) goto fake_mmap;
938         *removable = FALSE;
939     }
940
941     if ((ret = unaligned_mmap( start, size, prot, flags, fd,
942                                offset_low, offset_high )) != (LPVOID)-1) return ret;
943
944     /* mmap() failed; if this is because the file offset is not    */
945     /* page-aligned (EINVAL), or because the underlying filesystem */
946     /* does not support mmap() (ENOEXEC,ENODEV), we do it by hand. */
947
948     if ((errno != ENOEXEC) && (errno != EINVAL) && (errno != ENODEV)) return ret;
949     if (is_shared_write) return ret;  /* we cannot fake shared write mappings */
950
951  fake_mmap:
952     /* Reserve the memory with an anonymous mmap */
953     ret = wine_anon_mmap( start, size, PROT_READ | PROT_WRITE, flags );
954     if (ret == (LPVOID)-1) return ret;
955     /* Now read in the file */
956     offset = ((off_t)offset_high << 32) | offset_low;
957     if ((pos = lseek( fd, offset, SEEK_SET )) == -1)
958     {
959         munmap( ret, size );
960         return (LPVOID)-1;
961     }
962     read( fd, ret, size );
963     lseek( fd, pos, SEEK_SET );  /* Restore the file pointer */
964     mprotect( ret, size, prot );  /* Set the right protection */
965     return ret;
966 }
967
968
969 /***********************************************************************
970  *             NtAllocateVirtualMemory   (NTDLL.@)
971  *             ZwAllocateVirtualMemory   (NTDLL.@)
972  */
973 NTSTATUS WINAPI NtAllocateVirtualMemory( HANDLE process, PVOID *ret, PVOID addr,
974                                          ULONG *size_ptr, ULONG type, ULONG protect )
975 {
976     FILE_VIEW *view;
977     void *base;
978     BYTE vprot;
979     DWORD size = *size_ptr;
980
981     if (!is_current_process( process ))
982     {
983         ERR("Unsupported on other process\n");
984         return STATUS_ACCESS_DENIED;
985     }
986
987     TRACE("%p %08lx %lx %08lx\n", addr, size, type, protect );
988
989     /* Round parameters to a page boundary */
990
991     if (size > 0x7fc00000) return STATUS_WORKING_SET_LIMIT_RANGE; /* 2Gb - 4Mb */
992
993     if (addr)
994     {
995         if (type & MEM_RESERVE) /* Round down to 64k boundary */
996             base = ROUND_ADDR( addr, granularity_mask );
997         else
998             base = ROUND_ADDR( addr, page_mask );
999         size = (((UINT_PTR)addr + size + page_mask) & ~page_mask) - (UINT_PTR)base;
1000
1001         /* disallow low 64k, wrap-around and kernel space */
1002         if (((char *)base <= (char *)granularity_mask) ||
1003             ((char *)base + size < (char *)base) ||
1004             (ADDRESS_SPACE_LIMIT && ((char *)base + size > (char *)ADDRESS_SPACE_LIMIT)))
1005             return STATUS_INVALID_PARAMETER;
1006     }
1007     else
1008     {
1009         base = NULL;
1010         size = (size + page_mask) & ~page_mask;
1011     }
1012
1013     if (type & MEM_TOP_DOWN) {
1014         /* FIXME: MEM_TOP_DOWN allocates the largest possible address.
1015          *        Is there _ANY_ way to do it with UNIX mmap()?
1016          */
1017         WARN("MEM_TOP_DOWN ignored\n");
1018         type &= ~MEM_TOP_DOWN;
1019     }
1020
1021     /* Compute the alloc type flags */
1022
1023     if (!(type & (MEM_COMMIT | MEM_RESERVE | MEM_SYSTEM)) ||
1024         (type & ~(MEM_COMMIT | MEM_RESERVE | MEM_SYSTEM)))
1025     {
1026         ERR("called with wrong alloc type flags (%08lx) !\n", type);
1027         return STATUS_INVALID_PARAMETER;
1028     }
1029     if (type & (MEM_COMMIT | MEM_SYSTEM))
1030         vprot = VIRTUAL_GetProt( protect ) | VPROT_COMMITTED;
1031     else vprot = 0;
1032
1033     /* Reserve the memory */
1034
1035     if ((type & MEM_RESERVE) || !base)
1036     {
1037         if (type & MEM_SYSTEM)
1038         {
1039             if (!(view = VIRTUAL_CreateView( base, size, VFLAG_VALLOC | VFLAG_SYSTEM, vprot, 0 )))
1040                 return STATUS_NO_MEMORY;
1041         }
1042         else
1043         {
1044             NTSTATUS res = anon_mmap_aligned( &base, size, VIRTUAL_GetUnixProt( vprot ), 0 );
1045             if (res) return res;
1046
1047             if (!(view = VIRTUAL_CreateView( base, size, VFLAG_VALLOC, vprot, 0 )))
1048             {
1049                 munmap( base, size );
1050                 return STATUS_NO_MEMORY;
1051             }
1052         }
1053     }
1054     else
1055     {
1056         /* Commit the pages */
1057
1058         if (!(view = VIRTUAL_FindView( base )) ||
1059             ((char *)base + size > (char *)view->base + view->size)) return STATUS_NOT_MAPPED_VIEW;
1060
1061         if (!VIRTUAL_SetProt( view, base, size, vprot )) return STATUS_ACCESS_DENIED;
1062     }
1063
1064     *ret = base;
1065     *size_ptr = size;
1066     return STATUS_SUCCESS;
1067 }
1068
1069
1070 /***********************************************************************
1071  *             NtFreeVirtualMemory   (NTDLL.@)
1072  *             ZwFreeVirtualMemory   (NTDLL.@)
1073  */
1074 NTSTATUS WINAPI NtFreeVirtualMemory( HANDLE process, PVOID *addr_ptr, ULONG *size_ptr, ULONG type )
1075 {
1076     FILE_VIEW *view;
1077     char *base;
1078     LPVOID addr = *addr_ptr;
1079     DWORD size = *size_ptr;
1080
1081     if (!is_current_process( process ))
1082     {
1083         ERR("Unsupported on other process\n");
1084         return STATUS_ACCESS_DENIED;
1085     }
1086
1087     TRACE("%p %08lx %lx\n", addr, size, type );
1088
1089     /* Fix the parameters */
1090
1091     size = ROUND_SIZE( addr, size );
1092     base = ROUND_ADDR( addr, page_mask );
1093
1094     if (!(view = VIRTUAL_FindView( base )) ||
1095         (base + size > (char *)view->base + view->size) ||
1096         !(view->flags & VFLAG_VALLOC))
1097         return STATUS_INVALID_PARAMETER;
1098
1099     /* Check the type */
1100
1101     if (type & MEM_SYSTEM)
1102     {
1103         view->flags |= VFLAG_SYSTEM;
1104         type &= ~MEM_SYSTEM;
1105     }
1106
1107     if ((type != MEM_DECOMMIT) && (type != MEM_RELEASE))
1108     {
1109         ERR("called with wrong free type flags (%08lx) !\n", type);
1110         return STATUS_INVALID_PARAMETER;
1111     }
1112
1113     /* Free the pages */
1114
1115     if (type == MEM_RELEASE)
1116     {
1117         if (size || (base != view->base)) return STATUS_INVALID_PARAMETER;
1118         VIRTUAL_DeleteView( view );
1119     }
1120     else
1121     {
1122         /* Decommit the pages by remapping zero-pages instead */
1123
1124         if (wine_anon_mmap( (LPVOID)base, size, VIRTUAL_GetUnixProt(0), MAP_FIXED ) != (LPVOID)base)
1125             ERR( "Could not remap pages, expect trouble\n" );
1126         if (!VIRTUAL_SetProt( view, base, size, 0 )) return STATUS_ACCESS_DENIED;  /* FIXME */
1127     }
1128
1129     *addr_ptr = base;
1130     *size_ptr = size;
1131     return STATUS_SUCCESS;
1132 }
1133
1134
1135 /***********************************************************************
1136  *             NtProtectVirtualMemory   (NTDLL.@)
1137  *             ZwProtectVirtualMemory   (NTDLL.@)
1138  */
1139 NTSTATUS WINAPI NtProtectVirtualMemory( HANDLE process, PVOID *addr_ptr, ULONG *size_ptr,
1140                                         ULONG new_prot, ULONG *old_prot )
1141 {
1142     FILE_VIEW *view;
1143     char *base;
1144     UINT i;
1145     BYTE vprot, *p;
1146     DWORD prot, size = *size_ptr;
1147     LPVOID addr = *addr_ptr;
1148
1149     if (!is_current_process( process ))
1150     {
1151         ERR("Unsupported on other process\n");
1152         return STATUS_ACCESS_DENIED;
1153     }
1154
1155     TRACE("%p %08lx %08lx\n", addr, size, new_prot );
1156
1157     /* Fix the parameters */
1158
1159     size = ROUND_SIZE( addr, size );
1160     base = ROUND_ADDR( addr, page_mask );
1161
1162     if (!(view = VIRTUAL_FindView( base )) ||
1163         (base + size > (char *)view->base + view->size))
1164         return STATUS_INVALID_PARAMETER;
1165
1166     /* Make sure all the pages are committed */
1167
1168     p = view->prot + ((base - (char *)view->base) >> page_shift);
1169     VIRTUAL_GetWin32Prot( *p, &prot, NULL );
1170     for (i = size >> page_shift; i; i--, p++)
1171     {
1172         if (!(*p & VPROT_COMMITTED)) return STATUS_INVALID_PARAMETER;
1173     }
1174
1175     if (old_prot) *old_prot = prot;
1176     vprot = VIRTUAL_GetProt( new_prot ) | VPROT_COMMITTED;
1177     if (!VIRTUAL_SetProt( view, base, size, vprot )) return STATUS_ACCESS_DENIED;
1178
1179     *addr_ptr = base;
1180     *size_ptr = size;
1181     return STATUS_SUCCESS;
1182 }
1183
1184
1185 /***********************************************************************
1186  *             NtQueryVirtualMemory   (NTDLL.@)
1187  *             ZwQueryVirtualMemory   (NTDLL.@)
1188  */
1189 NTSTATUS WINAPI NtQueryVirtualMemory( HANDLE process, LPCVOID addr,
1190                                       MEMORY_INFORMATION_CLASS info_class, PVOID buffer,
1191                                       ULONG len, ULONG *res_len )
1192 {
1193     FILE_VIEW *view;
1194     char *base, *alloc_base = 0;
1195     UINT size = 0;
1196     MEMORY_BASIC_INFORMATION *info = buffer;
1197
1198     if (info_class != MemoryBasicInformation) return STATUS_INVALID_INFO_CLASS;
1199     if (ADDRESS_SPACE_LIMIT && addr >= ADDRESS_SPACE_LIMIT)
1200         return STATUS_WORKING_SET_LIMIT_RANGE;  /* FIXME */
1201
1202     if (!is_current_process( process ))
1203     {
1204         ERR("Unsupported on other process\n");
1205         return STATUS_ACCESS_DENIED;
1206     }
1207
1208     base = ROUND_ADDR( addr, page_mask );
1209
1210     /* Find the view containing the address */
1211
1212     RtlEnterCriticalSection(&csVirtual);
1213     view = VIRTUAL_FirstView;
1214     for (;;)
1215     {
1216         if (!view)
1217         {
1218             size = (char *)ADDRESS_SPACE_LIMIT - alloc_base;
1219             break;
1220         }
1221         if ((char *)view->base > base)
1222         {
1223             size = (char *)view->base - alloc_base;
1224             view = NULL;
1225             break;
1226         }
1227         if ((char *)view->base + view->size > base)
1228         {
1229             alloc_base = view->base;
1230             size = view->size;
1231             break;
1232         }
1233         alloc_base = (char *)view->base + view->size;
1234         view = view->next;
1235     }
1236     RtlLeaveCriticalSection(&csVirtual);
1237
1238     /* Fill the info structure */
1239
1240     if (!view)
1241     {
1242         info->State             = MEM_FREE;
1243         info->Protect           = 0;
1244         info->AllocationProtect = 0;
1245         info->Type              = 0;
1246     }
1247     else
1248     {
1249         BYTE vprot = view->prot[(base - alloc_base) >> page_shift];
1250         VIRTUAL_GetWin32Prot( vprot, &info->Protect, &info->State );
1251         for (size = base - alloc_base; size < view->size; size += page_mask+1)
1252             if (view->prot[size >> page_shift] != vprot) break;
1253         info->AllocationProtect = view->protect;
1254         info->Type              = MEM_PRIVATE;  /* FIXME */
1255     }
1256
1257     info->BaseAddress    = (LPVOID)base;
1258     info->AllocationBase = (LPVOID)alloc_base;
1259     info->RegionSize     = size - (base - alloc_base);
1260     if (res_len) *res_len = sizeof(*info);
1261     return STATUS_SUCCESS;
1262 }
1263
1264
1265 /***********************************************************************
1266  *             NtLockVirtualMemory   (NTDLL.@)
1267  *             ZwLockVirtualMemory   (NTDLL.@)
1268  */
1269 NTSTATUS WINAPI NtLockVirtualMemory( HANDLE process, PVOID *addr, ULONG *size, ULONG unknown )
1270 {
1271     if (!is_current_process( process ))
1272     {
1273         ERR("Unsupported on other process\n");
1274         return STATUS_ACCESS_DENIED;
1275     }
1276     return STATUS_SUCCESS;
1277 }
1278
1279
1280 /***********************************************************************
1281  *             NtUnlockVirtualMemory   (NTDLL.@)
1282  *             ZwUnlockVirtualMemory   (NTDLL.@)
1283  */
1284 NTSTATUS WINAPI NtUnlockVirtualMemory( HANDLE process, PVOID *addr, ULONG *size, ULONG unknown )
1285 {
1286     if (!is_current_process( process ))
1287     {
1288         ERR("Unsupported on other process\n");
1289         return STATUS_ACCESS_DENIED;
1290     }
1291     return STATUS_SUCCESS;
1292 }
1293
1294
1295 /***********************************************************************
1296  *             NtCreateSection   (NTDLL.@)
1297  *             ZwCreateSection   (NTDLL.@)
1298  */
1299 NTSTATUS WINAPI NtCreateSection( HANDLE *handle, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr,
1300                                  const LARGE_INTEGER *size, ULONG protect,
1301                                  ULONG sec_flags, HANDLE file )
1302 {
1303     NTSTATUS ret;
1304     BYTE vprot;
1305     DWORD len = attr->ObjectName ? attr->ObjectName->Length : 0;
1306
1307     /* Check parameters */
1308
1309     if (len > MAX_PATH*sizeof(WCHAR)) return STATUS_NAME_TOO_LONG;
1310
1311     vprot = VIRTUAL_GetProt( protect );
1312     if (sec_flags & SEC_RESERVE)
1313     {
1314         if (file) return STATUS_INVALID_PARAMETER;
1315     }
1316     else vprot |= VPROT_COMMITTED;
1317     if (sec_flags & SEC_NOCACHE) vprot |= VPROT_NOCACHE;
1318     if (sec_flags & SEC_IMAGE) vprot |= VPROT_IMAGE;
1319
1320     /* Create the server object */
1321
1322     SERVER_START_REQ( create_mapping )
1323     {
1324         req->file_handle = file;
1325         req->size_high   = size ? size->s.HighPart : 0;
1326         req->size_low    = size ? size->s.LowPart : 0;
1327         req->protect     = vprot;
1328         req->access      = access;
1329         req->inherit     = (attr->Attributes & OBJ_INHERIT) != 0;
1330         if (len) wine_server_add_data( req, attr->ObjectName->Buffer, len );
1331         ret = wine_server_call( req );
1332         *handle = reply->handle;
1333     }
1334     SERVER_END_REQ;
1335     return ret;
1336 }
1337
1338
1339 /***********************************************************************
1340  *             NtOpenSection   (NTDLL.@)
1341  *             ZwOpenSection   (NTDLL.@)
1342  */
1343 NTSTATUS WINAPI NtOpenSection( HANDLE *handle, ACCESS_MASK access, const OBJECT_ATTRIBUTES *attr )
1344 {
1345     NTSTATUS ret;
1346     DWORD len = attr->ObjectName->Length;
1347
1348     if (len > MAX_PATH*sizeof(WCHAR)) return STATUS_NAME_TOO_LONG;
1349
1350     SERVER_START_REQ( open_mapping )
1351     {
1352         req->access  = access;
1353         req->inherit = (attr->Attributes & OBJ_INHERIT) != 0;
1354         wine_server_add_data( req, attr->ObjectName->Buffer, len );
1355         if (!(ret = wine_server_call( req ))) *handle = reply->handle;
1356     }
1357     SERVER_END_REQ;
1358     return ret;
1359 }
1360
1361
1362 /***********************************************************************
1363  *             NtMapViewOfSection   (NTDLL.@)
1364  *             ZwMapViewOfSection   (NTDLL.@)
1365  */
1366 NTSTATUS WINAPI NtMapViewOfSection( HANDLE handle, HANDLE process, PVOID *addr_ptr, ULONG zero_bits,
1367                                     ULONG commit_size, const LARGE_INTEGER *offset, ULONG *size_ptr,
1368                                     SECTION_INHERIT inherit, ULONG alloc_type, ULONG protect )
1369 {
1370     FILE_VIEW *view;
1371     NTSTATUS res;
1372     UINT size = 0;
1373     int flags = MAP_PRIVATE;
1374     int unix_handle = -1;
1375     int prot;
1376     void *base, *ptr = (void *)-1, *ret;
1377     DWORD size_low, size_high, header_size, shared_size;
1378     HANDLE shared_file;
1379     BOOL removable;
1380
1381     if (!is_current_process( process ))
1382     {
1383         ERR("Unsupported on other process\n");
1384         return STATUS_ACCESS_DENIED;
1385     }
1386
1387     TRACE("handle=%p addr=%p off=%lx%08lx size=%x access=%lx\n",
1388           handle, *addr_ptr, offset->s.HighPart, offset->s.LowPart, size, protect );
1389
1390     /* Check parameters */
1391
1392     if ((offset->s.LowPart & granularity_mask) ||
1393         (*addr_ptr && ((UINT_PTR)*addr_ptr & granularity_mask)))
1394         return STATUS_INVALID_PARAMETER;
1395
1396     SERVER_START_REQ( get_mapping_info )
1397     {
1398         req->handle = handle;
1399         res = wine_server_call( req );
1400         prot        = reply->protect;
1401         base        = reply->base;
1402         size_low    = reply->size_low;
1403         size_high   = reply->size_high;
1404         header_size = reply->header_size;
1405         shared_file = reply->shared_file;
1406         shared_size = reply->shared_size;
1407         removable   = (reply->drive_type == DRIVE_REMOVABLE ||
1408                        reply->drive_type == DRIVE_CDROM);
1409     }
1410     SERVER_END_REQ;
1411     if (res) goto error;
1412
1413     if ((res = wine_server_handle_to_fd( handle, 0, &unix_handle, NULL, NULL ))) goto error;
1414
1415     if (prot & VPROT_IMAGE)
1416     {
1417         int shared_fd = -1;
1418
1419         if (shared_file)
1420         {
1421             if ((res = wine_server_handle_to_fd( shared_file, GENERIC_READ, &shared_fd,
1422                                                  NULL, NULL ))) goto error;
1423             NtClose( shared_file );  /* we no longer need it */
1424         }
1425         res = map_image( handle, unix_handle, base, size_low, header_size,
1426                          shared_fd, shared_size, removable, addr_ptr );
1427         if (shared_fd != -1) close( shared_fd );
1428         if (!res) *size_ptr = size_low;
1429         return res;
1430     }
1431
1432
1433     if (size_high)
1434         ERR("Sizes larger than 4Gb not supported\n");
1435
1436     if ((offset->s.LowPart >= size_low) ||
1437         (*size_ptr > size_low - offset->s.LowPart))
1438     {
1439         res = STATUS_INVALID_PARAMETER;
1440         goto error;
1441     }
1442     if (*size_ptr) size = ROUND_SIZE( offset->s.LowPart, *size_ptr );
1443     else size = size_low - offset->s.LowPart;
1444
1445     switch(protect)
1446     {
1447     case PAGE_NOACCESS:
1448         break;
1449     case PAGE_READWRITE:
1450     case PAGE_EXECUTE_READWRITE:
1451         if (!(prot & VPROT_WRITE))
1452         {
1453             res = STATUS_INVALID_PARAMETER;
1454             goto error;
1455         }
1456         flags = MAP_SHARED;
1457         /* fall through */
1458     case PAGE_READONLY:
1459     case PAGE_WRITECOPY:
1460     case PAGE_EXECUTE:
1461     case PAGE_EXECUTE_READ:
1462     case PAGE_EXECUTE_WRITECOPY:
1463         if (prot & VPROT_READ) break;
1464         /* fall through */
1465     default:
1466         res = STATUS_INVALID_PARAMETER;
1467         goto error;
1468     }
1469
1470     /* FIXME: If a mapping is created with SEC_RESERVE and a process,
1471      * which has a view of this mapping commits some pages, they will
1472      * appear commited in all other processes, which have the same
1473      * view created. Since we don`t support this yet, we create the
1474      * whole mapping commited.
1475      */
1476     prot |= VPROT_COMMITTED;
1477
1478     /* Reserve a properly aligned area */
1479
1480     if ((res = anon_mmap_aligned( addr_ptr, size, PROT_NONE, 0 ))) goto error;
1481     ptr = *addr_ptr;
1482
1483     /* Map the file */
1484
1485     TRACE("handle=%p size=%x offset=%lx\n", handle, size, offset->s.LowPart );
1486
1487     ret = VIRTUAL_mmap( unix_handle, ptr, size, offset->s.LowPart, offset->s.HighPart,
1488                         VIRTUAL_GetUnixProt( prot ), flags | MAP_FIXED, &removable );
1489     if (ret != ptr)
1490     {
1491         ERR( "VIRTUAL_mmap %p %x %lx%08lx failed\n",
1492              ptr, size, offset->s.HighPart, offset->s.LowPart );
1493         res = STATUS_NO_MEMORY;  /* FIXME */
1494         goto error;
1495     }
1496     if (removable) handle = 0;  /* don't keep handle open on removable media */
1497
1498     if (!(view = VIRTUAL_CreateView( ptr, size, 0, prot, handle )))
1499     {
1500         res = STATUS_NO_MEMORY;
1501         goto error;
1502     }
1503     if (unix_handle != -1) close( unix_handle );
1504     *size_ptr = size;
1505     return STATUS_SUCCESS;
1506
1507 error:
1508     if (unix_handle != -1) close( unix_handle );
1509     if (ptr != (void *)-1) munmap( ptr, size );
1510     return res;
1511 }
1512
1513
1514 /***********************************************************************
1515  *             NtUnmapViewOfSection   (NTDLL.@)
1516  *             ZwUnmapViewOfSection   (NTDLL.@)
1517  */
1518 NTSTATUS WINAPI NtUnmapViewOfSection( HANDLE process, PVOID addr )
1519 {
1520     FILE_VIEW *view;
1521     void *base = ROUND_ADDR( addr, page_mask );
1522
1523     if (!is_current_process( process ))
1524     {
1525         ERR("Unsupported on other process\n");
1526         return STATUS_ACCESS_DENIED;
1527     }
1528     if (!(view = VIRTUAL_FindView( base )) || (base != view->base)) return STATUS_INVALID_PARAMETER;
1529     VIRTUAL_DeleteView( view );
1530     return STATUS_SUCCESS;
1531 }
1532
1533
1534 /***********************************************************************
1535  *             NtFlushVirtualMemory   (NTDLL.@)
1536  *             ZwFlushVirtualMemory   (NTDLL.@)
1537  */
1538 NTSTATUS WINAPI NtFlushVirtualMemory( HANDLE process, LPCVOID *addr_ptr,
1539                                       ULONG *size_ptr, ULONG unknown )
1540 {
1541     FILE_VIEW *view;
1542     void *addr = ROUND_ADDR( *addr_ptr, page_mask );
1543
1544     if (!is_current_process( process ))
1545     {
1546         ERR("Unsupported on other process\n");
1547         return STATUS_ACCESS_DENIED;
1548     }
1549     if (!(view = VIRTUAL_FindView( addr ))) return STATUS_INVALID_PARAMETER;
1550     if (!*size_ptr) *size_ptr = view->size;
1551     *addr_ptr = addr;
1552     if (!msync( addr, *size_ptr, MS_SYNC )) return STATUS_SUCCESS;
1553     return STATUS_NOT_MAPPED_DATA;
1554 }
1555
1556
1557 /***********************************************************************
1558  *             NtReadVirtualMemory   (NTDLL.@)
1559  *             ZwReadVirtualMemory   (NTDLL.@)
1560  */
1561 NTSTATUS WINAPI NtReadVirtualMemory( HANDLE process, const void *addr, void *buffer,
1562                                      SIZE_T size, SIZE_T *bytes_read )
1563 {
1564     NTSTATUS status;
1565
1566     SERVER_START_REQ( read_process_memory )
1567     {
1568         req->handle = process;
1569         req->addr   = (void *)addr;
1570         wine_server_set_reply( req, buffer, size );
1571         if ((status = wine_server_call( req ))) size = 0;
1572     }
1573     SERVER_END_REQ;
1574     if (bytes_read) *bytes_read = size;
1575     return status;
1576 }
1577
1578
1579 /***********************************************************************
1580  *             NtWriteVirtualMemory   (NTDLL.@)
1581  *             ZwWriteVirtualMemory   (NTDLL.@)
1582  */
1583 NTSTATUS WINAPI NtWriteVirtualMemory( HANDLE process, void *addr, const void *buffer,
1584                                       SIZE_T size, SIZE_T *bytes_written )
1585 {
1586     static const unsigned int zero;
1587     unsigned int first_offset, last_offset, first_mask, last_mask;
1588     NTSTATUS status;
1589
1590     if (!size) return STATUS_INVALID_PARAMETER;
1591
1592     /* compute the mask for the first int */
1593     first_mask = ~0;
1594     first_offset = (unsigned int)addr % sizeof(int);
1595     memset( &first_mask, 0, first_offset );
1596
1597     /* compute the mask for the last int */
1598     last_offset = (size + first_offset) % sizeof(int);
1599     last_mask = 0;
1600     memset( &last_mask, 0xff, last_offset ? last_offset : sizeof(int) );
1601
1602     SERVER_START_REQ( write_process_memory )
1603     {
1604         req->handle     = process;
1605         req->addr       = (char *)addr - first_offset;
1606         req->first_mask = first_mask;
1607         req->last_mask  = last_mask;
1608         if (first_offset) wine_server_add_data( req, &zero, first_offset );
1609         wine_server_add_data( req, buffer, size );
1610         if (last_offset) wine_server_add_data( req, &zero, sizeof(int) - last_offset );
1611
1612         if ((status = wine_server_call( req ))) size = 0;
1613     }
1614     SERVER_END_REQ;
1615     if (bytes_written) *bytes_written = size;
1616     return status;
1617 }