mapping.c 14.6 KB
Newer Older
1 2 3 4
/*
 * Server-side file mapping management
 *
 * Copyright (C) 1999 Alexandre Julliard
5 6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * 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 27
#include <stdio.h>
#include <stdlib.h>
28
#include <sys/stat.h>
29 30
#include <unistd.h>

31 32
#include "ntstatus.h"
#define WIN32_NO_STATUS
33
#include "windef.h"
34
#include "winternl.h"
35

36
#include "file.h"
37 38
#include "handle.h"
#include "thread.h"
39
#include "request.h"
40 41 42

struct mapping
{
43
    struct object   obj;             /* object header */
44
    file_pos_t      size;            /* mapping size */
45 46 47 48 49 50
    int             protect;         /* protection flags */
    struct file    *file;            /* file mapped */
    int             header_size;     /* size of headers (for PE image mapping) */
    void           *base;            /* default base addr (for PE image mapping) */
    struct file    *shared_file;     /* temp file for shared PE mapping */
    int             shared_size;     /* shared mapping total size */
51
    struct list     shared_entry;    /* entry in global shared PE mappings list */
52 53 54
};

static void mapping_dump( struct object *obj, int verbose );
55
static struct fd *mapping_get_fd( struct object *obj );
56
static unsigned int mapping_map_access( struct object *obj, unsigned int access );
57 58 59 60
static void mapping_destroy( struct object *obj );

static const struct object_ops mapping_ops =
{
61 62 63 64 65 66
    sizeof(struct mapping),      /* size */
    mapping_dump,                /* dump */
    no_add_queue,                /* add_queue */
    NULL,                        /* remove_queue */
    NULL,                        /* signaled */
    NULL,                        /* satisfied */
67
    no_signal,                   /* signal */
68
    mapping_get_fd,              /* get_fd */
69
    mapping_map_access,          /* map_access */
70
    no_lookup_name,              /* lookup_name */
71
    no_close_handle,             /* close_handle */
72
    mapping_destroy              /* destroy */
73 74
};

75
static struct list shared_list = LIST_INIT(shared_list);
76

77 78 79 80 81
#ifdef __i386__

/* These are always the same on an i386, and it will be faster this way */
# define page_mask  0xfff
# define page_shift 12
82
# define init_page_size() do { /* nothing */ } while(0)
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107

#else  /* __i386__ */

static int page_shift, page_mask;

static void init_page_size(void)
{
    int page_size;
# ifdef HAVE_GETPAGESIZE
    page_size = getpagesize();
# else
#  ifdef __svr4__
    page_size = sysconf(_SC_PAGESIZE);
#  else
#   error Cannot get the page size on this platform
#  endif
# endif
    page_mask = page_size - 1;
    /* Make sure we have a power of 2 */
    assert( !(page_size & page_mask) );
    page_shift = 0;
    while ((1 << page_shift) != page_size) page_shift++;
}
#endif  /* __i386__ */

108
#define ROUND_SIZE(size)  (((size) + page_mask) & ~page_mask)
109 110


111 112 113 114 115
/* find the shared PE mapping for a given mapping */
static struct file *get_shared_file( struct mapping *mapping )
{
    struct mapping *ptr;

116
    LIST_FOR_EACH_ENTRY( ptr, &shared_list, struct mapping, shared_entry )
117 118 119 120 121
        if (is_same_file( ptr->file, mapping->file ))
            return (struct file *)grab_object( ptr->shared_file );
    return NULL;
}

122 123 124 125 126 127 128 129 130 131 132 133 134 135
/* return the size of the memory mapping of a given section */
static inline unsigned int get_section_map_size( const IMAGE_SECTION_HEADER *sec )
{
    if (!sec->Misc.VirtualSize) return ROUND_SIZE( sec->SizeOfRawData );
    else return ROUND_SIZE( sec->Misc.VirtualSize );
}

/* return the size of the file mapping of a given section */
static inline unsigned int get_section_filemap_size( const IMAGE_SECTION_HEADER *sec )
{
    if (!sec->Misc.VirtualSize) return sec->SizeOfRawData;
    else return min( sec->SizeOfRawData, ROUND_SIZE( sec->Misc.VirtualSize ) );
}

136 137
/* allocate and fill the temp file for a shared PE image mapping */
static int build_shared_mapping( struct mapping *mapping, int fd,
138
                                 IMAGE_SECTION_HEADER *sec, unsigned int nb_sec )
139
{
140
    unsigned int i, size, max_size, total_size;
141
    off_t shared_pos, read_pos, write_pos;
142 143
    char *buffer = NULL;
    int shared_fd;
144
    long toread;
145 146 147 148 149 150 151 152 153

    /* compute the total size of the shared mapping */

    total_size = max_size = 0;
    for (i = 0; i < nb_sec; i++)
    {
        if ((sec[i].Characteristics & IMAGE_SCN_MEM_SHARED) &&
            (sec[i].Characteristics & IMAGE_SCN_MEM_WRITE))
        {
154
            size = get_section_filemap_size( &sec[i] );
155
            if (size > max_size) max_size = size;
156
            total_size += get_section_map_size( &sec[i] );
157 158 159 160
        }
    }
    if (!(mapping->shared_size = total_size)) return 1;  /* nothing to do */

161 162
    if ((mapping->shared_file = get_shared_file( mapping ))) return 1;

163 164
    /* create a temp file for the mapping */

165
    if (!(mapping->shared_file = create_temp_file( FILE_GENERIC_READ|FILE_GENERIC_WRITE ))) return 0;
166
    if (!grow_file( mapping->shared_file, total_size )) goto error;
167
    if ((shared_fd = get_file_unix_fd( mapping->shared_file )) == -1) goto error;
168 169 170 171 172

    if (!(buffer = malloc( max_size ))) goto error;

    /* copy the shared sections data into the temp file */

173 174
    shared_pos = 0;
    for (i = 0; i < nb_sec; i++)
175 176 177
    {
        if (!(sec[i].Characteristics & IMAGE_SCN_MEM_SHARED)) continue;
        if (!(sec[i].Characteristics & IMAGE_SCN_MEM_WRITE)) continue;
178
        write_pos = shared_pos;
179
        shared_pos += get_section_map_size( &sec[i] );
180
        read_pos = sec[i].PointerToRawData;
181 182 183
        size = get_section_filemap_size( &sec[i] );
        if (!read_pos || !size) continue;
        toread = size;
184 185
        while (toread)
        {
186
            long res = pread( fd, buffer + sec[i].SizeOfRawData - toread, toread, read_pos );
187 188
            if (res <= 0) goto error;
            toread -= res;
189
            read_pos += res;
190
        }
191
        if (pwrite( shared_fd, buffer, size, write_pos ) != size) goto error;
192 193 194 195 196
    }
    free( buffer );
    return 1;

 error:
197 198
    release_object( mapping->shared_file );
    mapping->shared_file = NULL;
199 200 201 202 203 204 205 206 207 208
    if (buffer) free( buffer );
    return 0;
}

/* retrieve the mapping parameters for an executable (PE) image */
static int get_image_params( struct mapping *mapping )
{
    IMAGE_DOS_HEADER dos;
    IMAGE_NT_HEADERS nt;
    IMAGE_SECTION_HEADER *sec = NULL;
209
    struct fd *fd;
210
    off_t pos;
211
    int unix_fd, size, toread;
212 213 214

    /* load the headers */

215
    if (!(fd = mapping_get_fd( &mapping->obj ))) return 0;
216
    if ((unix_fd = get_unix_fd( fd )) == -1) goto error;
217
    if (pread( unix_fd, &dos, sizeof(dos), 0 ) != sizeof(dos)) goto error;
218
    if (dos.e_magic != IMAGE_DOS_SIGNATURE) goto error;
219
    pos = dos.e_lfanew;
220

221 222 223
    if (pread( unix_fd, &nt.Signature, sizeof(nt.Signature), pos ) != sizeof(nt.Signature))
        goto error;
    pos += sizeof(nt.Signature);
224
    if (nt.Signature != IMAGE_NT_SIGNATURE) goto error;
225 226 227
    if (pread( unix_fd, &nt.FileHeader, sizeof(nt.FileHeader), pos ) != sizeof(nt.FileHeader))
        goto error;
    pos += sizeof(nt.FileHeader);
228 229
    /* zero out Optional header in the case it's not present or partial */
    memset(&nt.OptionalHeader, 0, sizeof(nt.OptionalHeader));
230 231
    toread = min( sizeof(nt.OptionalHeader), nt.FileHeader.SizeOfOptionalHeader );
    if (pread( unix_fd, &nt.OptionalHeader, toread, pos ) != toread) goto error;
232
    pos += nt.FileHeader.SizeOfOptionalHeader;
233 234 235 236 237

    /* load the section headers */

    size = sizeof(*sec) * nt.FileHeader.NumberOfSections;
    if (!(sec = malloc( size ))) goto error;
238
    if (pread( unix_fd, sec, size, pos ) != size) goto error;
239

240
    if (!build_shared_mapping( mapping, unix_fd, sec, nt.FileHeader.NumberOfSections )) goto error;
241

242
    if (mapping->shared_file) list_add_head( &shared_list, &mapping->shared_entry );
243

244
    mapping->size        = ROUND_SIZE( nt.OptionalHeader.SizeOfImage );
245
    mapping->base        = (void *)nt.OptionalHeader.ImageBase;
246
    mapping->header_size = nt.OptionalHeader.SizeOfHeaders;
247 248 249
    mapping->protect     = VPROT_IMAGE;

    /* sanity check */
250
    if (mapping->header_size > mapping->size) goto error;
251 252

    free( sec );
253
    release_object( fd );
254 255 256 257
    return 1;

 error:
    if (sec) free( sec );
258
    release_object( fd );
259 260 261 262
    set_error( STATUS_INVALID_FILE_FOR_SECTION );
    return 0;
}

263
/* get the size of the unix file associated with the mapping */
264
inline static int get_file_size( struct file *file, file_pos_t *size )
265 266
{
    struct stat st;
267
    int unix_fd = get_file_unix_fd( file );
268

269
    if (unix_fd == -1 || fstat( unix_fd, &st ) == -1) return 0;
270
    *size = st.st_size;
271 272
    return 1;
}
273

274 275 276
static struct object *create_mapping( struct directory *root, const struct unicode_str *name,
                                      unsigned int attr, file_pos_t size, int protect,
                                      obj_handle_t handle )
277 278
{
    struct mapping *mapping;
279 280 281
    int access = 0;

    if (!page_mask) init_page_size();
282

283
    if (!(mapping = create_named_object_dir( root, name, attr, &mapping_ops )))
284
        return NULL;
285
    if (get_error() == STATUS_OBJECT_NAME_EXISTS)
286 287
        return &mapping->obj;  /* Nothing else to do */

288 289 290 291 292
    mapping->header_size = 0;
    mapping->base        = NULL;
    mapping->shared_file = NULL;
    mapping->shared_size = 0;

293 294
    if (protect & VPROT_READ) access |= FILE_READ_DATA;
    if (protect & VPROT_WRITE) access |= FILE_WRITE_DATA;
295

296
    if (handle)
297
    {
298
        if (!(mapping->file = get_file_obj( current->process, handle, access ))) goto error;
299 300 301 302 303
        if (protect & VPROT_IMAGE)
        {
            if (!get_image_params( mapping )) goto error;
            return &mapping->obj;
        }
304
        if (!size)
305
        {
306 307
            if (!get_file_size( mapping->file, &size )) goto error;
            if (!size)
308
            {
309
                set_error( STATUS_MAPPED_FILE_SIZE_ZERO );
310 311
                goto error;
            }
312 313 314
        }
        else
        {
315
            if (!grow_file( mapping->file, size )) goto error;
316 317
        }
    }
318 319
    else  /* Anonymous mapping (no associated file) */
    {
320
        if (!size || (protect & VPROT_IMAGE))
321
        {
322
            set_error( STATUS_INVALID_PARAMETER );
323 324 325 326
            mapping->file = NULL;
            goto error;
        }
        if (!(mapping->file = create_temp_file( access ))) goto error;
327
        if (!grow_file( mapping->file, size )) goto error;
328
    }
329 330
    mapping->size    = (size + page_mask) & ~((file_pos_t)page_mask);
    mapping->protect = protect;
331
    return &mapping->obj;
332 333 334 335

 error:
    release_object( mapping );
    return NULL;
336 337 338 339 340 341
}

static void mapping_dump( struct object *obj, int verbose )
{
    struct mapping *mapping = (struct mapping *)obj;
    assert( obj->ops == &mapping_ops );
342 343
    fprintf( stderr, "Mapping size=%08x%08x prot=%08x file=%p header_size=%08x base=%p "
             "shared_file=%p shared_size=%08x ",
344 345 346
             (unsigned int)(mapping->size >> 32), (unsigned int)mapping->size,
             mapping->protect, mapping->file, mapping->header_size,
             mapping->base, mapping->shared_file, mapping->shared_size );
347 348
    dump_object_name( &mapping->obj );
    fputc( '\n', stderr );
349 350
}

351 352 353 354 355 356
static struct fd *mapping_get_fd( struct object *obj )
{
    struct mapping *mapping = (struct mapping *)obj;
    return get_obj_fd( (struct object *)mapping->file );
}

357 358 359 360 361 362 363 364 365
static unsigned int mapping_map_access( struct object *obj, unsigned int access )
{
    if (access & GENERIC_READ)    access |= STANDARD_RIGHTS_READ | SECTION_QUERY | SECTION_MAP_READ;
    if (access & GENERIC_WRITE)   access |= STANDARD_RIGHTS_WRITE | SECTION_MAP_WRITE;
    if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE | SECTION_MAP_EXECUTE;
    if (access & GENERIC_ALL)     access |= SECTION_ALL_ACCESS;
    return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
}

366 367 368 369 370
static void mapping_destroy( struct object *obj )
{
    struct mapping *mapping = (struct mapping *)obj;
    assert( obj->ops == &mapping_ops );
    if (mapping->file) release_object( mapping->file );
371 372 373
    if (mapping->shared_file)
    {
        release_object( mapping->shared_file );
374
        list_remove( &mapping->shared_entry );
375
    }
376
}
377

378 379 380 381 382 383
int get_page_size(void)
{
    if (!page_mask) init_page_size();
    return page_mask + 1;
}

384 385 386 387
/* create a file mapping */
DECL_HANDLER(create_mapping)
{
    struct object *obj;
388
    struct unicode_str name;
389
    struct directory *root = NULL;
390
    file_pos_t size = ((file_pos_t)req->size_high << 32) | req->size_low;
391

392
    reply->handle = 0;
393
    get_req_unicode_str( &name );
394 395 396 397
    if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir, 0 )))
        return;

    if ((obj = create_mapping( root, &name, req->attributes, size, req->protect, req->file_handle )))
398
    {
399
        reply->handle = alloc_handle( current->process, obj, req->access, req->attributes );
400 401
        release_object( obj );
    }
402 403

    if (root) release_object( root );
404 405 406 407 408
}

/* open a handle to a mapping */
DECL_HANDLER(open_mapping)
{
409
    struct unicode_str name;
410
    struct directory *root = NULL;
411
    struct mapping *mapping;
412 413

    get_req_unicode_str( &name );
414 415 416
    if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir, 0 )))
        return;

417 418
    if ((mapping = open_object_dir( root, &name, req->attributes, &mapping_ops )))
    {
419
        reply->handle = alloc_handle( current->process, &mapping->obj, req->access, req->attributes );
420 421
        release_object( mapping );
    }
422 423

    if (root) release_object( root );
424 425 426 427 428
}

/* get a mapping information */
DECL_HANDLER(get_mapping_info)
{
429 430 431 432 433
    struct mapping *mapping;

    if ((mapping = (struct mapping *)get_handle_obj( current->process, req->handle,
                                                     0, &mapping_ops )))
    {
434 435
        reply->size_high   = (unsigned int)(mapping->size >> 32);
        reply->size_low    = (unsigned int)mapping->size;
436 437 438 439 440
        reply->protect     = mapping->protect;
        reply->header_size = mapping->header_size;
        reply->base        = mapping->base;
        reply->shared_file = 0;
        reply->shared_size = mapping->shared_size;
441
        if (mapping->shared_file)
442 443
            reply->shared_file = alloc_handle( current->process, mapping->shared_file,
                                               GENERIC_READ|GENERIC_WRITE, 0 );
444 445
        release_object( mapping );
    }
446
}