blob: 02b73b19715c5ccff480d32981c3260722d5f92a [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
42struct mapping
43{
Alexandre Julliard84fdfd02001-04-13 22:38:39 +000044 struct object obj; /* object header */
Alexandre Julliarda4334a62005-04-19 11:59:13 +000045 file_pos_t size; /* mapping size */
Alexandre Julliard84fdfd02001-04-13 22:38:39 +000046 int protect; /* protection flags */
47 struct file *file; /* file mapped */
48 int header_size; /* size of headers (for PE image mapping) */
49 void *base; /* default base addr (for PE image mapping) */
50 struct file *shared_file; /* temp file for shared PE mapping */
Alexandre Julliardbb82cbb2005-07-07 12:04:55 +000051 struct list shared_entry; /* entry in global shared PE mappings list */
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +000052};
53
54static void mapping_dump( struct object *obj, int verbose );
Alexandre Julliard8382eb02007-12-05 18:16:42 +010055static struct object_type *mapping_get_type( struct object *obj );
Alexandre Julliarde66207e2003-02-19 00:33:32 +000056static struct fd *mapping_get_fd( struct object *obj );
Alexandre Julliarda510a7e2005-12-12 16:46:17 +010057static unsigned int mapping_map_access( struct object *obj, unsigned int access );
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +000058static void mapping_destroy( struct object *obj );
59
60static const struct object_ops mapping_ops =
61{
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000062 sizeof(struct mapping), /* size */
63 mapping_dump, /* dump */
Alexandre Julliard8382eb02007-12-05 18:16:42 +010064 mapping_get_type, /* get_type */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000065 no_add_queue, /* add_queue */
66 NULL, /* remove_queue */
67 NULL, /* signaled */
68 NULL, /* satisfied */
Mike McCormackf92fff62005-04-24 17:35:52 +000069 no_signal, /* signal */
Alexandre Julliarde66207e2003-02-19 00:33:32 +000070 mapping_get_fd, /* get_fd */
Alexandre Julliarda510a7e2005-12-12 16:46:17 +010071 mapping_map_access, /* map_access */
Rob Shearmanc1707d82007-10-03 13:10:37 +010072 default_get_sd, /* get_sd */
73 default_set_sd, /* set_sd */
Vitaliy Margolenbaffcb92005-11-22 14:55:42 +000074 no_lookup_name, /* lookup_name */
Alexandre Julliard7e71c1d2007-03-22 11:44:29 +010075 no_open_file, /* open_file */
Alexandre Julliard715d78e2006-11-02 20:52:22 +010076 fd_close_handle, /* close_handle */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000077 mapping_destroy /* destroy */
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +000078};
79
Alexandre Julliardbb82cbb2005-07-07 12:04:55 +000080static struct list shared_list = LIST_INIT(shared_list);
Alexandre Julliard84fdfd02001-04-13 22:38:39 +000081
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +000082#ifdef __i386__
83
84/* These are always the same on an i386, and it will be faster this way */
85# define page_mask 0xfff
86# define page_shift 12
Alexandre Julliard908464d2000-11-01 03:11:12 +000087# define init_page_size() do { /* nothing */ } while(0)
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +000088
89#else /* __i386__ */
90
91static int page_shift, page_mask;
92
93static void init_page_size(void)
94{
95 int page_size;
96# ifdef HAVE_GETPAGESIZE
97 page_size = getpagesize();
98# else
99# ifdef __svr4__
100 page_size = sysconf(_SC_PAGESIZE);
101# else
102# error Cannot get the page size on this platform
103# endif
104# endif
105 page_mask = page_size - 1;
106 /* Make sure we have a power of 2 */
107 assert( !(page_size & page_mask) );
108 page_shift = 0;
109 while ((1 << page_shift) != page_size) page_shift++;
110}
111#endif /* __i386__ */
112
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000113#define ROUND_SIZE(size) (((size) + page_mask) & ~page_mask)
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000114
115
Alexandre Julliard84fdfd02001-04-13 22:38:39 +0000116/* find the shared PE mapping for a given mapping */
117static struct file *get_shared_file( struct mapping *mapping )
118{
119 struct mapping *ptr;
120
Alexandre Julliardbb82cbb2005-07-07 12:04:55 +0000121 LIST_FOR_EACH_ENTRY( ptr, &shared_list, struct mapping, shared_entry )
Alexandre Julliard84fdfd02001-04-13 22:38:39 +0000122 if (is_same_file( ptr->file, mapping->file ))
123 return (struct file *)grab_object( ptr->shared_file );
124 return NULL;
125}
126
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100127/* return the size of the memory mapping and file range of a given section */
128static inline void get_section_sizes( const IMAGE_SECTION_HEADER *sec, size_t *map_size,
129 off_t *file_start, size_t *file_size )
Alexandre Julliard4ebd2fc2005-08-15 14:50:06 +0000130{
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100131 static const unsigned int sector_align = 0x1ff;
Alexandre Julliard4ebd2fc2005-08-15 14:50:06 +0000132
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100133 if (!sec->Misc.VirtualSize) *map_size = ROUND_SIZE( sec->SizeOfRawData );
134 else *map_size = ROUND_SIZE( sec->Misc.VirtualSize );
135
136 *file_start = sec->PointerToRawData & ~sector_align;
137 *file_size = (sec->SizeOfRawData + (sec->PointerToRawData & sector_align) + sector_align) & ~sector_align;
138 if (*file_size > *map_size) *file_size = *map_size;
Alexandre Julliard4ebd2fc2005-08-15 14:50:06 +0000139}
140
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000141/* allocate and fill the temp file for a shared PE image mapping */
142static int build_shared_mapping( struct mapping *mapping, int fd,
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000143 IMAGE_SECTION_HEADER *sec, unsigned int nb_sec )
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000144{
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100145 unsigned int i;
Alexandre Julliard235532c2007-10-10 14:06:25 +0200146 file_pos_t total_size;
147 size_t file_size, map_size, max_size;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000148 off_t shared_pos, read_pos, write_pos;
Alexandre Julliard63411db2000-12-22 21:12:36 +0000149 char *buffer = NULL;
150 int shared_fd;
Andreas Mohr1c99af42000-12-03 04:02:09 +0000151 long toread;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000152
153 /* compute the total size of the shared mapping */
154
155 total_size = max_size = 0;
156 for (i = 0; i < nb_sec; i++)
157 {
158 if ((sec[i].Characteristics & IMAGE_SCN_MEM_SHARED) &&
159 (sec[i].Characteristics & IMAGE_SCN_MEM_WRITE))
160 {
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100161 get_section_sizes( &sec[i], &map_size, &read_pos, &file_size );
162 if (file_size > max_size) max_size = file_size;
163 total_size += map_size;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000164 }
165 }
Alexandre Julliard235532c2007-10-10 14:06:25 +0200166 if (!total_size) return 1; /* nothing to do */
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000167
Alexandre Julliard84fdfd02001-04-13 22:38:39 +0000168 if ((mapping->shared_file = get_shared_file( mapping ))) return 1;
169
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000170 /* create a temp file for the mapping */
171
Alexandre Julliarda510a7e2005-12-12 16:46:17 +0100172 if (!(mapping->shared_file = create_temp_file( FILE_GENERIC_READ|FILE_GENERIC_WRITE ))) return 0;
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000173 if (!grow_file( mapping->shared_file, total_size )) goto error;
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000174 if ((shared_fd = get_file_unix_fd( mapping->shared_file )) == -1) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000175
176 if (!(buffer = malloc( max_size ))) goto error;
177
178 /* copy the shared sections data into the temp file */
179
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000180 shared_pos = 0;
181 for (i = 0; i < nb_sec; i++)
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000182 {
183 if (!(sec[i].Characteristics & IMAGE_SCN_MEM_SHARED)) continue;
184 if (!(sec[i].Characteristics & IMAGE_SCN_MEM_WRITE)) continue;
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100185 get_section_sizes( &sec[i], &map_size, &read_pos, &file_size );
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000186 write_pos = shared_pos;
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100187 shared_pos += map_size;
188 if (!sec[i].PointerToRawData || !file_size) continue;
189 toread = file_size;
Andreas Mohr1c99af42000-12-03 04:02:09 +0000190 while (toread)
191 {
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100192 long res = pread( fd, buffer + file_size - toread, toread, read_pos );
Alexandre Julliard126bbb32007-01-08 21:34:15 +0100193 if (!res && toread < 0x200) /* partial sector at EOF is not an error */
194 {
195 file_size -= toread;
196 break;
197 }
Andreas Mohr1c99af42000-12-03 04:02:09 +0000198 if (res <= 0) goto error;
199 toread -= res;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000200 read_pos += res;
Andreas Mohr1c99af42000-12-03 04:02:09 +0000201 }
Alexandre Julliard9fed1202006-12-21 12:34:44 +0100202 if (pwrite( shared_fd, buffer, file_size, write_pos ) != file_size) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000203 }
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000204 free( buffer );
205 return 1;
206
207 error:
Alexandre Julliardca18f152002-04-20 21:07:24 +0000208 release_object( mapping->shared_file );
209 mapping->shared_file = NULL;
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +0200210 free( buffer );
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000211 return 0;
212}
213
214/* retrieve the mapping parameters for an executable (PE) image */
215static int get_image_params( struct mapping *mapping )
216{
217 IMAGE_DOS_HEADER dos;
218 IMAGE_NT_HEADERS nt;
219 IMAGE_SECTION_HEADER *sec = NULL;
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000220 struct fd *fd;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000221 off_t pos;
Marcus Meissner4b811d92005-10-31 21:03:05 +0000222 int unix_fd, size, toread;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000223
224 /* load the headers */
225
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000226 if (!(fd = mapping_get_fd( &mapping->obj ))) return 0;
Alexandre Julliard964815b2005-08-08 15:11:03 +0000227 if ((unix_fd = get_unix_fd( fd )) == -1) goto error;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000228 if (pread( unix_fd, &dos, sizeof(dos), 0 ) != sizeof(dos)) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000229 if (dos.e_magic != IMAGE_DOS_SIGNATURE) goto error;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000230 pos = dos.e_lfanew;
Dmitry Timoshkov1467bbd2002-08-27 00:34:41 +0000231
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000232 if (pread( unix_fd, &nt.Signature, sizeof(nt.Signature), pos ) != sizeof(nt.Signature))
233 goto error;
234 pos += sizeof(nt.Signature);
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000235 if (nt.Signature != IMAGE_NT_SIGNATURE) goto error;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000236 if (pread( unix_fd, &nt.FileHeader, sizeof(nt.FileHeader), pos ) != sizeof(nt.FileHeader))
237 goto error;
238 pos += sizeof(nt.FileHeader);
Dmitry Timoshkov1467bbd2002-08-27 00:34:41 +0000239 /* zero out Optional header in the case it's not present or partial */
240 memset(&nt.OptionalHeader, 0, sizeof(nt.OptionalHeader));
Marcus Meissner4b811d92005-10-31 21:03:05 +0000241 toread = min( sizeof(nt.OptionalHeader), nt.FileHeader.SizeOfOptionalHeader );
242 if (pread( unix_fd, &nt.OptionalHeader, toread, pos ) != toread) goto error;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000243 pos += nt.FileHeader.SizeOfOptionalHeader;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000244
245 /* load the section headers */
246
247 size = sizeof(*sec) * nt.FileHeader.NumberOfSections;
248 if (!(sec = malloc( size ))) goto error;
Alexandre Julliard72f87b82004-05-01 02:50:06 +0000249 if (pread( unix_fd, sec, size, pos ) != size) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000250
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000251 if (!build_shared_mapping( mapping, unix_fd, sec, nt.FileHeader.NumberOfSections )) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000252
Alexandre Julliardbb82cbb2005-07-07 12:04:55 +0000253 if (mapping->shared_file) list_add_head( &shared_list, &mapping->shared_entry );
Alexandre Julliard84fdfd02001-04-13 22:38:39 +0000254
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000255 mapping->size = ROUND_SIZE( nt.OptionalHeader.SizeOfImage );
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000256 mapping->base = (void *)nt.OptionalHeader.ImageBase;
Alexandre Julliard3dc21d32006-12-13 13:06:12 +0100257 mapping->header_size = max( pos + size, nt.OptionalHeader.SizeOfHeaders );
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000258 mapping->protect = VPROT_IMAGE;
259
260 /* sanity check */
Alexandre Julliard3dc21d32006-12-13 13:06:12 +0100261 if (pos + size > mapping->size) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000262
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000263 free( sec );
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000264 release_object( fd );
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000265 return 1;
266
267 error:
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +0200268 free( sec );
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000269 release_object( fd );
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000270 set_error( STATUS_INVALID_FILE_FOR_SECTION );
271 return 0;
272}
273
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000274/* get the size of the unix file associated with the mapping */
Andrew Talbotb1788c82007-03-17 10:52:14 +0000275static inline int get_file_size( struct file *file, file_pos_t *size )
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000276{
277 struct stat st;
Alexandre Julliardd0e4a762003-02-17 01:50:40 +0000278 int unix_fd = get_file_unix_fd( file );
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000279
Alexandre Julliard964815b2005-08-08 15:11:03 +0000280 if (unix_fd == -1 || fstat( unix_fd, &st ) == -1) return 0;
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000281 *size = st.st_size;
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000282 return 1;
283}
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000284
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100285static struct object *create_mapping( struct directory *root, const struct unicode_str *name,
286 unsigned int attr, file_pos_t size, int protect,
Rob Shearman23df4532007-10-25 19:09:54 +0100287 obj_handle_t handle, const struct security_descriptor *sd )
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000288{
289 struct mapping *mapping;
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000290 int access = 0;
291
292 if (!page_mask) init_page_size();
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000293
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100294 if (!(mapping = create_named_object_dir( root, name, attr, &mapping_ops )))
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000295 return NULL;
Vitaliy Margolen893987b2005-11-21 16:27:03 +0000296 if (get_error() == STATUS_OBJECT_NAME_EXISTS)
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000297 return &mapping->obj; /* Nothing else to do */
298
Rob Shearman23df4532007-10-25 19:09:54 +0100299 if (sd) default_set_sd( &mapping->obj, sd, OWNER_SECURITY_INFORMATION|
300 GROUP_SECURITY_INFORMATION|
301 DACL_SECURITY_INFORMATION|
302 SACL_SECURITY_INFORMATION );
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000303 mapping->header_size = 0;
304 mapping->base = NULL;
305 mapping->shared_file = NULL;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000306
Alexandre Julliarda510a7e2005-12-12 16:46:17 +0100307 if (protect & VPROT_READ) access |= FILE_READ_DATA;
308 if (protect & VPROT_WRITE) access |= FILE_WRITE_DATA;
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000309
Alexandre Julliard8081e5a2001-01-05 04:08:07 +0000310 if (handle)
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000311 {
312 if (!(mapping->file = get_file_obj( current->process, handle, access ))) goto error;
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000313 if (protect & VPROT_IMAGE)
314 {
315 if (!get_image_params( mapping )) goto error;
316 return &mapping->obj;
317 }
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000318 if (!size)
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000319 {
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000320 if (!get_file_size( mapping->file, &size )) goto error;
321 if (!size)
Mike McCormackdc827692004-01-09 00:34:14 +0000322 {
Alexandre Julliard20175552005-12-12 13:38:43 +0100323 set_error( STATUS_MAPPED_FILE_SIZE_ZERO );
Mike McCormackdc827692004-01-09 00:34:14 +0000324 goto error;
325 }
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000326 }
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000327 else
328 {
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000329 if (!grow_file( mapping->file, size )) goto error;
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000330 }
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000331 }
332 else /* Anonymous mapping (no associated file) */
333 {
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000334 if (!size || (protect & VPROT_IMAGE))
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000335 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000336 set_error( STATUS_INVALID_PARAMETER );
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000337 mapping->file = NULL;
338 goto error;
339 }
340 if (!(mapping->file = create_temp_file( access ))) goto error;
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000341 if (!grow_file( mapping->file, size )) goto error;
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000342 }
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000343 mapping->size = (size + page_mask) & ~((file_pos_t)page_mask);
344 mapping->protect = protect;
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000345 return &mapping->obj;
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000346
347 error:
348 release_object( mapping );
349 return NULL;
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000350}
351
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000352static void mapping_dump( struct object *obj, int verbose )
353{
354 struct mapping *mapping = (struct mapping *)obj;
355 assert( obj->ops == &mapping_ops );
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000356 fprintf( stderr, "Mapping size=%08x%08x prot=%08x file=%p header_size=%08x base=%p "
Alexandre Julliard235532c2007-10-10 14:06:25 +0200357 "shared_file=%p ",
Alexandre Julliarda4334a62005-04-19 11:59:13 +0000358 (unsigned int)(mapping->size >> 32), (unsigned int)mapping->size,
359 mapping->protect, mapping->file, mapping->header_size,
Alexandre Julliard235532c2007-10-10 14:06:25 +0200360 mapping->base, mapping->shared_file );
Alexandre Julliardd16319c1999-11-25 21:30:24 +0000361 dump_object_name( &mapping->obj );
362 fputc( '\n', stderr );
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000363}
364
Alexandre Julliard8382eb02007-12-05 18:16:42 +0100365static struct object_type *mapping_get_type( struct object *obj )
366{
367 static const WCHAR name[] = {'S','e','c','t','i','o','n'};
368 static const struct unicode_str str = { name, sizeof(name) };
369 return get_object_type( &str );
370}
371
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000372static struct fd *mapping_get_fd( struct object *obj )
373{
374 struct mapping *mapping = (struct mapping *)obj;
375 return get_obj_fd( (struct object *)mapping->file );
376}
377
Alexandre Julliarda510a7e2005-12-12 16:46:17 +0100378static unsigned int mapping_map_access( struct object *obj, unsigned int access )
379{
380 if (access & GENERIC_READ) access |= STANDARD_RIGHTS_READ | SECTION_QUERY | SECTION_MAP_READ;
381 if (access & GENERIC_WRITE) access |= STANDARD_RIGHTS_WRITE | SECTION_MAP_WRITE;
382 if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE | SECTION_MAP_EXECUTE;
383 if (access & GENERIC_ALL) access |= SECTION_ALL_ACCESS;
384 return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
385}
386
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000387static void mapping_destroy( struct object *obj )
388{
389 struct mapping *mapping = (struct mapping *)obj;
390 assert( obj->ops == &mapping_ops );
391 if (mapping->file) release_object( mapping->file );
Alexandre Julliard84fdfd02001-04-13 22:38:39 +0000392 if (mapping->shared_file)
393 {
394 release_object( mapping->shared_file );
Alexandre Julliardbb82cbb2005-07-07 12:04:55 +0000395 list_remove( &mapping->shared_entry );
Alexandre Julliard84fdfd02001-04-13 22:38:39 +0000396 }
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000397}
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000398
Alexandre Julliardc76ad351999-11-13 19:49:05 +0000399int get_page_size(void)
400{
401 if (!page_mask) init_page_size();
402 return page_mask + 1;
403}
404
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000405/* create a file mapping */
406DECL_HANDLER(create_mapping)
407{
408 struct object *obj;
Alexandre Julliardead9b062005-11-18 16:31:18 +0000409 struct unicode_str name;
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100410 struct directory *root = NULL;
Rob Shearman23df4532007-10-25 19:09:54 +0100411 const struct object_attributes *objattr = get_req_data();
412 const struct security_descriptor *sd;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000413
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000414 reply->handle = 0;
Rob Shearman23df4532007-10-25 19:09:54 +0100415
416 if (!objattr_is_valid( objattr, get_req_data_size() ))
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100417 return;
418
Rob Shearman23df4532007-10-25 19:09:54 +0100419 sd = objattr->sd_len ? (const struct security_descriptor *)(objattr + 1) : NULL;
Rob Shearmanf98556c2007-10-26 17:01:33 +0100420 objattr_get_name( objattr, &name );
Rob Shearman23df4532007-10-25 19:09:54 +0100421
422 if (objattr->rootdir && !(root = get_directory_obj( current->process, objattr->rootdir, 0 )))
423 return;
424
425 if ((obj = create_mapping( root, &name, req->attributes, req->size, req->protect, req->file_handle, sd )))
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000426 {
Rob Shearman92db6d22007-11-05 14:23:36 +0000427 if (get_error() == STATUS_OBJECT_NAME_EXISTS)
428 reply->handle = alloc_handle( current->process, obj, req->access, req->attributes );
429 else
430 reply->handle = alloc_handle_no_access_check( current->process, obj, req->access, req->attributes );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000431 release_object( obj );
432 }
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100433
434 if (root) release_object( root );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000435}
436
437/* open a handle to a mapping */
438DECL_HANDLER(open_mapping)
439{
Alexandre Julliardead9b062005-11-18 16:31:18 +0000440 struct unicode_str name;
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100441 struct directory *root = NULL;
Alexandre Julliard3764da62005-12-05 12:52:05 +0100442 struct mapping *mapping;
Alexandre Julliardead9b062005-11-18 16:31:18 +0000443
444 get_req_unicode_str( &name );
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100445 if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir, 0 )))
446 return;
447
Alexandre Julliard3764da62005-12-05 12:52:05 +0100448 if ((mapping = open_object_dir( root, &name, req->attributes, &mapping_ops )))
449 {
Alexandre Julliard24560e72005-12-09 13:58:25 +0100450 reply->handle = alloc_handle( current->process, &mapping->obj, req->access, req->attributes );
Alexandre Julliard3764da62005-12-05 12:52:05 +0100451 release_object( mapping );
452 }
Vitaliy Margolen348a3d92005-12-02 16:13:13 +0100453
454 if (root) release_object( root );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000455}
456
457/* get a mapping information */
458DECL_HANDLER(get_mapping_info)
459{
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000460 struct mapping *mapping;
Alexandre Julliard4cbe8672007-01-12 14:55:31 +0100461 struct fd *fd;
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000462
463 if ((mapping = (struct mapping *)get_handle_obj( current->process, req->handle,
464 0, &mapping_ops )))
465 {
Alexandre Julliard235532c2007-10-10 14:06:25 +0200466 reply->size = mapping->size;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000467 reply->protect = mapping->protect;
468 reply->header_size = mapping->header_size;
469 reply->base = mapping->base;
470 reply->shared_file = 0;
Alexandre Julliard4cbe8672007-01-12 14:55:31 +0100471 if ((fd = get_obj_fd( &mapping->obj )))
472 {
473 if (!is_fd_removable(fd))
474 reply->mapping = alloc_handle( current->process, mapping, 0, 0 );
475 release_object( fd );
476 }
Alexandre Julliardc19e1a72000-08-14 20:20:01 +0000477 if (mapping->shared_file)
Alexandre Julliard4cbe8672007-01-12 14:55:31 +0100478 {
479 if (!(reply->shared_file = alloc_handle( current->process, mapping->shared_file,
480 GENERIC_READ|GENERIC_WRITE, 0 )))
481 {
482 if (reply->mapping) close_handle( current->process, reply->mapping );
483 }
484 }
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000485 release_object( mapping );
486 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000487}