file.c 25.9 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
static struct object *file_lookup_name( struct object *obj, struct unicode_str *name, unsigned int attr );
72 73
static struct object *file_open_file( struct object *obj, unsigned int access,
                                      unsigned int sharing, unsigned int options );
74
static void file_destroy( struct object *obj );
75 76

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

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

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

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

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

    if (fstat( fd, &st ) == -1)
    {
        file_set_error();
131
        close( fd );
132 133
        return NULL;
    }
134

135
    if (!(file = alloc_object( &file_ops )))
136
    {
137 138 139 140 141 142 143 144 145 146 147
        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;
148
    }
149
    allow_fd_caching( file->fd );
150 151
    return file;
}
152

153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
/* 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;
        }
174
        set_fd_user( file->fd, &file_fd_ops, &file->obj );
175 176 177 178
    }
    return file;
}

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

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

193 194 195 196
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 )
197
{
198 199
    struct object *obj = NULL;
    struct fd *fd;
200
    int flags;
201
    char *name;
202
    mode_t mode;
203

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

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

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

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

249
    access = generic_file_map_access( access );
250

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

255
    if (S_ISDIR(mode))
256
        obj = create_dir_obj( fd, access, mode );
257
    else if (S_ISCHR(mode) && is_serial_fd( fd ))
258
        obj = create_serial( fd );
259
    else
260
        obj = create_file_obj( fd, access, mode );
261

262
    release_object( fd );
263

264
done:
265
    free( name );
266
    return obj;
267 268
}

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

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

282 283 284 285 286 287 288
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 );
}

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

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

306
static enum server_fd_type file_get_fd_type( struct fd *fd )
307
{
308 309 310 311 312
    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;
313 314
}

315 316 317 318 319
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 );
320 321
}

322
static unsigned int generic_file_map_access( unsigned int access )
323 324 325 326 327 328 329 330
{
    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);
}

331
struct security_descriptor *mode_to_sd( mode_t mode, const SID *user, const SID *group )
332 333 334
{
    struct security_descriptor *sd;
    size_t dacl_size;
335
    ACE_HEADER *current_ace;
336 337 338 339 340 341 342 343
    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) +
344
        security_sid_len( local_system_sid );
345
    if (mode & S_IRWXU)
346
        dacl_size += FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) + security_sid_len( user );
347 348 349
    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))))
350
        dacl_size += FIELD_OFFSET(ACCESS_DENIED_ACE, SidStart) + security_sid_len( user );
351
    if (mode & S_IRWXO)
352
        dacl_size += FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) + security_sid_len( world_sid );
353 354

    sd = mem_alloc( sizeof(struct security_descriptor) +
355
                    security_sid_len( user ) + security_sid_len( group ) +
356
                    dacl_size );
357
    if (!sd) return sd;
358 359

    sd->control = SE_DACL_PRESENT;
360 361
    sd->owner_len = security_sid_len( user );
    sd->group_len = security_sid_len( group );
362 363 364 365 366 367 368 369 370 371 372 373 374
    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;
375 376 377 378
    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))))
379
        dacl->AceCount++;
380 381 382 383
    dacl->Sbz2 = 0;

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

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

471 472 473 474 475 476 477
    file->mode = st.st_mode;
    file->uid = st.st_uid;
    free( obj->sd );
    obj->sd = sd;
    return sd;
}

478 479 480 481 482 483
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;
484
    if (access & (FILE_WRITE_DATA|FILE_APPEND_DATA)) mode |= 2;
485 486 487 488
    if (access & FILE_EXECUTE)    mode |= 1;
    return mode;
}

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

507
            if (ace->AceFlags & INHERIT_ONLY_ACE) continue;
508

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

560
    return new_mode;
561
}
562

563 564 565 566 567
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;
568
    struct stat st;
569 570 571 572 573 574 575
    mode_t mode;
    int unix_fd;

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

    unix_fd = get_file_unix_fd( file );

576
    if (unix_fd == -1 || fstat( unix_fd, &st ) == -1) return 1;
577 578 579 580 581

    if (set_info & OWNER_SECURITY_INFORMATION)
    {
        owner = sd_get_owner( sd );
        if (!owner)
582
        {
583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
            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 */
601
        mode = st.st_mode & (S_ISUID|S_ISGID|S_ISVTX);
602 603
        mode |= sd_to_mode( sd, owner );

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

613 614 615 616 617 618 619 620
static struct object *file_lookup_name( struct object *obj, struct unicode_str *name, unsigned int attr )
{
    if (!name || !name->len) return NULL;  /* open the file itself */

    set_error( STATUS_OBJECT_PATH_NOT_FOUND );
    return NULL;
}

621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
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;
}

640
static void file_destroy( struct object *obj )
641
{
642 643
    struct file *file = (struct file *)obj;
    assert( obj->ops == &file_ops );
644

645
    if (file->fd) release_object( file->fd );
646 647 648 649 650 651 652
}

/* set the last error depending on errno */
void file_set_error(void)
{
    switch (errno)
    {
653
    case ETXTBSY:
654 655 656
    case EAGAIN:    set_error( STATUS_SHARING_VIOLATION ); break;
    case EBADF:     set_error( STATUS_INVALID_HANDLE ); break;
    case ENOSPC:    set_error( STATUS_DISK_FULL ); break;
657
    case EACCES:
658
    case ESRCH:
659
    case EROFS:
660 661 662
    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;
663
    case EISDIR:    set_error( STATUS_FILE_IS_A_DIRECTORY ); break;
664
    case ENFILE:
665
    case EMFILE:    set_error( STATUS_TOO_MANY_OPENED_FILES ); break;
666 667
    case EEXIST:    set_error( STATUS_OBJECT_NAME_COLLISION ); break;
    case EINVAL:    set_error( STATUS_INVALID_PARAMETER ); break;
668
    case ESPIPE:    set_error( STATUS_ILLEGAL_FUNCTION ); break;
669 670
    case ENOTEMPTY: set_error( STATUS_DIRECTORY_NOT_EMPTY ); break;
    case EIO:       set_error( STATUS_ACCESS_VIOLATION ); break;
671
    case ENOTDIR:   set_error( STATUS_NOT_A_DIRECTORY ); break;
672
    case EFBIG:     set_error( STATUS_SECTION_TOO_BIG ); break;
673 674
    case ENODEV:    set_error( STATUS_NO_SUCH_DEVICE ); break;
    case ENXIO:     set_error( STATUS_NO_SUCH_DEVICE ); break;
675
#ifdef EOVERFLOW
676
    case EOVERFLOW: set_error( STATUS_INVALID_PARAMETER ); break;
677
#endif
678 679 680 681
    default:
        perror("wineserver: file_set_error() can't map error");
        set_error( STATUS_UNSUCCESSFUL );
        break;
682
    }
683 684
}

685
struct file *get_file_obj( struct process *process, obj_handle_t handle, unsigned int access )
686
{
687
    return (struct file *)get_handle_obj( process, handle, access, &file_ops );
688
}
689

690 691
int get_file_unix_fd( struct file *file )
{
692
    return get_unix_fd( file->fd );
693 694
}

695 696 697
/* create a file */
DECL_HANDLER(create_file)
{
698
    struct object *file;
699
    struct fd *root_fd = NULL;
700
    struct unicode_str unicode_name;
701
    const struct security_descriptor *sd;
702
    const struct object_attributes *objattr = get_req_object_attributes( &sd, &unicode_name, NULL );
703 704 705
    const char *name;
    data_size_t name_len;

706
    if (!objattr) return;
707 708

    /* name is transferred in the unix codepage outside of the objattr structure */
709
    if (unicode_name.len)
710 711 712 713 714
    {
        set_error( STATUS_INVALID_PARAMETER );
        return;
    }

715 716 717 718 719 720 721 722 723 724
    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;
    }

725
    name = get_req_data_after_objattr( objattr, &name_len );
726

727
    reply->handle = 0;
728 729
    if ((file = create_file( root_fd, name, name_len, req->access, req->sharing,
                             req->create, req->options, req->attrs, sd )))
730
    {
731
        reply->handle = alloc_handle( current->process, file, req->access, objattr->attributes );
732
        release_object( file );
733
    }
734
    if (root_fd) release_object( root_fd );
735 736 737 738 739 740
}

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

743
    reply->handle = 0;
744
    if ((fd = thread_get_inflight_fd( current, req->fd )) == -1)
745
    {
746 747 748
        set_error( STATUS_INVALID_HANDLE );
        return;
    }
749
    if ((file = create_file_for_fd( fd, req->access, FILE_SHARE_READ | FILE_SHARE_WRITE )))
750
    {
751
        reply->handle = alloc_handle( current->process, file, req->access, req->attributes );
752
        release_object( file );
753 754 755 756 757 758 759 760 761 762
    }
}

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

    if ((file = get_file_obj( current->process, req->handle, 0 )))
    {
763
        reply->handle = lock_fd( file->fd, req->offset, req->count, req->shared, req->wait );
764
        reply->overlapped = is_overlapped( file );
765 766 767 768 769 770 771 772 773 774 775
        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 )))
    {
776
        unlock_fd( file->fd, req->offset, req->count );
777 778 779
        release_object( file );
    }
}