Load all dll sections no matter what attributes say.
[wine] / server / mapping.c
1 /*
2  * Server-side file mapping management
3  *
4  * Copyright (C) 1999 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 <stdarg.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <sys/stat.h>
29 #include <unistd.h>
30
31 #include "windef.h"
32
33 #include "file.h"
34 #include "handle.h"
35 #include "thread.h"
36 #include "request.h"
37
38 struct mapping
39 {
40     struct object   obj;             /* object header */
41     file_pos_t      size;            /* mapping size */
42     int             protect;         /* protection flags */
43     struct file    *file;            /* file mapped */
44     int             header_size;     /* size of headers (for PE image mapping) */
45     void           *base;            /* default base addr (for PE image mapping) */
46     struct file    *shared_file;     /* temp file for shared PE mapping */
47     int             shared_size;     /* shared mapping total size */
48     struct mapping *shared_next;     /* next in shared PE mapping list */
49     struct mapping *shared_prev;     /* prev in shared PE mapping list */
50 };
51
52 static void mapping_dump( struct object *obj, int verbose );
53 static struct fd *mapping_get_fd( struct object *obj );
54 static void mapping_destroy( struct object *obj );
55
56 static const struct object_ops mapping_ops =
57 {
58     sizeof(struct mapping),      /* size */
59     mapping_dump,                /* dump */
60     no_add_queue,                /* add_queue */
61     NULL,                        /* remove_queue */
62     NULL,                        /* signaled */
63     NULL,                        /* satisfied */
64     no_signal,                   /* signal */
65     mapping_get_fd,              /* get_fd */
66     no_close_handle,             /* close_handle */
67     mapping_destroy              /* destroy */
68 };
69
70 static struct mapping *shared_first;
71
72 #ifdef __i386__
73
74 /* These are always the same on an i386, and it will be faster this way */
75 # define page_mask  0xfff
76 # define page_shift 12
77 # define init_page_size() do { /* nothing */ } while(0)
78
79 #else  /* __i386__ */
80
81 static int page_shift, page_mask;
82
83 static void init_page_size(void)
84 {
85     int page_size;
86 # ifdef HAVE_GETPAGESIZE
87     page_size = getpagesize();
88 # else
89 #  ifdef __svr4__
90     page_size = sysconf(_SC_PAGESIZE);
91 #  else
92 #   error Cannot get the page size on this platform
93 #  endif
94 # endif
95     page_mask = page_size - 1;
96     /* Make sure we have a power of 2 */
97     assert( !(page_size & page_mask) );
98     page_shift = 0;
99     while ((1 << page_shift) != page_size) page_shift++;
100 }
101 #endif  /* __i386__ */
102
103 #define ROUND_SIZE_MASK(addr,size,mask) \
104    (((int)(size) + ((int)(addr) & (mask)) + (mask)) & ~(mask))
105
106 #define ROUND_SIZE(size)  (((size) + page_mask) & ~page_mask)
107
108
109 /* find the shared PE mapping for a given mapping */
110 static struct file *get_shared_file( struct mapping *mapping )
111 {
112     struct mapping *ptr;
113
114     for (ptr = shared_first; ptr; ptr = ptr->shared_next)
115         if (is_same_file( ptr->file, mapping->file ))
116             return (struct file *)grab_object( ptr->shared_file );
117     return NULL;
118 }
119
120 /* allocate and fill the temp file for a shared PE image mapping */
121 static int build_shared_mapping( struct mapping *mapping, int fd,
122                                  IMAGE_SECTION_HEADER *sec, unsigned int nb_sec )
123 {
124     unsigned int i, max_size, total_size;
125     off_t shared_pos, read_pos, write_pos;
126     char *buffer = NULL;
127     int shared_fd;
128     long toread;
129
130     /* compute the total size of the shared mapping */
131
132     total_size = max_size = 0;
133     for (i = 0; i < nb_sec; i++)
134     {
135         if ((sec[i].Characteristics & IMAGE_SCN_MEM_SHARED) &&
136             (sec[i].Characteristics & IMAGE_SCN_MEM_WRITE))
137         {
138             unsigned int size = ROUND_SIZE( sec[i].Misc.VirtualSize );
139             if (size > max_size) max_size = size;
140             total_size += size;
141         }
142     }
143     if (!(mapping->shared_size = total_size)) return 1;  /* nothing to do */
144
145     if ((mapping->shared_file = get_shared_file( mapping ))) return 1;
146
147     /* create a temp file for the mapping */
148
149     if (!(mapping->shared_file = create_temp_file( GENERIC_READ|GENERIC_WRITE ))) return 0;
150     if (!grow_file( mapping->shared_file, total_size )) goto error;
151     if ((shared_fd = get_file_unix_fd( mapping->shared_file )) == -1) goto error;
152
153     if (!(buffer = malloc( max_size ))) goto error;
154
155     /* copy the shared sections data into the temp file */
156
157     shared_pos = 0;
158     for (i = 0; i < nb_sec; i++)
159     {
160         if (!(sec[i].Characteristics & IMAGE_SCN_MEM_SHARED)) continue;
161         if (!(sec[i].Characteristics & IMAGE_SCN_MEM_WRITE)) continue;
162         write_pos = shared_pos;
163         shared_pos += ROUND_SIZE( sec[i].Misc.VirtualSize );
164         if (!sec[i].PointerToRawData || !sec[i].SizeOfRawData) continue;
165         read_pos = sec[i].PointerToRawData;
166         toread = sec[i].SizeOfRawData;
167         while (toread)
168         {
169             long res = pread( fd, buffer + sec[i].SizeOfRawData - toread, toread, read_pos );
170             if (res <= 0) goto error;
171             toread -= res;
172             read_pos += res;
173         }
174         if (pwrite( shared_fd, buffer, sec[i].SizeOfRawData, write_pos ) != sec[i].SizeOfRawData)
175             goto error;
176     }
177     free( buffer );
178     return 1;
179
180  error:
181     release_object( mapping->shared_file );
182     mapping->shared_file = NULL;
183     if (buffer) free( buffer );
184     return 0;
185 }
186
187 /* retrieve the mapping parameters for an executable (PE) image */
188 static int get_image_params( struct mapping *mapping )
189 {
190     IMAGE_DOS_HEADER dos;
191     IMAGE_NT_HEADERS nt;
192     IMAGE_SECTION_HEADER *sec = NULL;
193     struct fd *fd;
194     off_t pos;
195     int unix_fd, size;
196
197     /* load the headers */
198
199     if (!(fd = mapping_get_fd( &mapping->obj ))) return 0;
200     unix_fd = get_unix_fd( fd );
201     if (pread( unix_fd, &dos, sizeof(dos), 0 ) != sizeof(dos)) goto error;
202     if (dos.e_magic != IMAGE_DOS_SIGNATURE) goto error;
203     pos = dos.e_lfanew;
204
205     if (pread( unix_fd, &nt.Signature, sizeof(nt.Signature), pos ) != sizeof(nt.Signature))
206         goto error;
207     pos += sizeof(nt.Signature);
208     if (nt.Signature != IMAGE_NT_SIGNATURE) goto error;
209     if (pread( unix_fd, &nt.FileHeader, sizeof(nt.FileHeader), pos ) != sizeof(nt.FileHeader))
210         goto error;
211     pos += sizeof(nt.FileHeader);
212     /* zero out Optional header in the case it's not present or partial */
213     memset(&nt.OptionalHeader, 0, sizeof(nt.OptionalHeader));
214     if (pread( unix_fd, &nt.OptionalHeader, nt.FileHeader.SizeOfOptionalHeader,
215                pos ) != nt.FileHeader.SizeOfOptionalHeader) goto error;
216     pos += nt.FileHeader.SizeOfOptionalHeader;
217
218     /* load the section headers */
219
220     size = sizeof(*sec) * nt.FileHeader.NumberOfSections;
221     if (!(sec = malloc( size ))) goto error;
222     if (pread( unix_fd, sec, size, pos ) != size) goto error;
223
224     if (!build_shared_mapping( mapping, unix_fd, sec, nt.FileHeader.NumberOfSections )) goto error;
225
226     if (mapping->shared_file)  /* link it in the list */
227     {
228         if ((mapping->shared_next = shared_first)) shared_first->shared_prev = mapping;
229         mapping->shared_prev = NULL;
230         shared_first = mapping;
231     }
232
233     mapping->size        = ROUND_SIZE( nt.OptionalHeader.SizeOfImage );
234     mapping->base        = (void *)nt.OptionalHeader.ImageBase;
235     mapping->header_size = ROUND_SIZE_MASK( mapping->base, nt.OptionalHeader.SizeOfHeaders,
236                                             nt.OptionalHeader.SectionAlignment - 1 );
237     mapping->protect     = VPROT_IMAGE;
238
239     /* sanity check */
240     if (mapping->header_size > mapping->size) goto error;
241
242     free( sec );
243     release_object( fd );
244     return 1;
245
246  error:
247     if (sec) free( sec );
248     release_object( fd );
249     set_error( STATUS_INVALID_FILE_FOR_SECTION );
250     return 0;
251 }
252
253 /* get the size of the unix file associated with the mapping */
254 inline static int get_file_size( struct file *file, file_pos_t *size )
255 {
256     struct stat st;
257     int unix_fd = get_file_unix_fd( file );
258
259     if (fstat( unix_fd, &st ) == -1) return 0;
260     *size = st.st_size;
261     return 1;
262 }
263
264 static struct object *create_mapping( file_pos_t size, int protect, obj_handle_t handle,
265                                       const WCHAR *name, size_t len )
266 {
267     struct mapping *mapping;
268     int access = 0;
269
270     if (!page_mask) init_page_size();
271
272     if (!(mapping = create_named_object( sync_namespace, &mapping_ops, name, len )))
273         return NULL;
274     if (get_error() == STATUS_OBJECT_NAME_COLLISION)
275         return &mapping->obj;  /* Nothing else to do */
276
277     mapping->header_size = 0;
278     mapping->base        = NULL;
279     mapping->shared_file = NULL;
280     mapping->shared_size = 0;
281
282     if (protect & VPROT_READ) access |= GENERIC_READ;
283     if (protect & VPROT_WRITE) access |= GENERIC_WRITE;
284
285     if (handle)
286     {
287         if (!(mapping->file = get_file_obj( current->process, handle, access ))) goto error;
288         if (protect & VPROT_IMAGE)
289         {
290             if (!get_image_params( mapping )) goto error;
291             return &mapping->obj;
292         }
293         if (!size)
294         {
295             if (!get_file_size( mapping->file, &size )) goto error;
296             if (!size)
297             {
298                 set_error( STATUS_FILE_INVALID );
299                 goto error;
300             }
301         }
302         else
303         {
304             if (!grow_file( mapping->file, size )) goto error;
305         }
306     }
307     else  /* Anonymous mapping (no associated file) */
308     {
309         if (!size || (protect & VPROT_IMAGE))
310         {
311             set_error( STATUS_INVALID_PARAMETER );
312             mapping->file = NULL;
313             goto error;
314         }
315         if (!(mapping->file = create_temp_file( access ))) goto error;
316         if (!grow_file( mapping->file, size )) goto error;
317     }
318     mapping->size    = (size + page_mask) & ~((file_pos_t)page_mask);
319     mapping->protect = protect;
320     return &mapping->obj;
321
322  error:
323     release_object( mapping );
324     return NULL;
325 }
326
327 static void mapping_dump( struct object *obj, int verbose )
328 {
329     struct mapping *mapping = (struct mapping *)obj;
330     assert( obj->ops == &mapping_ops );
331     fprintf( stderr, "Mapping size=%08x%08x prot=%08x file=%p header_size=%08x base=%p "
332              "shared_file=%p shared_size=%08x ",
333              (unsigned int)(mapping->size >> 32), (unsigned int)mapping->size,
334              mapping->protect, mapping->file, mapping->header_size,
335              mapping->base, mapping->shared_file, mapping->shared_size );
336     dump_object_name( &mapping->obj );
337     fputc( '\n', stderr );
338 }
339
340 static struct fd *mapping_get_fd( struct object *obj )
341 {
342     struct mapping *mapping = (struct mapping *)obj;
343     return get_obj_fd( (struct object *)mapping->file );
344 }
345
346 static void mapping_destroy( struct object *obj )
347 {
348     struct mapping *mapping = (struct mapping *)obj;
349     assert( obj->ops == &mapping_ops );
350     if (mapping->file) release_object( mapping->file );
351     if (mapping->shared_file)
352     {
353         release_object( mapping->shared_file );
354         if (mapping->shared_next) mapping->shared_next->shared_prev = mapping->shared_prev;
355         if (mapping->shared_prev) mapping->shared_prev->shared_next = mapping->shared_next;
356         else shared_first = mapping->shared_next;
357     }
358 }
359
360 int get_page_size(void)
361 {
362     if (!page_mask) init_page_size();
363     return page_mask + 1;
364 }
365
366 /* create a file mapping */
367 DECL_HANDLER(create_mapping)
368 {
369     struct object *obj;
370     file_pos_t size = ((file_pos_t)req->size_high << 32) | req->size_low;
371
372     reply->handle = 0;
373     if ((obj = create_mapping( size, req->protect, req->file_handle,
374                                get_req_data(), get_req_data_size() )))
375     {
376         reply->handle = alloc_handle( current->process, obj, req->access, req->inherit );
377         release_object( obj );
378     }
379 }
380
381 /* open a handle to a mapping */
382 DECL_HANDLER(open_mapping)
383 {
384     reply->handle = open_object( sync_namespace, get_req_data(), get_req_data_size(),
385                                  &mapping_ops, req->access, req->inherit );
386 }
387
388 /* get a mapping information */
389 DECL_HANDLER(get_mapping_info)
390 {
391     struct mapping *mapping;
392
393     if ((mapping = (struct mapping *)get_handle_obj( current->process, req->handle,
394                                                      0, &mapping_ops )))
395     {
396         reply->size_high   = (unsigned int)(mapping->size >> 32);
397         reply->size_low    = (unsigned int)mapping->size;
398         reply->protect     = mapping->protect;
399         reply->header_size = mapping->header_size;
400         reply->base        = mapping->base;
401         reply->shared_file = 0;
402         reply->shared_size = mapping->shared_size;
403         if (mapping->shared_file)
404             reply->shared_file = alloc_handle( current->process, mapping->shared_file,
405                                                GENERIC_READ|GENERIC_WRITE, 0 );
406         release_object( mapping );
407     }
408 }