blob: 429a05aa891b361590ee7d9120f44cc4f0ad2ebf [file] [log] [blame]
Alexandre Julliard338e7571998-12-27 15:28:54 +00001/*
2 * Server-side file management
3 *
4 * Copyright (C) 1998 Alexandre Julliard
5 */
6
Patrik Stridvall96336321999-10-24 22:13:47 +00007#include "config.h"
8
Alexandre Julliard338e7571998-12-27 15:28:54 +00009#include <assert.h>
10#include <fcntl.h>
11#include <stdio.h>
David Luyeree517e81999-02-28 12:27:56 +000012#include <string.h>
Alexandre Julliard338e7571998-12-27 15:28:54 +000013#include <stdlib.h>
Marcus Meissner8ba68fb1999-01-01 18:42:17 +000014#include <errno.h>
Howard Abrams13277481999-07-10 13:16:29 +000015#ifdef HAVE_SYS_ERRNO_H
Alexandre Julliard338e7571998-12-27 15:28:54 +000016#include <sys/errno.h>
Howard Abrams13277481999-07-10 13:16:29 +000017#endif
Alexandre Julliard338e7571998-12-27 15:28:54 +000018#include <sys/stat.h>
19#include <sys/time.h>
20#include <sys/types.h>
21#include <time.h>
22#include <unistd.h>
Alexandre Julliard05625391999-01-03 11:55:56 +000023#include <utime.h>
Alexandre Julliard338e7571998-12-27 15:28:54 +000024
25#include "winerror.h"
Michael Vekslerf935c591999-02-09 15:49:39 +000026#include "winbase.h"
Alexandre Julliard43c190e1999-05-15 10:48:19 +000027
28#include "handle.h"
29#include "thread.h"
Alexandre Julliard5bc78081999-06-22 17:26:53 +000030#include "request.h"
Alexandre Julliard338e7571998-12-27 15:28:54 +000031
32struct file
33{
Alexandre Julliard57e11311999-05-16 16:59:38 +000034 struct object obj; /* object header */
Alexandre Julliard57e11311999-05-16 16:59:38 +000035 struct file *next; /* next file in hashing list */
36 char *name; /* file name */
37 unsigned int access; /* file access (GENERIC_READ/WRITE) */
38 unsigned int flags; /* flags (FILE_FLAG_*) */
39 unsigned int sharing; /* file sharing mode */
Alexandre Julliard338e7571998-12-27 15:28:54 +000040};
41
Alexandre Julliard05625391999-01-03 11:55:56 +000042#define NAME_HASH_SIZE 37
43
44static struct file *file_hash[NAME_HASH_SIZE];
45
Alexandre Julliard338e7571998-12-27 15:28:54 +000046static void file_dump( struct object *obj, int verbose );
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000047static int file_get_poll_events( struct object *obj );
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +000048static int file_get_read_fd( struct object *obj );
49static int file_get_write_fd( struct object *obj );
50static int file_flush( struct object *obj );
Alexandre Julliardebe29ef1999-06-26 08:43:26 +000051static int file_get_info( struct object *obj, struct get_file_info_request *req );
Alexandre Julliard338e7571998-12-27 15:28:54 +000052static void file_destroy( struct object *obj );
53
54static const struct object_ops file_ops =
55{
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000056 sizeof(struct file), /* size */
57 file_dump, /* dump */
58 default_poll_add_queue, /* add_queue */
59 default_poll_remove_queue, /* remove_queue */
60 default_poll_signaled, /* signaled */
61 no_satisfied, /* satisfied */
62 file_get_poll_events, /* get_poll_events */
63 default_poll_event, /* poll_event */
64 file_get_read_fd, /* get_read_fd */
65 file_get_write_fd, /* get_write_fd */
66 file_flush, /* flush */
67 file_get_info, /* get_file_info */
68 file_destroy /* destroy */
Alexandre Julliard338e7571998-12-27 15:28:54 +000069};
70
Alexandre Julliard05625391999-01-03 11:55:56 +000071
72static int get_name_hash( const char *name )
73{
74 int hash = 0;
Eric Pouechbf2b7651999-11-15 00:07:30 +000075 while (*name) hash ^= (unsigned char)*name++;
Alexandre Julliard05625391999-01-03 11:55:56 +000076 return hash % NAME_HASH_SIZE;
77}
78
79/* check if the desired access is possible without violating */
80/* the sharing mode of other opens of the same file */
81static int check_sharing( const char *name, int hash, unsigned int access,
82 unsigned int sharing )
Alexandre Julliard338e7571998-12-27 15:28:54 +000083{
84 struct file *file;
Alexandre Julliard05625391999-01-03 11:55:56 +000085 unsigned int existing_sharing = FILE_SHARE_READ | FILE_SHARE_WRITE;
86 unsigned int existing_access = 0;
Alexandre Julliard338e7571998-12-27 15:28:54 +000087
Alexandre Julliard05625391999-01-03 11:55:56 +000088 for (file = file_hash[hash]; file; file = file->next)
Alexandre Julliard338e7571998-12-27 15:28:54 +000089 {
Alexandre Julliard05625391999-01-03 11:55:56 +000090 if (strcmp( file->name, name )) continue;
91 existing_sharing &= file->sharing;
92 existing_access |= file->access;
93 }
Alexandre Julliard5bc78081999-06-22 17:26:53 +000094 if ((access & GENERIC_READ) && !(existing_sharing & FILE_SHARE_READ)) goto error;
95 if ((access & GENERIC_WRITE) && !(existing_sharing & FILE_SHARE_WRITE)) goto error;
96 if ((existing_access & GENERIC_READ) && !(sharing & FILE_SHARE_READ)) goto error;
97 if ((existing_access & GENERIC_WRITE) && !(sharing & FILE_SHARE_WRITE)) goto error;
Alexandre Julliard05625391999-01-03 11:55:56 +000098 return 1;
Alexandre Julliard5bc78081999-06-22 17:26:53 +000099 error:
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000100 set_error( STATUS_SHARING_VIOLATION );
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000101 return 0;
Alexandre Julliard05625391999-01-03 11:55:56 +0000102}
103
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000104/* create a file from a file descriptor */
105/* if the function fails the fd is closed */
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000106static struct file *create_file_for_fd( int fd, unsigned int access, unsigned int sharing,
107 unsigned int attrs )
Alexandre Julliard05625391999-01-03 11:55:56 +0000108{
109 struct file *file;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000110 if ((file = alloc_object( &file_ops, fd )))
Alexandre Julliard05625391999-01-03 11:55:56 +0000111 {
Alexandre Julliard247b8ae1999-12-13 00:16:44 +0000112 file->name = NULL;
113 file->next = NULL;
Alexandre Julliard247b8ae1999-12-13 00:16:44 +0000114 file->access = access;
115 file->flags = attrs;
116 file->sharing = sharing;
Alexandre Julliard05625391999-01-03 11:55:56 +0000117 }
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000118 return file;
Alexandre Julliard338e7571998-12-27 15:28:54 +0000119}
120
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000121
122static struct file *create_file( const char *nameptr, size_t len, unsigned int access,
123 unsigned int sharing, int create, unsigned int attrs )
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000124{
125 struct file *file;
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000126 int hash, flags;
127 struct stat st;
128 char *name;
129 int fd = -1;
130
131 if (!(name = mem_alloc( len + 1 ))) return NULL;
132 memcpy( name, nameptr, len );
133 name[len] = 0;
134
135 /* check sharing mode */
136 hash = get_name_hash( name );
137 if (!check_sharing( name, hash, access, sharing )) goto error;
138
139 switch(create)
140 {
141 case CREATE_NEW: flags = O_CREAT | O_EXCL; break;
142 case CREATE_ALWAYS: flags = O_CREAT | O_TRUNC; break;
143 case OPEN_ALWAYS: flags = O_CREAT; break;
144 case TRUNCATE_EXISTING: flags = O_TRUNC; break;
145 case OPEN_EXISTING: flags = 0; break;
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000146 default: set_error( STATUS_INVALID_PARAMETER ); goto error;
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000147 }
148 switch(access & (GENERIC_READ | GENERIC_WRITE))
149 {
150 case 0: break;
151 case GENERIC_READ: flags |= O_RDONLY; break;
152 case GENERIC_WRITE: flags |= O_WRONLY; break;
153 case GENERIC_READ|GENERIC_WRITE: flags |= O_RDWR; break;
154 }
155
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000156 /* FIXME: should set error to STATUS_OBJECT_NAME_COLLISION if file existed before */
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000157 if ((fd = open( name, flags | O_NONBLOCK,
158 (attrs & FILE_ATTRIBUTE_READONLY) ? 0444 : 0666 )) == -1)
159 goto file_error;
160 /* refuse to open a directory */
161 if (fstat( fd, &st ) == -1) goto file_error;
162 if (S_ISDIR(st.st_mode))
163 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000164 set_error( STATUS_ACCESS_DENIED );
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000165 goto error;
166 }
167
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000168 if (!(file = create_file_for_fd( fd, access, sharing, attrs )))
169 {
170 free( name );
171 return NULL;
172 }
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000173 file->name = name;
174 file->next = file_hash[hash];
175 file_hash[hash] = file;
176 return file;
177
178 file_error:
179 file_set_error();
180 error:
181 if (fd != -1) close( fd );
182 free( name );
183 return NULL;
184}
185
186/* Create an anonymous Unix file */
187int create_anonymous_file(void)
188{
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000189 char *name;
190 int fd;
191
192 do
193 {
194 if (!(name = tmpnam(NULL)))
195 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000196 set_error( STATUS_TOO_MANY_OPENED_FILES );
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000197 return -1;
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000198 }
199 fd = open( name, O_CREAT | O_EXCL | O_RDWR, 0600 );
200 } while ((fd == -1) && (errno == EEXIST));
201 if (fd == -1)
202 {
203 file_set_error();
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000204 return -1;
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000205 }
206 unlink( name );
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000207 return fd;
208}
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000209
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000210/* Create a temp file for anonymous mappings */
211struct file *create_temp_file( int access )
212{
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000213 int fd;
214
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000215 if ((fd = create_anonymous_file()) == -1) return NULL;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000216 return create_file_for_fd( fd, access, 0, 0 );
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000217}
218
Alexandre Julliard338e7571998-12-27 15:28:54 +0000219static void file_dump( struct object *obj, int verbose )
220{
221 struct file *file = (struct file *)obj;
222 assert( obj->ops == &file_ops );
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000223 fprintf( stderr, "File fd=%d flags=%08x name='%s'\n", file->obj.fd, file->flags, file->name );
Alexandre Julliard338e7571998-12-27 15:28:54 +0000224}
225
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000226static int file_get_poll_events( struct object *obj )
Alexandre Julliard338e7571998-12-27 15:28:54 +0000227{
228 struct file *file = (struct file *)obj;
Alexandre Julliard57e11311999-05-16 16:59:38 +0000229 int events = 0;
Alexandre Julliard338e7571998-12-27 15:28:54 +0000230 assert( obj->ops == &file_ops );
Alexandre Julliard247b8ae1999-12-13 00:16:44 +0000231 if (file->access & GENERIC_READ) events |= POLLIN;
232 if (file->access & GENERIC_WRITE) events |= POLLOUT;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000233 return events;
Alexandre Julliard338e7571998-12-27 15:28:54 +0000234}
235
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000236static int file_get_read_fd( struct object *obj )
Alexandre Julliard338e7571998-12-27 15:28:54 +0000237{
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000238 struct file *file = (struct file *)obj;
239 assert( obj->ops == &file_ops );
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000240 return dup( file->obj.fd );
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000241}
242
243static int file_get_write_fd( struct object *obj )
244{
245 struct file *file = (struct file *)obj;
246 assert( obj->ops == &file_ops );
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000247 return dup( file->obj.fd );
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000248}
249
250static int file_flush( struct object *obj )
251{
252 int ret;
253 struct file *file = (struct file *)grab_object(obj);
254 assert( obj->ops == &file_ops );
255
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000256 ret = (fsync( file->obj.fd ) != -1);
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000257 if (!ret) file_set_error();
258 release_object( file );
259 return ret;
Alexandre Julliard338e7571998-12-27 15:28:54 +0000260}
261
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000262static int file_get_info( struct object *obj, struct get_file_info_request *req )
Alexandre Julliard338e7571998-12-27 15:28:54 +0000263{
Alexandre Julliard05625391999-01-03 11:55:56 +0000264 struct stat st;
Alexandre Julliard338e7571998-12-27 15:28:54 +0000265 struct file *file = (struct file *)obj;
266 assert( obj->ops == &file_ops );
Alexandre Julliard05625391999-01-03 11:55:56 +0000267
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000268 if (fstat( file->obj.fd, &st ) == -1)
Alexandre Julliard05625391999-01-03 11:55:56 +0000269 {
270 file_set_error();
271 return 0;
272 }
273 if (S_ISCHR(st.st_mode) || S_ISFIFO(st.st_mode) ||
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000274 S_ISSOCK(st.st_mode) || isatty(file->obj.fd)) req->type = FILE_TYPE_CHAR;
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000275 else req->type = FILE_TYPE_DISK;
276 if (S_ISDIR(st.st_mode)) req->attr = FILE_ATTRIBUTE_DIRECTORY;
277 else req->attr = FILE_ATTRIBUTE_ARCHIVE;
278 if (!(st.st_mode & S_IWUSR)) req->attr |= FILE_ATTRIBUTE_READONLY;
279 req->access_time = st.st_atime;
280 req->write_time = st.st_mtime;
281 req->size_high = 0;
282 req->size_low = S_ISDIR(st.st_mode) ? 0 : st.st_size;
283 req->links = st.st_nlink;
284 req->index_high = st.st_dev;
285 req->index_low = st.st_ino;
286 req->serial = 0; /* FIXME */
Alexandre Julliard05625391999-01-03 11:55:56 +0000287 return 1;
288}
289
290static void file_destroy( struct object *obj )
291{
Alexandre Julliard05625391999-01-03 11:55:56 +0000292 struct file *file = (struct file *)obj;
293 assert( obj->ops == &file_ops );
294
Alexandre Julliard638f1691999-01-17 16:32:32 +0000295 if (file->name)
296 {
297 /* remove it from the hashing list */
298 struct file **pptr = &file_hash[get_name_hash( file->name )];
299 while (*pptr && *pptr != file) pptr = &(*pptr)->next;
300 assert( *pptr );
301 *pptr = (*pptr)->next;
Juergen Schmiedcddfcce1999-02-14 11:20:07 +0000302 if (file->flags & FILE_FLAG_DELETE_ON_CLOSE) unlink( file->name );
Alexandre Julliard638f1691999-01-17 16:32:32 +0000303 free( file->name );
304 }
Alexandre Julliard338e7571998-12-27 15:28:54 +0000305}
306
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000307/* set the last error depending on errno */
308void file_set_error(void)
Alexandre Julliard338e7571998-12-27 15:28:54 +0000309{
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000310 switch (errno)
311 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000312 case EAGAIN: set_error( STATUS_SHARING_VIOLATION ); break;
313 case EBADF: set_error( STATUS_INVALID_HANDLE ); break;
314 case ENOSPC: set_error( STATUS_DISK_FULL ); break;
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000315 case EACCES:
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000316 case EPERM: set_error( STATUS_ACCESS_DENIED ); break;
317 case EROFS: set_error( STATUS_MEDIA_WRITE_PROTECTED ); break;
318 case EBUSY: set_error( STATUS_FILE_LOCK_CONFLICT ); break;
319 case ENOENT: set_error( STATUS_NO_SUCH_FILE ); break;
320 case EISDIR: set_error( 0xc0010000 | ERROR_CANNOT_MAKE /* FIXME */ ); break;
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000321 case ENFILE:
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000322 case EMFILE: set_error( STATUS_NO_MORE_FILES ); break;
323 case EEXIST: set_error( STATUS_OBJECT_NAME_COLLISION ); break;
324 case EINVAL: set_error( STATUS_INVALID_PARAMETER ); break;
325 case ESPIPE: set_error( 0xc0010000 | ERROR_SEEK /* FIXME */ ); break;
326 case ENOTEMPTY: set_error( STATUS_DIRECTORY_NOT_EMPTY ); break;
327 case EIO: set_error( STATUS_ACCESS_VIOLATION ); break;
328 default: perror("file_set_error"); set_error( ERROR_UNKNOWN /* FIXME */ ); break;
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000329 }
Alexandre Julliard338e7571998-12-27 15:28:54 +0000330}
331
Alexandre Julliard61ec6c11999-11-29 02:17:08 +0000332struct file *get_file_obj( struct process *process, int handle, unsigned int access )
Alexandre Julliard338e7571998-12-27 15:28:54 +0000333{
Alexandre Julliard61ec6c11999-11-29 02:17:08 +0000334 return (struct file *)get_handle_obj( process, handle, access, &file_ops );
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000335}
Alexandre Julliard338e7571998-12-27 15:28:54 +0000336
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000337int file_get_mmap_fd( struct file *file )
338{
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000339 return dup( file->obj.fd );
Alexandre Julliard338e7571998-12-27 15:28:54 +0000340}
341
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000342static int set_file_pointer( int handle, int *low, int *high, int whence )
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000343{
344 struct file *file;
345 int result;
346
347 if (*high)
348 {
349 fprintf( stderr, "set_file_pointer: offset > 4Gb not supported yet\n" );
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000350 set_error( STATUS_INVALID_PARAMETER );
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000351 return 0;
352 }
353
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000354 if (!(file = get_file_obj( current->process, handle, 0 )))
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000355 return 0;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000356 if ((result = lseek( file->obj.fd, *low, whence )) == -1)
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000357 {
358 /* Check for seek before start of file */
359 if ((errno == EINVAL) && (whence != SEEK_SET) && (*low < 0))
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000360 set_error( 0xc0010000 | ERROR_NEGATIVE_SEEK /* FIXME */ );
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000361 else
362 file_set_error();
363 release_object( file );
364 return 0;
365 }
366 *low = result;
367 release_object( file );
368 return 1;
369}
370
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000371static int truncate_file( int handle )
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000372{
373 struct file *file;
374 int result;
375
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000376 if (!(file = get_file_obj( current->process, handle, GENERIC_WRITE )))
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000377 return 0;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000378 if (((result = lseek( file->obj.fd, 0, SEEK_CUR )) == -1) ||
379 (ftruncate( file->obj.fd, result ) == -1))
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +0000380 {
381 file_set_error();
382 release_object( file );
383 return 0;
384 }
385 release_object( file );
386 return 1;
387
388}
389
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000390/* try to grow the file to the specified size */
391int grow_file( struct file *file, int size_high, int size_low )
392{
393 struct stat st;
394
395 if (size_high)
396 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000397 set_error( STATUS_INVALID_PARAMETER );
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000398 return 0;
399 }
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000400 if (fstat( file->obj.fd, &st ) == -1)
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000401 {
402 file_set_error();
403 return 0;
404 }
405 if (st.st_size >= size_low) return 1; /* already large enough */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000406 if (ftruncate( file->obj.fd, size_low ) != -1) return 1;
Alexandre Julliardcb28bdc1999-02-28 10:13:59 +0000407 file_set_error();
408 return 0;
409}
410
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000411static int set_file_time( int handle, time_t access_time, time_t write_time )
Alexandre Julliard338e7571998-12-27 15:28:54 +0000412{
413 struct file *file;
Alexandre Julliard05625391999-01-03 11:55:56 +0000414 struct utimbuf utimbuf;
Alexandre Julliard338e7571998-12-27 15:28:54 +0000415
Alexandre Julliard05625391999-01-03 11:55:56 +0000416 if (!(file = get_file_obj( current->process, handle, GENERIC_WRITE )))
Alexandre Julliard338e7571998-12-27 15:28:54 +0000417 return 0;
Alexandre Julliarda27b48b1999-01-31 15:08:31 +0000418 if (!access_time || !write_time)
419 {
420 struct stat st;
421 if (stat( file->name, &st ) == -1) goto error;
422 if (!access_time) access_time = st.st_atime;
423 if (!write_time) write_time = st.st_mtime;
424 }
Alexandre Julliard05625391999-01-03 11:55:56 +0000425 utimbuf.actime = access_time;
426 utimbuf.modtime = write_time;
Alexandre Julliarda27b48b1999-01-31 15:08:31 +0000427 if (utime( file->name, &utimbuf ) == -1) goto error;
Alexandre Julliard338e7571998-12-27 15:28:54 +0000428 release_object( file );
429 return 1;
Alexandre Julliarda27b48b1999-01-31 15:08:31 +0000430 error:
431 file_set_error();
432 release_object( file );
433 return 0;
Alexandre Julliard338e7571998-12-27 15:28:54 +0000434}
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000435
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000436static int file_lock( struct file *file, int offset_high, int offset_low,
437 int count_high, int count_low )
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000438{
439 /* FIXME: implement this */
440 return 1;
441}
442
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000443static int file_unlock( struct file *file, int offset_high, int offset_low,
444 int count_high, int count_low )
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000445{
446 /* FIXME: implement this */
447 return 1;
448}
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000449
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000450/* create a file */
451DECL_HANDLER(create_file)
452{
Alexandre Julliardef886372000-04-04 19:33:27 +0000453 size_t len = get_req_strlen( req, req->name );
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000454 struct file *file;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000455
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000456 req->handle = -1;
457 if ((file = create_file( req->name, len, req->access,
458 req->sharing, req->create, req->attrs )))
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000459 {
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000460 req->handle = alloc_handle( current->process, file, req->access, req->inherit );
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000461 release_object( file );
462 }
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000463}
464
465/* allocate a file handle for a Unix fd */
466DECL_HANDLER(alloc_file_handle)
467{
468 struct file *file;
469
470 req->handle = -1;
Alexandre Julliardea0d0282000-03-10 22:16:10 +0000471 if (current->pass_fd != -1)
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000472 {
Alexandre Julliardea0d0282000-03-10 22:16:10 +0000473 if ((file = create_file_for_fd( current->pass_fd, req->access,
474 FILE_SHARE_READ | FILE_SHARE_WRITE, 0 )))
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000475 {
476 req->handle = alloc_handle( current->process, file, req->access, 0 );
477 release_object( file );
478 }
Alexandre Julliardea0d0282000-03-10 22:16:10 +0000479 current->pass_fd = -1;
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000480 }
Alexandre Julliardea0d0282000-03-10 22:16:10 +0000481 else set_error( STATUS_INVALID_PARAMETER );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000482}
483
484/* get a Unix fd to read from a file */
485DECL_HANDLER(get_read_fd)
486{
487 struct object *obj;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000488
489 if ((obj = get_handle_obj( current->process, req->handle, GENERIC_READ, NULL )))
490 {
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000491 set_reply_fd( current, obj->ops->get_read_fd( obj ) );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000492 release_object( obj );
493 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000494}
495
496/* get a Unix fd to write to a file */
497DECL_HANDLER(get_write_fd)
498{
499 struct object *obj;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000500
501 if ((obj = get_handle_obj( current->process, req->handle, GENERIC_WRITE, NULL )))
502 {
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000503 set_reply_fd( current, obj->ops->get_write_fd( obj ) );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000504 release_object( obj );
505 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000506}
507
508/* set a file current position */
509DECL_HANDLER(set_file_pointer)
510{
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000511 int high = req->high;
512 int low = req->low;
513 set_file_pointer( req->handle, &low, &high, req->whence );
514 req->new_low = low;
515 req->new_high = high;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000516}
517
518/* truncate (or extend) a file */
519DECL_HANDLER(truncate_file)
520{
521 truncate_file( req->handle );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000522}
523
524/* flush a file buffers */
525DECL_HANDLER(flush_file)
526{
527 struct object *obj;
528
Marcus Meissner9d60e351999-12-04 04:00:16 +0000529 if ((obj = get_handle_obj( current->process, req->handle, 0, NULL )))
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000530 {
531 obj->ops->flush( obj );
532 release_object( obj );
533 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000534}
535
536/* set a file access and modification times */
537DECL_HANDLER(set_file_time)
538{
539 set_file_time( req->handle, req->access_time, req->write_time );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000540}
541
542/* get a file information */
543DECL_HANDLER(get_file_info)
544{
545 struct object *obj;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000546
547 if ((obj = get_handle_obj( current->process, req->handle, 0, NULL )))
548 {
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000549 obj->ops->get_file_info( obj, req );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000550 release_object( obj );
551 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000552}
553
554/* lock a region of a file */
555DECL_HANDLER(lock_file)
556{
557 struct file *file;
558
559 if ((file = get_file_obj( current->process, req->handle, 0 )))
560 {
561 file_lock( file, req->offset_high, req->offset_low,
562 req->count_high, req->count_low );
563 release_object( file );
564 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000565}
566
567/* unlock a region of a file */
568DECL_HANDLER(unlock_file)
569{
570 struct file *file;
571
572 if ((file = get_file_obj( current->process, req->handle, 0 )))
573 {
574 file_unlock( file, req->offset_high, req->offset_low,
575 req->count_high, req->count_low );
576 release_object( file );
577 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000578}