2 * Server-side file mapping management
4 * Copyright (C) 1999 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "wine/port.h"
37 struct object obj
; /* object header */
38 int size_high
; /* mapping size */
39 int size_low
; /* mapping size */
40 int protect
; /* protection flags */
41 struct file
*file
; /* file mapped */
42 int header_size
; /* size of headers (for PE image mapping) */
43 void *base
; /* default base addr (for PE image mapping) */
44 struct file
*shared_file
; /* temp file for shared PE mapping */
45 int shared_size
; /* shared mapping total size */
46 struct mapping
*shared_next
; /* next in shared PE mapping list */
47 struct mapping
*shared_prev
; /* prev in shared PE mapping list */
50 static int mapping_get_fd( struct object
*obj
);
51 static int mapping_get_info( struct object
*obj
, struct get_file_info_reply
*reply
, int *flags
);
52 static void mapping_dump( struct object
*obj
, int verbose
);
53 static void mapping_destroy( struct object
*obj
);
55 static const struct object_ops mapping_ops
=
57 sizeof(struct mapping
), /* size */
58 mapping_dump
, /* dump */
59 no_add_queue
, /* add_queue */
60 NULL
, /* remove_queue */
63 NULL
, /* get_poll_events */
64 NULL
, /* poll_event */
65 mapping_get_fd
, /* get_fd */
67 mapping_get_info
, /* get_file_info */
68 NULL
, /* queue_async */
69 mapping_destroy
/* destroy */
72 static struct mapping
*shared_first
;
76 /* These are always the same on an i386, and it will be faster this way */
77 # define page_mask 0xfff
78 # define page_shift 12
79 # define init_page_size() do { /* nothing */ } while(0)
83 static int page_shift
, page_mask
;
85 static void init_page_size(void)
88 # ifdef HAVE_GETPAGESIZE
89 page_size
= getpagesize();
92 page_size
= sysconf(_SC_PAGESIZE
);
94 # error Cannot get the page size on this platform
97 page_mask
= page_size
- 1;
98 /* Make sure we have a power of 2 */
99 assert( !(page_size
& page_mask
) );
101 while ((1 << page_shift
) != page_size
) page_shift
++;
103 #endif /* __i386__ */
105 #define ROUND_ADDR(addr) \
106 ((int)(addr) & ~page_mask)
108 #define ROUND_SIZE(addr,size) \
109 (((int)(size) + ((int)(addr) & page_mask) + page_mask) & ~page_mask)
111 /* get the fd to use for mmaping a file */
112 inline static int get_mmap_fd( struct file
*file
)
115 if (!(obj
= (struct object
*)file
))
117 set_error( STATUS_INVALID_HANDLE
);
120 return obj
->ops
->get_fd( obj
);
123 /* find the shared PE mapping for a given mapping */
124 static struct file
*get_shared_file( struct mapping
*mapping
)
128 for (ptr
= shared_first
; ptr
; ptr
= ptr
->shared_next
)
129 if (is_same_file( ptr
->file
, mapping
->file
))
130 return (struct file
*)grab_object( ptr
->shared_file
);
134 /* allocate and fill the temp file for a shared PE image mapping */
135 static int build_shared_mapping( struct mapping
*mapping
, int fd
,
136 IMAGE_SECTION_HEADER
*sec
, int nb_sec
)
138 int i
, max_size
, total_size
, pos
;
143 /* compute the total size of the shared mapping */
145 total_size
= max_size
= 0;
146 for (i
= 0; i
< nb_sec
; i
++)
148 if ((sec
[i
].Characteristics
& IMAGE_SCN_MEM_SHARED
) &&
149 (sec
[i
].Characteristics
& IMAGE_SCN_MEM_WRITE
))
151 int size
= ROUND_SIZE( 0, sec
[i
].Misc
.VirtualSize
);
152 if (size
> max_size
) max_size
= size
;
156 if (!(mapping
->shared_size
= total_size
)) return 1; /* nothing to do */
158 if ((mapping
->shared_file
= get_shared_file( mapping
))) return 1;
160 /* create a temp file for the mapping */
162 if (!(mapping
->shared_file
= create_temp_file( GENERIC_READ
|GENERIC_WRITE
))) return 0;
163 if (!grow_file( mapping
->shared_file
, 0, total_size
)) goto error
;
164 if ((shared_fd
= get_mmap_fd( mapping
->shared_file
)) == -1) goto error
;
166 if (!(buffer
= malloc( max_size
))) goto error
;
168 /* copy the shared sections data into the temp file */
170 for (i
= pos
= 0; i
< nb_sec
; i
++)
172 if (!(sec
[i
].Characteristics
& IMAGE_SCN_MEM_SHARED
)) continue;
173 if (!(sec
[i
].Characteristics
& IMAGE_SCN_MEM_WRITE
)) continue;
174 if (lseek( shared_fd
, pos
, SEEK_SET
) != pos
) goto error
;
175 pos
+= ROUND_SIZE( 0, sec
[i
].Misc
.VirtualSize
);
176 if (sec
[i
].Characteristics
& IMAGE_SCN_CNT_UNINITIALIZED_DATA
) continue;
177 if (!sec
[i
].PointerToRawData
|| !sec
[i
].SizeOfRawData
) continue;
178 if (lseek( fd
, sec
[i
].PointerToRawData
, SEEK_SET
) != sec
[i
].PointerToRawData
) goto error
;
179 toread
= sec
[i
].SizeOfRawData
;
182 long res
= read( fd
, buffer
+ sec
[i
].SizeOfRawData
- toread
, toread
);
183 if (res
<= 0) goto error
;
186 if (write( shared_fd
, buffer
, sec
[i
].SizeOfRawData
) != sec
[i
].SizeOfRawData
) goto error
;
192 release_object( mapping
->shared_file
);
193 mapping
->shared_file
= NULL
;
194 if (buffer
) free( buffer
);
198 /* retrieve the mapping parameters for an executable (PE) image */
199 static int get_image_params( struct mapping
*mapping
)
201 IMAGE_DOS_HEADER dos
;
203 IMAGE_SECTION_HEADER
*sec
= NULL
;
204 int fd
, filepos
, size
;
206 /* load the headers */
208 if ((fd
= get_mmap_fd( mapping
->file
)) == -1) return 0;
209 filepos
= lseek( fd
, 0, SEEK_SET
);
210 if (read( fd
, &dos
, sizeof(dos
) ) != sizeof(dos
)) goto error
;
211 if (dos
.e_magic
!= IMAGE_DOS_SIGNATURE
) goto error
;
212 if (lseek( fd
, dos
.e_lfanew
, SEEK_SET
) == -1) goto error
;
214 if (read( fd
, &nt
.Signature
, sizeof(nt
.Signature
) ) != sizeof(nt
.Signature
)) goto error
;
215 if (nt
.Signature
!= IMAGE_NT_SIGNATURE
) goto error
;
216 if (read( fd
, &nt
.FileHeader
, sizeof(nt
.FileHeader
) ) != sizeof(nt
.FileHeader
)) goto error
;
217 /* zero out Optional header in the case it's not present or partial */
218 memset(&nt
.OptionalHeader
, 0, sizeof(nt
.OptionalHeader
));
219 if (read( fd
, &nt
.OptionalHeader
, nt
.FileHeader
.SizeOfOptionalHeader
) != nt
.FileHeader
.SizeOfOptionalHeader
) goto error
;
221 /* load the section headers */
223 size
= sizeof(*sec
) * nt
.FileHeader
.NumberOfSections
;
224 if (!(sec
= malloc( size
))) goto error
;
225 if (read( fd
, sec
, size
) != size
) goto error
;
227 if (!build_shared_mapping( mapping
, fd
, sec
, nt
.FileHeader
.NumberOfSections
)) goto error
;
229 if (mapping
->shared_file
) /* link it in the list */
231 if ((mapping
->shared_next
= shared_first
)) shared_first
->shared_prev
= mapping
;
232 mapping
->shared_prev
= NULL
;
233 shared_first
= mapping
;
236 mapping
->size_low
= ROUND_SIZE( 0, nt
.OptionalHeader
.SizeOfImage
);
237 mapping
->size_high
= 0;
238 mapping
->base
= (void *)nt
.OptionalHeader
.ImageBase
;
239 mapping
->header_size
= ROUND_SIZE( mapping
->base
, nt
.OptionalHeader
.SizeOfHeaders
);
240 mapping
->protect
= VPROT_IMAGE
;
243 if (mapping
->header_size
> mapping
->size_low
) goto error
;
245 lseek( fd
, filepos
, SEEK_SET
);
250 lseek( fd
, filepos
, SEEK_SET
);
251 if (sec
) free( sec
);
252 set_error( STATUS_INVALID_FILE_FOR_SECTION
);
257 static struct object
*create_mapping( int size_high
, int size_low
, int protect
,
258 obj_handle_t handle
, const WCHAR
*name
, size_t len
)
260 struct mapping
*mapping
;
263 if (!page_mask
) init_page_size();
265 if (!(mapping
= create_named_object( sync_namespace
, &mapping_ops
, name
, len
)))
267 if (get_error() == STATUS_OBJECT_NAME_COLLISION
)
268 return &mapping
->obj
; /* Nothing else to do */
270 mapping
->header_size
= 0;
271 mapping
->base
= NULL
;
272 mapping
->shared_file
= NULL
;
273 mapping
->shared_size
= 0;
275 if (protect
& VPROT_READ
) access
|= GENERIC_READ
;
276 if (protect
& VPROT_WRITE
) access
|= GENERIC_WRITE
;
280 if (!(mapping
->file
= get_file_obj( current
->process
, handle
, access
))) goto error
;
281 if (protect
& VPROT_IMAGE
)
283 if (!get_image_params( mapping
)) goto error
;
284 return &mapping
->obj
;
286 if (!size_high
&& !size_low
)
289 struct get_file_info_reply reply
;
290 struct object
*obj
= (struct object
*)mapping
->file
;
291 obj
->ops
->get_file_info( obj
, &reply
, &flags
);
292 size_high
= reply
.size_high
;
293 size_low
= ROUND_SIZE( 0, reply
.size_low
);
295 else if (!grow_file( mapping
->file
, size_high
, size_low
)) goto error
;
297 else /* Anonymous mapping (no associated file) */
299 if ((!size_high
&& !size_low
) || (protect
& VPROT_IMAGE
))
301 set_error( STATUS_INVALID_PARAMETER
);
302 mapping
->file
= NULL
;
305 if (!(mapping
->file
= create_temp_file( access
))) goto error
;
306 if (!grow_file( mapping
->file
, size_high
, size_low
)) goto error
;
308 mapping
->size_high
= size_high
;
309 mapping
->size_low
= ROUND_SIZE( 0, size_low
);
310 mapping
->protect
= protect
;
311 return &mapping
->obj
;
314 release_object( mapping
);
318 static void mapping_dump( struct object
*obj
, int verbose
)
320 struct mapping
*mapping
= (struct mapping
*)obj
;
321 assert( obj
->ops
== &mapping_ops
);
322 fprintf( stderr
, "Mapping size=%08x%08x prot=%08x file=%p header_size=%08x base=%p "
323 "shared_file=%p shared_size=%08x ",
324 mapping
->size_high
, mapping
->size_low
, mapping
->protect
, mapping
->file
,
325 mapping
->header_size
, mapping
->base
, mapping
->shared_file
, mapping
->shared_size
);
326 dump_object_name( &mapping
->obj
);
327 fputc( '\n', stderr
);
330 static int mapping_get_fd( struct object
*obj
)
332 struct mapping
*mapping
= (struct mapping
*)obj
;
333 assert( obj
->ops
== &mapping_ops
);
334 return get_mmap_fd( mapping
->file
);
337 static int mapping_get_info( struct object
*obj
, struct get_file_info_reply
*reply
, int *flags
)
339 struct mapping
*mapping
= (struct mapping
*)obj
;
340 struct object
*file
= (struct object
*)mapping
->file
;
342 assert( obj
->ops
== &mapping_ops
);
344 return file
->ops
->get_file_info( file
, reply
, flags
);
347 static void mapping_destroy( struct object
*obj
)
349 struct mapping
*mapping
= (struct mapping
*)obj
;
350 assert( obj
->ops
== &mapping_ops
);
351 if (mapping
->file
) release_object( mapping
->file
);
352 if (mapping
->shared_file
)
354 release_object( mapping
->shared_file
);
355 if (mapping
->shared_next
) mapping
->shared_next
->shared_prev
= mapping
->shared_prev
;
356 if (mapping
->shared_prev
) mapping
->shared_prev
->shared_next
= mapping
->shared_next
;
357 else shared_first
= mapping
->shared_next
;
361 int get_page_size(void)
363 if (!page_mask
) init_page_size();
364 return page_mask
+ 1;
367 /* create a file mapping */
368 DECL_HANDLER(create_mapping
)
373 if ((obj
= create_mapping( req
->size_high
, req
->size_low
,
374 req
->protect
, req
->file_handle
,
375 get_req_data(), get_req_data_size() )))
377 reply
->handle
= alloc_handle( current
->process
, obj
, req
->access
, req
->inherit
);
378 release_object( obj
);
382 /* open a handle to a mapping */
383 DECL_HANDLER(open_mapping
)
385 reply
->handle
= open_object( sync_namespace
, get_req_data(), get_req_data_size(),
386 &mapping_ops
, req
->access
, req
->inherit
);
389 /* get a mapping information */
390 DECL_HANDLER(get_mapping_info
)
392 struct mapping
*mapping
;
394 if ((mapping
= (struct mapping
*)get_handle_obj( current
->process
, req
->handle
,
397 reply
->size_high
= mapping
->size_high
;
398 reply
->size_low
= mapping
->size_low
;
399 reply
->protect
= mapping
->protect
;
400 reply
->header_size
= mapping
->header_size
;
401 reply
->base
= mapping
->base
;
402 reply
->shared_file
= 0;
403 reply
->shared_size
= mapping
->shared_size
;
404 reply
->drive_type
= get_file_drive_type( mapping
->file
);
405 if (mapping
->shared_file
)
406 reply
->shared_file
= alloc_handle( current
->process
, mapping
->shared_file
,
407 GENERIC_READ
|GENERIC_WRITE
, 0 );
408 release_object( mapping
);