1998-12-27 16:28:54 +01:00
|
|
|
/*
|
|
|
|
* Server-side file management
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998 Alexandre Julliard
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1998-12-27 16:28:54 +01:00
|
|
|
*/
|
|
|
|
|
1999-10-25 00:13:47 +02:00
|
|
|
#include "config.h"
|
2001-05-14 22:09:37 +02:00
|
|
|
#include "wine/port.h"
|
1999-10-25 00:13:47 +02:00
|
|
|
|
1998-12-27 16:28:54 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include <fcntl.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
1998-12-27 16:28:54 +01:00
|
|
|
#include <stdio.h>
|
1999-02-28 13:27:56 +01:00
|
|
|
#include <string.h>
|
1998-12-27 16:28:54 +01:00
|
|
|
#include <stdlib.h>
|
1999-01-01 19:42:17 +01:00
|
|
|
#include <errno.h>
|
1999-07-10 15:16:29 +02:00
|
|
|
#ifdef HAVE_SYS_ERRNO_H
|
1998-12-27 16:28:54 +01:00
|
|
|
#include <sys/errno.h>
|
1999-07-10 15:16:29 +02:00
|
|
|
#endif
|
1998-12-27 16:28:54 +01:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
2003-02-11 23:27:13 +01:00
|
|
|
#ifdef HAVE_UTIME_H
|
1999-01-03 12:55:56 +01:00
|
|
|
#include <utime.h>
|
2003-02-11 23:27:13 +01:00
|
|
|
#endif
|
2005-03-04 13:38:36 +01:00
|
|
|
#ifdef HAVE_POLL_H
|
|
|
|
#include <poll.h>
|
|
|
|
#endif
|
1998-12-27 16:28:54 +01:00
|
|
|
|
2005-11-28 17:32:54 +01:00
|
|
|
#include "ntstatus.h"
|
|
|
|
#define WIN32_NO_STATUS
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
2004-03-12 02:56:49 +01:00
|
|
|
#include "winternl.h"
|
1999-05-15 12:48:19 +02:00
|
|
|
|
2003-01-30 01:26:44 +01:00
|
|
|
#include "file.h"
|
1999-05-15 12:48:19 +02:00
|
|
|
#include "handle.h"
|
|
|
|
#include "thread.h"
|
1999-06-22 19:26:53 +02:00
|
|
|
#include "request.h"
|
1998-12-27 16:28:54 +01:00
|
|
|
|
|
|
|
struct file
|
|
|
|
{
|
1999-05-16 18:59:38 +02:00
|
|
|
struct object obj; /* object header */
|
2003-02-19 01:33:32 +01:00
|
|
|
struct fd *fd; /* file descriptor for this file */
|
1999-05-16 18:59:38 +02:00
|
|
|
unsigned int access; /* file access (GENERIC_READ/WRITE) */
|
2004-03-12 02:56:49 +01:00
|
|
|
unsigned int options; /* file options (FILE_DELETE_ON_CLOSE, FILE_SYNCHRONOUS...) */
|
1998-12-27 16:28:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static void file_dump( struct object *obj, int verbose );
|
2003-02-19 01:33:32 +01:00
|
|
|
static struct fd *file_get_fd( struct object *obj );
|
1998-12-27 16:28:54 +01:00
|
|
|
static void file_destroy( struct object *obj );
|
2003-02-14 21:27:09 +01:00
|
|
|
|
|
|
|
static int file_get_poll_events( struct fd *fd );
|
2003-05-15 06:22:45 +02:00
|
|
|
static int file_flush( struct fd *fd, struct event **event );
|
2004-08-18 02:04:58 +02:00
|
|
|
static int file_get_info( struct fd *fd );
|
1998-12-27 16:28:54 +01:00
|
|
|
|
|
|
|
static const struct object_ops file_ops =
|
|
|
|
{
|
2000-01-01 01:56:27 +01:00
|
|
|
sizeof(struct file), /* size */
|
|
|
|
file_dump, /* dump */
|
2003-01-30 01:26:44 +01:00
|
|
|
default_fd_add_queue, /* add_queue */
|
|
|
|
default_fd_remove_queue, /* remove_queue */
|
|
|
|
default_fd_signaled, /* signaled */
|
2000-01-01 01:56:27 +01:00
|
|
|
no_satisfied, /* satisfied */
|
2005-04-24 19:35:52 +02:00
|
|
|
no_signal, /* signal */
|
2003-02-19 01:33:32 +01:00
|
|
|
file_get_fd, /* get_fd */
|
2005-11-22 15:55:42 +01:00
|
|
|
no_lookup_name, /* lookup_name */
|
2005-06-09 17:39:52 +02:00
|
|
|
no_close_handle, /* close_handle */
|
2003-01-30 01:26:44 +01:00
|
|
|
file_destroy /* destroy */
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct fd_ops file_fd_ops =
|
|
|
|
{
|
2000-01-01 01:56:27 +01:00
|
|
|
file_get_poll_events, /* get_poll_events */
|
2005-06-07 22:09:01 +02:00
|
|
|
default_poll_event, /* poll_event */
|
2000-01-01 01:56:27 +01:00
|
|
|
file_flush, /* flush */
|
|
|
|
file_get_info, /* get_file_info */
|
2005-06-07 22:09:01 +02:00
|
|
|
default_fd_queue_async, /* queue_async */
|
|
|
|
default_fd_cancel_async /* cancel_async */
|
1998-12-27 16:28:54 +01:00
|
|
|
};
|
|
|
|
|
2004-03-12 02:56:49 +01:00
|
|
|
static inline int is_overlapped( const struct file *file )
|
|
|
|
{
|
|
|
|
return !(file->options & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT));
|
|
|
|
}
|
|
|
|
|
2000-01-01 01:56:27 +01:00
|
|
|
/* create a file from a file descriptor */
|
|
|
|
/* if the function fails the fd is closed */
|
2004-03-12 02:56:49 +01:00
|
|
|
static struct file *create_file_for_fd( int fd, unsigned int access, unsigned int sharing )
|
1998-12-27 16:28:54 +01:00
|
|
|
{
|
|
|
|
struct file *file;
|
2003-01-30 01:26:44 +01:00
|
|
|
|
2003-02-19 01:33:32 +01:00
|
|
|
if ((file = alloc_object( &file_ops )))
|
1999-01-03 12:55:56 +01:00
|
|
|
{
|
2001-10-24 02:23:25 +02:00
|
|
|
file->access = access;
|
2004-03-12 02:56:49 +01:00
|
|
|
file->options = FILE_SYNCHRONOUS_IO_NONALERT;
|
2003-03-12 23:38:14 +01:00
|
|
|
if (!(file->fd = create_anonymous_fd( &file_fd_ops, fd, &file->obj )))
|
2003-02-19 01:33:32 +01:00
|
|
|
{
|
|
|
|
release_object( file );
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-06-22 19:26:53 +02:00
|
|
|
}
|
|
|
|
return file;
|
|
|
|
}
|
1999-01-03 12:55:56 +01:00
|
|
|
|
|
|
|
|
2004-03-18 05:08:48 +01:00
|
|
|
static struct object *create_file( const char *nameptr, size_t len, unsigned int access,
|
|
|
|
unsigned int sharing, int create, unsigned int options,
|
2004-04-07 01:41:01 +02:00
|
|
|
unsigned int attrs )
|
1999-06-22 19:26:53 +02:00
|
|
|
{
|
|
|
|
struct file *file;
|
2004-03-27 21:48:42 +01:00
|
|
|
int flags;
|
1999-06-22 19:26:53 +02:00
|
|
|
char *name;
|
2001-07-23 20:09:41 +02:00
|
|
|
mode_t mode;
|
1999-01-03 12:55:56 +01:00
|
|
|
|
1999-06-22 19:26:53 +02:00
|
|
|
if (!(name = mem_alloc( len + 1 ))) return NULL;
|
|
|
|
memcpy( name, nameptr, len );
|
|
|
|
name[len] = 0;
|
1999-01-03 12:55:56 +01:00
|
|
|
|
1999-06-22 19:26:53 +02:00
|
|
|
switch(create)
|
1998-12-27 16:28:54 +01:00
|
|
|
{
|
2004-03-12 02:56:49 +01:00
|
|
|
case FILE_CREATE: flags = O_CREAT | O_EXCL; break;
|
|
|
|
case FILE_OVERWRITE_IF: /* FIXME: the difference is whether we trash existing attr or not */
|
|
|
|
case FILE_SUPERSEDE: flags = O_CREAT | O_TRUNC; break;
|
|
|
|
case FILE_OPEN: flags = 0; break;
|
|
|
|
case FILE_OPEN_IF: flags = O_CREAT; break;
|
|
|
|
case FILE_OVERWRITE: flags = O_TRUNC; break;
|
2000-01-24 22:58:06 +01:00
|
|
|
default: set_error( STATUS_INVALID_PARAMETER ); goto error;
|
1998-12-27 16:28:54 +01:00
|
|
|
}
|
2005-01-14 20:54:38 +01:00
|
|
|
|
1999-06-22 19:26:53 +02:00
|
|
|
switch(access & (GENERIC_READ | GENERIC_WRITE))
|
1998-12-27 16:28:54 +01:00
|
|
|
{
|
1999-06-22 19:26:53 +02:00
|
|
|
case 0: break;
|
|
|
|
case GENERIC_READ: flags |= O_RDONLY; break;
|
|
|
|
case GENERIC_WRITE: flags |= O_WRONLY; break;
|
|
|
|
case GENERIC_READ|GENERIC_WRITE: flags |= O_RDWR; break;
|
1999-01-03 12:55:56 +01:00
|
|
|
}
|
2001-07-23 20:09:41 +02:00
|
|
|
mode = (attrs & FILE_ATTRIBUTE_READONLY) ? 0444 : 0666;
|
|
|
|
|
|
|
|
if (len >= 4 &&
|
|
|
|
(!strcasecmp( name + len - 4, ".exe" ) || !strcasecmp( name + len - 4, ".com" )))
|
|
|
|
mode |= 0111;
|
1999-06-22 19:26:53 +02:00
|
|
|
|
2003-03-12 23:38:14 +01:00
|
|
|
if (!(file = alloc_object( &file_ops ))) goto error;
|
|
|
|
|
|
|
|
file->access = access;
|
2004-03-12 02:56:49 +01:00
|
|
|
file->options = options;
|
1999-06-22 19:26:53 +02:00
|
|
|
|
2003-03-12 23:38:14 +01:00
|
|
|
/* FIXME: should set error to STATUS_OBJECT_NAME_COLLISION if file existed before */
|
|
|
|
if (!(file->fd = alloc_fd( &file_fd_ops, &file->obj )) ||
|
2004-03-27 21:48:42 +01:00
|
|
|
!(file->fd = open_fd( file->fd, name, flags | O_NONBLOCK | O_LARGEFILE,
|
2004-04-16 06:31:35 +02:00
|
|
|
&mode, access, sharing, options )))
|
2003-03-12 23:38:14 +01:00
|
|
|
{
|
2004-04-02 21:50:49 +02:00
|
|
|
free( name );
|
2003-03-12 23:38:14 +01:00
|
|
|
release_object( file );
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-04-02 21:50:49 +02:00
|
|
|
free( name );
|
|
|
|
|
2004-03-18 05:08:48 +01:00
|
|
|
/* check for serial port */
|
|
|
|
if (S_ISCHR(mode) && is_serial_fd( file->fd ))
|
|
|
|
{
|
|
|
|
struct object *obj = create_serial( file->fd, file->options );
|
|
|
|
release_object( file );
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
return &file->obj;
|
1999-06-22 19:26:53 +02:00
|
|
|
|
|
|
|
error:
|
|
|
|
free( name );
|
|
|
|
return NULL;
|
1998-12-27 16:28:54 +01:00
|
|
|
}
|
|
|
|
|
2001-04-14 00:38:39 +02:00
|
|
|
/* check if two file objects point to the same file */
|
|
|
|
int is_same_file( struct file *file1, struct file *file2 )
|
|
|
|
{
|
2004-03-27 21:48:42 +01:00
|
|
|
return is_same_file_fd( file1->fd, file2->fd );
|
2001-04-14 00:38:39 +02:00
|
|
|
}
|
|
|
|
|
2003-03-12 23:38:14 +01:00
|
|
|
/* create a temp file for anonymous mappings */
|
|
|
|
struct file *create_temp_file( int access )
|
1999-02-28 11:13:59 +01:00
|
|
|
{
|
2003-03-12 23:38:14 +01:00
|
|
|
char tmpfn[16];
|
1999-02-28 11:13:59 +01:00
|
|
|
int fd;
|
|
|
|
|
2003-03-12 23:38:14 +01:00
|
|
|
sprintf( tmpfn, "anonmap.XXXXXX" ); /* create it in the server directory */
|
2003-03-20 22:07:49 +01:00
|
|
|
fd = mkstemps( tmpfn, 0 );
|
1999-02-28 11:13:59 +01:00
|
|
|
if (fd == -1)
|
|
|
|
{
|
|
|
|
file_set_error();
|
2003-03-12 23:38:14 +01:00
|
|
|
return NULL;
|
1999-02-28 11:13:59 +01:00
|
|
|
}
|
2002-07-30 01:55:39 +02:00
|
|
|
unlink( tmpfn );
|
2004-03-12 02:56:49 +01:00
|
|
|
return create_file_for_fd( fd, access, 0 );
|
1999-02-28 11:13:59 +01:00
|
|
|
}
|
|
|
|
|
1998-12-27 16:28:54 +01:00
|
|
|
static void file_dump( struct object *obj, int verbose )
|
|
|
|
{
|
|
|
|
struct file *file = (struct file *)obj;
|
|
|
|
assert( obj->ops == &file_ops );
|
2004-04-02 21:50:49 +02:00
|
|
|
fprintf( stderr, "File fd=%p options=%08x\n", file->fd, file->options );
|
1998-12-27 16:28:54 +01:00
|
|
|
}
|
|
|
|
|
2003-02-14 21:27:09 +01:00
|
|
|
static int file_get_poll_events( struct fd *fd )
|
1998-12-27 16:28:54 +01:00
|
|
|
{
|
2003-02-14 21:27:09 +01:00
|
|
|
struct file *file = get_fd_user( fd );
|
1999-05-16 18:59:38 +02:00
|
|
|
int events = 0;
|
2003-02-14 21:27:09 +01:00
|
|
|
assert( file->obj.ops == &file_ops );
|
1999-12-13 01:16:44 +01:00
|
|
|
if (file->access & GENERIC_READ) events |= POLLIN;
|
|
|
|
if (file->access & GENERIC_WRITE) events |= POLLOUT;
|
2000-01-01 01:56:27 +01:00
|
|
|
return events;
|
1998-12-27 16:28:54 +01:00
|
|
|
}
|
|
|
|
|
2003-05-15 06:22:45 +02:00
|
|
|
static int file_flush( struct fd *fd, struct event **event )
|
1998-12-27 16:28:54 +01:00
|
|
|
{
|
2005-08-08 17:11:03 +02:00
|
|
|
int ret = 0, unix_fd = get_unix_fd( fd );
|
|
|
|
|
|
|
|
if (unix_fd != -1)
|
|
|
|
{
|
|
|
|
ret = (fsync( unix_fd ) != -1);
|
|
|
|
if (!ret) file_set_error();
|
|
|
|
}
|
1998-12-30 13:06:45 +01:00
|
|
|
return ret;
|
1998-12-27 16:28:54 +01:00
|
|
|
}
|
|
|
|
|
2004-08-18 02:04:58 +02:00
|
|
|
static int file_get_info( struct fd *fd )
|
1999-01-03 12:55:56 +01:00
|
|
|
{
|
2003-02-14 21:27:09 +01:00
|
|
|
struct file *file = get_fd_user( fd );
|
1999-01-03 12:55:56 +01:00
|
|
|
|
2004-08-18 02:04:58 +02:00
|
|
|
if (is_overlapped( file )) return FD_FLAG_OVERLAPPED;
|
|
|
|
else return 0;
|
1999-01-03 12:55:56 +01:00
|
|
|
}
|
|
|
|
|
2003-02-19 01:33:32 +01:00
|
|
|
static struct fd *file_get_fd( struct object *obj )
|
|
|
|
{
|
|
|
|
struct file *file = (struct file *)obj;
|
|
|
|
assert( obj->ops == &file_ops );
|
|
|
|
return (struct fd *)grab_object( file->fd );
|
2002-01-07 22:02:15 +01:00
|
|
|
}
|
|
|
|
|
1998-12-30 13:06:45 +01:00
|
|
|
static void file_destroy( struct object *obj )
|
1998-12-27 16:28:54 +01:00
|
|
|
{
|
1998-12-30 13:06:45 +01:00
|
|
|
struct file *file = (struct file *)obj;
|
|
|
|
assert( obj->ops == &file_ops );
|
1999-01-03 12:55:56 +01:00
|
|
|
|
2003-02-19 01:33:32 +01:00
|
|
|
if (file->fd) release_object( file->fd );
|
1998-12-30 13:06:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* set the last error depending on errno */
|
|
|
|
void file_set_error(void)
|
|
|
|
{
|
|
|
|
switch (errno)
|
|
|
|
{
|
2000-01-24 22:58:06 +01:00
|
|
|
case EAGAIN: set_error( STATUS_SHARING_VIOLATION ); break;
|
|
|
|
case EBADF: set_error( STATUS_INVALID_HANDLE ); break;
|
|
|
|
case ENOSPC: set_error( STATUS_DISK_FULL ); break;
|
1998-12-30 13:06:45 +01:00
|
|
|
case EACCES:
|
2001-07-14 02:50:30 +02:00
|
|
|
case ESRCH:
|
2000-01-24 22:58:06 +01:00
|
|
|
case EPERM: set_error( STATUS_ACCESS_DENIED ); break;
|
|
|
|
case EROFS: set_error( STATUS_MEDIA_WRITE_PROTECTED ); break;
|
|
|
|
case EBUSY: set_error( STATUS_FILE_LOCK_CONFLICT ); break;
|
|
|
|
case ENOENT: set_error( STATUS_NO_SUCH_FILE ); break;
|
2004-04-17 01:32:40 +02:00
|
|
|
case EISDIR: set_error( STATUS_FILE_IS_A_DIRECTORY ); break;
|
1998-12-30 13:06:45 +01:00
|
|
|
case ENFILE:
|
2000-01-24 22:58:06 +01:00
|
|
|
case EMFILE: set_error( STATUS_NO_MORE_FILES ); break;
|
|
|
|
case EEXIST: set_error( STATUS_OBJECT_NAME_COLLISION ); break;
|
|
|
|
case EINVAL: set_error( STATUS_INVALID_PARAMETER ); break;
|
2003-12-10 02:12:18 +01:00
|
|
|
case ESPIPE: set_win32_error( ERROR_SEEK ); break;
|
2000-01-24 22:58:06 +01:00
|
|
|
case ENOTEMPTY: set_error( STATUS_DIRECTORY_NOT_EMPTY ); break;
|
|
|
|
case EIO: set_error( STATUS_ACCESS_VIOLATION ); break;
|
2004-03-12 02:56:49 +01:00
|
|
|
case ENOTDIR: set_error( STATUS_NOT_A_DIRECTORY ); break;
|
2004-05-01 04:50:06 +02:00
|
|
|
case EFBIG: set_error( STATUS_SECTION_TOO_BIG ); break;
|
2004-07-06 21:42:09 +02:00
|
|
|
case ENODEV: set_error( STATUS_NO_SUCH_DEVICE ); break;
|
|
|
|
case ENXIO: set_error( STATUS_NO_SUCH_DEVICE ); break;
|
2004-01-02 21:11:35 +01:00
|
|
|
#ifdef EOVERFLOW
|
2003-03-18 06:04:33 +01:00
|
|
|
case EOVERFLOW: set_error( STATUS_INVALID_PARAMETER ); break;
|
2004-01-02 21:11:35 +01:00
|
|
|
#endif
|
2004-04-13 01:15:11 +02:00
|
|
|
default: perror("file_set_error"); set_error( STATUS_UNSUCCESSFUL ); break;
|
1998-12-30 13:06:45 +01:00
|
|
|
}
|
1998-12-27 16:28:54 +01:00
|
|
|
}
|
|
|
|
|
2002-05-30 22:12:58 +02:00
|
|
|
struct file *get_file_obj( struct process *process, obj_handle_t handle, unsigned int access )
|
1998-12-27 16:28:54 +01:00
|
|
|
{
|
1999-11-29 03:17:08 +01:00
|
|
|
return (struct file *)get_handle_obj( process, handle, access, &file_ops );
|
1999-01-01 17:59:27 +01:00
|
|
|
}
|
1998-12-27 16:28:54 +01:00
|
|
|
|
2003-02-14 21:27:09 +01:00
|
|
|
int get_file_unix_fd( struct file *file )
|
|
|
|
{
|
2003-02-19 01:33:32 +01:00
|
|
|
return get_unix_fd( file->fd );
|
2003-02-14 21:27:09 +01:00
|
|
|
}
|
|
|
|
|
2002-01-29 03:51:12 +01:00
|
|
|
/* extend a file beyond the current end of file */
|
2005-04-19 13:59:13 +02:00
|
|
|
static int extend_file( struct file *file, file_pos_t new_size )
|
1998-12-30 13:06:45 +01:00
|
|
|
{
|
2002-01-29 03:51:12 +01:00
|
|
|
static const char zero;
|
2003-02-14 21:27:09 +01:00
|
|
|
int unix_fd = get_file_unix_fd( file );
|
2005-04-19 13:59:13 +02:00
|
|
|
off_t size = new_size;
|
1998-12-30 13:06:45 +01:00
|
|
|
|
2005-08-08 17:11:03 +02:00
|
|
|
if (unix_fd == -1) return 0;
|
|
|
|
|
2005-04-19 13:59:13 +02:00
|
|
|
if (sizeof(new_size) > sizeof(size) && size != new_size)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_PARAMETER );
|
|
|
|
return 0;
|
|
|
|
}
|
2002-01-29 03:51:12 +01:00
|
|
|
/* extend the file one byte beyond the requested size and then truncate it */
|
|
|
|
/* this should work around ftruncate implementations that can't extend files */
|
2004-05-01 04:50:06 +02:00
|
|
|
if (pwrite( unix_fd, &zero, 1, size ) != -1)
|
1998-12-30 13:06:45 +01:00
|
|
|
{
|
2003-01-30 01:26:44 +01:00
|
|
|
ftruncate( unix_fd, size );
|
2002-01-29 03:51:12 +01:00
|
|
|
return 1;
|
1998-12-30 13:06:45 +01:00
|
|
|
}
|
2002-01-29 03:51:12 +01:00
|
|
|
file_set_error();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-02-28 11:13:59 +01:00
|
|
|
/* try to grow the file to the specified size */
|
2005-04-19 13:59:13 +02:00
|
|
|
int grow_file( struct file *file, file_pos_t size )
|
1999-02-28 11:13:59 +01:00
|
|
|
{
|
2001-05-29 22:55:21 +02:00
|
|
|
struct stat st;
|
2003-02-14 21:27:09 +01:00
|
|
|
int unix_fd = get_file_unix_fd( file );
|
1999-02-28 11:13:59 +01:00
|
|
|
|
2005-08-08 17:11:03 +02:00
|
|
|
if (unix_fd == -1) return 0;
|
|
|
|
|
2003-01-30 01:26:44 +01:00
|
|
|
if (fstat( unix_fd, &st ) == -1)
|
1999-02-28 11:13:59 +01:00
|
|
|
{
|
|
|
|
file_set_error();
|
|
|
|
return 0;
|
|
|
|
}
|
2001-05-14 22:09:37 +02:00
|
|
|
if (st.st_size >= size) return 1; /* already large enough */
|
2004-05-01 04:50:06 +02:00
|
|
|
return extend_file( file, size );
|
1999-02-28 11:13:59 +01:00
|
|
|
}
|
|
|
|
|
1999-05-15 12:48:19 +02:00
|
|
|
/* create a file */
|
|
|
|
DECL_HANDLER(create_file)
|
|
|
|
{
|
2004-03-18 05:08:48 +01:00
|
|
|
struct object *file;
|
1999-05-15 12:48:19 +02:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
reply->handle = 0;
|
|
|
|
if ((file = create_file( get_req_data(), get_req_data_size(), req->access,
|
2004-04-07 01:41:01 +02:00
|
|
|
req->sharing, req->create, req->options, req->attrs )))
|
1999-05-15 12:48:19 +02:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
reply->handle = alloc_handle( current->process, file, req->access, req->inherit );
|
1999-06-26 10:43:26 +02:00
|
|
|
release_object( file );
|
1999-06-22 19:26:53 +02:00
|
|
|
}
|
1999-06-26 10:43:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* allocate a file handle for a Unix fd */
|
|
|
|
DECL_HANDLER(alloc_file_handle)
|
|
|
|
{
|
|
|
|
struct file *file;
|
2001-02-28 22:45:23 +01:00
|
|
|
int fd;
|
1999-06-26 10:43:26 +02:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
reply->handle = 0;
|
2001-02-28 22:45:23 +01:00
|
|
|
if ((fd = thread_get_inflight_fd( current, req->fd )) == -1)
|
1999-06-22 19:26:53 +02:00
|
|
|
{
|
2001-02-28 22:45:23 +01:00
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return;
|
|
|
|
}
|
2004-03-12 02:56:49 +01:00
|
|
|
if ((file = create_file_for_fd( fd, req->access, FILE_SHARE_READ | FILE_SHARE_WRITE )))
|
2001-02-28 22:45:23 +01:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
reply->handle = alloc_handle( current->process, file, req->access, req->inherit );
|
2001-02-28 22:45:23 +01:00
|
|
|
release_object( file );
|
1999-05-15 12:48:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* lock a region of a file */
|
|
|
|
DECL_HANDLER(lock_file)
|
|
|
|
{
|
|
|
|
struct file *file;
|
2003-03-18 06:04:33 +01:00
|
|
|
file_pos_t offset = ((file_pos_t)req->offset_high << 32) | req->offset_low;
|
|
|
|
file_pos_t count = ((file_pos_t)req->count_high << 32) | req->count_low;
|
1999-05-15 12:48:19 +02:00
|
|
|
|
|
|
|
if ((file = get_file_obj( current->process, req->handle, 0 )))
|
|
|
|
{
|
2003-03-18 06:04:33 +01:00
|
|
|
reply->handle = lock_fd( file->fd, offset, count, req->shared, req->wait );
|
2004-03-12 02:56:49 +01:00
|
|
|
reply->overlapped = is_overlapped( file );
|
1999-05-15 12:48:19 +02:00
|
|
|
release_object( file );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* unlock a region of a file */
|
|
|
|
DECL_HANDLER(unlock_file)
|
|
|
|
{
|
|
|
|
struct file *file;
|
2003-03-18 06:04:33 +01:00
|
|
|
file_pos_t offset = ((file_pos_t)req->offset_high << 32) | req->offset_low;
|
|
|
|
file_pos_t count = ((file_pos_t)req->count_high << 32) | req->count_low;
|
1999-05-15 12:48:19 +02:00
|
|
|
|
|
|
|
if ((file = get_file_obj( current->process, req->handle, 0 )))
|
|
|
|
{
|
2003-03-18 06:04:33 +01:00
|
|
|
unlock_fd( file->fd, offset, count );
|
1999-05-15 12:48:19 +02:00
|
|
|
release_object( file );
|
|
|
|
}
|
|
|
|
}
|