server: Modify open_fd to create an fd without a user.
[wine] / server / file.c
1 /*
2  * Server-side file management
3  *
4  * Copyright (C) 1998 Alexandre Julliard
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
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <assert.h>
25 #include <fcntl.h>
26 #include <stdarg.h>
27 #include <stdio.h>
28 #include <string.h>
29 #include <stdlib.h>
30 #include <errno.h>
31 #ifdef HAVE_SYS_ERRNO_H
32 #include <sys/errno.h>
33 #endif
34 #include <sys/stat.h>
35 #include <sys/time.h>
36 #include <sys/types.h>
37 #include <time.h>
38 #include <unistd.h>
39 #ifdef HAVE_UTIME_H
40 #include <utime.h>
41 #endif
42 #ifdef HAVE_POLL_H
43 #include <poll.h>
44 #endif
45
46 #include "ntstatus.h"
47 #define WIN32_NO_STATUS
48 #include "windef.h"
49 #include "winternl.h"
50
51 #include "file.h"
52 #include "handle.h"
53 #include "thread.h"
54 #include "request.h"
55
56 struct file
57 {
58     struct object       obj;        /* object header */
59     struct fd          *fd;         /* file descriptor for this file */
60     unsigned int        access;     /* file access (FILE_READ_DATA etc.) */
61     unsigned int        options;    /* file options (FILE_DELETE_ON_CLOSE, FILE_SYNCHRONOUS...) */
62 };
63
64 static unsigned int generic_file_map_access( unsigned int access );
65
66 static void file_dump( struct object *obj, int verbose );
67 static struct fd *file_get_fd( struct object *obj );
68 static unsigned int file_map_access( struct object *obj, unsigned int access );
69 static void file_destroy( struct object *obj );
70
71 static int file_get_poll_events( struct fd *fd );
72 static int file_flush( struct fd *fd, struct event **event );
73 static int file_get_info( struct fd *fd );
74
75 static const struct object_ops file_ops =
76 {
77     sizeof(struct file),          /* size */
78     file_dump,                    /* dump */
79     default_fd_add_queue,         /* add_queue */
80     default_fd_remove_queue,      /* remove_queue */
81     default_fd_signaled,          /* signaled */
82     no_satisfied,                 /* satisfied */
83     no_signal,                    /* signal */
84     file_get_fd,                  /* get_fd */
85     file_map_access,              /* map_access */
86     no_lookup_name,               /* lookup_name */
87     no_close_handle,              /* close_handle */
88     file_destroy                  /* destroy */
89 };
90
91 static const struct fd_ops file_fd_ops =
92 {
93     file_get_poll_events,         /* get_poll_events */
94     default_poll_event,           /* poll_event */
95     file_flush,                   /* flush */
96     file_get_info,                /* get_file_info */
97     default_fd_queue_async,       /* queue_async */
98     default_fd_cancel_async       /* cancel_async */
99 };
100
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
106 /* create a file from a file descriptor */
107 /* if the function fails the fd is closed */
108 static struct file *create_file_for_fd( int fd, unsigned int access, unsigned int sharing )
109 {
110     struct file *file;
111
112     if ((file = alloc_object( &file_ops )))
113     {
114         file->access     = file_map_access( &file->obj, access );
115         file->options    = FILE_SYNCHRONOUS_IO_NONALERT;
116         if (!(file->fd = create_anonymous_fd( &file_fd_ops, fd, &file->obj )))
117         {
118             release_object( file );
119             return NULL;
120         }
121     }
122     return file;
123 }
124
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 }
137
138 static struct object *create_file( const char *nameptr, size_t len, unsigned int access,
139                                    unsigned int sharing, int create, unsigned int options,
140                                    unsigned int attrs )
141 {
142     struct object *obj = NULL;
143     struct fd *fd;
144     int flags, rw_mode;
145     char *name;
146     mode_t mode;
147
148     if (!(name = mem_alloc( len + 1 ))) return NULL;
149     memcpy( name, nameptr, len );
150     name[len] = 0;
151
152     switch(create)
153     {
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;
160     default:                set_error( STATUS_INVALID_PARAMETER ); goto done;
161     }
162
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;
168
169     access = generic_file_map_access( access );
170
171     rw_mode = 0;
172     if (access & FILE_UNIX_READ_ACCESS) rw_mode |= FILE_READ_DATA;
173     if (access & FILE_UNIX_WRITE_ACCESS) rw_mode |= FILE_WRITE_DATA;
174     switch(rw_mode)
175     {
176     case 0: break;
177     case FILE_READ_DATA:  flags |= O_RDONLY; break;
178     case FILE_WRITE_DATA: flags |= O_WRONLY; break;
179     case FILE_READ_DATA|FILE_WRITE_DATA: flags |= O_RDWR; break;
180     }
181
182     /* FIXME: should set error to STATUS_OBJECT_NAME_COLLISION if file existed before */
183     fd = open_fd( name, flags | O_NONBLOCK | O_LARGEFILE, &mode, access, sharing, options );
184     if (!fd) goto done;
185
186     if (S_ISCHR(mode) && is_serial_fd( fd ))
187         obj = create_serial( fd, options );
188     else
189         obj = create_file_obj( fd, access, options );
190
191     release_object( fd );
192
193 done:
194     free( name );
195     return obj;
196 }
197
198 /* check if two file objects point to the same file */
199 int is_same_file( struct file *file1, struct file *file2 )
200 {
201     return is_same_file_fd( file1->fd, file2->fd );
202 }
203
204 /* create a temp file for anonymous mappings */
205 struct file *create_temp_file( int access )
206 {
207     char tmpfn[16];
208     int fd;
209
210     sprintf( tmpfn, "anonmap.XXXXXX" );  /* create it in the server directory */
211     fd = mkstemps( tmpfn, 0 );
212     if (fd == -1)
213     {
214         file_set_error();
215         return NULL;
216     }
217     unlink( tmpfn );
218     return create_file_for_fd( fd, access, 0 );
219 }
220
221 static void file_dump( struct object *obj, int verbose )
222 {
223     struct file *file = (struct file *)obj;
224     assert( obj->ops == &file_ops );
225     fprintf( stderr, "File fd=%p options=%08x\n", file->fd, file->options );
226 }
227
228 static int file_get_poll_events( struct fd *fd )
229 {
230     struct file *file = get_fd_user( fd );
231     int events = 0;
232     assert( file->obj.ops == &file_ops );
233     if (file->access & FILE_UNIX_READ_ACCESS) events |= POLLIN;
234     if (file->access & FILE_UNIX_WRITE_ACCESS) events |= POLLOUT;
235     return events;
236 }
237
238 static int file_flush( struct fd *fd, struct event **event )
239 {
240     int ret = 0, unix_fd = get_unix_fd( fd );
241
242     if (unix_fd != -1)
243     {
244         ret = (fsync( unix_fd ) != -1);
245         if (!ret) file_set_error();
246     }
247     return ret;
248 }
249
250 static int file_get_info( struct fd *fd )
251 {
252     struct file *file = get_fd_user( fd );
253
254     if (is_overlapped( file )) return FD_FLAG_OVERLAPPED;
255     else return 0;
256 }
257
258 static struct fd *file_get_fd( struct object *obj )
259 {
260     struct file *file = (struct file *)obj;
261     assert( obj->ops == &file_ops );
262     return (struct fd *)grab_object( file->fd );
263 }
264
265 static unsigned int generic_file_map_access( unsigned int access )
266 {
267     if (access & GENERIC_READ)    access |= FILE_GENERIC_READ;
268     if (access & GENERIC_WRITE)   access |= FILE_GENERIC_WRITE;
269     if (access & GENERIC_EXECUTE) access |= FILE_GENERIC_EXECUTE;
270     if (access & GENERIC_ALL)     access |= FILE_ALL_ACCESS;
271     return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
272 }
273
274 static unsigned int file_map_access( struct object *obj, unsigned int access )
275 {
276     return generic_file_map_access( access );
277 }
278
279 static void file_destroy( struct object *obj )
280 {
281     struct file *file = (struct file *)obj;
282     assert( obj->ops == &file_ops );
283
284     if (file->fd) release_object( file->fd );
285 }
286
287 /* set the last error depending on errno */
288 void file_set_error(void)
289 {
290     switch (errno)
291     {
292     case EAGAIN:    set_error( STATUS_SHARING_VIOLATION ); break;
293     case EBADF:     set_error( STATUS_INVALID_HANDLE ); break;
294     case ENOSPC:    set_error( STATUS_DISK_FULL ); break;
295     case EACCES:
296     case ESRCH:
297     case EPERM:     set_error( STATUS_ACCESS_DENIED ); break;
298     case EROFS:     set_error( STATUS_MEDIA_WRITE_PROTECTED ); break;
299     case EBUSY:     set_error( STATUS_FILE_LOCK_CONFLICT ); break;
300     case ENOENT:    set_error( STATUS_NO_SUCH_FILE ); break;
301     case EISDIR:    set_error( STATUS_FILE_IS_A_DIRECTORY ); break;
302     case ENFILE:
303     case EMFILE:    set_error( STATUS_NO_MORE_FILES ); break;
304     case EEXIST:    set_error( STATUS_OBJECT_NAME_COLLISION ); break;
305     case EINVAL:    set_error( STATUS_INVALID_PARAMETER ); break;
306     case ESPIPE:    set_win32_error( ERROR_SEEK ); break;
307     case ENOTEMPTY: set_error( STATUS_DIRECTORY_NOT_EMPTY ); break;
308     case EIO:       set_error( STATUS_ACCESS_VIOLATION ); break;
309     case ENOTDIR:   set_error( STATUS_NOT_A_DIRECTORY ); break;
310     case EFBIG:     set_error( STATUS_SECTION_TOO_BIG ); break;
311     case ENODEV:    set_error( STATUS_NO_SUCH_DEVICE ); break;
312     case ENXIO:     set_error( STATUS_NO_SUCH_DEVICE ); break;
313 #ifdef EOVERFLOW
314     case EOVERFLOW: set_error( STATUS_INVALID_PARAMETER ); break;
315 #endif
316     default:        perror("file_set_error"); set_error( STATUS_UNSUCCESSFUL ); break;
317     }
318 }
319
320 struct file *get_file_obj( struct process *process, obj_handle_t handle, unsigned int access )
321 {
322     return (struct file *)get_handle_obj( process, handle, access, &file_ops );
323 }
324
325 int get_file_unix_fd( struct file *file )
326 {
327     return get_unix_fd( file->fd );
328 }
329
330 /* extend a file beyond the current end of file */
331 static int extend_file( struct file *file, file_pos_t new_size )
332 {
333     static const char zero;
334     int unix_fd = get_file_unix_fd( file );
335     off_t size = new_size;
336
337     if (unix_fd == -1) return 0;
338
339     if (sizeof(new_size) > sizeof(size) && size != new_size)
340     {
341         set_error( STATUS_INVALID_PARAMETER );
342         return 0;
343     }
344     /* extend the file one byte beyond the requested size and then truncate it */
345     /* this should work around ftruncate implementations that can't extend files */
346     if (pwrite( unix_fd, &zero, 1, size ) != -1)
347     {
348         ftruncate( unix_fd, size );
349         return 1;
350     }
351     file_set_error();
352     return 0;
353 }
354
355 /* try to grow the file to the specified size */
356 int grow_file( struct file *file, file_pos_t size )
357 {
358     struct stat st;
359     int unix_fd = get_file_unix_fd( file );
360
361     if (unix_fd == -1) return 0;
362
363     if (fstat( unix_fd, &st ) == -1)
364     {
365         file_set_error();
366         return 0;
367     }
368     if (st.st_size >= size) return 1;  /* already large enough */
369     return extend_file( file, size );
370 }
371
372 /* create a file */
373 DECL_HANDLER(create_file)
374 {
375     struct object *file;
376
377     reply->handle = 0;
378     if ((file = create_file( get_req_data(), get_req_data_size(), req->access,
379                              req->sharing, req->create, req->options, req->attrs )))
380     {
381         reply->handle = alloc_handle( current->process, file, req->access, req->attributes );
382         release_object( file );
383     }
384 }
385
386 /* allocate a file handle for a Unix fd */
387 DECL_HANDLER(alloc_file_handle)
388 {
389     struct file *file;
390     int fd;
391
392     reply->handle = 0;
393     if ((fd = thread_get_inflight_fd( current, req->fd )) == -1)
394     {
395         set_error( STATUS_INVALID_HANDLE );
396         return;
397     }
398     if ((file = create_file_for_fd( fd, req->access, FILE_SHARE_READ | FILE_SHARE_WRITE )))
399     {
400         reply->handle = alloc_handle( current->process, file, req->access, req->attributes );
401         release_object( file );
402     }
403 }
404
405 /* lock a region of a file */
406 DECL_HANDLER(lock_file)
407 {
408     struct file *file;
409     file_pos_t offset = ((file_pos_t)req->offset_high << 32) | req->offset_low;
410     file_pos_t count = ((file_pos_t)req->count_high << 32) | req->count_low;
411
412     if ((file = get_file_obj( current->process, req->handle, 0 )))
413     {
414         reply->handle = lock_fd( file->fd, offset, count, req->shared, req->wait );
415         reply->overlapped = is_overlapped( file );
416         release_object( file );
417     }
418 }
419
420 /* unlock a region of a file */
421 DECL_HANDLER(unlock_file)
422 {
423     struct file *file;
424     file_pos_t offset = ((file_pos_t)req->offset_high << 32) | req->offset_low;
425     file_pos_t count = ((file_pos_t)req->count_high << 32) | req->count_low;
426
427     if ((file = get_file_obj( current->process, req->handle, 0 )))
428     {
429         unlock_fd( file->fd, offset, count );
430         release_object( file );
431     }
432 }