mapping.c 22.9 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
 *
 * 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
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 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
#include "security.h"
41

42 43 44 45 46 47 48 49 50 51 52 53
/* list of memory ranges, used to store committed info */
struct ranges
{
    unsigned int count;
    unsigned int max;
    struct range
    {
        file_pos_t  start;
        file_pos_t  end;
    } ranges[1];
};

54 55
struct mapping
{
56
    struct object   obj;             /* object header */
57
    mem_size_t      size;            /* mapping size */
58
    int             protect;         /* protection flags */
59
    struct fd      *fd;              /* fd for mapped file */
60
    int             header_size;     /* size of headers (for PE image mapping) */
61
    client_ptr_t    base;            /* default base addr (for PE image mapping) */
62
    struct ranges  *committed;       /* list of committed ranges in this mapping */
63
    struct file    *shared_file;     /* temp file for shared PE mapping */
64
    struct list     shared_entry;    /* entry in global shared PE mappings list */
65 66 67
};

static void mapping_dump( struct object *obj, int verbose );
68
static struct object_type *mapping_get_type( struct object *obj );
69
static struct fd *mapping_get_fd( struct object *obj );
70
static unsigned int mapping_map_access( struct object *obj, unsigned int access );
71
static void mapping_destroy( struct object *obj );
72
static enum server_fd_type mapping_get_fd_type( struct fd *fd );
73 74 75

static const struct object_ops mapping_ops =
{
76 77
    sizeof(struct mapping),      /* size */
    mapping_dump,                /* dump */
78
    mapping_get_type,            /* get_type */
79 80 81 82
    no_add_queue,                /* add_queue */
    NULL,                        /* remove_queue */
    NULL,                        /* signaled */
    NULL,                        /* satisfied */
83
    no_signal,                   /* signal */
84
    mapping_get_fd,              /* get_fd */
85
    mapping_map_access,          /* map_access */
86 87
    default_get_sd,              /* get_sd */
    default_set_sd,              /* set_sd */
88
    no_lookup_name,              /* lookup_name */
89
    no_open_file,                /* open_file */
90
    fd_close_handle,             /* close_handle */
91
    mapping_destroy              /* destroy */
92 93
};

94 95 96 97 98 99 100 101 102 103 104 105
static const struct fd_ops mapping_fd_ops =
{
    default_fd_get_poll_events,   /* get_poll_events */
    default_poll_event,           /* poll_event */
    no_flush,                     /* flush */
    mapping_get_fd_type,          /* get_fd_type */
    no_fd_ioctl,                  /* ioctl */
    no_fd_queue_async,            /* queue_async */
    default_fd_reselect_async,    /* reselect_async */
    default_fd_cancel_async       /* cancel_async */
};

106
static struct list shared_list = LIST_INIT(shared_list);
107

108 109 110 111 112
#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
113
# define init_page_size() do { /* nothing */ } while(0)
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138

#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__ */

139
#define ROUND_SIZE(size)  (((size) + page_mask) & ~page_mask)
140 141


142
/* extend a file beyond the current end of file */
143
static int grow_file( int unix_fd, file_pos_t new_size )
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
{
    static const char zero;
    off_t size = new_size;

    if (sizeof(new_size) > sizeof(size) && size != new_size)
    {
        set_error( STATUS_INVALID_PARAMETER );
        return 0;
    }
    /* extend the file one byte beyond the requested size and then truncate it */
    /* this should work around ftruncate implementations that can't extend files */
    if (pwrite( unix_fd, &zero, 1, size ) != -1)
    {
        ftruncate( unix_fd, size );
        return 1;
    }
    file_set_error();
    return 0;
}

164
/* create a temp file for anonymous mappings */
165
static int create_temp_file( file_pos_t size )
166 167 168 169 170 171
{
    char tmpfn[16];
    int fd;

    sprintf( tmpfn, "anonmap.XXXXXX" );  /* create it in the server directory */
    fd = mkstemps( tmpfn, 0 );
172
    if (fd != -1)
173
    {
174 175 176 177 178 179
        if (!grow_file( fd, size ))
        {
            close( fd );
            fd = -1;
        }
        unlink( tmpfn );
180
    }
181 182
    else file_set_error();
    return fd;
183 184
}

185 186 187 188 189
/* find the shared PE mapping for a given mapping */
static struct file *get_shared_file( struct mapping *mapping )
{
    struct mapping *ptr;

190
    LIST_FOR_EACH_ENTRY( ptr, &shared_list, struct mapping, shared_entry )
191
        if (is_same_file_fd( ptr->fd, mapping->fd ))
192 193 194 195
            return (struct file *)grab_object( ptr->shared_file );
    return NULL;
}

196 197 198
/* return the size of the memory mapping and file range of a given section */
static inline void get_section_sizes( const IMAGE_SECTION_HEADER *sec, size_t *map_size,
                                      off_t *file_start, size_t *file_size )
199
{
200
    static const unsigned int sector_align = 0x1ff;
201

202 203 204 205 206 207
    if (!sec->Misc.VirtualSize) *map_size = ROUND_SIZE( sec->SizeOfRawData );
    else *map_size = ROUND_SIZE( sec->Misc.VirtualSize );

    *file_start = sec->PointerToRawData & ~sector_align;
    *file_size = (sec->SizeOfRawData + (sec->PointerToRawData & sector_align) + sector_align) & ~sector_align;
    if (*file_size > *map_size) *file_size = *map_size;
208 209
}

210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
/* add a range to the committed list */
static void add_committed_range( struct mapping *mapping, file_pos_t start, file_pos_t end )
{
    unsigned int i, j;
    struct range *ranges;

    if (!mapping->committed) return;  /* everything committed already */

    for (i = 0, ranges = mapping->committed->ranges; i < mapping->committed->count; i++)
    {
        if (ranges[i].start > end) break;
        if (ranges[i].end < start) continue;
        if (ranges[i].start > start) ranges[i].start = start;   /* extend downwards */
        if (ranges[i].end < end)  /* extend upwards and maybe merge with next */
        {
            for (j = i + 1; j < mapping->committed->count; j++)
            {
                if (ranges[j].start > end) break;
                if (ranges[j].end > end) end = ranges[j].end;
            }
            if (j > i + 1)
            {
                memmove( &ranges[i + 1], &ranges[j], (mapping->committed->count - j) * sizeof(*ranges) );
                mapping->committed->count -= j - (i + 1);
            }
            ranges[i].end = end;
        }
        return;
    }

    /* now add a new range */

    if (mapping->committed->count == mapping->committed->max)
    {
        unsigned int new_size = mapping->committed->max * 2;
        struct ranges *new_ptr = realloc( mapping->committed, offsetof( struct ranges, ranges[new_size] ));
        if (!new_ptr) return;
        new_ptr->max = new_size;
        ranges = new_ptr->ranges;
        mapping->committed = new_ptr;
    }
    memmove( &ranges[i + 1], &ranges[i], (mapping->committed->count - i) * sizeof(*ranges) );
    ranges[i].start = start;
    ranges[i].end = end;
    mapping->committed->count++;
}

/* find the range containing start and return whether it's committed */
258
static int find_committed_range( struct mapping *mapping, file_pos_t start, mem_size_t *size )
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
{
    unsigned int i;
    struct range *ranges;

    if (!mapping->committed)  /* everything is committed */
    {
        *size = mapping->size - start;
        return 1;
    }
    for (i = 0, ranges = mapping->committed->ranges; i < mapping->committed->count; i++)
    {
        if (ranges[i].start > start)
        {
            *size = ranges[i].start - start;
            return 0;
        }
        if (ranges[i].end > start)
        {
            *size = ranges[i].end - start;
            return 1;
        }
    }
    *size = mapping->size - start;
    return 0;
}

285 286
/* allocate and fill the temp file for a shared PE image mapping */
static int build_shared_mapping( struct mapping *mapping, int fd,
287
                                 IMAGE_SECTION_HEADER *sec, unsigned int nb_sec )
288
{
289
    unsigned int i;
290
    mem_size_t total_size;
291
    size_t file_size, map_size, max_size;
292
    off_t shared_pos, read_pos, write_pos;
293 294
    char *buffer = NULL;
    int shared_fd;
295
    long toread;
296 297 298 299 300 301 302 303 304

    /* 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))
        {
305 306 307
            get_section_sizes( &sec[i], &map_size, &read_pos, &file_size );
            if (file_size > max_size) max_size = file_size;
            total_size += map_size;
308 309
        }
    }
310
    if (!total_size) return 1;  /* nothing to do */
311

312 313
    if ((mapping->shared_file = get_shared_file( mapping ))) return 1;

314 315
    /* create a temp file for the mapping */

316 317 318
    if ((shared_fd = create_temp_file( total_size )) == -1) return 0;
    if (!(mapping->shared_file = create_file_for_fd( shared_fd, FILE_GENERIC_READ|FILE_GENERIC_WRITE, 0 )))
        return 0;
319 320 321 322 323

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

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

324 325
    shared_pos = 0;
    for (i = 0; i < nb_sec; i++)
326 327 328
    {
        if (!(sec[i].Characteristics & IMAGE_SCN_MEM_SHARED)) continue;
        if (!(sec[i].Characteristics & IMAGE_SCN_MEM_WRITE)) continue;
329
        get_section_sizes( &sec[i], &map_size, &read_pos, &file_size );
330
        write_pos = shared_pos;
331 332 333
        shared_pos += map_size;
        if (!sec[i].PointerToRawData || !file_size) continue;
        toread = file_size;
334 335
        while (toread)
        {
336
            long res = pread( fd, buffer + file_size - toread, toread, read_pos );
337 338 339 340 341
            if (!res && toread < 0x200)  /* partial sector at EOF is not an error */
            {
                file_size -= toread;
                break;
            }
342 343
            if (res <= 0) goto error;
            toread -= res;
344
            read_pos += res;
345
        }
346
        if (pwrite( shared_fd, buffer, file_size, write_pos ) != file_size) goto error;
347 348 349 350 351
    }
    free( buffer );
    return 1;

 error:
352 353
    release_object( mapping->shared_file );
    mapping->shared_file = NULL;
354
    free( buffer );
355 356 357 358
    return 0;
}

/* retrieve the mapping parameters for an executable (PE) image */
359
static int get_image_params( struct mapping *mapping, int unix_fd )
360 361 362
{
    IMAGE_DOS_HEADER dos;
    IMAGE_SECTION_HEADER *sec = NULL;
363 364 365 366 367 368 369 370 371 372
    struct
    {
        DWORD Signature;
        IMAGE_FILE_HEADER FileHeader;
        union
        {
            IMAGE_OPTIONAL_HEADER32 hdr32;
            IMAGE_OPTIONAL_HEADER64 hdr64;
        } opt;
    } nt;
373
    off_t pos;
374
    int size;
375 376 377

    /* load the headers */

378
    if (pread( unix_fd, &dos, sizeof(dos), 0 ) != sizeof(dos)) goto error;
379
    if (dos.e_magic != IMAGE_DOS_SIGNATURE) goto error;
380
    pos = dos.e_lfanew;
381

382 383 384 385
    size = pread( unix_fd, &nt, sizeof(nt), pos );
    if (size < sizeof(nt.Signature) + sizeof(nt.FileHeader)) goto error;
    /* zero out Optional header in the case it's not present or partial */
    if (size < sizeof(nt)) memset( (char *)&nt + size, 0, sizeof(nt) - size );
386
    if (nt.Signature != IMAGE_NT_SIGNATURE) goto error;
387 388 389 390 391 392 393 394 395 396 397 398 399 400

    switch (nt.opt.hdr32.Magic)
    {
    case IMAGE_NT_OPTIONAL_HDR32_MAGIC:
        mapping->size        = ROUND_SIZE( nt.opt.hdr32.SizeOfImage );
        mapping->base        = nt.opt.hdr32.ImageBase;
        mapping->header_size = nt.opt.hdr32.SizeOfHeaders;
        break;
    case IMAGE_NT_OPTIONAL_HDR64_MAGIC:
        mapping->size        = ROUND_SIZE( nt.opt.hdr64.SizeOfImage );
        mapping->base        = nt.opt.hdr64.ImageBase;
        mapping->header_size = nt.opt.hdr64.SizeOfHeaders;
        break;
    default:
401
        goto error;
402
    }
403 404 405

    /* load the section headers */

406
    pos += sizeof(nt.Signature) + sizeof(nt.FileHeader) + nt.FileHeader.SizeOfOptionalHeader;
407
    size = sizeof(*sec) * nt.FileHeader.NumberOfSections;
408 409
    if (pos + size > mapping->size) goto error;
    if (pos + size > mapping->header_size) mapping->header_size = pos + size;
410
    if (!(sec = malloc( size ))) goto error;
411
    if (pread( unix_fd, sec, size, pos ) != size) goto error;
412

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

415
    if (mapping->shared_file) list_add_head( &shared_list, &mapping->shared_entry );
416

417
    mapping->protect = VPROT_IMAGE;
418 419 420 421
    free( sec );
    return 1;

 error:
422
    free( sec );
423 424 425 426
    set_error( STATUS_INVALID_FILE_FOR_SECTION );
    return 0;
}

427
static struct object *create_mapping( struct directory *root, const struct unicode_str *name,
428
                                      unsigned int attr, mem_size_t size, int protect,
429
                                      obj_handle_t handle, const struct security_descriptor *sd )
430 431
{
    struct mapping *mapping;
432 433
    struct file *file;
    struct fd *fd;
434
    int access = 0;
435 436
    int unix_fd;
    struct stat st;
437 438

    if (!page_mask) init_page_size();
439

440
    if (!(mapping = create_named_object_dir( root, name, attr, &mapping_ops )))
441
        return NULL;
442
    if (get_error() == STATUS_OBJECT_NAME_EXISTS)
443 444
        return &mapping->obj;  /* Nothing else to do */

445 446 447 448
    if (sd) default_set_sd( &mapping->obj, sd, OWNER_SECURITY_INFORMATION|
                                               GROUP_SECURITY_INFORMATION|
                                               DACL_SECURITY_INFORMATION|
                                               SACL_SECURITY_INFORMATION );
449
    mapping->header_size = 0;
450
    mapping->base        = 0;
451
    mapping->fd          = NULL;
452
    mapping->shared_file = NULL;
453
    mapping->committed   = NULL;
454

455 456
    if (protect & VPROT_READ) access |= FILE_READ_DATA;
    if (protect & VPROT_WRITE) access |= FILE_WRITE_DATA;
457

458
    if (handle)
459
    {
460
        unsigned int mapping_access = FILE_MAPPING_ACCESS;
461

462 463 464 465 466
        if (!(protect & VPROT_COMMITTED))
        {
            set_error( STATUS_INVALID_PARAMETER );
            goto error;
        }
467 468
        if (!(file = get_file_obj( current->process, handle, access ))) goto error;
        fd = get_obj_fd( (struct object *)file );
469 470 471 472 473 474 475

        /* file sharing rules for mappings are different so we use magic the access rights */
        if (protect & VPROT_IMAGE) mapping_access |= FILE_MAPPING_IMAGE;
        else if (protect & VPROT_WRITE) mapping_access |= FILE_MAPPING_WRITE;
        mapping->fd = dup_fd_object( fd, mapping_access,
                                     FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
                                     FILE_SYNCHRONOUS_IO_NONALERT );
476 477 478 479 480
        release_object( file );
        release_object( fd );
        if (!mapping->fd) goto error;

        set_fd_user( mapping->fd, &mapping_fd_ops, &mapping->obj );
481
        if ((unix_fd = get_unix_fd( mapping->fd )) == -1) goto error;
482 483
        if (protect & VPROT_IMAGE)
        {
484
            if (!get_image_params( mapping, unix_fd )) goto error;
485 486
            return &mapping->obj;
        }
487 488 489 490 491
        if (fstat( unix_fd, &st ) == -1)
        {
            file_set_error();
            goto error;
        }
492
        if (!size)
493
        {
494
            if (!(size = st.st_size))
495
            {
496
                set_error( STATUS_MAPPED_FILE_SIZE_ZERO );
497 498
                goto error;
            }
499
        }
500
        else if (st.st_size < size && !grow_file( unix_fd, size )) goto error;
501
    }
502 503
    else  /* Anonymous mapping (no associated file) */
    {
504
        if (!size || (protect & VPROT_IMAGE))
505
        {
506
            set_error( STATUS_INVALID_PARAMETER );
507 508
            goto error;
        }
509 510 511 512 513 514
        if (!(protect & VPROT_COMMITTED))
        {
            if (!(mapping->committed = mem_alloc( offsetof(struct ranges, ranges[8]) ))) goto error;
            mapping->committed->count = 0;
            mapping->committed->max   = 8;
        }
515 516 517
        if ((unix_fd = create_temp_file( size )) == -1) goto error;
        if (!(mapping->fd = create_anonymous_fd( &mapping_fd_ops, unix_fd, &mapping->obj,
                                                 FILE_SYNCHRONOUS_IO_NONALERT ))) goto error;
518
    }
519
    mapping->size    = (size + page_mask) & ~((mem_size_t)page_mask);
520
    mapping->protect = protect;
521
    return &mapping->obj;
522 523 524 525

 error:
    release_object( mapping );
    return NULL;
526 527 528 529 530 531
}

static void mapping_dump( struct object *obj, int verbose )
{
    struct mapping *mapping = (struct mapping *)obj;
    assert( obj->ops == &mapping_ops );
532
    fprintf( stderr, "Mapping size=%08x%08x prot=%08x fd=%p header_size=%08x base=%08lx "
533
             "shared_file=%p ",
534
             (unsigned int)(mapping->size >> 32), (unsigned int)mapping->size,
535
             mapping->protect, mapping->fd, mapping->header_size,
536
             (unsigned long)mapping->base, mapping->shared_file );
537 538
    dump_object_name( &mapping->obj );
    fputc( '\n', stderr );
539 540
}

541 542 543 544 545 546 547
static struct object_type *mapping_get_type( struct object *obj )
{
    static const WCHAR name[] = {'S','e','c','t','i','o','n'};
    static const struct unicode_str str = { name, sizeof(name) };
    return get_object_type( &str );
}

548 549 550
static struct fd *mapping_get_fd( struct object *obj )
{
    struct mapping *mapping = (struct mapping *)obj;
551
    return (struct fd *)grab_object( mapping->fd );
552 553
}

554 555 556 557 558 559 560 561 562
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);
}

563 564 565 566
static void mapping_destroy( struct object *obj )
{
    struct mapping *mapping = (struct mapping *)obj;
    assert( obj->ops == &mapping_ops );
567
    if (mapping->fd) release_object( mapping->fd );
568 569 570
    if (mapping->shared_file)
    {
        release_object( mapping->shared_file );
571
        list_remove( &mapping->shared_entry );
572
    }
573
    free( mapping->committed );
574
}
575

576 577 578 579 580
static enum server_fd_type mapping_get_fd_type( struct fd *fd )
{
    return FD_TYPE_FILE;
}

581 582 583 584 585 586
int get_page_size(void)
{
    if (!page_mask) init_page_size();
    return page_mask + 1;
}

587 588 589 590
/* create a file mapping */
DECL_HANDLER(create_mapping)
{
    struct object *obj;
591
    struct unicode_str name;
592
    struct directory *root = NULL;
593 594
    const struct object_attributes *objattr = get_req_data();
    const struct security_descriptor *sd;
595

596
    reply->handle = 0;
597 598 599 600 601

    if (!objattr_is_valid( objattr, get_req_data_size() ))
        return;

    sd = objattr->sd_len ? (const struct security_descriptor *)(objattr + 1) : NULL;
602
    objattr_get_name( objattr, &name );
603 604

    if (objattr->rootdir && !(root = get_directory_obj( current->process, objattr->rootdir, 0 )))
605 606
        return;

607
    if ((obj = create_mapping( root, &name, req->attributes, req->size, req->protect, req->file_handle, sd )))
608
    {
609 610 611 612
        if (get_error() == STATUS_OBJECT_NAME_EXISTS)
            reply->handle = alloc_handle( current->process, obj, req->access, req->attributes );
        else
            reply->handle = alloc_handle_no_access_check( current->process, obj, req->access, req->attributes );
613 614
        release_object( obj );
    }
615 616

    if (root) release_object( root );
617 618 619 620 621
}

/* open a handle to a mapping */
DECL_HANDLER(open_mapping)
{
622
    struct unicode_str name;
623
    struct directory *root = NULL;
624
    struct mapping *mapping;
625 626

    get_req_unicode_str( &name );
627 628 629
    if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir, 0 )))
        return;

630 631
    if ((mapping = open_object_dir( root, &name, req->attributes, &mapping_ops )))
    {
632
        reply->handle = alloc_handle( current->process, &mapping->obj, req->access, req->attributes );
633 634
        release_object( mapping );
    }
635 636

    if (root) release_object( root );
637 638 639 640 641
}

/* get a mapping information */
DECL_HANDLER(get_mapping_info)
{
642
    struct mapping *mapping;
643
    struct fd *fd;
644 645

    if ((mapping = (struct mapping *)get_handle_obj( current->process, req->handle,
646
                                                     req->access, &mapping_ops )))
647
    {
648
        reply->size        = mapping->size;
649 650 651 652
        reply->protect     = mapping->protect;
        reply->header_size = mapping->header_size;
        reply->base        = mapping->base;
        reply->shared_file = 0;
653 654 655 656 657 658
        if ((fd = get_obj_fd( &mapping->obj )))
        {
            if (!is_fd_removable(fd))
                reply->mapping = alloc_handle( current->process, mapping, 0, 0 );
            release_object( fd );
        }
659
        if (mapping->shared_file)
660 661 662 663 664 665 666
        {
            if (!(reply->shared_file = alloc_handle( current->process, mapping->shared_file,
                                                     GENERIC_READ|GENERIC_WRITE, 0 )))
            {
                if (reply->mapping) close_handle( current->process, reply->mapping );
            }
        }
667 668
        release_object( mapping );
    }
669
}
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705

/* get a range of committed pages in a file mapping */
DECL_HANDLER(get_mapping_committed_range)
{
    struct mapping *mapping;

    if ((mapping = (struct mapping *)get_handle_obj( current->process, req->handle, 0, &mapping_ops )))
    {
        if (!(req->offset & page_mask) && req->offset < mapping->size)
            reply->committed = find_committed_range( mapping, req->offset, &reply->size );
        else
            set_error( STATUS_INVALID_PARAMETER );

        release_object( mapping );
    }
}

/* add a range to the committed pages in a file mapping */
DECL_HANDLER(add_mapping_committed_range)
{
    struct mapping *mapping;

    if ((mapping = (struct mapping *)get_handle_obj( current->process, req->handle, 0, &mapping_ops )))
    {
        if (!(req->size & page_mask) &&
            !(req->offset & page_mask) &&
            req->offset < mapping->size &&
            req->size > 0 &&
            req->size <= mapping->size - req->offset)
            add_committed_range( mapping, req->offset, req->offset + req->size );
        else
            set_error( STATUS_INVALID_PARAMETER );

        release_object( mapping );
    }
}