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" |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 55 | |
| 56 | struct file |
| 57 | { |
Alexandre Julliard | 57e1131 | 1999-05-16 16:59:38 +0000 | [diff] [blame] | 58 | struct object obj; /* object header */ |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 59 | struct fd *fd; /* file descriptor for this file */ |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 60 | unsigned int access; /* file access (FILE_READ_DATA etc.) */ |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 61 | unsigned int options; /* file options (FILE_DELETE_ON_CLOSE, FILE_SYNCHRONOUS...) */ |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 62 | }; |
| 63 | |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 64 | static unsigned int generic_file_map_access( unsigned int access ); |
| 65 | |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 66 | static void file_dump( struct object *obj, int verbose ); |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 67 | static struct fd *file_get_fd( struct object *obj ); |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 68 | static unsigned int file_map_access( struct object *obj, unsigned int access ); |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 69 | static void file_destroy( struct object *obj ); |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 70 | |
| 71 | static int file_get_poll_events( struct fd *fd ); |
Mike McCormack | ef8b946 | 2003-05-15 04:22:45 +0000 | [diff] [blame] | 72 | static int file_flush( struct fd *fd, struct event **event ); |
Alexandre Julliard | 6a27b48 | 2004-08-18 00:04:58 +0000 | [diff] [blame] | 73 | static int file_get_info( struct fd *fd ); |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 74 | |
| 75 | static const struct object_ops file_ops = |
| 76 | { |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 77 | sizeof(struct file), /* size */ |
| 78 | file_dump, /* dump */ |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 79 | default_fd_add_queue, /* add_queue */ |
| 80 | default_fd_remove_queue, /* remove_queue */ |
| 81 | default_fd_signaled, /* signaled */ |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 82 | no_satisfied, /* satisfied */ |
Mike McCormack | f92fff6 | 2005-04-24 17:35:52 +0000 | [diff] [blame] | 83 | no_signal, /* signal */ |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 84 | file_get_fd, /* get_fd */ |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 85 | file_map_access, /* map_access */ |
Vitaliy Margolen | baffcb9 | 2005-11-22 14:55:42 +0000 | [diff] [blame] | 86 | no_lookup_name, /* lookup_name */ |
Alexandre Julliard | b9b1ea9 | 2005-06-09 15:39:52 +0000 | [diff] [blame] | 87 | no_close_handle, /* close_handle */ |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 88 | file_destroy /* destroy */ |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 89 | }; |
| 90 | |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 91 | static const struct fd_ops file_fd_ops = |
| 92 | { |
| 93 | file_get_poll_events, /* get_poll_events */ |
Robert Shearman | d6a4e34 | 2005-06-07 20:09:01 +0000 | [diff] [blame] | 94 | default_poll_event, /* poll_event */ |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 95 | file_flush, /* flush */ |
| 96 | file_get_info, /* get_file_info */ |
Robert Shearman | d6a4e34 | 2005-06-07 20:09:01 +0000 | [diff] [blame] | 97 | default_fd_queue_async, /* queue_async */ |
| 98 | default_fd_cancel_async /* cancel_async */ |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 99 | }; |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 100 | |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 101 | static inline int is_overlapped( const struct file *file ) |
| 102 | { |
| 103 | return !(file->options & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT)); |
| 104 | } |
| 105 | |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 106 | /* create a file from a file descriptor */ |
| 107 | /* if the function fails the fd is closed */ |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 108 | static 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] | 109 | { |
| 110 | struct file *file; |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 111 | |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 112 | if ((file = alloc_object( &file_ops ))) |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 113 | { |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 114 | file->access = file_map_access( &file->obj, access ); |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 115 | file->options = FILE_SYNCHRONOUS_IO_NONALERT; |
Alexandre Julliard | 580da24 | 2003-03-12 22:38:14 +0000 | [diff] [blame] | 116 | if (!(file->fd = create_anonymous_fd( &file_fd_ops, fd, &file->obj ))) |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 117 | { |
| 118 | release_object( file ); |
| 119 | return NULL; |
| 120 | } |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 121 | } |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 122 | return file; |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 125 | static struct object *create_file_obj( struct fd *fd, unsigned int access, unsigned int options ) |
| 126 | { |
| 127 | struct file *file = alloc_object( &file_ops ); |
| 128 | |
| 129 | if (!file) return NULL; |
| 130 | file->access = access; |
| 131 | file->options = options; |
| 132 | file->fd = fd; |
| 133 | grab_object( fd ); |
| 134 | set_fd_user( fd, &file_fd_ops, &file->obj ); |
| 135 | return &file->obj; |
| 136 | } |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 137 | |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 138 | static struct object *create_file( const char *nameptr, data_size_t len, unsigned int access, |
Alexandre Julliard | adc0610 | 2004-03-18 04:08:48 +0000 | [diff] [blame] | 139 | unsigned int sharing, int create, unsigned int options, |
Alexandre Julliard | 49b2f6d | 2004-04-06 23:41:01 +0000 | [diff] [blame] | 140 | unsigned int attrs ) |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 141 | { |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 142 | struct object *obj = NULL; |
| 143 | struct fd *fd; |
Alexandre Julliard | 471782a | 2006-01-25 15:06:48 +0100 | [diff] [blame] | 144 | int flags; |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 145 | char *name; |
Bernhard Rosenkraenzer | 5dda1f7 | 2001-07-23 18:09:41 +0000 | [diff] [blame] | 146 | mode_t mode; |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 147 | |
| 148 | if (!(name = mem_alloc( len + 1 ))) return NULL; |
| 149 | memcpy( name, nameptr, len ); |
| 150 | name[len] = 0; |
| 151 | |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 152 | switch(create) |
| 153 | { |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 154 | case FILE_CREATE: flags = O_CREAT | O_EXCL; break; |
| 155 | case FILE_OVERWRITE_IF: /* FIXME: the difference is whether we trash existing attr or not */ |
| 156 | case FILE_SUPERSEDE: flags = O_CREAT | O_TRUNC; break; |
| 157 | case FILE_OPEN: flags = 0; break; |
| 158 | case FILE_OPEN_IF: flags = O_CREAT; break; |
| 159 | case FILE_OVERWRITE: flags = O_TRUNC; break; |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 160 | default: set_error( STATUS_INVALID_PARAMETER ); goto done; |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 161 | } |
Eric Pouech | 4634447 | 2005-01-14 19:54:38 +0000 | [diff] [blame] | 162 | |
Bernhard Rosenkraenzer | 5dda1f7 | 2001-07-23 18:09:41 +0000 | [diff] [blame] | 163 | mode = (attrs & FILE_ATTRIBUTE_READONLY) ? 0444 : 0666; |
| 164 | |
| 165 | if (len >= 4 && |
| 166 | (!strcasecmp( name + len - 4, ".exe" ) || !strcasecmp( name + len - 4, ".com" ))) |
| 167 | mode |= 0111; |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 168 | |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 169 | access = generic_file_map_access( access ); |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 170 | |
Alexandre Julliard | 580da24 | 2003-03-12 22:38:14 +0000 | [diff] [blame] | 171 | /* FIXME: should set error to STATUS_OBJECT_NAME_COLLISION if file existed before */ |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 172 | fd = open_fd( name, flags | O_NONBLOCK | O_LARGEFILE, &mode, access, sharing, options ); |
| 173 | if (!fd) goto done; |
| 174 | |
Mike McCormack | 0835107 | 2006-01-27 12:13:56 +0100 | [diff] [blame] | 175 | if (S_ISDIR(mode)) |
| 176 | obj = create_dir_obj( fd ); |
| 177 | else if (S_ISCHR(mode) && is_serial_fd( fd )) |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 178 | obj = create_serial( fd, options ); |
| 179 | else |
| 180 | obj = create_file_obj( fd, access, options ); |
| 181 | |
| 182 | release_object( fd ); |
| 183 | |
| 184 | done: |
Alexandre Julliard | 9ff7872 | 2004-04-02 19:50:49 +0000 | [diff] [blame] | 185 | free( name ); |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 186 | return obj; |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 187 | } |
| 188 | |
Alexandre Julliard | 84fdfd0 | 2001-04-13 22:38:39 +0000 | [diff] [blame] | 189 | /* check if two file objects point to the same file */ |
| 190 | int is_same_file( struct file *file1, struct file *file2 ) |
| 191 | { |
Alexandre Julliard | 74bd1e4 | 2004-03-27 20:48:42 +0000 | [diff] [blame] | 192 | return is_same_file_fd( file1->fd, file2->fd ); |
Alexandre Julliard | 84fdfd0 | 2001-04-13 22:38:39 +0000 | [diff] [blame] | 193 | } |
| 194 | |
Alexandre Julliard | 580da24 | 2003-03-12 22:38:14 +0000 | [diff] [blame] | 195 | /* create a temp file for anonymous mappings */ |
| 196 | struct file *create_temp_file( int access ) |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 197 | { |
Alexandre Julliard | 580da24 | 2003-03-12 22:38:14 +0000 | [diff] [blame] | 198 | char tmpfn[16]; |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 199 | int fd; |
| 200 | |
Alexandre Julliard | 580da24 | 2003-03-12 22:38:14 +0000 | [diff] [blame] | 201 | sprintf( tmpfn, "anonmap.XXXXXX" ); /* create it in the server directory */ |
Alexandre Julliard | 2ee8b5b | 2003-03-20 21:07:49 +0000 | [diff] [blame] | 202 | fd = mkstemps( tmpfn, 0 ); |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 203 | if (fd == -1) |
| 204 | { |
| 205 | file_set_error(); |
Alexandre Julliard | 580da24 | 2003-03-12 22:38:14 +0000 | [diff] [blame] | 206 | return NULL; |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 207 | } |
Marcus Meissner | 786d249 | 2002-07-29 23:55:39 +0000 | [diff] [blame] | 208 | unlink( tmpfn ); |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 209 | return create_file_for_fd( fd, access, 0 ); |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 210 | } |
| 211 | |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 212 | static void file_dump( struct object *obj, int verbose ) |
| 213 | { |
| 214 | struct file *file = (struct file *)obj; |
| 215 | assert( obj->ops == &file_ops ); |
Alexandre Julliard | 9ff7872 | 2004-04-02 19:50:49 +0000 | [diff] [blame] | 216 | fprintf( stderr, "File fd=%p options=%08x\n", file->fd, file->options ); |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 217 | } |
| 218 | |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 219 | static int file_get_poll_events( struct fd *fd ) |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 220 | { |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 221 | struct file *file = get_fd_user( fd ); |
Alexandre Julliard | 57e1131 | 1999-05-16 16:59:38 +0000 | [diff] [blame] | 222 | int events = 0; |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 223 | assert( file->obj.ops == &file_ops ); |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 224 | if (file->access & FILE_UNIX_READ_ACCESS) events |= POLLIN; |
| 225 | if (file->access & FILE_UNIX_WRITE_ACCESS) events |= POLLOUT; |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 226 | return events; |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 227 | } |
| 228 | |
Mike McCormack | ef8b946 | 2003-05-15 04:22:45 +0000 | [diff] [blame] | 229 | static int file_flush( struct fd *fd, struct event **event ) |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 230 | { |
Alexandre Julliard | 964815b | 2005-08-08 15:11:03 +0000 | [diff] [blame] | 231 | int ret = 0, unix_fd = get_unix_fd( fd ); |
| 232 | |
| 233 | if (unix_fd != -1) |
| 234 | { |
| 235 | ret = (fsync( unix_fd ) != -1); |
| 236 | if (!ret) file_set_error(); |
| 237 | } |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 238 | return ret; |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 239 | } |
| 240 | |
Alexandre Julliard | 6a27b48 | 2004-08-18 00:04:58 +0000 | [diff] [blame] | 241 | static int file_get_info( struct fd *fd ) |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 242 | { |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 243 | struct file *file = get_fd_user( fd ); |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 244 | |
Alexandre Julliard | 6a27b48 | 2004-08-18 00:04:58 +0000 | [diff] [blame] | 245 | if (is_overlapped( file )) return FD_FLAG_OVERLAPPED; |
| 246 | else return 0; |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 249 | static struct fd *file_get_fd( struct object *obj ) |
| 250 | { |
| 251 | struct file *file = (struct file *)obj; |
| 252 | assert( obj->ops == &file_ops ); |
| 253 | return (struct fd *)grab_object( file->fd ); |
Martin Wilck | 718b1b7 | 2002-01-07 21:02:15 +0000 | [diff] [blame] | 254 | } |
| 255 | |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 256 | static unsigned int generic_file_map_access( unsigned int access ) |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 257 | { |
| 258 | if (access & GENERIC_READ) access |= FILE_GENERIC_READ; |
| 259 | if (access & GENERIC_WRITE) access |= FILE_GENERIC_WRITE; |
| 260 | if (access & GENERIC_EXECUTE) access |= FILE_GENERIC_EXECUTE; |
| 261 | if (access & GENERIC_ALL) access |= FILE_ALL_ACCESS; |
| 262 | return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL); |
| 263 | } |
| 264 | |
Mike McCormack | 9a7124e | 2006-01-24 13:30:55 +0100 | [diff] [blame] | 265 | static unsigned int file_map_access( struct object *obj, unsigned int access ) |
| 266 | { |
| 267 | return generic_file_map_access( access ); |
| 268 | } |
| 269 | |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 270 | static void file_destroy( struct object *obj ) |
| 271 | { |
Alexandre Julliard | 0562539 | 1999-01-03 11:55:56 +0000 | [diff] [blame] | 272 | struct file *file = (struct file *)obj; |
| 273 | assert( obj->ops == &file_ops ); |
| 274 | |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 275 | if (file->fd) release_object( file->fd ); |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 276 | } |
| 277 | |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 278 | /* set the last error depending on errno */ |
| 279 | void file_set_error(void) |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 280 | { |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 281 | switch (errno) |
| 282 | { |
Alexandre Julliard | cb1fc73 | 2000-01-24 21:58:06 +0000 | [diff] [blame] | 283 | case EAGAIN: set_error( STATUS_SHARING_VIOLATION ); break; |
| 284 | case EBADF: set_error( STATUS_INVALID_HANDLE ); break; |
| 285 | case ENOSPC: set_error( STATUS_DISK_FULL ); break; |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 286 | case EACCES: |
Alexandre Julliard | 5f258c6 | 2001-07-14 00:50:30 +0000 | [diff] [blame] | 287 | case ESRCH: |
Alexandre Julliard | cb1fc73 | 2000-01-24 21:58:06 +0000 | [diff] [blame] | 288 | case EPERM: set_error( STATUS_ACCESS_DENIED ); break; |
| 289 | case EROFS: set_error( STATUS_MEDIA_WRITE_PROTECTED ); break; |
| 290 | case EBUSY: set_error( STATUS_FILE_LOCK_CONFLICT ); break; |
| 291 | case ENOENT: set_error( STATUS_NO_SUCH_FILE ); break; |
Alexandre Julliard | 716878c | 2004-04-16 23:32:40 +0000 | [diff] [blame] | 292 | case EISDIR: set_error( STATUS_FILE_IS_A_DIRECTORY ); break; |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 293 | case ENFILE: |
Robert Shearman | 4d7b230 | 2006-08-29 21:11:28 +0100 | [diff] [blame^] | 294 | case EMFILE: set_error( STATUS_TOO_MANY_OPENED_FILES ); break; |
Alexandre Julliard | cb1fc73 | 2000-01-24 21:58:06 +0000 | [diff] [blame] | 295 | case EEXIST: set_error( STATUS_OBJECT_NAME_COLLISION ); break; |
| 296 | case EINVAL: set_error( STATUS_INVALID_PARAMETER ); break; |
Alexandre Julliard | d5b4232 | 2003-12-10 01:12:18 +0000 | [diff] [blame] | 297 | case ESPIPE: set_win32_error( ERROR_SEEK ); break; |
Alexandre Julliard | cb1fc73 | 2000-01-24 21:58:06 +0000 | [diff] [blame] | 298 | case ENOTEMPTY: set_error( STATUS_DIRECTORY_NOT_EMPTY ); break; |
| 299 | case EIO: set_error( STATUS_ACCESS_VIOLATION ); break; |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 300 | case ENOTDIR: set_error( STATUS_NOT_A_DIRECTORY ); break; |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 301 | case EFBIG: set_error( STATUS_SECTION_TOO_BIG ); break; |
Mike McCormack | ea782b6 | 2004-07-06 19:42:09 +0000 | [diff] [blame] | 302 | case ENODEV: set_error( STATUS_NO_SUCH_DEVICE ); break; |
| 303 | case ENXIO: set_error( STATUS_NO_SUCH_DEVICE ); break; |
Wim Lewis | 99a01c0 | 2004-01-02 20:11:35 +0000 | [diff] [blame] | 304 | #ifdef EOVERFLOW |
Alexandre Julliard | ce61349 | 2003-03-18 05:04:33 +0000 | [diff] [blame] | 305 | case EOVERFLOW: set_error( STATUS_INVALID_PARAMETER ); break; |
Wim Lewis | 99a01c0 | 2004-01-02 20:11:35 +0000 | [diff] [blame] | 306 | #endif |
Filip Navara | 2392a36 | 2004-04-12 23:15:11 +0000 | [diff] [blame] | 307 | default: perror("file_set_error"); set_error( STATUS_UNSUCCESSFUL ); break; |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 308 | } |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 309 | } |
| 310 | |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 311 | 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] | 312 | { |
Alexandre Julliard | 61ec6c1 | 1999-11-29 02:17:08 +0000 | [diff] [blame] | 313 | return (struct file *)get_handle_obj( process, handle, access, &file_ops ); |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 314 | } |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 315 | |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 316 | int get_file_unix_fd( struct file *file ) |
| 317 | { |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 318 | return get_unix_fd( file->fd ); |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 319 | } |
| 320 | |
Alexandre Julliard | 86e5efb | 2002-01-29 02:51:12 +0000 | [diff] [blame] | 321 | /* extend a file beyond the current end of file */ |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 322 | static int extend_file( struct file *file, file_pos_t new_size ) |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 323 | { |
Alexandre Julliard | 86e5efb | 2002-01-29 02:51:12 +0000 | [diff] [blame] | 324 | static const char zero; |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 325 | int unix_fd = get_file_unix_fd( file ); |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 326 | off_t size = new_size; |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 327 | |
Alexandre Julliard | 964815b | 2005-08-08 15:11:03 +0000 | [diff] [blame] | 328 | if (unix_fd == -1) return 0; |
| 329 | |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 330 | if (sizeof(new_size) > sizeof(size) && size != new_size) |
| 331 | { |
| 332 | set_error( STATUS_INVALID_PARAMETER ); |
| 333 | return 0; |
| 334 | } |
Alexandre Julliard | 86e5efb | 2002-01-29 02:51:12 +0000 | [diff] [blame] | 335 | /* extend the file one byte beyond the requested size and then truncate it */ |
| 336 | /* this should work around ftruncate implementations that can't extend files */ |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 337 | if (pwrite( unix_fd, &zero, 1, size ) != -1) |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 338 | { |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 339 | ftruncate( unix_fd, size ); |
Alexandre Julliard | 86e5efb | 2002-01-29 02:51:12 +0000 | [diff] [blame] | 340 | return 1; |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 341 | } |
Alexandre Julliard | 86e5efb | 2002-01-29 02:51:12 +0000 | [diff] [blame] | 342 | file_set_error(); |
| 343 | return 0; |
| 344 | } |
| 345 | |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 346 | /* try to grow the file to the specified size */ |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 347 | int grow_file( struct file *file, file_pos_t size ) |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 348 | { |
Marcus Meissner | 6bb990f | 2001-05-29 20:55:21 +0000 | [diff] [blame] | 349 | struct stat st; |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 350 | int unix_fd = get_file_unix_fd( file ); |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 351 | |
Alexandre Julliard | 964815b | 2005-08-08 15:11:03 +0000 | [diff] [blame] | 352 | if (unix_fd == -1) return 0; |
| 353 | |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 354 | if (fstat( unix_fd, &st ) == -1) |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 355 | { |
| 356 | file_set_error(); |
| 357 | return 0; |
| 358 | } |
Marcus Meissner | 3f1ed52 | 2001-05-14 20:09:37 +0000 | [diff] [blame] | 359 | if (st.st_size >= size) return 1; /* already large enough */ |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 360 | return extend_file( file, size ); |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 361 | } |
| 362 | |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 363 | /* create a file */ |
| 364 | DECL_HANDLER(create_file) |
| 365 | { |
Alexandre Julliard | adc0610 | 2004-03-18 04:08:48 +0000 | [diff] [blame] | 366 | struct object *file; |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 367 | |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 368 | reply->handle = 0; |
| 369 | if ((file = create_file( get_req_data(), get_req_data_size(), req->access, |
Alexandre Julliard | 49b2f6d | 2004-04-06 23:41:01 +0000 | [diff] [blame] | 370 | req->sharing, req->create, req->options, req->attrs ))) |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 371 | { |
Alexandre Julliard | 24560e7 | 2005-12-09 13:58:25 +0100 | [diff] [blame] | 372 | reply->handle = alloc_handle( current->process, file, req->access, req->attributes ); |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 373 | release_object( file ); |
| 374 | } |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | /* allocate a file handle for a Unix fd */ |
| 378 | DECL_HANDLER(alloc_file_handle) |
| 379 | { |
| 380 | struct file *file; |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 381 | int fd; |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 382 | |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 383 | reply->handle = 0; |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 384 | if ((fd = thread_get_inflight_fd( current, req->fd )) == -1) |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 385 | { |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 386 | set_error( STATUS_INVALID_HANDLE ); |
| 387 | return; |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 388 | } |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 389 | 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] | 390 | { |
Alexandre Julliard | 24560e7 | 2005-12-09 13:58:25 +0100 | [diff] [blame] | 391 | reply->handle = alloc_handle( current->process, file, req->access, req->attributes ); |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 392 | release_object( file ); |
| 393 | } |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 394 | } |
| 395 | |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 396 | /* lock a region of a file */ |
| 397 | DECL_HANDLER(lock_file) |
| 398 | { |
| 399 | struct file *file; |
Alexandre Julliard | ce61349 | 2003-03-18 05:04:33 +0000 | [diff] [blame] | 400 | file_pos_t offset = ((file_pos_t)req->offset_high << 32) | req->offset_low; |
| 401 | file_pos_t count = ((file_pos_t)req->count_high << 32) | req->count_low; |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 402 | |
| 403 | if ((file = get_file_obj( current->process, req->handle, 0 ))) |
| 404 | { |
Alexandre Julliard | ce61349 | 2003-03-18 05:04:33 +0000 | [diff] [blame] | 405 | reply->handle = lock_fd( file->fd, offset, count, req->shared, req->wait ); |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 406 | reply->overlapped = is_overlapped( file ); |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 407 | release_object( file ); |
| 408 | } |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 409 | } |
| 410 | |
| 411 | /* unlock a region of a file */ |
| 412 | DECL_HANDLER(unlock_file) |
| 413 | { |
| 414 | struct file *file; |
Alexandre Julliard | ce61349 | 2003-03-18 05:04:33 +0000 | [diff] [blame] | 415 | file_pos_t offset = ((file_pos_t)req->offset_high << 32) | req->offset_low; |
| 416 | file_pos_t count = ((file_pos_t)req->count_high << 32) | req->count_low; |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 417 | |
| 418 | if ((file = get_file_obj( current->process, req->handle, 0 ))) |
| 419 | { |
Alexandre Julliard | ce61349 | 2003-03-18 05:04:33 +0000 | [diff] [blame] | 420 | unlock_fd( file->fd, offset, count ); |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 421 | release_object( file ); |
| 422 | } |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 423 | } |