file.c 25.4 KB
Newer Older
1 2 3 4
/*
 * Server-side file management
 *
 * Copyright (C) 1998 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 25
#include <assert.h>
#include <fcntl.h>
26
#include <stdarg.h>
27
#include <stdio.h>
28
#include <string.h>
29
#include <stdlib.h>
30
#include <errno.h>
31 32 33 34 35
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
Steven Edwards's avatar
Steven Edwards committed
36
#ifdef HAVE_UTIME_H
37
#include <utime.h>
Steven Edwards's avatar
Steven Edwards committed
38
#endif
39 40 41
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
42

43 44
#include "ntstatus.h"
#define WIN32_NO_STATUS
45
#include "windef.h"
46
#include "winternl.h"
47

48
#include "file.h"
49 50
#include "handle.h"
#include "thread.h"
51
#include "request.h"
52 53
#include "process.h"
#include "security.h"
54 55 56

struct file
{
57
    struct object       obj;        /* object header */
58
    struct fd          *fd;         /* file descriptor for this file */
59
    unsigned int        access;     /* file access (FILE_READ_DATA etc.) */
60
    mode_t              mode;       /* file stat.st_mode */
61
    uid_t               uid;        /* file stat.st_uid */
62 63
};

64 65
static unsigned int generic_file_map_access( unsigned int access );

66
static void file_dump( struct object *obj, int verbose );
67
static struct object_type *file_get_type( struct object *obj );
68
static struct fd *file_get_fd( struct object *obj );
69 70
static struct security_descriptor *file_get_sd( struct object *obj );
static int file_set_sd( struct object *obj, const struct security_descriptor *sd, unsigned int set_info );
71 72
static struct object *file_open_file( struct object *obj, unsigned int access,
                                      unsigned int sharing, unsigned int options );
73
static void file_destroy( struct object *obj );
74 75

static int file_get_poll_events( struct fd *fd );
76
static obj_handle_t file_flush( struct fd *fd, const async_data_t *async, int blocking );
77
static enum server_fd_type file_get_fd_type( struct fd *fd );
78 79 80

static const struct object_ops file_ops =
{
81 82
    sizeof(struct file),          /* size */
    file_dump,                    /* dump */
83
    file_get_type,                /* get_type */
84 85
    add_queue,                    /* add_queue */
    remove_queue,                 /* remove_queue */
86
    default_fd_signaled,          /* signaled */
87
    no_satisfied,                 /* satisfied */
88
    no_signal,                    /* signal */
89
    file_get_fd,                  /* get_fd */
90
    default_fd_map_access,        /* map_access */
91 92
    file_get_sd,                  /* get_sd */
    file_set_sd,                  /* set_sd */
93
    no_lookup_name,               /* lookup_name */
94
    file_open_file,               /* open_file */
95
    fd_close_handle,              /* close_handle */
96 97 98 99 100
    file_destroy                  /* destroy */
};

static const struct fd_ops file_fd_ops =
{
101
    file_get_poll_events,         /* get_poll_events */
102
    default_poll_event,           /* poll_event */
103
    file_get_fd_type,             /* get_fd_type */
104 105 106
    no_fd_read,                   /* read */
    no_fd_write,                  /* write */
    file_flush,                   /* flush */
107
    default_fd_ioctl,             /* ioctl */
108
    default_fd_queue_async,       /* queue_async */
109
    default_fd_reselect_async,    /* reselect_async */
110
    default_fd_cancel_async       /* cancel_async */
111 112
};

113 114
static inline int is_overlapped( const struct file *file )
{
115
    return !(get_fd_options( file->fd ) & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT));
116 117
}

118 119
/* create a file from a file descriptor */
/* if the function fails the fd is closed */
120
struct file *create_file_for_fd( int fd, unsigned int access, unsigned int sharing )
121 122
{
    struct file *file;
123 124 125 126 127
    struct stat st;

    if (fstat( fd, &st ) == -1)
    {
        file_set_error();
128
        close( fd );
129 130
        return NULL;
    }
131

132
    if (!(file = alloc_object( &file_ops )))
133
    {
134 135 136 137 138 139 140 141 142 143 144
        close( fd );
        return NULL;
    }

    file->mode = st.st_mode;
    file->access = default_fd_map_access( &file->obj, access );
    if (!(file->fd = create_anonymous_fd( &file_fd_ops, fd, &file->obj,
                                          FILE_SYNCHRONOUS_IO_NONALERT )))
    {
        release_object( file );
        return NULL;
145
    }
146
    allow_fd_caching( file->fd );
147 148
    return file;
}
149

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
/* create a file by duplicating an fd object */
struct file *create_file_for_fd_obj( struct fd *fd, unsigned int access, unsigned int sharing )
{
    struct file *file;
    struct stat st;

    if (fstat( get_unix_fd(fd), &st ) == -1)
    {
        file_set_error();
        return NULL;
    }

    if ((file = alloc_object( &file_ops )))
    {
        file->mode = st.st_mode;
        file->access = default_fd_map_access( &file->obj, access );
        if (!(file->fd = dup_fd_object( fd, access, sharing, FILE_SYNCHRONOUS_IO_NONALERT )))
        {
            release_object( file );
            return NULL;
        }
171
        set_fd_user( file->fd, &file_fd_ops, &file->obj );
172 173 174 175
    }
    return file;
}

176
static struct object *create_file_obj( struct fd *fd, unsigned int access, mode_t mode )
177 178 179 180 181
{
    struct file *file = alloc_object( &file_ops );

    if (!file) return NULL;
    file->access  = access;
182
    file->mode    = mode;
183
    file->uid     = ~(uid_t)0;
184 185 186 187 188
    file->fd      = fd;
    grab_object( fd );
    set_fd_user( fd, &file_fd_ops, &file->obj );
    return &file->obj;
}
189

190 191 192 193
static struct object *create_file( struct fd *root, const char *nameptr, data_size_t len,
                                   unsigned int access, unsigned int sharing, int create,
                                   unsigned int options, unsigned int attrs,
                                   const struct security_descriptor *sd )
194
{
195 196
    struct object *obj = NULL;
    struct fd *fd;
197
    int flags;
198
    char *name;
199
    mode_t mode;
200

201 202 203 204 205
    if (!len || ((nameptr[0] == '/') ^ !root))
    {
        set_error( STATUS_OBJECT_PATH_SYNTAX_BAD );
        return NULL;
    }
206 207 208
    if (!(name = mem_alloc( len + 1 ))) return NULL;
    memcpy( name, nameptr, len );
    name[len] = 0;
209

210
    switch(create)
211
    {
212 213
    case FILE_CREATE:       flags = O_CREAT | O_EXCL; break;
    case FILE_OVERWRITE_IF: /* FIXME: the difference is whether we trash existing attr or not */
214
                            access |= FILE_WRITE_ATTRIBUTES;
215 216 217
    case FILE_SUPERSEDE:    flags = O_CREAT | O_TRUNC; break;
    case FILE_OPEN:         flags = 0; break;
    case FILE_OPEN_IF:      flags = O_CREAT; break;
218 219
    case FILE_OVERWRITE:    flags = O_TRUNC;
                            access |= FILE_WRITE_ATTRIBUTES; break;
220
    default:                set_error( STATUS_INVALID_PARAMETER ); goto done;
221
    }
222

223 224 225 226 227 228 229
    if (sd)
    {
        const SID *owner = sd_get_owner( sd );
        if (!owner)
            owner = token_get_user( current->process->token );
        mode = sd_to_mode( sd, owner );
    }
230 231
    else if (options & FILE_DIRECTORY_FILE)
        mode = (attrs & FILE_ATTRIBUTE_READONLY) ? 0555 : 0777;
232 233
    else
        mode = (attrs & FILE_ATTRIBUTE_READONLY) ? 0444 : 0666;
234 235 236

    if (len >= 4 &&
        (!strcasecmp( name + len - 4, ".exe" ) || !strcasecmp( name + len - 4, ".com" )))
237 238 239 240 241 242 243 244
    {
        if (mode & S_IRUSR)
            mode |= S_IXUSR;
        if (mode & S_IRGRP)
            mode |= S_IXGRP;
        if (mode & S_IROTH)
            mode |= S_IXOTH;
    }
245

246
    access = generic_file_map_access( access );
247

248
    /* FIXME: should set error to STATUS_OBJECT_NAME_COLLISION if file existed before */
249
    fd = open_fd( root, name, flags | O_NONBLOCK | O_LARGEFILE, &mode, access, sharing, options );
250
    if (!fd) goto done;
251

252
    if (S_ISDIR(mode))
253
        obj = create_dir_obj( fd, access, mode );
254
    else if (S_ISCHR(mode) && is_serial_fd( fd ))
255
        obj = create_serial( fd );
256
    else
257
        obj = create_file_obj( fd, access, mode );
258

259
    release_object( fd );
260

261
done:
262
    free( name );
263
    return obj;
264 265
}

266 267 268
/* check if two file objects point to the same file */
int is_same_file( struct file *file1, struct file *file2 )
{
269
    return is_same_file_fd( file1->fd, file2->fd );
270 271
}

272 273 274 275
static void file_dump( struct object *obj, int verbose )
{
    struct file *file = (struct file *)obj;
    assert( obj->ops == &file_ops );
276
    fprintf( stderr, "File fd=%p\n", file->fd );
277 278
}

279 280 281 282 283 284 285
static struct object_type *file_get_type( struct object *obj )
{
    static const WCHAR name[] = {'F','i','l','e'};
    static const struct unicode_str str = { name, sizeof(name) };
    return get_object_type( &str );
}

286
static int file_get_poll_events( struct fd *fd )
287
{
288
    struct file *file = get_fd_user( fd );
289
    int events = 0;
290
    assert( file->obj.ops == &file_ops );
291 292
    if (file->access & FILE_UNIX_READ_ACCESS) events |= POLLIN;
    if (file->access & FILE_UNIX_WRITE_ACCESS) events |= POLLOUT;
293
    return events;
294 295
}

296
static obj_handle_t file_flush( struct fd *fd, const async_data_t *async, int blocking )
297
{
298 299
    int unix_fd = get_unix_fd( fd );
    if (unix_fd != -1 && fsync( unix_fd ) == -1) file_set_error();
300
    return 0;
301 302
}

303
static enum server_fd_type file_get_fd_type( struct fd *fd )
304
{
305 306 307 308 309
    struct file *file = get_fd_user( fd );

    if (S_ISREG(file->mode) || S_ISBLK(file->mode)) return FD_TYPE_FILE;
    if (S_ISDIR(file->mode)) return FD_TYPE_DIR;
    return FD_TYPE_CHAR;
310 311
}

312 313 314 315 316
static struct fd *file_get_fd( struct object *obj )
{
    struct file *file = (struct file *)obj;
    assert( obj->ops == &file_ops );
    return (struct fd *)grab_object( file->fd );
317 318
}

319
static unsigned int generic_file_map_access( unsigned int access )
320 321 322 323 324 325 326 327
{
    if (access & GENERIC_READ)    access |= FILE_GENERIC_READ;
    if (access & GENERIC_WRITE)   access |= FILE_GENERIC_WRITE;
    if (access & GENERIC_EXECUTE) access |= FILE_GENERIC_EXECUTE;
    if (access & GENERIC_ALL)     access |= FILE_ALL_ACCESS;
    return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
}

328
struct security_descriptor *mode_to_sd( mode_t mode, const SID *user, const SID *group )
329 330 331
{
    struct security_descriptor *sd;
    size_t dacl_size;
332
    ACE_HEADER *current_ace;
333 334 335 336 337 338 339 340
    ACCESS_ALLOWED_ACE *aaa;
    ACL *dacl;
    SID *sid;
    char *ptr;
    const SID *world_sid = security_world_sid;
    const SID *local_system_sid = security_local_system_sid;

    dacl_size = sizeof(ACL) + FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) +
341
        security_sid_len( local_system_sid );
342
    if (mode & S_IRWXU)
343
        dacl_size += FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) + security_sid_len( user );
344 345 346
    if ((!(mode & S_IRUSR) && (mode & (S_IRGRP|S_IROTH))) ||
        (!(mode & S_IWUSR) && (mode & (S_IWGRP|S_IWOTH))) ||
        (!(mode & S_IXUSR) && (mode & (S_IXGRP|S_IXOTH))))
347
        dacl_size += FIELD_OFFSET(ACCESS_DENIED_ACE, SidStart) + security_sid_len( user );
348
    if (mode & S_IRWXO)
349
        dacl_size += FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) + security_sid_len( world_sid );
350 351

    sd = mem_alloc( sizeof(struct security_descriptor) +
352
                    security_sid_len( user ) + security_sid_len( group ) +
353
                    dacl_size );
354
    if (!sd) return sd;
355 356

    sd->control = SE_DACL_PRESENT;
357 358
    sd->owner_len = security_sid_len( user );
    sd->group_len = security_sid_len( group );
359 360 361 362 363 364 365 366 367 368 369 370 371
    sd->sacl_len = 0;
    sd->dacl_len = dacl_size;

    ptr = (char *)(sd + 1);
    memcpy( ptr, user, sd->owner_len );
    ptr += sd->owner_len;
    memcpy( ptr, group, sd->group_len );
    ptr += sd->group_len;

    dacl = (ACL *)ptr;
    dacl->AclRevision = ACL_REVISION;
    dacl->Sbz1 = 0;
    dacl->AclSize = dacl_size;
372 373 374 375
    dacl->AceCount = 1 + (mode & S_IRWXU ? 1 : 0) + (mode & S_IRWXO ? 1 : 0);
    if ((!(mode & S_IRUSR) && (mode & (S_IRGRP|S_IROTH))) ||
        (!(mode & S_IWUSR) && (mode & (S_IWGRP|S_IWOTH))) ||
        (!(mode & S_IXUSR) && (mode & (S_IXGRP|S_IXOTH))))
376
        dacl->AceCount++;
377 378 379 380
    dacl->Sbz2 = 0;

    /* always give FILE_ALL_ACCESS for Local System */
    aaa = (ACCESS_ALLOWED_ACE *)(dacl + 1);
381
    current_ace = &aaa->Header;
382
    aaa->Header.AceType = ACCESS_ALLOWED_ACE_TYPE;
383
    aaa->Header.AceFlags = (mode & S_IFDIR) ? OBJECT_INHERIT_ACE | CONTAINER_INHERIT_ACE : 0;
384
    aaa->Header.AceSize = FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) + security_sid_len( local_system_sid );
385 386
    aaa->Mask = FILE_ALL_ACCESS;
    sid = (SID *)&aaa->SidStart;
387
    memcpy( sid, local_system_sid, security_sid_len( local_system_sid ));
388

389
    if (mode & S_IRWXU)
390 391
    {
        /* appropriate access rights for the user */
392 393
        aaa = (ACCESS_ALLOWED_ACE *)ace_next( current_ace );
        current_ace = &aaa->Header;
394
        aaa->Header.AceType = ACCESS_ALLOWED_ACE_TYPE;
395
        aaa->Header.AceFlags = (mode & S_IFDIR) ? OBJECT_INHERIT_ACE | CONTAINER_INHERIT_ACE : 0;
396
        aaa->Header.AceSize = FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) + security_sid_len( user );
397
        aaa->Mask = WRITE_DAC | WRITE_OWNER;
398
        if (mode & S_IRUSR)
399
            aaa->Mask |= FILE_GENERIC_READ | FILE_GENERIC_EXECUTE;
400
        if (mode & S_IWUSR)
401
            aaa->Mask |= FILE_GENERIC_WRITE | DELETE | FILE_DELETE_CHILD;
402
        sid = (SID *)&aaa->SidStart;
403
        memcpy( sid, user, security_sid_len( user ));
404
    }
405 406 407
    if ((!(mode & S_IRUSR) && (mode & (S_IRGRP|S_IROTH))) ||
        (!(mode & S_IWUSR) && (mode & (S_IWGRP|S_IWOTH))) ||
        (!(mode & S_IXUSR) && (mode & (S_IXGRP|S_IXOTH))))
408 409 410 411 412
    {
        /* deny just in case the user is a member of the group */
        ACCESS_DENIED_ACE *ada = (ACCESS_DENIED_ACE *)ace_next( current_ace );
        current_ace = &ada->Header;
        ada->Header.AceType = ACCESS_DENIED_ACE_TYPE;
413
        ada->Header.AceFlags = (mode & S_IFDIR) ? OBJECT_INHERIT_ACE | CONTAINER_INHERIT_ACE : 0;
414
        ada->Header.AceSize = FIELD_OFFSET(ACCESS_DENIED_ACE, SidStart) + security_sid_len( user );
415
        ada->Mask = 0;
416
        if (!(mode & S_IRUSR) && (mode & (S_IRGRP|S_IROTH)))
417
            ada->Mask |= FILE_GENERIC_READ | FILE_GENERIC_EXECUTE;
418
        if (!(mode & S_IWUSR) && (mode & (S_IWGRP|S_IROTH)))
419
            ada->Mask |= FILE_GENERIC_WRITE | DELETE | FILE_DELETE_CHILD;
420 421
        ada->Mask &= ~STANDARD_RIGHTS_ALL; /* never deny standard rights */
        sid = (SID *)&ada->SidStart;
422
        memcpy( sid, user, security_sid_len( user ));
423
    }
424
    if (mode & S_IRWXO)
425 426
    {
        /* appropriate access rights for Everyone */
427 428
        aaa = (ACCESS_ALLOWED_ACE *)ace_next( current_ace );
        current_ace = &aaa->Header;
429
        aaa->Header.AceType = ACCESS_ALLOWED_ACE_TYPE;
430
        aaa->Header.AceFlags = (mode & S_IFDIR) ? OBJECT_INHERIT_ACE | CONTAINER_INHERIT_ACE : 0;
431
        aaa->Header.AceSize = FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) + security_sid_len( world_sid );
432
        aaa->Mask = 0;
433
        if (mode & S_IROTH)
434
            aaa->Mask |= FILE_GENERIC_READ | FILE_GENERIC_EXECUTE;
435
        if (mode & S_IWOTH)
436
            aaa->Mask |= FILE_GENERIC_WRITE | DELETE | FILE_DELETE_CHILD;
437
        sid = (SID *)&aaa->SidStart;
438
        memcpy( sid, world_sid, security_sid_len( world_sid ));
439 440
    }

441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
    return sd;
}

static struct security_descriptor *file_get_sd( struct object *obj )
{
    struct file *file = (struct file *)obj;
    struct stat st;
    int unix_fd;
    struct security_descriptor *sd;

    assert( obj->ops == &file_ops );

    unix_fd = get_file_unix_fd( file );

    if (unix_fd == -1 || fstat( unix_fd, &st ) == -1)
        return obj->sd;

    /* mode and uid the same? if so, no need to re-generate security descriptor */
    if (obj->sd && (st.st_mode & (S_IRWXU|S_IRWXO)) == (file->mode & (S_IRWXU|S_IRWXO)) &&
        (st.st_uid == file->uid))
        return obj->sd;

    sd = mode_to_sd( st.st_mode,
                     security_unix_uid_to_sid( st.st_uid ),
                     token_get_primary_group( current->process->token ));
    if (!sd) return obj->sd;

468 469 470 471 472 473 474
    file->mode = st.st_mode;
    file->uid = st.st_uid;
    free( obj->sd );
    obj->sd = sd;
    return sd;
}

475 476 477 478 479 480
static mode_t file_access_to_mode( unsigned int access )
{
    mode_t mode = 0;

    access = generic_file_map_access( access );
    if (access & FILE_READ_DATA)  mode |= 4;
481
    if (access & (FILE_WRITE_DATA|FILE_APPEND_DATA)) mode |= 2;
482 483 484 485
    if (access & FILE_EXECUTE)    mode |= 1;
    return mode;
}

486
mode_t sd_to_mode( const struct security_descriptor *sd, const SID *owner )
487
{
488
    mode_t new_mode = 0;
489
    mode_t bits_to_set = ~0;
490
    mode_t mode;
491 492
    int present;
    const ACL *dacl = sd_get_dacl( sd, &present );
493
    const SID *user = token_get_user( current->process->token );
494
    if (present && dacl)
495
    {
496 497
        const ACE_HEADER *ace = (const ACE_HEADER *)(dacl + 1);
        ULONG i;
498
        for (i = 0; i < dacl->AceCount; i++, ace = ace_next( ace ))
499
        {
500 501 502
            const ACCESS_ALLOWED_ACE *aa_ace;
            const ACCESS_DENIED_ACE *ad_ace;
            const SID *sid;
503

504
            if (ace->AceFlags & INHERIT_ONLY_ACE) continue;
505

506
            switch (ace->AceType)
507 508 509 510
            {
                case ACCESS_DENIED_ACE_TYPE:
                    ad_ace = (const ACCESS_DENIED_ACE *)ace;
                    sid = (const SID *)&ad_ace->SidStart;
511
                    mode = file_access_to_mode( ad_ace->Mask );
512 513
                    if (security_equal_sid( sid, security_world_sid ))
                    {
514
                        bits_to_set &= ~((mode << 6) | (mode << 3) | mode); /* all */
515
                    }
516 517 518
                    else if ((security_equal_sid( user, owner ) &&
                              token_sid_present( current->process->token, sid, TRUE )))
                    {
519
                        bits_to_set &= ~((mode << 6) | (mode << 3));  /* user + group */
520
                    }
521 522
                    else if (security_equal_sid( sid, owner ))
                    {
523
                        bits_to_set &= ~(mode << 6);  /* user only */
524
                    }
525 526 527 528
                    break;
                case ACCESS_ALLOWED_ACE_TYPE:
                    aa_ace = (const ACCESS_ALLOWED_ACE *)ace;
                    sid = (const SID *)&aa_ace->SidStart;
529
                    mode = file_access_to_mode( aa_ace->Mask );
530 531
                    if (security_equal_sid( sid, security_world_sid ))
                    {
532 533 534
                        mode = (mode << 6) | (mode << 3) | mode;  /* all */
                        new_mode |= mode & bits_to_set;
                        bits_to_set &= ~mode;
535
                    }
536 537 538
                    else if ((security_equal_sid( user, owner ) &&
                              token_sid_present( current->process->token, sid, FALSE )))
                    {
539 540 541
                        mode = (mode << 6) | (mode << 3);  /* user + group */
                        new_mode |= mode & bits_to_set;
                        bits_to_set &= ~mode;
542
                    }
543 544
                    else if (security_equal_sid( sid, owner ))
                    {
545 546 547
                        mode = (mode << 6);  /* user only */
                        new_mode |= mode & bits_to_set;
                        bits_to_set &= ~mode;
548
                    }
549 550 551
                    break;
            }
        }
552 553 554
    }
    else
        /* no ACL means full access rights to anyone */
555
        new_mode = S_IRWXU | S_IRWXG | S_IRWXO;
556

557
    return new_mode;
558
}
559

560 561 562 563 564
static int file_set_sd( struct object *obj, const struct security_descriptor *sd,
                        unsigned int set_info )
{
    struct file *file = (struct file *)obj;
    const SID *owner;
565
    struct stat st;
566 567 568 569 570 571 572
    mode_t mode;
    int unix_fd;

    assert( obj->ops == &file_ops );

    unix_fd = get_file_unix_fd( file );

573
    if (unix_fd == -1 || fstat( unix_fd, &st ) == -1) return 1;
574 575 576 577 578

    if (set_info & OWNER_SECURITY_INFORMATION)
    {
        owner = sd_get_owner( sd );
        if (!owner)
579
        {
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
            set_error( STATUS_INVALID_SECURITY_DESCR );
            return 0;
        }
        if (!obj->sd || !security_equal_sid( owner, sd_get_owner( obj->sd ) ))
        {
            /* FIXME: get Unix uid and call fchown */
        }
    }
    else if (obj->sd)
        owner = sd_get_owner( obj->sd );
    else
        owner = token_get_user( current->process->token );

    /* group and sacl not supported */

    if (set_info & DACL_SECURITY_INFORMATION)
    {
        /* keep the bits that we don't map to access rights in the ACL */
598
        mode = st.st_mode & (S_ISUID|S_ISGID|S_ISVTX);
599 600
        mode |= sd_to_mode( sd, owner );

601
        if (((st.st_mode ^ mode) & (S_IRWXU|S_IRWXG|S_IRWXO)) && fchmod( unix_fd, mode ) == -1)
602
        {
603 604
            file_set_error();
            return 0;
605
        }
606 607 608 609
    }
    return 1;
}

610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
static struct object *file_open_file( struct object *obj, unsigned int access,
                                      unsigned int sharing, unsigned int options )
{
    struct file *file = (struct file *)obj;
    struct object *new_file = NULL;
    char *unix_name;

    assert( obj->ops == &file_ops );

    if ((unix_name = dup_fd_name( file->fd, "" )))
    {
        new_file = create_file( NULL, unix_name, strlen(unix_name), access,
                                sharing, FILE_OPEN, options, 0, NULL );
        free( unix_name );
    }
    else set_error( STATUS_OBJECT_TYPE_MISMATCH );
    return new_file;
}

629
static void file_destroy( struct object *obj )
630
{
631 632
    struct file *file = (struct file *)obj;
    assert( obj->ops == &file_ops );
633

634
    if (file->fd) release_object( file->fd );
635 636 637 638 639 640 641
}

/* set the last error depending on errno */
void file_set_error(void)
{
    switch (errno)
    {
642
    case ETXTBSY:
643 644 645
    case EAGAIN:    set_error( STATUS_SHARING_VIOLATION ); break;
    case EBADF:     set_error( STATUS_INVALID_HANDLE ); break;
    case ENOSPC:    set_error( STATUS_DISK_FULL ); break;
646
    case EACCES:
647
    case ESRCH:
648
    case EROFS:
649 650 651
    case EPERM:     set_error( STATUS_ACCESS_DENIED ); break;
    case EBUSY:     set_error( STATUS_FILE_LOCK_CONFLICT ); break;
    case ENOENT:    set_error( STATUS_NO_SUCH_FILE ); break;
652
    case EISDIR:    set_error( STATUS_FILE_IS_A_DIRECTORY ); break;
653
    case ENFILE:
654
    case EMFILE:    set_error( STATUS_TOO_MANY_OPENED_FILES ); break;
655 656
    case EEXIST:    set_error( STATUS_OBJECT_NAME_COLLISION ); break;
    case EINVAL:    set_error( STATUS_INVALID_PARAMETER ); break;
657
    case ESPIPE:    set_error( STATUS_ILLEGAL_FUNCTION ); break;
658 659
    case ENOTEMPTY: set_error( STATUS_DIRECTORY_NOT_EMPTY ); break;
    case EIO:       set_error( STATUS_ACCESS_VIOLATION ); break;
660
    case ENOTDIR:   set_error( STATUS_NOT_A_DIRECTORY ); break;
661
    case EFBIG:     set_error( STATUS_SECTION_TOO_BIG ); break;
662 663
    case ENODEV:    set_error( STATUS_NO_SUCH_DEVICE ); break;
    case ENXIO:     set_error( STATUS_NO_SUCH_DEVICE ); break;
664
#ifdef EOVERFLOW
665
    case EOVERFLOW: set_error( STATUS_INVALID_PARAMETER ); break;
666
#endif
667 668 669 670
    default:
        perror("wineserver: file_set_error() can't map error");
        set_error( STATUS_UNSUCCESSFUL );
        break;
671
    }
672 673
}

674
struct file *get_file_obj( struct process *process, obj_handle_t handle, unsigned int access )
675
{
676
    return (struct file *)get_handle_obj( process, handle, access, &file_ops );
677
}
678

679 680
int get_file_unix_fd( struct file *file )
{
681
    return get_unix_fd( file->fd );
682 683
}

684 685 686
/* create a file */
DECL_HANDLER(create_file)
{
687
    struct object *file;
688
    struct fd *root_fd = NULL;
689
    struct unicode_str unicode_name;
690
    const struct security_descriptor *sd;
691
    const struct object_attributes *objattr = get_req_object_attributes( &sd, &unicode_name );
692 693 694
    const char *name;
    data_size_t name_len;

695
    if (!objattr) return;
696 697

    /* name is transferred in the unix codepage outside of the objattr structure */
698
    if (unicode_name.len)
699 700 701 702 703
    {
        set_error( STATUS_INVALID_PARAMETER );
        return;
    }

704 705 706 707 708 709 710 711 712 713
    if (objattr->rootdir)
    {
        struct dir *root;

        if (!(root = get_dir_obj( current->process, objattr->rootdir, 0 ))) return;
        root_fd = get_obj_fd( (struct object *)root );
        release_object( root );
        if (!root_fd) return;
    }

714
    name = get_req_data_after_objattr( objattr, &name_len );
715

716
    reply->handle = 0;
717 718
    if ((file = create_file( root_fd, name, name_len, req->access, req->sharing,
                             req->create, req->options, req->attrs, sd )))
719
    {
720
        reply->handle = alloc_handle( current->process, file, req->access, objattr->attributes );
721
        release_object( file );
722
    }
723
    if (root_fd) release_object( root_fd );
724 725 726 727 728 729
}

/* allocate a file handle for a Unix fd */
DECL_HANDLER(alloc_file_handle)
{
    struct file *file;
730
    int fd;
731

732
    reply->handle = 0;
733
    if ((fd = thread_get_inflight_fd( current, req->fd )) == -1)
734
    {
735 736 737
        set_error( STATUS_INVALID_HANDLE );
        return;
    }
738
    if ((file = create_file_for_fd( fd, req->access, FILE_SHARE_READ | FILE_SHARE_WRITE )))
739
    {
740
        reply->handle = alloc_handle( current->process, file, req->access, req->attributes );
741
        release_object( file );
742 743 744 745 746 747 748 749 750 751
    }
}

/* lock a region of a file */
DECL_HANDLER(lock_file)
{
    struct file *file;

    if ((file = get_file_obj( current->process, req->handle, 0 )))
    {
752
        reply->handle = lock_fd( file->fd, req->offset, req->count, req->shared, req->wait );
753
        reply->overlapped = is_overlapped( file );
754 755 756 757 758 759 760 761 762 763 764
        release_object( file );
    }
}

/* unlock a region of a file */
DECL_HANDLER(unlock_file)
{
    struct file *file;

    if ((file = get_file_obj( current->process, req->handle, 0 )))
    {
765
        unlock_fd( file->fd, req->offset, req->count );
766 767 768
        release_object( file );
    }
}