blob: 5549a64de0f99d8de0c4e34040b08f882e7be681 [file] [log] [blame]
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +00001/*
2 * Server-side file mapping management
3 *
4 * Copyright (C) 1999 Alexandre Julliard
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00005 *
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
Jonathan Ernst360a3f92006-05-18 14:49:52 +020018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +000019 */
20
Francois Gougete5ddd262001-10-14 16:18:52 +000021#include "config.h"
Alexandre Julliard5769d1d2002-04-26 19:05:15 +000022#include "wine/port.h"
Francois Gougete5ddd262001-10-14 16:18:52 +000023
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +000024#include <assert.h>
Alexandre Julliarde37c6e12003-09-05 23:08:26 +000025#include <stdarg.h>
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +000026#include <stdio.h>
27#include <stdlib.h>
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +000028#include <sys/stat.h>
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +000029#include <unistd.h>
30
Ge van Geldorp1a1583a2005-11-28 17:32:54 +010031#include "ntstatus.h"
32#define WIN32_NO_STATUS
Alexandre Julliarde37c6e12003-09-05 23:08:26 +000033#include "windef.h"
Vitaliy Margolena9960002005-10-27 18:30:37 +000034#include "winternl.h"
Alexandre Julliard43c190e1999-05-15 10:48:19 +000035
Alexandre Julliard863637b2003-01-30 00:26:44 +000036#include "file.h"
Alexandre Julliard43c190e1999-05-15 10:48:19 +000037#include "handle.h"
38#include "thread.h"
Alexandre Julliard5bc78081999-06-22 17:26:53 +000039#include "request.h"
Rob Shearman23df4532007-10-25 19:09:54 +010040#include "security.h"
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +000041
Alexandre Julliardcdce50f2008-11-05 12:24:05 +010042/* list of memory ranges, used to store committed info */
43struct ranges
44{
45 unsigned int count;
46 unsigned int max;
47 struct range
48 {
49 file_pos_t start;
50 file_pos_t end;
51 } ranges[1];
52};
53
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +000054struct mapping
55{
Alexandre Julliard84fdfd02001-04-13 22:38:39 +000056 struct object obj; /* object header */
Alexandre Julliard29d97592008-12-17 19:25:49 +010057 mem_size_t size; /* mapping size */
Alexandre Julliard84fdfd02001-04-13 22:38:39 +000058 int protect; /* protection flags */
59 struct file *file; /* file mapped */
60 int header_size; /* size of headers (for PE image mapping) */
Alexandre Julliardd066a9a2008-12-30 14:18:21 +010061 client_ptr_t base; /* default base addr (for PE image mapping) */
Alexandre Julliardcdce50f2008-11-05 12:24:05 +010062 struct ranges *committed; /* list of committed ranges in this mapping */
Alexandre Julliard84fdfd02001-04-13 22:38:39 +000063 struct file *shared_file; /* temp file for shared PE mapping */
Alexandre Julliardbb82cbb2005-07-07 12:04:55 +000064 struct list shared_entry; /* entry in global shared PE mappings list */
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +000065};
66
67static void mapping_dump( struct object *obj, int verbose );
Alexandre Julliard8382eb02007-12-05 18:16:42 +010068static struct object_type *mapping_get_type( struct object *obj );
Alexandre Julliarde66207e2003-02-19 00:33:32 +000069static struct fd *mapping_get_fd( struct object *obj );
Alexandre Julliarda510a7e2005-12-12 16:46:17 +010070static unsigned int mapping_map_access( struct object *obj, unsigned int access );
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +000071static void mapping_destroy( struct object *obj );
72
73static const struct object_ops mapping_ops =
74{
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000075 sizeof(struct mapping), /* size */
76 mapping_dump, /* dump */
Alexandre Julliard8382eb02007-12-05 18:16:42 +010077 mapping_get_type, /* get_type */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000078 no_add_queue, /* add_queue */
79 NULL, /* remove_queue */
80 NULL, /* signaled */
81 NULL, /* satisfied */
Mike McCormackf92fff62005-04-24 17:35:52 +000082 no_signal, /* signal */
Alexandre Julliarde66207e2003-02-19 00:33:32 +000083 mapping_get_fd, /* get_fd */
Alexandre Julliarda510a7e2005-12-12 16:46:17 +010084 mapping_map_access, /* map_access */
Rob Shearmanc1707d82007-10-03 13:10:37 +010085 default_get_sd, /* get_sd */
86 default_set_sd, /* set_sd */
Vitaliy Margolenbaffcb92005-11-22 14:55:42 +000087 no_lookup_name, /* lookup_name */
Alexandre Julliard7e71c1d2007-03-22 11:44:29 +010088 no_open_file, /* open_file */
Alexandre Julliard715d78e2006-11-02 20:52:22 +010089 fd_close_handle, /* close_handle */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000090 mapping_destroy /* destroy */
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +000091};
92
Alexandre Julliardbb82cbb2005-07-07 12:04:55 +000093static struct list shared_list = LIST_INIT(shared_list);
Alexandre Julliard84fdfd02001-04-13 22:38:39 +000094
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +000095#ifdef __i386__
96
97/* These are always the same on an i386, and it will be faster this way */
98# define page_mask 0xfff
99# define page_shift 12
Alexandre Julliard908464d2000-11-01 03:11:12 +0000100# define init_page_size() do { /* nothing */ } while(0)
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000101
102#else /* __i386__ */
103
104static int page_shift, page_mask;
105
106static void init_page_size(void)
107{
108 int page_size;
109# ifdef HAVE_GETPAGESIZE
110 page_size = getpagesize();
111# else
112# ifdef __svr4__
113 page_size = sysconf(_SC_PAGESIZE);
114# else
115# error Cannot get the page size on this platform
116# endif
117# endif
118 page_mask = page_size - 1;
119 /* Make sure we have a power of 2 */
120 assert( !(page_size & page_mask) );
121 page_shift = 0;
122 while ((1 << page_shift) != page_size) page_shift++;
123}
124#endif /* __i386__ */
125
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000126#define ROUND_SIZE(size) (((size) + page_mask) & ~page_mask)
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000127
128
Alexandre Julliard84fdfd02001-04-13 22:38:39 +0000129/* find the shared PE mapping for a given mapping */
130static struct file *get_shared_file( struct mapping *mapping )
131{
132 struct mapping *ptr;
133
Alexandre Julliardbb82cbb2005-07-07 12:04:55 +0000134 LIST_FOR_EACH_ENTRY( ptr, &shared_list, struct mapping, shared_entry )
Alexandre Julliard84fdfd02001-04-13 22:38:39 +0000135 if (is_same_file( ptr->file, mapping->file ))
136 return (struct file *)grab_object( ptr->shared_file );
137 return NULL;
138}
139
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100140/* return the size of the memory mapping and file range of a given section */
141static inline void get_section_sizes( const IMAGE_SECTION_HEADER *sec, size_t *map_size,
142 off_t *file_start, size_t *file_size )
Alexandre Julliard4ebd2fc2005-08-15 14:50:06 +0000143{
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100144 static const unsigned int sector_align = 0x1ff;
Alexandre Julliard4ebd2fc2005-08-15 14:50:06 +0000145
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100146 if (!sec->Misc.VirtualSize) *map_size = ROUND_SIZE( sec->SizeOfRawData );
147 else *map_size = ROUND_SIZE( sec->Misc.VirtualSize );
148
149 *file_start = sec->PointerToRawData & ~sector_align;
150 *file_size = (sec->SizeOfRawData + (sec->PointerToRawData & sector_align) + sector_align) & ~sector_align;
151 if (*file_size > *map_size) *file_size = *map_size;
Alexandre Julliard4ebd2fc2005-08-15 14:50:06 +0000152}
153
Alexandre Julliardcdce50f2008-11-05 12:24:05 +0100154/* add a range to the committed list */
155static void add_committed_range( struct mapping *mapping, file_pos_t start, file_pos_t end )
156{
157 unsigned int i, j;
158 struct range *ranges;
159
160 if (!mapping->committed) return; /* everything committed already */
161
162 for (i = 0, ranges = mapping->committed->ranges; i < mapping->committed->count; i++)
163 {
164 if (ranges[i].start > end) break;
165 if (ranges[i].end < start) continue;
166 if (ranges[i].start > start) ranges[i].start = start; /* extend downwards */
167 if (ranges[i].end < end) /* extend upwards and maybe merge with next */
168 {
169 for (j = i + 1; j < mapping->committed->count; j++)
170 {
171 if (ranges[j].start > end) break;
172 if (ranges[j].end > end) end = ranges[j].end;
173 }
174 if (j > i + 1)
175 {
176 memmove( &ranges[i + 1], &ranges[j], (mapping->committed->count - j) * sizeof(*ranges) );
177 mapping->committed->count -= j - (i + 1);
178 }
179 ranges[i].end = end;
180 }
181 return;
182 }
183
184 /* now add a new range */
185
186 if (mapping->committed->count == mapping->committed->max)
187 {
188 unsigned int new_size = mapping->committed->max * 2;
189 struct ranges *new_ptr = realloc( mapping->committed, offsetof( struct ranges, ranges[new_size] ));
190 if (!new_ptr) return;
191 new_ptr->max = new_size;
192 ranges = new_ptr->ranges;
193 mapping->committed = new_ptr;
194 }
195 memmove( &ranges[i + 1], &ranges[i], (mapping->committed->count - i) * sizeof(*ranges) );
196 ranges[i].start = start;
197 ranges[i].end = end;
198 mapping->committed->count++;
199}
200
201/* find the range containing start and return whether it's committed */
Alexandre Julliard29d97592008-12-17 19:25:49 +0100202static int find_committed_range( struct mapping *mapping, file_pos_t start, mem_size_t *size )
Alexandre Julliardcdce50f2008-11-05 12:24:05 +0100203{
204 unsigned int i;
205 struct range *ranges;
206
207 if (!mapping->committed) /* everything is committed */
208 {
209 *size = mapping->size - start;
210 return 1;
211 }
212 for (i = 0, ranges = mapping->committed->ranges; i < mapping->committed->count; i++)
213 {
214 if (ranges[i].start > start)
215 {
216 *size = ranges[i].start - start;
217 return 0;
218 }
219 if (ranges[i].end > start)
220 {
221 *size = ranges[i].end - start;
222 return 1;
223 }
224 }
225 *size = mapping->size - start;
226 return 0;
227}
228
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000229/* allocate and fill the temp file for a shared PE image mapping */
230static int build_shared_mapping( struct mapping *mapping, int fd,
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000231 IMAGE_SECTION_HEADER *sec, unsigned int nb_sec )
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000232{
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100233 unsigned int i;
Alexandre Julliard29d97592008-12-17 19:25:49 +0100234 mem_size_t total_size;
Alexandre Julliard235532c2007-10-10 14:06:25 +0200235 size_t file_size, map_size, max_size;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000236 off_t shared_pos, read_pos, write_pos;
Alexandre Julliard63411db2000-12-22 21:12:36 +0000237 char *buffer = NULL;
238 int shared_fd;
Andreas Mohr1c99af42000-12-03 04:02:09 +0000239 long toread;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000240
241 /* compute the total size of the shared mapping */
242
243 total_size = max_size = 0;
244 for (i = 0; i < nb_sec; i++)
245 {
246 if ((sec[i].Characteristics & IMAGE_SCN_MEM_SHARED) &&
247 (sec[i].Characteristics & IMAGE_SCN_MEM_WRITE))
248 {
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100249 get_section_sizes( &sec[i], &map_size, &read_pos, &file_size );
250 if (file_size > max_size) max_size = file_size;
251 total_size += map_size;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000252 }
253 }
Alexandre Julliard235532c2007-10-10 14:06:25 +0200254 if (!total_size) return 1; /* nothing to do */
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000255
Alexandre Julliard84fdfd02001-04-13 22:38:39 +0000256 if ((mapping->shared_file = get_shared_file( mapping ))) return 1;
257
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000258 /* create a temp file for the mapping */
259
Alexandre Julliarda510a7e2005-12-12 16:46:17 +0100260 if (!(mapping->shared_file = create_temp_file( FILE_GENERIC_READ|FILE_GENERIC_WRITE ))) return 0;
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000261 if (!grow_file( mapping->shared_file, total_size )) goto error;
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000262 if ((shared_fd = get_file_unix_fd( mapping->shared_file )) == -1) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000263
264 if (!(buffer = malloc( max_size ))) goto error;
265
266 /* copy the shared sections data into the temp file */
267
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000268 shared_pos = 0;
269 for (i = 0; i < nb_sec; i++)
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000270 {
271 if (!(sec[i].Characteristics & IMAGE_SCN_MEM_SHARED)) continue;
272 if (!(sec[i].Characteristics & IMAGE_SCN_MEM_WRITE)) continue;
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100273 get_section_sizes( &sec[i], &map_size, &read_pos, &file_size );
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000274 write_pos = shared_pos;
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100275 shared_pos += map_size;
276 if (!sec[i].PointerToRawData || !file_size) continue;
277 toread = file_size;
Andreas Mohr1c99af42000-12-03 04:02:09 +0000278 while (toread)
279 {
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100280 long res = pread( fd, buffer + file_size - toread, toread, read_pos );
Alexandre Julliard126bbb32007-01-08 21:34:15 +0100281 if (!res && toread < 0x200) /* partial sector at EOF is not an error */
282 {
283 file_size -= toread;
284 break;
285 }
Andreas Mohr1c99af42000-12-03 04:02:09 +0000286 if (res <= 0) goto error;
287 toread -= res;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000288 read_pos += res;
Andreas Mohr1c99af42000-12-03 04:02:09 +0000289 }
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100290 if (pwrite( shared_fd, buffer, file_size, write_pos ) != file_size) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000291 }
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000292 free( buffer );
293 return 1;
294
295 error:
Alexandre Julliardca18f152002-04-20 21:07:24 +0000296 release_object( mapping->shared_file );
297 mapping->shared_file = NULL;
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +0200298 free( buffer );
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000299 return 0;
300}
301
302/* retrieve the mapping parameters for an executable (PE) image */
303static int get_image_params( struct mapping *mapping )
304{
305 IMAGE_DOS_HEADER dos;
306 IMAGE_NT_HEADERS nt;
307 IMAGE_SECTION_HEADER *sec = NULL;
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000308 struct fd *fd;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000309 off_t pos;
Marcus Meissner4b811d92005-10-31 21:03:05 +0000310 int unix_fd, size, toread;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000311
312 /* load the headers */
313
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000314 if (!(fd = mapping_get_fd( &mapping->obj ))) return 0;
Alexandre Julliard964815b2005-08-08 15:11:03 +0000315 if ((unix_fd = get_unix_fd( fd )) == -1) goto error;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000316 if (pread( unix_fd, &dos, sizeof(dos), 0 ) != sizeof(dos)) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000317 if (dos.e_magic != IMAGE_DOS_SIGNATURE) goto error;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000318 pos = dos.e_lfanew;
Dmitry Timoshkov1467bbd2002-08-27 00:34:41 +0000319
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000320 if (pread( unix_fd, &nt.Signature, sizeof(nt.Signature), pos ) != sizeof(nt.Signature))
321 goto error;
322 pos += sizeof(nt.Signature);
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000323 if (nt.Signature != IMAGE_NT_SIGNATURE) goto error;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000324 if (pread( unix_fd, &nt.FileHeader, sizeof(nt.FileHeader), pos ) != sizeof(nt.FileHeader))
325 goto error;
326 pos += sizeof(nt.FileHeader);
Dmitry Timoshkov1467bbd2002-08-27 00:34:41 +0000327 /* zero out Optional header in the case it's not present or partial */
328 memset(&nt.OptionalHeader, 0, sizeof(nt.OptionalHeader));
Marcus Meissner4b811d92005-10-31 21:03:05 +0000329 toread = min( sizeof(nt.OptionalHeader), nt.FileHeader.SizeOfOptionalHeader );
330 if (pread( unix_fd, &nt.OptionalHeader, toread, pos ) != toread) goto error;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000331 pos += nt.FileHeader.SizeOfOptionalHeader;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000332
333 /* load the section headers */
334
335 size = sizeof(*sec) * nt.FileHeader.NumberOfSections;
336 if (!(sec = malloc( size ))) goto error;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000337 if (pread( unix_fd, sec, size, pos ) != size) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000338
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000339 if (!build_shared_mapping( mapping, unix_fd, sec, nt.FileHeader.NumberOfSections )) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000340
Alexandre Julliardbb82cbb2005-07-07 12:04:55 +0000341 if (mapping->shared_file) list_add_head( &shared_list, &mapping->shared_entry );
Alexandre Julliard84fdfd02001-04-13 22:38:39 +0000342
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000343 mapping->size = ROUND_SIZE( nt.OptionalHeader.SizeOfImage );
Alexandre Julliardd066a9a2008-12-30 14:18:21 +0100344 mapping->base = nt.OptionalHeader.ImageBase;
Alexandre Julliard3dc21d32006-12-13 13:06:12 +0100345 mapping->header_size = max( pos + size, nt.OptionalHeader.SizeOfHeaders );
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000346 mapping->protect = VPROT_IMAGE;
347
348 /* sanity check */
Alexandre Julliard3dc21d32006-12-13 13:06:12 +0100349 if (pos + size > mapping->size) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000350
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000351 free( sec );
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000352 release_object( fd );
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000353 return 1;
354
355 error:
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +0200356 free( sec );
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000357 release_object( fd );
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000358 set_error( STATUS_INVALID_FILE_FOR_SECTION );
359 return 0;
360}
361
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000362/* get the size of the unix file associated with the mapping */
Alexandre Julliard29d97592008-12-17 19:25:49 +0100363static inline int get_file_size( struct file *file, mem_size_t *size )
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000364{
365 struct stat st;
Alexandre Julliardd0e4a762003-02-17 01:50:40 +0000366 int unix_fd = get_file_unix_fd( file );
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000367
Alexandre Julliard964815b2005-08-08 15:11:03 +0000368 if (unix_fd == -1 || fstat( unix_fd, &st ) == -1) return 0;
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000369 *size = st.st_size;
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000370 return 1;
371}
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000372
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100373static struct object *create_mapping( struct directory *root, const struct unicode_str *name,
Alexandre Julliard29d97592008-12-17 19:25:49 +0100374 unsigned int attr, mem_size_t size, int protect,
Rob Shearman23df4532007-10-25 19:09:54 +0100375 obj_handle_t handle, const struct security_descriptor *sd )
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000376{
377 struct mapping *mapping;
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000378 int access = 0;
379
380 if (!page_mask) init_page_size();
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000381
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100382 if (!(mapping = create_named_object_dir( root, name, attr, &mapping_ops )))
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000383 return NULL;
Vitaliy Margolen893987b2005-11-21 16:27:03 +0000384 if (get_error() == STATUS_OBJECT_NAME_EXISTS)
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000385 return &mapping->obj; /* Nothing else to do */
386
Rob Shearman23df4532007-10-25 19:09:54 +0100387 if (sd) default_set_sd( &mapping->obj, sd, OWNER_SECURITY_INFORMATION|
388 GROUP_SECURITY_INFORMATION|
389 DACL_SECURITY_INFORMATION|
390 SACL_SECURITY_INFORMATION );
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000391 mapping->header_size = 0;
Alexandre Julliardd066a9a2008-12-30 14:18:21 +0100392 mapping->base = 0;
Alexandre Julliardcdce50f2008-11-05 12:24:05 +0100393 mapping->file = NULL;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000394 mapping->shared_file = NULL;
Alexandre Julliardcdce50f2008-11-05 12:24:05 +0100395 mapping->committed = NULL;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000396
Alexandre Julliarda510a7e2005-12-12 16:46:17 +0100397 if (protect & VPROT_READ) access |= FILE_READ_DATA;
398 if (protect & VPROT_WRITE) access |= FILE_WRITE_DATA;
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000399
Alexandre Julliard8081e5a2001-01-05 04:08:07 +0000400 if (handle)
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000401 {
Alexandre Julliardcdce50f2008-11-05 12:24:05 +0100402 if (!(protect & VPROT_COMMITTED))
403 {
404 set_error( STATUS_INVALID_PARAMETER );
405 goto error;
406 }
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000407 if (!(mapping->file = get_file_obj( current->process, handle, access ))) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000408 if (protect & VPROT_IMAGE)
409 {
410 if (!get_image_params( mapping )) goto error;
411 return &mapping->obj;
412 }
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000413 if (!size)
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000414 {
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000415 if (!get_file_size( mapping->file, &size )) goto error;
416 if (!size)
Mike McCormackdc827692004-01-09 00:34:14 +0000417 {
Alexandre Julliard20175552005-12-12 13:38:43 +0100418 set_error( STATUS_MAPPED_FILE_SIZE_ZERO );
Mike McCormackdc827692004-01-09 00:34:14 +0000419 goto error;
420 }
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000421 }
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000422 else
423 {
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000424 if (!grow_file( mapping->file, size )) goto error;
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000425 }
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000426 }
427 else /* Anonymous mapping (no associated file) */
428 {
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000429 if (!size || (protect & VPROT_IMAGE))
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000430 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000431 set_error( STATUS_INVALID_PARAMETER );
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000432 goto error;
433 }
Alexandre Julliardcdce50f2008-11-05 12:24:05 +0100434 if (!(protect & VPROT_COMMITTED))
435 {
436 if (!(mapping->committed = mem_alloc( offsetof(struct ranges, ranges[8]) ))) goto error;
437 mapping->committed->count = 0;
438 mapping->committed->max = 8;
439 }
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000440 if (!(mapping->file = create_temp_file( access ))) goto error;
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000441 if (!grow_file( mapping->file, size )) goto error;
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000442 }
Alexandre Julliard29d97592008-12-17 19:25:49 +0100443 mapping->size = (size + page_mask) & ~((mem_size_t)page_mask);
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000444 mapping->protect = protect;
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000445 return &mapping->obj;
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000446
447 error:
448 release_object( mapping );
449 return NULL;
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000450}
451
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000452static void mapping_dump( struct object *obj, int verbose )
453{
454 struct mapping *mapping = (struct mapping *)obj;
455 assert( obj->ops == &mapping_ops );
Alexandre Julliardd066a9a2008-12-30 14:18:21 +0100456 fprintf( stderr, "Mapping size=%08x%08x prot=%08x file=%p header_size=%08x base=%08lx "
Alexandre Julliard235532c2007-10-10 14:06:25 +0200457 "shared_file=%p ",
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000458 (unsigned int)(mapping->size >> 32), (unsigned int)mapping->size,
459 mapping->protect, mapping->file, mapping->header_size,
Alexandre Julliardd066a9a2008-12-30 14:18:21 +0100460 (unsigned long)mapping->base, mapping->shared_file );
Alexandre Julliardd16319c1999-11-25 21:30:24 +0000461 dump_object_name( &mapping->obj );
462 fputc( '\n', stderr );
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000463}
464
Alexandre Julliard8382eb02007-12-05 18:16:42 +0100465static struct object_type *mapping_get_type( struct object *obj )
466{
467 static const WCHAR name[] = {'S','e','c','t','i','o','n'};
468 static const struct unicode_str str = { name, sizeof(name) };
469 return get_object_type( &str );
470}
471
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000472static struct fd *mapping_get_fd( struct object *obj )
473{
474 struct mapping *mapping = (struct mapping *)obj;
475 return get_obj_fd( (struct object *)mapping->file );
476}
477
Alexandre Julliarda510a7e2005-12-12 16:46:17 +0100478static unsigned int mapping_map_access( struct object *obj, unsigned int access )
479{
480 if (access & GENERIC_READ) access |= STANDARD_RIGHTS_READ | SECTION_QUERY | SECTION_MAP_READ;
481 if (access & GENERIC_WRITE) access |= STANDARD_RIGHTS_WRITE | SECTION_MAP_WRITE;
482 if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE | SECTION_MAP_EXECUTE;
483 if (access & GENERIC_ALL) access |= SECTION_ALL_ACCESS;
484 return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
485}
486
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000487static void mapping_destroy( struct object *obj )
488{
489 struct mapping *mapping = (struct mapping *)obj;
490 assert( obj->ops == &mapping_ops );
491 if (mapping->file) release_object( mapping->file );
Alexandre Julliard84fdfd02001-04-13 22:38:39 +0000492 if (mapping->shared_file)
493 {
494 release_object( mapping->shared_file );
Alexandre Julliardbb82cbb2005-07-07 12:04:55 +0000495 list_remove( &mapping->shared_entry );
Alexandre Julliard84fdfd02001-04-13 22:38:39 +0000496 }
Alexandre Julliardcdce50f2008-11-05 12:24:05 +0100497 free( mapping->committed );
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000498}
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000499
Alexandre Julliardc76ad351999-11-13 19:49:05 +0000500int get_page_size(void)
501{
502 if (!page_mask) init_page_size();
503 return page_mask + 1;
504}
505
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000506/* create a file mapping */
507DECL_HANDLER(create_mapping)
508{
509 struct object *obj;
Alexandre Julliardead9b062005-11-18 16:31:18 +0000510 struct unicode_str name;
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100511 struct directory *root = NULL;
Rob Shearman23df4532007-10-25 19:09:54 +0100512 const struct object_attributes *objattr = get_req_data();
513 const struct security_descriptor *sd;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000514
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000515 reply->handle = 0;
Rob Shearman23df4532007-10-25 19:09:54 +0100516
517 if (!objattr_is_valid( objattr, get_req_data_size() ))
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100518 return;
519
Rob Shearman23df4532007-10-25 19:09:54 +0100520 sd = objattr->sd_len ? (const struct security_descriptor *)(objattr + 1) : NULL;
Rob Shearmanf98556c2007-10-26 17:01:33 +0100521 objattr_get_name( objattr, &name );
Rob Shearman23df4532007-10-25 19:09:54 +0100522
523 if (objattr->rootdir && !(root = get_directory_obj( current->process, objattr->rootdir, 0 )))
524 return;
525
526 if ((obj = create_mapping( root, &name, req->attributes, req->size, req->protect, req->file_handle, sd )))
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000527 {
Rob Shearman92db6d22007-11-05 14:23:36 +0000528 if (get_error() == STATUS_OBJECT_NAME_EXISTS)
529 reply->handle = alloc_handle( current->process, obj, req->access, req->attributes );
530 else
531 reply->handle = alloc_handle_no_access_check( current->process, obj, req->access, req->attributes );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000532 release_object( obj );
533 }
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100534
535 if (root) release_object( root );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000536}
537
538/* open a handle to a mapping */
539DECL_HANDLER(open_mapping)
540{
Alexandre Julliardead9b062005-11-18 16:31:18 +0000541 struct unicode_str name;
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100542 struct directory *root = NULL;
Alexandre Julliard3764da62005-12-05 12:52:05 +0100543 struct mapping *mapping;
Alexandre Julliardead9b062005-11-18 16:31:18 +0000544
545 get_req_unicode_str( &name );
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100546 if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir, 0 )))
547 return;
548
Alexandre Julliard3764da62005-12-05 12:52:05 +0100549 if ((mapping = open_object_dir( root, &name, req->attributes, &mapping_ops )))
550 {
Alexandre Julliard24560e72005-12-09 13:58:25 +0100551 reply->handle = alloc_handle( current->process, &mapping->obj, req->access, req->attributes );
Alexandre Julliard3764da62005-12-05 12:52:05 +0100552 release_object( mapping );
553 }
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100554
555 if (root) release_object( root );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000556}
557
558/* get a mapping information */
559DECL_HANDLER(get_mapping_info)
560{
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000561 struct mapping *mapping;
Alexandre Julliard4cbe8672007-01-12 14:55:31 +0100562 struct fd *fd;
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000563
564 if ((mapping = (struct mapping *)get_handle_obj( current->process, req->handle,
Alexandre Julliardd5d07382009-05-19 21:36:05 +0200565 req->access, &mapping_ops )))
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000566 {
Alexandre Julliard235532c2007-10-10 14:06:25 +0200567 reply->size = mapping->size;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000568 reply->protect = mapping->protect;
569 reply->header_size = mapping->header_size;
570 reply->base = mapping->base;
571 reply->shared_file = 0;
Alexandre Julliard4cbe8672007-01-12 14:55:31 +0100572 if ((fd = get_obj_fd( &mapping->obj )))
573 {
574 if (!is_fd_removable(fd))
575 reply->mapping = alloc_handle( current->process, mapping, 0, 0 );
576 release_object( fd );
577 }
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000578 if (mapping->shared_file)
Alexandre Julliard4cbe8672007-01-12 14:55:31 +0100579 {
580 if (!(reply->shared_file = alloc_handle( current->process, mapping->shared_file,
581 GENERIC_READ|GENERIC_WRITE, 0 )))
582 {
583 if (reply->mapping) close_handle( current->process, reply->mapping );
584 }
585 }
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000586 release_object( mapping );
587 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000588}
Alexandre Julliardcdce50f2008-11-05 12:24:05 +0100589
590/* get a range of committed pages in a file mapping */
591DECL_HANDLER(get_mapping_committed_range)
592{
593 struct mapping *mapping;
594
595 if ((mapping = (struct mapping *)get_handle_obj( current->process, req->handle, 0, &mapping_ops )))
596 {
597 if (!(req->offset & page_mask) && req->offset < mapping->size)
598 reply->committed = find_committed_range( mapping, req->offset, &reply->size );
599 else
600 set_error( STATUS_INVALID_PARAMETER );
601
602 release_object( mapping );
603 }
604}
605
606/* add a range to the committed pages in a file mapping */
607DECL_HANDLER(add_mapping_committed_range)
608{
609 struct mapping *mapping;
610
611 if ((mapping = (struct mapping *)get_handle_obj( current->process, req->handle, 0, &mapping_ops )))
612 {
613 if (!(req->size & page_mask) &&
614 !(req->offset & page_mask) &&
615 req->offset < mapping->size &&
616 req->size > 0 &&
617 req->size <= mapping->size - req->offset)
618 add_committed_range( mapping, req->offset, req->offset + req->size );
619 else
620 set_error( STATUS_INVALID_PARAMETER );
621
622 release_object( mapping );
623 }
624}