Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Server-side file management |
| 3 | * |
| 4 | * Copyright (C) 1998 Alexandre Julliard |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 5 | * |
| 6 | * This library is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU Lesser General Public |
| 8 | * License as published by the Free Software Foundation; either |
| 9 | * version 2.1 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This library is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * Lesser General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU Lesser General Public |
| 17 | * License along with this library; if not, write to the Free Software |
Jonathan Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame] | 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
Patrik Stridvall | 9633632 | 1999-10-24 22:13:47 +0000 | [diff] [blame] | 21 | #include "config.h" |
Marcus Meissner | 3f1ed52 | 2001-05-14 20:09:37 +0000 | [diff] [blame] | 22 | #include "wine/port.h" |
Patrik Stridvall | 9633632 | 1999-10-24 22:13:47 +0000 | [diff] [blame] | 23 | |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 24 | #include <assert.h> |
| 25 | #include <fcntl.h> |
Alexandre Julliard | e37c6e1 | 2003-09-05 23:08:26 +0000 | [diff] [blame] | 26 | #include <stdarg.h> |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 27 | #include <stdio.h> |
David Luyer | ee517e8 | 1999-02-28 12:27:56 +0000 | [diff] [blame] | 28 | #include <string.h> |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 29 | #include <stdlib.h> |
Marcus Meissner | 8ba68fb | 1999-01-01 18:42:17 +0000 | [diff] [blame] | 30 | #include <errno.h> |
Howard Abrams | 1327748 | 1999-07-10 13:16:29 +0000 | [diff] [blame] | 31 | #ifdef HAVE_SYS_ERRNO_H |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 32 | #include <sys/errno.h> |
Howard Abrams | 1327748 | 1999-07-10 13:16:29 +0000 | [diff] [blame] | 33 | #endif |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 34 | #include <sys/stat.h> |
| 35 | #include <sys/time.h> |
| 36 | #include <sys/types.h> |
| 37 | #include <time.h> |
| 38 | #include <unistd.h> |
Steven Edwards | 037c8a1 | 2003-02-11 22:27:13 +0000 | [diff] [blame] | 39 | #ifdef HAVE_UTIME_H |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 40 | #include <utime.h> |
Steven Edwards | 037c8a1 | 2003-02-11 22:27:13 +0000 | [diff] [blame] | 41 | #endif |
Steven Edwards | 5727918 | 2005-03-04 12:38:36 +0000 | [diff] [blame] | 42 | #ifdef HAVE_POLL_H |
| 43 | #include <poll.h> |
| 44 | #endif |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 45 | |
Ge van Geldorp | 1a1583a | 2005-11-28 17:32:54 +0100 | [diff] [blame] | 46 | #include "ntstatus.h" |
| 47 | #define WIN32_NO_STATUS |
Alexandre Julliard | e37c6e1 | 2003-09-05 23:08:26 +0000 | [diff] [blame] | 48 | #include "windef.h" |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 49 | #include "winternl.h" |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 50 | |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 51 | #include "file.h" |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 52 | #include "handle.h" |
| 53 | #include "thread.h" |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 54 | #include "request.h" |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 55 | #include "process.h" |
| 56 | #include "security.h" |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 57 | |
| 58 | struct file |
| 59 | { |
Alexandre Julliard | 57e1131 | 1999-05-16 16:59:38 +0000 | [diff] [blame] | 60 | struct object obj; /* object header */ |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 61 | struct fd *fd; /* file descriptor for this file */ |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 62 | unsigned int access; /* file access (FILE_READ_DATA etc.) */ |
Alexandre Julliard | 133b8bc | 2007-04-23 15:13:22 +0200 | [diff] [blame] | 63 | mode_t mode; /* file stat.st_mode */ |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 64 | uid_t uid; /* file stat.st_uid */ |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 65 | }; |
| 66 | |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 67 | static unsigned int generic_file_map_access( unsigned int access ); |
| 68 | |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 69 | static void file_dump( struct object *obj, int verbose ); |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 70 | static struct fd *file_get_fd( struct object *obj ); |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 71 | static struct security_descriptor *file_get_sd( struct object *obj ); |
| 72 | static int file_set_sd( struct object *obj, const struct security_descriptor *sd, unsigned int set_info ); |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 73 | static void file_destroy( struct object *obj ); |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 74 | |
| 75 | static int file_get_poll_events( struct fd *fd ); |
Alexandre Julliard | df65187 | 2007-03-27 16:51:44 +0200 | [diff] [blame] | 76 | static void file_flush( struct fd *fd, struct event **event ); |
Alexandre Julliard | 7a9363a | 2007-04-10 22:26:23 +0200 | [diff] [blame] | 77 | static enum server_fd_type file_get_fd_type( struct fd *fd ); |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 78 | |
| 79 | static const struct object_ops file_ops = |
| 80 | { |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 81 | sizeof(struct file), /* size */ |
| 82 | file_dump, /* dump */ |
Alexandre Julliard | 8382eb0 | 2007-12-05 18:16:42 +0100 | [diff] [blame] | 83 | no_get_type, /* get_type */ |
Alexandre Julliard | ba896e7 | 2007-04-04 19:39:29 +0200 | [diff] [blame] | 84 | add_queue, /* add_queue */ |
| 85 | remove_queue, /* remove_queue */ |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 86 | default_fd_signaled, /* signaled */ |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 87 | no_satisfied, /* satisfied */ |
Mike McCormack | f92fff6 | 2005-04-24 17:35:52 +0000 | [diff] [blame] | 88 | no_signal, /* signal */ |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 89 | file_get_fd, /* get_fd */ |
Alexandre Julliard | 24001e8 | 2007-10-02 14:20:15 +0200 | [diff] [blame] | 90 | default_fd_map_access, /* map_access */ |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 91 | file_get_sd, /* get_sd */ |
| 92 | file_set_sd, /* set_sd */ |
Vitaliy Margolen | baffcb9 | 2005-11-22 14:55:42 +0000 | [diff] [blame] | 93 | no_lookup_name, /* lookup_name */ |
Alexandre Julliard | 7e71c1d | 2007-03-22 11:44:29 +0100 | [diff] [blame] | 94 | no_open_file, /* open_file */ |
Alexandre Julliard | 715d78e | 2006-11-02 20:52:22 +0100 | [diff] [blame] | 95 | fd_close_handle, /* close_handle */ |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 96 | file_destroy /* destroy */ |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 97 | }; |
| 98 | |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 99 | static const struct fd_ops file_fd_ops = |
| 100 | { |
| 101 | file_get_poll_events, /* get_poll_events */ |
Robert Shearman | d6a4e34 | 2005-06-07 20:09:01 +0000 | [diff] [blame] | 102 | default_poll_event, /* poll_event */ |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 103 | file_flush, /* flush */ |
Alexandre Julliard | 7a9363a | 2007-04-10 22:26:23 +0200 | [diff] [blame] | 104 | file_get_fd_type, /* get_fd_type */ |
Alexandre Julliard | 6357143 | 2007-04-16 14:45:03 +0200 | [diff] [blame] | 105 | default_fd_ioctl, /* ioctl */ |
Robert Shearman | d6a4e34 | 2005-06-07 20:09:01 +0000 | [diff] [blame] | 106 | default_fd_queue_async, /* queue_async */ |
Alexandre Julliard | 72bff2e | 2007-04-10 17:07:27 +0200 | [diff] [blame] | 107 | default_fd_reselect_async, /* reselect_async */ |
Robert Shearman | d6a4e34 | 2005-06-07 20:09:01 +0000 | [diff] [blame] | 108 | default_fd_cancel_async /* cancel_async */ |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 109 | }; |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 110 | |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 111 | static inline int is_overlapped( const struct file *file ) |
| 112 | { |
Alexandre Julliard | f85437c | 2007-04-10 22:25:07 +0200 | [diff] [blame] | 113 | return !(get_fd_options( file->fd ) & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT)); |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 114 | } |
| 115 | |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 116 | /* create a file from a file descriptor */ |
| 117 | /* if the function fails the fd is closed */ |
Alexandre Julliard | 62eda39 | 2009-11-23 16:20:15 +0100 | [diff] [blame] | 118 | struct file *create_file_for_fd( int fd, unsigned int access, unsigned int sharing ) |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 119 | { |
| 120 | struct file *file; |
Alexandre Julliard | 133b8bc | 2007-04-23 15:13:22 +0200 | [diff] [blame] | 121 | struct stat st; |
| 122 | |
| 123 | if (fstat( fd, &st ) == -1) |
| 124 | { |
| 125 | file_set_error(); |
| 126 | return NULL; |
| 127 | } |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 128 | |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 129 | if ((file = alloc_object( &file_ops ))) |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 130 | { |
Alexandre Julliard | 133b8bc | 2007-04-23 15:13:22 +0200 | [diff] [blame] | 131 | file->mode = st.st_mode; |
Alexandre Julliard | 24001e8 | 2007-10-02 14:20:15 +0200 | [diff] [blame] | 132 | file->access = default_fd_map_access( &file->obj, access ); |
Alexandre Julliard | f85437c | 2007-04-10 22:25:07 +0200 | [diff] [blame] | 133 | if (!(file->fd = create_anonymous_fd( &file_fd_ops, fd, &file->obj, |
| 134 | FILE_SYNCHRONOUS_IO_NONALERT ))) |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 135 | { |
| 136 | release_object( file ); |
| 137 | return NULL; |
| 138 | } |
Alexandre Julliard | a2ca2eb | 2010-08-23 17:09:45 +0200 | [diff] [blame] | 139 | allow_fd_caching( file->fd ); |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 140 | } |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 141 | return file; |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 142 | } |
| 143 | |
Alexandre Julliard | eb2fe39 | 2011-04-18 13:41:54 +0200 | [diff] [blame] | 144 | /* create a file by duplicating an fd object */ |
| 145 | struct file *create_file_for_fd_obj( struct fd *fd, unsigned int access, unsigned int sharing ) |
| 146 | { |
| 147 | struct file *file; |
| 148 | struct stat st; |
| 149 | |
| 150 | if (fstat( get_unix_fd(fd), &st ) == -1) |
| 151 | { |
| 152 | file_set_error(); |
| 153 | return NULL; |
| 154 | } |
| 155 | |
| 156 | if ((file = alloc_object( &file_ops ))) |
| 157 | { |
| 158 | file->mode = st.st_mode; |
| 159 | file->access = default_fd_map_access( &file->obj, access ); |
| 160 | if (!(file->fd = dup_fd_object( fd, access, sharing, FILE_SYNCHRONOUS_IO_NONALERT ))) |
| 161 | { |
| 162 | release_object( file ); |
| 163 | return NULL; |
| 164 | } |
Alexandre Julliard | f2b34dd | 2011-04-22 17:07:45 +0200 | [diff] [blame] | 165 | set_fd_user( file->fd, &file_fd_ops, &file->obj ); |
Alexandre Julliard | eb2fe39 | 2011-04-18 13:41:54 +0200 | [diff] [blame] | 166 | } |
| 167 | return file; |
| 168 | } |
| 169 | |
Alexandre Julliard | 133b8bc | 2007-04-23 15:13:22 +0200 | [diff] [blame] | 170 | static struct object *create_file_obj( struct fd *fd, unsigned int access, mode_t mode ) |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 171 | { |
| 172 | struct file *file = alloc_object( &file_ops ); |
| 173 | |
| 174 | if (!file) return NULL; |
| 175 | file->access = access; |
Alexandre Julliard | 133b8bc | 2007-04-23 15:13:22 +0200 | [diff] [blame] | 176 | file->mode = mode; |
Alexandre Julliard | 74a6302 | 2009-08-17 17:18:54 +0200 | [diff] [blame] | 177 | file->uid = ~(uid_t)0; |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 178 | file->fd = fd; |
| 179 | grab_object( fd ); |
| 180 | set_fd_user( fd, &file_fd_ops, &file->obj ); |
| 181 | return &file->obj; |
| 182 | } |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 183 | |
Alexandre Julliard | 42806f3 | 2009-12-01 17:38:24 +0100 | [diff] [blame] | 184 | static struct object *create_file( struct fd *root, const char *nameptr, data_size_t len, |
| 185 | unsigned int access, unsigned int sharing, int create, |
| 186 | unsigned int options, unsigned int attrs, |
| 187 | const struct security_descriptor *sd ) |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 188 | { |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 189 | struct object *obj = NULL; |
| 190 | struct fd *fd; |
Alexandre Julliard | 471782a | 2006-01-25 15:06:48 +0100 | [diff] [blame] | 191 | int flags; |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 192 | char *name; |
Bernhard Rosenkraenzer | 5dda1f7 | 2001-07-23 18:09:41 +0000 | [diff] [blame] | 193 | mode_t mode; |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 194 | |
Alexandre Julliard | 42806f3 | 2009-12-01 17:38:24 +0100 | [diff] [blame] | 195 | if (!len || ((nameptr[0] == '/') ^ !root)) |
| 196 | { |
| 197 | set_error( STATUS_OBJECT_PATH_SYNTAX_BAD ); |
| 198 | return NULL; |
| 199 | } |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 200 | if (!(name = mem_alloc( len + 1 ))) return NULL; |
| 201 | memcpy( name, nameptr, len ); |
| 202 | name[len] = 0; |
| 203 | |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 204 | switch(create) |
| 205 | { |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 206 | case FILE_CREATE: flags = O_CREAT | O_EXCL; break; |
| 207 | case FILE_OVERWRITE_IF: /* FIXME: the difference is whether we trash existing attr or not */ |
Dmitry Timoshkov | f834d23 | 2011-03-30 18:08:49 +0900 | [diff] [blame] | 208 | access |= FILE_WRITE_ATTRIBUTES; |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 209 | case FILE_SUPERSEDE: flags = O_CREAT | O_TRUNC; break; |
| 210 | case FILE_OPEN: flags = 0; break; |
| 211 | case FILE_OPEN_IF: flags = O_CREAT; break; |
Dmitry Timoshkov | f834d23 | 2011-03-30 18:08:49 +0900 | [diff] [blame] | 212 | case FILE_OVERWRITE: flags = O_TRUNC; |
| 213 | access |= FILE_WRITE_ATTRIBUTES; break; |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 214 | default: set_error( STATUS_INVALID_PARAMETER ); goto done; |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 215 | } |
Eric Pouech | 4634447 | 2005-01-14 19:54:38 +0000 | [diff] [blame] | 216 | |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 217 | if (sd) |
| 218 | { |
| 219 | const SID *owner = sd_get_owner( sd ); |
| 220 | if (!owner) |
| 221 | owner = token_get_user( current->process->token ); |
| 222 | mode = sd_to_mode( sd, owner ); |
| 223 | } |
| 224 | else |
| 225 | mode = (attrs & FILE_ATTRIBUTE_READONLY) ? 0444 : 0666; |
Bernhard Rosenkraenzer | 5dda1f7 | 2001-07-23 18:09:41 +0000 | [diff] [blame] | 226 | |
| 227 | if (len >= 4 && |
| 228 | (!strcasecmp( name + len - 4, ".exe" ) || !strcasecmp( name + len - 4, ".com" ))) |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 229 | { |
| 230 | if (mode & S_IRUSR) |
| 231 | mode |= S_IXUSR; |
| 232 | if (mode & S_IRGRP) |
| 233 | mode |= S_IXGRP; |
| 234 | if (mode & S_IROTH) |
| 235 | mode |= S_IXOTH; |
| 236 | } |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 237 | |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 238 | access = generic_file_map_access( access ); |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 239 | |
Alexandre Julliard | 580da24 | 2003-03-12 22:38:14 +0000 | [diff] [blame] | 240 | /* FIXME: should set error to STATUS_OBJECT_NAME_COLLISION if file existed before */ |
Alexandre Julliard | 42806f3 | 2009-12-01 17:38:24 +0100 | [diff] [blame] | 241 | fd = open_fd( root, name, flags | O_NONBLOCK | O_LARGEFILE, &mode, access, sharing, options ); |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 242 | if (!fd) goto done; |
| 243 | |
Mike McCormack | 0835107 | 2006-01-27 12:13:56 +0100 | [diff] [blame] | 244 | if (S_ISDIR(mode)) |
Alexandre Julliard | 74a6302 | 2009-08-17 17:18:54 +0200 | [diff] [blame] | 245 | obj = create_dir_obj( fd, access, mode ); |
Mike McCormack | 0835107 | 2006-01-27 12:13:56 +0100 | [diff] [blame] | 246 | else if (S_ISCHR(mode) && is_serial_fd( fd )) |
Alexandre Julliard | f85437c | 2007-04-10 22:25:07 +0200 | [diff] [blame] | 247 | obj = create_serial( fd ); |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 248 | else |
Alexandre Julliard | 133b8bc | 2007-04-23 15:13:22 +0200 | [diff] [blame] | 249 | obj = create_file_obj( fd, access, mode ); |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 250 | |
| 251 | release_object( fd ); |
| 252 | |
| 253 | done: |
Alexandre Julliard | 9ff7872 | 2004-04-02 19:50:49 +0000 | [diff] [blame] | 254 | free( name ); |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 255 | return obj; |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 256 | } |
| 257 | |
Alexandre Julliard | 84fdfd0 | 2001-04-13 22:38:39 +0000 | [diff] [blame] | 258 | /* check if two file objects point to the same file */ |
| 259 | int is_same_file( struct file *file1, struct file *file2 ) |
| 260 | { |
Alexandre Julliard | 74bd1e4 | 2004-03-27 20:48:42 +0000 | [diff] [blame] | 261 | return is_same_file_fd( file1->fd, file2->fd ); |
Alexandre Julliard | 84fdfd0 | 2001-04-13 22:38:39 +0000 | [diff] [blame] | 262 | } |
| 263 | |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 264 | static void file_dump( struct object *obj, int verbose ) |
| 265 | { |
| 266 | struct file *file = (struct file *)obj; |
| 267 | assert( obj->ops == &file_ops ); |
Alexandre Julliard | f85437c | 2007-04-10 22:25:07 +0200 | [diff] [blame] | 268 | fprintf( stderr, "File fd=%p\n", file->fd ); |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 269 | } |
| 270 | |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 271 | static int file_get_poll_events( struct fd *fd ) |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 272 | { |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 273 | struct file *file = get_fd_user( fd ); |
Alexandre Julliard | 57e1131 | 1999-05-16 16:59:38 +0000 | [diff] [blame] | 274 | int events = 0; |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 275 | assert( file->obj.ops == &file_ops ); |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 276 | if (file->access & FILE_UNIX_READ_ACCESS) events |= POLLIN; |
| 277 | if (file->access & FILE_UNIX_WRITE_ACCESS) events |= POLLOUT; |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 278 | return events; |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 279 | } |
| 280 | |
Alexandre Julliard | df65187 | 2007-03-27 16:51:44 +0200 | [diff] [blame] | 281 | static void file_flush( struct fd *fd, struct event **event ) |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 282 | { |
Alexandre Julliard | df65187 | 2007-03-27 16:51:44 +0200 | [diff] [blame] | 283 | int unix_fd = get_unix_fd( fd ); |
| 284 | if (unix_fd != -1 && fsync( unix_fd ) == -1) file_set_error(); |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 285 | } |
| 286 | |
Alexandre Julliard | 7a9363a | 2007-04-10 22:26:23 +0200 | [diff] [blame] | 287 | static enum server_fd_type file_get_fd_type( struct fd *fd ) |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 288 | { |
Alexandre Julliard | 133b8bc | 2007-04-23 15:13:22 +0200 | [diff] [blame] | 289 | struct file *file = get_fd_user( fd ); |
| 290 | |
| 291 | if (S_ISREG(file->mode) || S_ISBLK(file->mode)) return FD_TYPE_FILE; |
| 292 | if (S_ISDIR(file->mode)) return FD_TYPE_DIR; |
| 293 | return FD_TYPE_CHAR; |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 294 | } |
| 295 | |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 296 | static struct fd *file_get_fd( struct object *obj ) |
| 297 | { |
| 298 | struct file *file = (struct file *)obj; |
| 299 | assert( obj->ops == &file_ops ); |
| 300 | return (struct fd *)grab_object( file->fd ); |
Martin Wilck | 718b1b7 | 2002-01-07 21:02:15 +0000 | [diff] [blame] | 301 | } |
| 302 | |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 303 | static unsigned int generic_file_map_access( unsigned int access ) |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 304 | { |
| 305 | if (access & GENERIC_READ) access |= FILE_GENERIC_READ; |
| 306 | if (access & GENERIC_WRITE) access |= FILE_GENERIC_WRITE; |
| 307 | if (access & GENERIC_EXECUTE) access |= FILE_GENERIC_EXECUTE; |
| 308 | if (access & GENERIC_ALL) access |= FILE_ALL_ACCESS; |
| 309 | return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL); |
| 310 | } |
| 311 | |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 312 | struct security_descriptor *mode_to_sd( mode_t mode, const SID *user, const SID *group ) |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 313 | { |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 314 | struct security_descriptor *sd; |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 315 | size_t dacl_size; |
Rob Shearman | ec8a27f | 2007-11-20 17:49:07 +0000 | [diff] [blame] | 316 | ACE_HEADER *current_ace; |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 317 | ACCESS_ALLOWED_ACE *aaa; |
| 318 | ACL *dacl; |
| 319 | SID *sid; |
| 320 | char *ptr; |
| 321 | const SID *world_sid = security_world_sid; |
| 322 | const SID *local_system_sid = security_local_system_sid; |
| 323 | |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 324 | dacl_size = sizeof(ACL) + FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) + |
| 325 | FIELD_OFFSET(SID, SubAuthority[local_system_sid->SubAuthorityCount]); |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 326 | if (mode & S_IRWXU) |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 327 | dacl_size += FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) + |
| 328 | FIELD_OFFSET(SID, SubAuthority[user->SubAuthorityCount]); |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 329 | if ((!(mode & S_IRUSR) && (mode & (S_IRGRP|S_IROTH))) || |
| 330 | (!(mode & S_IWUSR) && (mode & (S_IWGRP|S_IWOTH))) || |
| 331 | (!(mode & S_IXUSR) && (mode & (S_IXGRP|S_IXOTH)))) |
Rob Shearman | ec8a27f | 2007-11-20 17:49:07 +0000 | [diff] [blame] | 332 | dacl_size += FIELD_OFFSET(ACCESS_DENIED_ACE, SidStart) + |
| 333 | FIELD_OFFSET(SID, SubAuthority[user->SubAuthorityCount]); |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 334 | if (mode & S_IRWXO) |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 335 | dacl_size += FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) + |
| 336 | FIELD_OFFSET(SID, SubAuthority[world_sid->SubAuthorityCount]); |
| 337 | |
| 338 | sd = mem_alloc( sizeof(struct security_descriptor) + |
| 339 | FIELD_OFFSET(SID, SubAuthority[user->SubAuthorityCount]) + |
| 340 | FIELD_OFFSET(SID, SubAuthority[group->SubAuthorityCount]) + |
| 341 | dacl_size ); |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 342 | if (!sd) return sd; |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 343 | |
| 344 | sd->control = SE_DACL_PRESENT; |
| 345 | sd->owner_len = FIELD_OFFSET(SID, SubAuthority[user->SubAuthorityCount]); |
| 346 | sd->group_len = FIELD_OFFSET(SID, SubAuthority[group->SubAuthorityCount]); |
| 347 | sd->sacl_len = 0; |
| 348 | sd->dacl_len = dacl_size; |
| 349 | |
| 350 | ptr = (char *)(sd + 1); |
| 351 | memcpy( ptr, user, sd->owner_len ); |
| 352 | ptr += sd->owner_len; |
| 353 | memcpy( ptr, group, sd->group_len ); |
| 354 | ptr += sd->group_len; |
| 355 | |
| 356 | dacl = (ACL *)ptr; |
| 357 | dacl->AclRevision = ACL_REVISION; |
| 358 | dacl->Sbz1 = 0; |
| 359 | dacl->AclSize = dacl_size; |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 360 | dacl->AceCount = 1 + (mode & S_IRWXU ? 1 : 0) + (mode & S_IRWXO ? 1 : 0); |
| 361 | if ((!(mode & S_IRUSR) && (mode & (S_IRGRP|S_IROTH))) || |
| 362 | (!(mode & S_IWUSR) && (mode & (S_IWGRP|S_IWOTH))) || |
| 363 | (!(mode & S_IXUSR) && (mode & (S_IXGRP|S_IXOTH)))) |
Rob Shearman | ec8a27f | 2007-11-20 17:49:07 +0000 | [diff] [blame] | 364 | dacl->AceCount++; |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 365 | dacl->Sbz2 = 0; |
| 366 | |
| 367 | /* always give FILE_ALL_ACCESS for Local System */ |
| 368 | aaa = (ACCESS_ALLOWED_ACE *)(dacl + 1); |
Rob Shearman | ec8a27f | 2007-11-20 17:49:07 +0000 | [diff] [blame] | 369 | current_ace = &aaa->Header; |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 370 | aaa->Header.AceType = ACCESS_ALLOWED_ACE_TYPE; |
| 371 | aaa->Header.AceFlags = 0; |
| 372 | aaa->Header.AceSize = FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) + |
| 373 | FIELD_OFFSET(SID, SubAuthority[local_system_sid->SubAuthorityCount]); |
| 374 | aaa->Mask = FILE_ALL_ACCESS; |
| 375 | sid = (SID *)&aaa->SidStart; |
| 376 | memcpy( sid, local_system_sid, FIELD_OFFSET(SID, SubAuthority[local_system_sid->SubAuthorityCount]) ); |
| 377 | |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 378 | if (mode & S_IRWXU) |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 379 | { |
| 380 | /* appropriate access rights for the user */ |
Rob Shearman | ec8a27f | 2007-11-20 17:49:07 +0000 | [diff] [blame] | 381 | aaa = (ACCESS_ALLOWED_ACE *)ace_next( current_ace ); |
| 382 | current_ace = &aaa->Header; |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 383 | aaa->Header.AceType = ACCESS_ALLOWED_ACE_TYPE; |
| 384 | aaa->Header.AceFlags = 0; |
| 385 | aaa->Header.AceSize = FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) + |
| 386 | FIELD_OFFSET(SID, SubAuthority[user->SubAuthorityCount]); |
| 387 | aaa->Mask = WRITE_DAC | WRITE_OWNER; |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 388 | if (mode & S_IRUSR) |
Dmitry Timoshkov | 1b5602e | 2011-03-24 16:57:21 +0800 | [diff] [blame] | 389 | aaa->Mask |= FILE_GENERIC_READ | FILE_GENERIC_EXECUTE; |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 390 | if (mode & S_IWUSR) |
Dmitry Timoshkov | da07795 | 2011-03-16 18:46:00 +0800 | [diff] [blame] | 391 | aaa->Mask |= FILE_GENERIC_WRITE | DELETE | FILE_DELETE_CHILD; |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 392 | sid = (SID *)&aaa->SidStart; |
| 393 | memcpy( sid, user, FIELD_OFFSET(SID, SubAuthority[user->SubAuthorityCount]) ); |
| 394 | } |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 395 | if ((!(mode & S_IRUSR) && (mode & (S_IRGRP|S_IROTH))) || |
| 396 | (!(mode & S_IWUSR) && (mode & (S_IWGRP|S_IWOTH))) || |
| 397 | (!(mode & S_IXUSR) && (mode & (S_IXGRP|S_IXOTH)))) |
Rob Shearman | ec8a27f | 2007-11-20 17:49:07 +0000 | [diff] [blame] | 398 | { |
| 399 | /* deny just in case the user is a member of the group */ |
| 400 | ACCESS_DENIED_ACE *ada = (ACCESS_DENIED_ACE *)ace_next( current_ace ); |
| 401 | current_ace = &ada->Header; |
| 402 | ada->Header.AceType = ACCESS_DENIED_ACE_TYPE; |
| 403 | ada->Header.AceFlags = 0; |
| 404 | ada->Header.AceSize = FIELD_OFFSET(ACCESS_DENIED_ACE, SidStart) + |
| 405 | FIELD_OFFSET(SID, SubAuthority[user->SubAuthorityCount]); |
| 406 | ada->Mask = 0; |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 407 | if (!(mode & S_IRUSR) && (mode & (S_IRGRP|S_IROTH))) |
Dmitry Timoshkov | 1b5602e | 2011-03-24 16:57:21 +0800 | [diff] [blame] | 408 | ada->Mask |= FILE_GENERIC_READ | FILE_GENERIC_EXECUTE; |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 409 | if (!(mode & S_IWUSR) && (mode & (S_IWGRP|S_IROTH))) |
Dmitry Timoshkov | da07795 | 2011-03-16 18:46:00 +0800 | [diff] [blame] | 410 | ada->Mask |= FILE_GENERIC_WRITE | DELETE | FILE_DELETE_CHILD; |
Rob Shearman | ec8a27f | 2007-11-20 17:49:07 +0000 | [diff] [blame] | 411 | ada->Mask &= ~STANDARD_RIGHTS_ALL; /* never deny standard rights */ |
| 412 | sid = (SID *)&ada->SidStart; |
| 413 | memcpy( sid, user, FIELD_OFFSET(SID, SubAuthority[user->SubAuthorityCount]) ); |
| 414 | } |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 415 | if (mode & S_IRWXO) |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 416 | { |
| 417 | /* appropriate access rights for Everyone */ |
Rob Shearman | ec8a27f | 2007-11-20 17:49:07 +0000 | [diff] [blame] | 418 | aaa = (ACCESS_ALLOWED_ACE *)ace_next( current_ace ); |
| 419 | current_ace = &aaa->Header; |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 420 | aaa->Header.AceType = ACCESS_ALLOWED_ACE_TYPE; |
| 421 | aaa->Header.AceFlags = 0; |
| 422 | aaa->Header.AceSize = FIELD_OFFSET(ACCESS_ALLOWED_ACE, SidStart) + |
| 423 | FIELD_OFFSET(SID, SubAuthority[world_sid->SubAuthorityCount]); |
| 424 | aaa->Mask = 0; |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 425 | if (mode & S_IROTH) |
Dmitry Timoshkov | 1b5602e | 2011-03-24 16:57:21 +0800 | [diff] [blame] | 426 | aaa->Mask |= FILE_GENERIC_READ | FILE_GENERIC_EXECUTE; |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 427 | if (mode & S_IWOTH) |
Dmitry Timoshkov | da07795 | 2011-03-16 18:46:00 +0800 | [diff] [blame] | 428 | aaa->Mask |= FILE_GENERIC_WRITE | DELETE | FILE_DELETE_CHILD; |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 429 | sid = (SID *)&aaa->SidStart; |
| 430 | memcpy( sid, world_sid, FIELD_OFFSET(SID, SubAuthority[world_sid->SubAuthorityCount]) ); |
| 431 | } |
| 432 | |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 433 | return sd; |
| 434 | } |
| 435 | |
| 436 | static struct security_descriptor *file_get_sd( struct object *obj ) |
| 437 | { |
| 438 | struct file *file = (struct file *)obj; |
| 439 | struct stat st; |
| 440 | int unix_fd; |
| 441 | struct security_descriptor *sd; |
| 442 | |
| 443 | assert( obj->ops == &file_ops ); |
| 444 | |
| 445 | unix_fd = get_file_unix_fd( file ); |
| 446 | |
| 447 | if (unix_fd == -1 || fstat( unix_fd, &st ) == -1) |
| 448 | return obj->sd; |
| 449 | |
| 450 | /* mode and uid the same? if so, no need to re-generate security descriptor */ |
| 451 | if (obj->sd && (st.st_mode & (S_IRWXU|S_IRWXO)) == (file->mode & (S_IRWXU|S_IRWXO)) && |
| 452 | (st.st_uid == file->uid)) |
| 453 | return obj->sd; |
| 454 | |
| 455 | sd = mode_to_sd( st.st_mode, |
| 456 | security_unix_uid_to_sid( st.st_uid ), |
| 457 | token_get_primary_group( current->process->token )); |
| 458 | if (!sd) return obj->sd; |
| 459 | |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 460 | file->mode = st.st_mode; |
| 461 | file->uid = st.st_uid; |
| 462 | free( obj->sd ); |
| 463 | obj->sd = sd; |
| 464 | return sd; |
| 465 | } |
| 466 | |
Alexandre Julliard | 80e844f | 2009-12-11 17:32:38 +0100 | [diff] [blame] | 467 | static mode_t file_access_to_mode( unsigned int access ) |
| 468 | { |
| 469 | mode_t mode = 0; |
| 470 | |
| 471 | access = generic_file_map_access( access ); |
| 472 | if (access & FILE_READ_DATA) mode |= 4; |
| 473 | if (access & FILE_WRITE_DATA) mode |= 2; |
| 474 | if (access & FILE_EXECUTE) mode |= 1; |
| 475 | return mode; |
| 476 | } |
| 477 | |
Paul Bryan Roberts | d87af3d | 2008-11-03 22:25:37 +0000 | [diff] [blame] | 478 | mode_t sd_to_mode( const struct security_descriptor *sd, const SID *owner ) |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 479 | { |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 480 | mode_t new_mode = 0; |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 481 | mode_t denied_mode = 0; |
Alexandre Julliard | 80e844f | 2009-12-11 17:32:38 +0100 | [diff] [blame] | 482 | mode_t mode; |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 483 | int present; |
| 484 | const ACL *dacl = sd_get_dacl( sd, &present ); |
Ben Peddell | b419df1 | 2009-12-10 01:31:53 +1000 | [diff] [blame] | 485 | const SID *user = token_get_user( current->process->token ); |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 486 | if (present && dacl) |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 487 | { |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 488 | const ACE_HEADER *ace = (const ACE_HEADER *)(dacl + 1); |
| 489 | ULONG i; |
Rob Shearman | 6753fdc | 2007-11-20 10:47:11 +0000 | [diff] [blame] | 490 | for (i = 0; i < dacl->AceCount; i++, ace = ace_next( ace )) |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 491 | { |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 492 | const ACCESS_ALLOWED_ACE *aa_ace; |
| 493 | const ACCESS_DENIED_ACE *ad_ace; |
| 494 | const SID *sid; |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 495 | |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 496 | if (ace->AceFlags & INHERIT_ONLY_ACE) continue; |
Rob Shearman | f43d8b6 | 2007-10-06 14:31:25 +0200 | [diff] [blame] | 497 | |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 498 | switch (ace->AceType) |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 499 | { |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 500 | case ACCESS_DENIED_ACE_TYPE: |
| 501 | ad_ace = (const ACCESS_DENIED_ACE *)ace; |
| 502 | sid = (const SID *)&ad_ace->SidStart; |
Alexandre Julliard | 80e844f | 2009-12-11 17:32:38 +0100 | [diff] [blame] | 503 | mode = file_access_to_mode( ad_ace->Mask ); |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 504 | if (security_equal_sid( sid, security_world_sid )) |
| 505 | { |
Alexandre Julliard | 80e844f | 2009-12-11 17:32:38 +0100 | [diff] [blame] | 506 | denied_mode |= (mode << 6) | (mode << 3) | mode; /* all */ |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 507 | } |
Ben Peddell | b419df1 | 2009-12-10 01:31:53 +1000 | [diff] [blame] | 508 | else if ((security_equal_sid( user, owner ) && |
| 509 | token_sid_present( current->process->token, sid, TRUE ))) |
| 510 | { |
Alexandre Julliard | 80e844f | 2009-12-11 17:32:38 +0100 | [diff] [blame] | 511 | denied_mode |= (mode << 6) | (mode << 3); /* user + group */ |
Ben Peddell | b419df1 | 2009-12-10 01:31:53 +1000 | [diff] [blame] | 512 | } |
Hans Leidekker | 3321c45 | 2011-07-19 09:52:54 +0200 | [diff] [blame] | 513 | else if (security_equal_sid( sid, owner )) |
| 514 | { |
| 515 | denied_mode |= (mode << 6); /* user only */ |
| 516 | } |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 517 | break; |
| 518 | case ACCESS_ALLOWED_ACE_TYPE: |
| 519 | aa_ace = (const ACCESS_ALLOWED_ACE *)ace; |
| 520 | sid = (const SID *)&aa_ace->SidStart; |
Alexandre Julliard | 80e844f | 2009-12-11 17:32:38 +0100 | [diff] [blame] | 521 | mode = file_access_to_mode( aa_ace->Mask ); |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 522 | if (security_equal_sid( sid, security_world_sid )) |
| 523 | { |
Alexandre Julliard | 80e844f | 2009-12-11 17:32:38 +0100 | [diff] [blame] | 524 | new_mode |= (mode << 6) | (mode << 3) | mode; /* all */ |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 525 | } |
Ben Peddell | b419df1 | 2009-12-10 01:31:53 +1000 | [diff] [blame] | 526 | else if ((security_equal_sid( user, owner ) && |
| 527 | token_sid_present( current->process->token, sid, FALSE ))) |
| 528 | { |
Alexandre Julliard | 80e844f | 2009-12-11 17:32:38 +0100 | [diff] [blame] | 529 | new_mode |= (mode << 6) | (mode << 3); /* user + group */ |
Ben Peddell | b419df1 | 2009-12-10 01:31:53 +1000 | [diff] [blame] | 530 | } |
Hans Leidekker | 3321c45 | 2011-07-19 09:52:54 +0200 | [diff] [blame] | 531 | else if (security_equal_sid( sid, owner )) |
| 532 | { |
| 533 | new_mode |= (mode << 6); /* user only */ |
| 534 | } |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 535 | break; |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 536 | } |
| 537 | } |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 538 | } |
| 539 | else |
| 540 | /* no ACL means full access rights to anyone */ |
Ben Peddell | b419df1 | 2009-12-10 01:31:53 +1000 | [diff] [blame] | 541 | new_mode = S_IRWXU | S_IRWXG | S_IRWXO; |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 542 | |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 543 | return new_mode & ~denied_mode; |
| 544 | } |
| 545 | |
| 546 | static int file_set_sd( struct object *obj, const struct security_descriptor *sd, |
| 547 | unsigned int set_info ) |
| 548 | { |
| 549 | struct file *file = (struct file *)obj; |
| 550 | const SID *owner; |
Alexandre Julliard | da1784b | 2009-08-17 17:26:51 +0200 | [diff] [blame] | 551 | struct stat st; |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 552 | mode_t mode; |
| 553 | int unix_fd; |
| 554 | |
| 555 | assert( obj->ops == &file_ops ); |
| 556 | |
| 557 | unix_fd = get_file_unix_fd( file ); |
| 558 | |
Alexandre Julliard | da1784b | 2009-08-17 17:26:51 +0200 | [diff] [blame] | 559 | if (unix_fd == -1 || fstat( unix_fd, &st ) == -1) return 1; |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 560 | |
| 561 | if (set_info & OWNER_SECURITY_INFORMATION) |
| 562 | { |
| 563 | owner = sd_get_owner( sd ); |
| 564 | if (!owner) |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 565 | { |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 566 | set_error( STATUS_INVALID_SECURITY_DESCR ); |
| 567 | return 0; |
| 568 | } |
| 569 | if (!obj->sd || !security_equal_sid( owner, sd_get_owner( obj->sd ) )) |
| 570 | { |
| 571 | /* FIXME: get Unix uid and call fchown */ |
| 572 | } |
| 573 | } |
| 574 | else if (obj->sd) |
| 575 | owner = sd_get_owner( obj->sd ); |
| 576 | else |
| 577 | owner = token_get_user( current->process->token ); |
| 578 | |
| 579 | /* group and sacl not supported */ |
| 580 | |
| 581 | if (set_info & DACL_SECURITY_INFORMATION) |
| 582 | { |
| 583 | /* keep the bits that we don't map to access rights in the ACL */ |
Ben Peddell | b419df1 | 2009-12-10 01:31:53 +1000 | [diff] [blame] | 584 | mode = st.st_mode & (S_ISUID|S_ISGID|S_ISVTX); |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 585 | mode |= sd_to_mode( sd, owner ); |
| 586 | |
Paul Chitescu | 9235249 | 2009-12-08 14:10:01 +0200 | [diff] [blame] | 587 | if (((st.st_mode ^ mode) & (S_IRWXU|S_IRWXG|S_IRWXO)) && fchmod( unix_fd, mode ) == -1) |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 588 | { |
Alexandre Julliard | da1784b | 2009-08-17 17:26:51 +0200 | [diff] [blame] | 589 | file_set_error(); |
| 590 | return 0; |
Rob Shearman | f5070b0 | 2007-10-06 14:31:34 +0200 | [diff] [blame] | 591 | } |
Rob Shearman | cb124c9 | 2007-10-03 20:19:05 +0100 | [diff] [blame] | 592 | } |
| 593 | return 1; |
| 594 | } |
| 595 | |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 596 | static void file_destroy( struct object *obj ) |
| 597 | { |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 598 | struct file *file = (struct file *)obj; |
| 599 | assert( obj->ops == &file_ops ); |
| 600 | |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 601 | if (file->fd) release_object( file->fd ); |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 602 | } |
| 603 | |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 604 | /* set the last error depending on errno */ |
| 605 | void file_set_error(void) |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 606 | { |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 607 | switch (errno) |
| 608 | { |
Dmitry Timoshkov | c75edd0 | 2007-09-11 13:07:29 +0900 | [diff] [blame] | 609 | case ETXTBSY: |
Alexandre Julliard | cb1fc73 | 2000-01-24 21:58:06 +0000 | [diff] [blame] | 610 | case EAGAIN: set_error( STATUS_SHARING_VIOLATION ); break; |
| 611 | case EBADF: set_error( STATUS_INVALID_HANDLE ); break; |
| 612 | case ENOSPC: set_error( STATUS_DISK_FULL ); break; |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 613 | case EACCES: |
Alexandre Julliard | 5f258c6 | 2001-07-14 00:50:30 +0000 | [diff] [blame] | 614 | case ESRCH: |
Andrew Nguyen | 270179a | 2009-07-12 23:55:43 -0500 | [diff] [blame] | 615 | case EROFS: |
Alexandre Julliard | cb1fc73 | 2000-01-24 21:58:06 +0000 | [diff] [blame] | 616 | case EPERM: set_error( STATUS_ACCESS_DENIED ); break; |
Alexandre Julliard | cb1fc73 | 2000-01-24 21:58:06 +0000 | [diff] [blame] | 617 | case EBUSY: set_error( STATUS_FILE_LOCK_CONFLICT ); break; |
| 618 | case ENOENT: set_error( STATUS_NO_SUCH_FILE ); break; |
Alexandre Julliard | 716878c | 2004-04-16 23:32:40 +0000 | [diff] [blame] | 619 | case EISDIR: set_error( STATUS_FILE_IS_A_DIRECTORY ); break; |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 620 | case ENFILE: |
Robert Shearman | 4d7b230 | 2006-08-29 21:11:28 +0100 | [diff] [blame] | 621 | case EMFILE: set_error( STATUS_TOO_MANY_OPENED_FILES ); break; |
Alexandre Julliard | cb1fc73 | 2000-01-24 21:58:06 +0000 | [diff] [blame] | 622 | case EEXIST: set_error( STATUS_OBJECT_NAME_COLLISION ); break; |
| 623 | case EINVAL: set_error( STATUS_INVALID_PARAMETER ); break; |
Dmitry Timoshkov | ced2e56 | 2007-01-08 11:16:59 +0800 | [diff] [blame] | 624 | case ESPIPE: set_error( STATUS_ILLEGAL_FUNCTION ); break; |
Alexandre Julliard | cb1fc73 | 2000-01-24 21:58:06 +0000 | [diff] [blame] | 625 | case ENOTEMPTY: set_error( STATUS_DIRECTORY_NOT_EMPTY ); break; |
| 626 | case EIO: set_error( STATUS_ACCESS_VIOLATION ); break; |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 627 | case ENOTDIR: set_error( STATUS_NOT_A_DIRECTORY ); break; |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 628 | case EFBIG: set_error( STATUS_SECTION_TOO_BIG ); break; |
Mike McCormack | ea782b6 | 2004-07-06 19:42:09 +0000 | [diff] [blame] | 629 | case ENODEV: set_error( STATUS_NO_SUCH_DEVICE ); break; |
| 630 | case ENXIO: set_error( STATUS_NO_SUCH_DEVICE ); break; |
Wim Lewis | 99a01c0 | 2004-01-02 20:11:35 +0000 | [diff] [blame] | 631 | #ifdef EOVERFLOW |
Alexandre Julliard | ce61349 | 2003-03-18 05:04:33 +0000 | [diff] [blame] | 632 | case EOVERFLOW: set_error( STATUS_INVALID_PARAMETER ); break; |
Wim Lewis | 99a01c0 | 2004-01-02 20:11:35 +0000 | [diff] [blame] | 633 | #endif |
Dmitry Timoshkov | 69025ba | 2007-09-04 22:51:39 +0900 | [diff] [blame] | 634 | default: |
| 635 | perror("wineserver: file_set_error() can't map error"); |
| 636 | set_error( STATUS_UNSUCCESSFUL ); |
| 637 | break; |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 638 | } |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 639 | } |
| 640 | |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 641 | struct file *get_file_obj( struct process *process, obj_handle_t handle, unsigned int access ) |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 642 | { |
Alexandre Julliard | 61ec6c1 | 1999-11-29 02:17:08 +0000 | [diff] [blame] | 643 | return (struct file *)get_handle_obj( process, handle, access, &file_ops ); |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 644 | } |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 645 | |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 646 | int get_file_unix_fd( struct file *file ) |
| 647 | { |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 648 | return get_unix_fd( file->fd ); |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 649 | } |
| 650 | |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 651 | /* create a file */ |
| 652 | DECL_HANDLER(create_file) |
| 653 | { |
Alexandre Julliard | adc0610 | 2004-03-18 04:08:48 +0000 | [diff] [blame] | 654 | struct object *file; |
Alexandre Julliard | 42806f3 | 2009-12-01 17:38:24 +0100 | [diff] [blame] | 655 | struct fd *root_fd = NULL; |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 656 | const struct object_attributes *objattr = get_req_data(); |
| 657 | const struct security_descriptor *sd; |
| 658 | const char *name; |
| 659 | data_size_t name_len; |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 660 | |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 661 | reply->handle = 0; |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 662 | |
| 663 | if (!objattr_is_valid( objattr, get_req_data_size() )) |
| 664 | return; |
| 665 | /* name is transferred in the unix codepage outside of the objattr structure */ |
| 666 | if (objattr->name_len) |
| 667 | { |
| 668 | set_error( STATUS_INVALID_PARAMETER ); |
| 669 | return; |
| 670 | } |
| 671 | |
Alexandre Julliard | 42806f3 | 2009-12-01 17:38:24 +0100 | [diff] [blame] | 672 | if (objattr->rootdir) |
| 673 | { |
| 674 | struct dir *root; |
| 675 | |
| 676 | if (!(root = get_dir_obj( current->process, objattr->rootdir, 0 ))) return; |
| 677 | root_fd = get_obj_fd( (struct object *)root ); |
| 678 | release_object( root ); |
| 679 | if (!root_fd) return; |
| 680 | } |
| 681 | |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 682 | sd = objattr->sd_len ? (const struct security_descriptor *)(objattr + 1) : NULL; |
| 683 | |
| 684 | name = (const char *)get_req_data() + sizeof(*objattr) + objattr->sd_len; |
| 685 | name_len = get_req_data_size() - sizeof(*objattr) - objattr->sd_len; |
| 686 | |
| 687 | reply->handle = 0; |
Alexandre Julliard | 42806f3 | 2009-12-01 17:38:24 +0100 | [diff] [blame] | 688 | if ((file = create_file( root_fd, name, name_len, req->access, req->sharing, |
| 689 | req->create, req->options, req->attrs, sd ))) |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 690 | { |
Alexandre Julliard | 24560e7 | 2005-12-09 13:58:25 +0100 | [diff] [blame] | 691 | reply->handle = alloc_handle( current->process, file, req->access, req->attributes ); |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 692 | release_object( file ); |
| 693 | } |
Alexandre Julliard | 42806f3 | 2009-12-01 17:38:24 +0100 | [diff] [blame] | 694 | if (root_fd) release_object( root_fd ); |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 695 | } |
| 696 | |
| 697 | /* allocate a file handle for a Unix fd */ |
| 698 | DECL_HANDLER(alloc_file_handle) |
| 699 | { |
| 700 | struct file *file; |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 701 | int fd; |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 702 | |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 703 | reply->handle = 0; |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 704 | if ((fd = thread_get_inflight_fd( current, req->fd )) == -1) |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 705 | { |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 706 | set_error( STATUS_INVALID_HANDLE ); |
| 707 | return; |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 708 | } |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 709 | if ((file = create_file_for_fd( fd, req->access, FILE_SHARE_READ | FILE_SHARE_WRITE ))) |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 710 | { |
Alexandre Julliard | 24560e7 | 2005-12-09 13:58:25 +0100 | [diff] [blame] | 711 | reply->handle = alloc_handle( current->process, file, req->access, req->attributes ); |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 712 | release_object( file ); |
| 713 | } |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 714 | } |
| 715 | |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 716 | /* lock a region of a file */ |
| 717 | DECL_HANDLER(lock_file) |
| 718 | { |
| 719 | struct file *file; |
| 720 | |
| 721 | if ((file = get_file_obj( current->process, req->handle, 0 ))) |
| 722 | { |
Alexandre Julliard | 235532c | 2007-10-10 14:06:25 +0200 | [diff] [blame] | 723 | reply->handle = lock_fd( file->fd, req->offset, req->count, req->shared, req->wait ); |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 724 | reply->overlapped = is_overlapped( file ); |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 725 | release_object( file ); |
| 726 | } |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 727 | } |
| 728 | |
| 729 | /* unlock a region of a file */ |
| 730 | DECL_HANDLER(unlock_file) |
| 731 | { |
| 732 | struct file *file; |
| 733 | |
| 734 | if ((file = get_file_obj( current->process, req->handle, 0 ))) |
| 735 | { |
Alexandre Julliard | 235532c | 2007-10-10 14:06:25 +0200 | [diff] [blame] | 736 | unlock_fd( file->fd, req->offset, req->count ); |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 737 | release_object( file ); |
| 738 | } |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 739 | } |