2002-03-10 00:29:33 +01:00
|
|
|
/*
|
|
|
|
* Copyright 1999, 2000 Juergen Schmied
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2002-06-14 02:36:20 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
1999-03-09 18:47:51 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2002-06-14 02:36:20 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
2003-06-26 04:08:17 +02:00
|
|
|
#include <assert.h>
|
2002-08-17 02:43:16 +02:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2002-06-14 02:36:20 +02:00
|
|
|
#ifdef HAVE_SYS_ERRNO_H
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#endif
|
2003-01-07 21:36:20 +01:00
|
|
|
|
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2002-08-27 03:13:58 +02:00
|
|
|
#include "wine/unicode.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2002-06-14 02:36:20 +02:00
|
|
|
#include "wine/server.h"
|
2003-06-26 04:08:17 +02:00
|
|
|
#include "async.h"
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
#include "ntdll_misc.h"
|
2002-06-14 02:36:20 +02:00
|
|
|
#include "file.h" /* FIXME */
|
2003-06-26 04:08:17 +02:00
|
|
|
#include "../files/smb.h"
|
1999-03-09 18:47:51 +01:00
|
|
|
|
2002-09-13 00:07:02 +02:00
|
|
|
#include "winternl.h"
|
2002-05-09 21:40:30 +02:00
|
|
|
#include "winioctl.h"
|
1999-03-09 18:47:51 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
|
1999-04-19 16:56:29 +02:00
|
|
|
|
1999-03-09 18:47:51 +01:00
|
|
|
/**************************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* NtOpenFile [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwOpenFile [NTDLL.@]
|
2003-07-19 00:55:28 +02:00
|
|
|
*
|
|
|
|
* Open a file.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* FileHandle [O] Variable that receives the file handle on return
|
|
|
|
* DesiredAccess [I] Access desired by the caller to the file
|
|
|
|
* ObjectAttributes [I] Structue describing the file to be opened
|
|
|
|
* IoStatusBlock [O] Receives details about the result of the operation
|
|
|
|
* ShareAccess [I] Type of shared access the caller requires
|
|
|
|
* OpenOptions [I] Options for the file open
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: 0. FileHandle and IoStatusBlock are updated.
|
|
|
|
* Failure: An NTSTATUS error code describing the error.
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtOpenFile(
|
|
|
|
OUT PHANDLE FileHandle,
|
|
|
|
ACCESS_MASK DesiredAccess,
|
|
|
|
POBJECT_ATTRIBUTES ObjectAttributes,
|
|
|
|
OUT PIO_STATUS_BLOCK IoStatusBlock,
|
|
|
|
ULONG ShareAccess,
|
|
|
|
ULONG OpenOptions)
|
|
|
|
{
|
2002-08-27 03:13:58 +02:00
|
|
|
LPWSTR filename;
|
|
|
|
static const WCHAR szDosDevices[] = {'\\','D','o','s','D','e','v','i','c','e','s','\\',0};
|
2002-06-14 02:36:20 +02:00
|
|
|
DOS_FULL_NAME full_name;
|
|
|
|
NTSTATUS r;
|
|
|
|
|
|
|
|
FIXME("(%p,0x%08lx,%p,%p,0x%08lx,0x%08lx) partial stub\n",
|
|
|
|
FileHandle, DesiredAccess, ObjectAttributes,
|
|
|
|
IoStatusBlock, ShareAccess, OpenOptions);
|
|
|
|
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
dump_ObjectAttributes (ObjectAttributes);
|
2002-06-14 02:36:20 +02:00
|
|
|
|
|
|
|
if(ObjectAttributes->RootDirectory)
|
|
|
|
{
|
2002-11-21 04:45:01 +01:00
|
|
|
FIXME("Object root directory unknown %p\n",
|
2002-06-14 02:36:20 +02:00
|
|
|
ObjectAttributes->RootDirectory);
|
|
|
|
return STATUS_OBJECT_NAME_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
2002-08-27 03:13:58 +02:00
|
|
|
filename = ObjectAttributes->ObjectName->Buffer;
|
2002-06-14 02:36:20 +02:00
|
|
|
|
|
|
|
/* FIXME: DOSFS stuff should call here, not vice-versa */
|
2002-08-27 03:13:58 +02:00
|
|
|
if(strncmpW(filename, szDosDevices, strlenW(szDosDevices)))
|
2002-06-14 02:36:20 +02:00
|
|
|
return STATUS_OBJECT_NAME_NOT_FOUND;
|
|
|
|
|
|
|
|
/* FIXME: this calls SetLastError() -> bad */
|
2002-08-27 03:13:58 +02:00
|
|
|
if(!DOSFS_GetFullName(&filename[strlenW(szDosDevices)], TRUE,
|
2002-06-14 02:36:20 +02:00
|
|
|
&full_name))
|
|
|
|
return STATUS_OBJECT_NAME_NOT_FOUND;
|
|
|
|
|
|
|
|
/* FIXME: modify server protocol so
|
|
|
|
create file takes an OBJECT_ATTRIBUTES structure */
|
|
|
|
SERVER_START_REQ( create_file )
|
|
|
|
{
|
|
|
|
req->access = DesiredAccess;
|
|
|
|
req->inherit = 0;
|
|
|
|
req->sharing = ShareAccess;
|
|
|
|
req->create = OPEN_EXISTING;
|
|
|
|
req->attrs = 0;
|
2002-08-27 03:13:58 +02:00
|
|
|
req->drive_type = GetDriveTypeW( full_name.short_name );
|
2002-06-14 02:36:20 +02:00
|
|
|
wine_server_add_data( req, full_name.long_name, strlen(full_name.long_name) );
|
|
|
|
SetLastError(0);
|
|
|
|
r = wine_server_call( req );
|
|
|
|
*FileHandle = reply->handle;
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
|
|
|
|
return r;
|
1999-03-09 18:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* NtCreateFile [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwCreateFile [NTDLL.@]
|
2003-07-19 00:55:28 +02:00
|
|
|
*
|
|
|
|
* Either create a new file or directory, or open an existing file, device,
|
|
|
|
* directory or volume.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* FileHandle [O] Points to a variable which receives the file handle on return
|
|
|
|
* DesiredAccess [I] Desired access to the file
|
|
|
|
* ObjectAttributes [I] Structure describing the file
|
|
|
|
* IoStatusBlock [O] Receives information about the operation on return
|
|
|
|
* AllocationSize [I] Initial size of the file in bytes
|
|
|
|
* FileAttributes [I] Attributes to create the file with
|
|
|
|
* ShareAccess [I] Type of shared access the caller would like to the file
|
|
|
|
* CreateDisposition [I] Specifies what to do, depending on whether the file already exists
|
|
|
|
* CreateOptions [I] Options for creating a new file
|
|
|
|
* EaBuffer [I] Undocumented
|
|
|
|
* EaLength [I] Undocumented
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: 0. FileHandle and IoStatusBlock are updated.
|
|
|
|
* Failure: An NTSTATUS error code describing the error.
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtCreateFile(
|
|
|
|
OUT PHANDLE FileHandle,
|
|
|
|
ACCESS_MASK DesiredAccess,
|
|
|
|
POBJECT_ATTRIBUTES ObjectAttributes,
|
|
|
|
OUT PIO_STATUS_BLOCK IoStatusBlock,
|
|
|
|
PLARGE_INTEGER AllocateSize,
|
|
|
|
ULONG FileAttributes,
|
|
|
|
ULONG ShareAccess,
|
|
|
|
ULONG CreateDisposition,
|
|
|
|
ULONG CreateOptions,
|
|
|
|
PVOID EaBuffer,
|
2002-06-01 01:06:46 +02:00
|
|
|
ULONG EaLength)
|
1999-03-09 18:47:51 +01:00
|
|
|
{
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
FIXME("(%p,0x%08lx,%p,%p,%p,0x%08lx,0x%08lx,0x%08lx,0x%08lx,%p,0x%08lx) stub\n",
|
1999-03-09 18:47:51 +01:00
|
|
|
FileHandle,DesiredAccess,ObjectAttributes,
|
|
|
|
IoStatusBlock,AllocateSize,FileAttributes,
|
|
|
|
ShareAccess,CreateDisposition,CreateOptions,EaBuffer,EaLength);
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
dump_ObjectAttributes (ObjectAttributes);
|
1999-03-09 18:47:51 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-06-26 04:08:17 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* Asynchronous file I/O *
|
|
|
|
*/
|
|
|
|
static DWORD fileio_get_async_count(const async_private *ovp);
|
|
|
|
static void CALLBACK fileio_call_completion_func(ULONG_PTR data);
|
|
|
|
static void fileio_async_cleanup(async_private *ovp);
|
|
|
|
|
|
|
|
static async_ops fileio_async_ops =
|
|
|
|
{
|
|
|
|
fileio_get_async_count, /* get_count */
|
|
|
|
fileio_call_completion_func, /* call_completion */
|
|
|
|
fileio_async_cleanup /* cleanup */
|
|
|
|
};
|
|
|
|
|
|
|
|
static async_ops fileio_nocomp_async_ops =
|
|
|
|
{
|
|
|
|
fileio_get_async_count, /* get_count */
|
|
|
|
NULL, /* call_completion */
|
|
|
|
fileio_async_cleanup /* cleanup */
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct async_fileio
|
|
|
|
{
|
|
|
|
struct async_private async;
|
|
|
|
PIO_APC_ROUTINE apc;
|
|
|
|
void* apc_user;
|
|
|
|
char *buffer;
|
|
|
|
unsigned int count;
|
|
|
|
unsigned long offset;
|
|
|
|
enum fd_type fd_type;
|
|
|
|
} async_fileio;
|
|
|
|
|
|
|
|
static DWORD fileio_get_async_count(const struct async_private *ovp)
|
|
|
|
{
|
|
|
|
async_fileio *fileio = (async_fileio*) ovp;
|
|
|
|
|
|
|
|
if (fileio->count < fileio->async.iosb->Information)
|
|
|
|
return 0;
|
|
|
|
return fileio->count - fileio->async.iosb->Information;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void CALLBACK fileio_call_completion_func(ULONG_PTR data)
|
|
|
|
{
|
|
|
|
async_fileio *ovp = (async_fileio*) data;
|
|
|
|
TRACE("data: %p\n", ovp);
|
|
|
|
|
|
|
|
ovp->apc( ovp->apc_user, ovp->async.iosb, ovp->async.iosb->Information );
|
|
|
|
|
|
|
|
fileio_async_cleanup( &ovp->async );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fileio_async_cleanup( struct async_private *ovp )
|
|
|
|
{
|
|
|
|
RtlFreeHeap( ntdll_get_process_heap(), 0, ovp );
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FILE_GetUnixHandleType
|
|
|
|
*
|
|
|
|
* Retrieve the Unix handle corresponding to a file handle.
|
|
|
|
* Returns -1 on failure.
|
|
|
|
*/
|
|
|
|
static int FILE_GetUnixHandleType( HANDLE handle, DWORD access, enum fd_type *type, int *flags_ptr, int *fd )
|
|
|
|
{
|
|
|
|
int ret, flags;
|
|
|
|
|
|
|
|
*fd = -1;
|
|
|
|
ret = wine_server_handle_to_fd( handle, access, fd, type, &flags );
|
|
|
|
if (flags_ptr) *flags_ptr = flags;
|
|
|
|
if (!ret && (((access & GENERIC_READ) && (flags & FD_FLAG_RECV_SHUTDOWN)) ||
|
|
|
|
((access & GENERIC_WRITE) && (flags & FD_FLAG_SEND_SHUTDOWN))))
|
|
|
|
{
|
|
|
|
close(*fd);
|
|
|
|
ret = STATUS_PIPE_DISCONNECTED;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FILE_GetNtStatus(void)
|
|
|
|
*
|
|
|
|
* Retrieve the Nt Status code from errno.
|
|
|
|
* Try to be consistent with FILE_SetDosError().
|
|
|
|
*/
|
|
|
|
static DWORD FILE_GetNtStatus(void)
|
|
|
|
{
|
|
|
|
int err = errno;
|
|
|
|
DWORD nt;
|
|
|
|
|
|
|
|
TRACE( "errno = %d\n", errno );
|
|
|
|
switch (err)
|
|
|
|
{
|
|
|
|
case EAGAIN: nt = STATUS_SHARING_VIOLATION; break;
|
|
|
|
case EBADF: nt = STATUS_INVALID_HANDLE; break;
|
|
|
|
case ENOSPC: nt = STATUS_DISK_FULL; break;
|
|
|
|
case EPERM:
|
|
|
|
case EROFS:
|
|
|
|
case EACCES: nt = STATUS_ACCESS_DENIED; break;
|
|
|
|
case ENOENT: nt = STATUS_SHARING_VIOLATION; break;
|
|
|
|
case EISDIR: nt = STATUS_FILE_IS_A_DIRECTORY; break;
|
|
|
|
case EMFILE:
|
|
|
|
case ENFILE: nt = STATUS_NO_MORE_FILES; break;
|
|
|
|
case EINVAL:
|
|
|
|
case ENOTEMPTY: nt = STATUS_DIRECTORY_NOT_EMPTY; break;
|
|
|
|
case EPIPE: nt = STATUS_PIPE_BROKEN; break;
|
|
|
|
case ENOEXEC: /* ?? */
|
|
|
|
case ESPIPE: /* ?? */
|
|
|
|
case EEXIST: /* ?? */
|
|
|
|
default:
|
|
|
|
FIXME( "Converting errno %d to STATUS_UNSUCCESSFUL\n", err );
|
|
|
|
nt = STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
return nt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FILE_AsyncReadService (INTERNAL)
|
|
|
|
*
|
|
|
|
* This function is called while the client is waiting on the
|
|
|
|
* server, so we can't make any server calls here.
|
|
|
|
*/
|
|
|
|
static void FILE_AsyncReadService(async_private *ovp)
|
2002-06-14 02:36:20 +02:00
|
|
|
{
|
2003-06-26 04:08:17 +02:00
|
|
|
async_fileio *fileio = (async_fileio*) ovp;
|
|
|
|
IO_STATUS_BLOCK* io_status = fileio->async.iosb;
|
|
|
|
int result;
|
|
|
|
int already = io_status->Information;
|
|
|
|
|
|
|
|
TRACE("%p %p\n", io_status, fileio->buffer );
|
|
|
|
|
|
|
|
/* check to see if the data is ready (non-blocking) */
|
|
|
|
|
|
|
|
if ( fileio->fd_type == FD_TYPE_SOCKET )
|
|
|
|
result = read(ovp->fd, &fileio->buffer[already], fileio->count - already);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = pread(ovp->fd, &fileio->buffer[already], fileio->count - already,
|
|
|
|
fileio->offset + already);
|
|
|
|
if ((result < 0) && (errno == ESPIPE))
|
|
|
|
result = read(ovp->fd, &fileio->buffer[already], fileio->count - already);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((result < 0) && ((errno == EAGAIN) || (errno == EINTR)))
|
|
|
|
{
|
|
|
|
TRACE("Deferred read %d\n",errno);
|
|
|
|
io_status->u.Status = STATUS_PENDING;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check to see if the transfer is complete */
|
|
|
|
if (result < 0)
|
2002-06-14 02:36:20 +02:00
|
|
|
{
|
2003-06-26 04:08:17 +02:00
|
|
|
io_status->u.Status = FILE_GetNtStatus();
|
|
|
|
return;
|
2002-06-14 02:36:20 +02:00
|
|
|
}
|
2003-06-26 04:08:17 +02:00
|
|
|
else if (result == 0)
|
|
|
|
{
|
|
|
|
io_status->u.Status = io_status->Information ? STATUS_SUCCESS : STATUS_END_OF_FILE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
io_status->Information += result;
|
|
|
|
if (io_status->Information >= fileio->count || fileio->fd_type == FD_TYPE_SOCKET )
|
|
|
|
io_status->u.Status = STATUS_SUCCESS;
|
|
|
|
else
|
|
|
|
io_status->u.Status = STATUS_PENDING;
|
|
|
|
|
|
|
|
TRACE("read %d more bytes %ld/%d so far\n",
|
|
|
|
result, io_status->Information, fileio->count);
|
2002-06-14 02:36:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-03-09 18:47:51 +01:00
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtReadFile [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwReadFile [NTDLL.@]
|
1999-03-09 18:47:51 +01:00
|
|
|
*
|
2003-07-19 00:55:28 +02:00
|
|
|
* Read from an open file handle.
|
2002-06-14 02:36:20 +02:00
|
|
|
*
|
2003-07-19 00:55:28 +02:00
|
|
|
* PARAMS
|
|
|
|
* FileHandle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
|
|
|
|
* Event [I] Event to signal upon completion (or NULL)
|
|
|
|
* ApcRoutine [I] Callback to call upon completion (or NULL)
|
|
|
|
* ApcContext [I] Context for ApcRoutine (or NULL)
|
|
|
|
* IoStatusBlock [O] Receives information about the operation on return
|
|
|
|
* Buffer [O] Destination for the data read
|
|
|
|
* Length [I] Size of Buffer
|
|
|
|
* ByteOffset [O] Destination for the new file pointer position (or NULL)
|
|
|
|
* Key [O] Function unknown (may be NULL)
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: 0. IoStatusBlock is updated, and the Information member contains
|
|
|
|
* The number of bytes read.
|
|
|
|
* Failure: An NTSTATUS error code describing the error.
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
2003-07-19 00:55:28 +02:00
|
|
|
NTSTATUS WINAPI NtReadFile(HANDLE hFile, HANDLE hEvent,
|
|
|
|
PIO_APC_ROUTINE apc, void* apc_user,
|
2003-06-26 04:08:17 +02:00
|
|
|
PIO_STATUS_BLOCK io_status, void* buffer, ULONG length,
|
|
|
|
PLARGE_INTEGER offset, PULONG key)
|
2002-06-14 02:36:20 +02:00
|
|
|
{
|
2003-06-26 04:08:17 +02:00
|
|
|
int unix_handle, flags;
|
|
|
|
enum fd_type type;
|
|
|
|
|
|
|
|
TRACE("(%p,%p,%p,%p,%p,%p,0x%08lx,%p,%p),partial stub!\n",
|
|
|
|
hFile,hEvent,apc,apc_user,io_status,buffer,length,offset,key);
|
|
|
|
|
|
|
|
io_status->Information = 0;
|
|
|
|
io_status->u.Status = FILE_GetUnixHandleType( hFile, GENERIC_READ, &type, &flags, &unix_handle );
|
|
|
|
if (io_status->u.Status) return io_status->u.Status;
|
|
|
|
|
|
|
|
if (flags & FD_FLAG_TIMEOUT)
|
|
|
|
{
|
|
|
|
if (hEvent)
|
|
|
|
{
|
|
|
|
/* this shouldn't happen, but check it */
|
|
|
|
FIXME("NIY-hEvent\n");
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
io_status->u.Status = NtCreateEvent(&hEvent, SYNCHRONIZE, NULL, 0, 0);
|
|
|
|
if (io_status->u.Status) return io_status->u.Status;
|
|
|
|
}
|
2003-07-19 00:55:28 +02:00
|
|
|
|
2003-06-26 04:08:17 +02:00
|
|
|
if (flags & (FD_FLAG_OVERLAPPED|FD_FLAG_TIMEOUT))
|
|
|
|
{
|
|
|
|
async_fileio* ovp;
|
2003-07-11 23:44:17 +02:00
|
|
|
NTSTATUS ret;
|
2003-06-26 04:08:17 +02:00
|
|
|
|
|
|
|
if (unix_handle < 0) return STATUS_INVALID_HANDLE;
|
|
|
|
|
|
|
|
ovp = RtlAllocateHeap(ntdll_get_process_heap(), 0, sizeof(async_fileio));
|
|
|
|
if (!ovp) return STATUS_NO_MEMORY;
|
|
|
|
|
|
|
|
ovp->async.ops = (apc ? &fileio_async_ops : &fileio_nocomp_async_ops );
|
|
|
|
ovp->async.handle = hFile;
|
|
|
|
ovp->async.fd = unix_handle;
|
|
|
|
ovp->async.type = ASYNC_TYPE_READ;
|
|
|
|
ovp->async.func = FILE_AsyncReadService;
|
|
|
|
ovp->async.event = hEvent;
|
|
|
|
ovp->async.iosb = io_status;
|
|
|
|
ovp->count = length;
|
|
|
|
ovp->offset = offset->s.LowPart;
|
|
|
|
if (offset->s.HighPart) FIXME("NIY-high part\n");
|
|
|
|
ovp->apc = apc;
|
|
|
|
ovp->apc_user = apc_user;
|
|
|
|
ovp->buffer = buffer;
|
|
|
|
ovp->fd_type = type;
|
|
|
|
|
|
|
|
io_status->Information = 0;
|
2003-07-11 23:44:17 +02:00
|
|
|
ret = register_new_async(&ovp->async);
|
|
|
|
if (ret != STATUS_SUCCESS)
|
|
|
|
return ret;
|
2003-08-18 21:45:53 +02:00
|
|
|
if (flags & FD_FLAG_TIMEOUT)
|
|
|
|
{
|
|
|
|
NtWaitForSingleObject(hEvent, TRUE, NULL);
|
|
|
|
NtClose(hEvent);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LARGE_INTEGER timeout;
|
|
|
|
|
|
|
|
/* let some APC be run, this will read some already pending data */
|
|
|
|
timeout.s.LowPart = timeout.s.HighPart = 0;
|
|
|
|
NtDelayExecution( TRUE, &timeout );
|
|
|
|
}
|
2003-06-26 04:08:17 +02:00
|
|
|
return io_status->u.Status;
|
|
|
|
}
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case FD_TYPE_SMB:
|
|
|
|
FIXME("NIY-SMB\n");
|
|
|
|
close(unix_handle);
|
|
|
|
return SMB_ReadFile(hFile, buffer, length, io_status);
|
|
|
|
|
|
|
|
case FD_TYPE_DEFAULT:
|
|
|
|
/* normal unix files */
|
|
|
|
if (unix_handle == -1) return STATUS_INVALID_HANDLE;
|
|
|
|
break;
|
2002-06-14 02:36:20 +02:00
|
|
|
|
2003-06-26 04:08:17 +02:00
|
|
|
default:
|
|
|
|
FIXME("Unsupported type of fd %d\n", type);
|
|
|
|
if (unix_handle == -1) close(unix_handle);
|
|
|
|
return STATUS_INVALID_HANDLE;
|
|
|
|
}
|
2002-06-14 02:36:20 +02:00
|
|
|
|
2003-06-26 04:08:17 +02:00
|
|
|
if (offset)
|
|
|
|
{
|
|
|
|
FILE_POSITION_INFORMATION fpi;
|
2002-06-14 02:36:20 +02:00
|
|
|
|
2003-06-26 04:08:17 +02:00
|
|
|
fpi.CurrentByteOffset = *offset;
|
|
|
|
io_status->u.Status = NtSetInformationFile(hFile, io_status, &fpi, sizeof(fpi),
|
|
|
|
FilePositionInformation);
|
|
|
|
if (io_status->u.Status)
|
|
|
|
{
|
|
|
|
close(unix_handle);
|
|
|
|
return io_status->u.Status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* code for synchronous reads */
|
|
|
|
while ((io_status->Information = read( unix_handle, buffer, length )) == -1)
|
|
|
|
{
|
|
|
|
if ((errno == EAGAIN) || (errno == EINTR)) continue;
|
|
|
|
if (errno == EFAULT) FIXME( "EFAULT handling broken for now\n" );
|
|
|
|
io_status->u.Status = FILE_GetNtStatus();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
close( unix_handle );
|
|
|
|
return io_status->u.Status;
|
|
|
|
}
|
2002-06-14 02:36:20 +02:00
|
|
|
|
2003-06-26 04:08:17 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* FILE_AsyncWriteService (INTERNAL)
|
|
|
|
*
|
|
|
|
* This function is called while the client is waiting on the
|
|
|
|
* server, so we can't make any server calls here.
|
|
|
|
*/
|
|
|
|
static void FILE_AsyncWriteService(struct async_private *ovp)
|
|
|
|
{
|
|
|
|
async_fileio *fileio = (async_fileio *) ovp;
|
|
|
|
PIO_STATUS_BLOCK io_status = fileio->async.iosb;
|
|
|
|
int result;
|
|
|
|
int already = io_status->Information;
|
2002-06-14 02:36:20 +02:00
|
|
|
|
2003-06-26 04:08:17 +02:00
|
|
|
TRACE("(%p %p)\n",io_status,fileio->buffer);
|
2002-06-14 02:36:20 +02:00
|
|
|
|
2003-06-26 04:08:17 +02:00
|
|
|
/* write some data (non-blocking) */
|
2002-06-14 02:36:20 +02:00
|
|
|
|
2003-06-26 04:08:17 +02:00
|
|
|
if ( fileio->fd_type == FD_TYPE_SOCKET )
|
|
|
|
result = write(ovp->fd, &fileio->buffer[already], fileio->count - already);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = pwrite(ovp->fd, &fileio->buffer[already], fileio->count - already,
|
|
|
|
fileio->offset + already);
|
|
|
|
if ((result < 0) && (errno == ESPIPE))
|
|
|
|
result = write(ovp->fd, &fileio->buffer[already], fileio->count - already);
|
|
|
|
}
|
2002-06-14 02:36:20 +02:00
|
|
|
|
2003-06-26 04:08:17 +02:00
|
|
|
if ((result < 0) && ((errno == EAGAIN) || (errno == EINTR)))
|
|
|
|
{
|
|
|
|
io_status->u.Status = STATUS_PENDING;
|
|
|
|
return;
|
|
|
|
}
|
2002-06-14 02:36:20 +02:00
|
|
|
|
2003-06-26 04:08:17 +02:00
|
|
|
/* check to see if the transfer is complete */
|
|
|
|
if (result < 0)
|
|
|
|
{
|
|
|
|
io_status->u.Status = FILE_GetNtStatus();
|
|
|
|
return;
|
|
|
|
}
|
2002-06-14 02:36:20 +02:00
|
|
|
|
2003-06-26 04:08:17 +02:00
|
|
|
io_status->Information += result;
|
|
|
|
io_status->u.Status = (io_status->Information < fileio->count) ? STATUS_PENDING : STATUS_SUCCESS;
|
|
|
|
TRACE("wrote %d more bytes %ld/%d so far\n",result,io_status->Information,fileio->count);
|
2002-06-14 02:36:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* NtWriteFile [NTDLL.@]
|
|
|
|
* ZwWriteFile [NTDLL.@]
|
|
|
|
*
|
2003-07-19 00:55:28 +02:00
|
|
|
* Write to an open file handle.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* FileHandle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
|
|
|
|
* Event [I] Event to signal upon completion (or NULL)
|
|
|
|
* ApcRoutine [I] Callback to call upon completion (or NULL)
|
|
|
|
* ApcContext [I] Context for ApcRoutine (or NULL)
|
|
|
|
* IoStatusBlock [O] Receives information about the operation on return
|
|
|
|
* Buffer [I] Source for the data to write
|
|
|
|
* Length [I] Size of Buffer
|
|
|
|
* ByteOffset [O] Destination for the new file pointer position (or NULL)
|
|
|
|
* Key [O] Function unknown (may be NULL)
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: 0. IoStatusBlock is updated, and the Information member contains
|
|
|
|
* The number of bytes written.
|
|
|
|
* Failure: An NTSTATUS error code describing the error.
|
2002-06-14 02:36:20 +02:00
|
|
|
*/
|
2003-06-26 04:08:17 +02:00
|
|
|
NTSTATUS WINAPI NtWriteFile(HANDLE hFile, HANDLE hEvent,
|
|
|
|
PIO_APC_ROUTINE apc, void* apc_user,
|
|
|
|
PIO_STATUS_BLOCK io_status,
|
|
|
|
const void* buffer, ULONG length,
|
|
|
|
PLARGE_INTEGER offset, PULONG key)
|
1999-03-09 18:47:51 +01:00
|
|
|
{
|
2003-06-26 04:08:17 +02:00
|
|
|
int unix_handle, flags;
|
|
|
|
enum fd_type type;
|
|
|
|
|
|
|
|
TRACE("(%p,%p,%p,%p,%p,%p,0x%08lx,%p,%p)!\n",
|
|
|
|
hFile,hEvent,apc,apc_user,io_status,buffer,length,offset,key);
|
|
|
|
|
|
|
|
TRACE("(%p,%p,%p,%p,%p,%p,0x%08lx,%p,%p),partial stub!\n",
|
|
|
|
hFile,hEvent,apc,apc_user,io_status,buffer,length,offset,key);
|
|
|
|
|
|
|
|
io_status->Information = 0;
|
|
|
|
|
|
|
|
io_status->u.Status = FILE_GetUnixHandleType( hFile, GENERIC_WRITE, &type, &flags, &unix_handle );
|
|
|
|
if (io_status->u.Status) return io_status->u.Status;
|
|
|
|
|
|
|
|
if (flags & (FD_FLAG_OVERLAPPED|FD_FLAG_TIMEOUT))
|
|
|
|
{
|
|
|
|
async_fileio* ovp;
|
2003-07-11 23:44:17 +02:00
|
|
|
NTSTATUS ret;
|
2003-06-26 04:08:17 +02:00
|
|
|
|
|
|
|
if (unix_handle < 0) return STATUS_INVALID_HANDLE;
|
|
|
|
|
|
|
|
ovp = RtlAllocateHeap(ntdll_get_process_heap(), 0, sizeof(async_fileio));
|
|
|
|
if (!ovp) return STATUS_NO_MEMORY;
|
|
|
|
|
|
|
|
ovp->async.ops = (apc ? &fileio_async_ops : &fileio_nocomp_async_ops );
|
|
|
|
ovp->async.handle = hFile;
|
|
|
|
ovp->async.fd = unix_handle;
|
|
|
|
ovp->async.type = ASYNC_TYPE_WRITE;
|
|
|
|
ovp->async.func = FILE_AsyncWriteService;
|
|
|
|
ovp->async.event = hEvent;
|
|
|
|
ovp->async.iosb = io_status;
|
|
|
|
ovp->count = length;
|
|
|
|
ovp->offset = offset->s.LowPart;
|
|
|
|
if (offset->s.HighPart) FIXME("NIY-high part\n");
|
|
|
|
ovp->apc = apc;
|
|
|
|
ovp->apc_user = apc_user;
|
|
|
|
ovp->buffer = (void*)buffer;
|
|
|
|
ovp->fd_type = type;
|
|
|
|
|
|
|
|
io_status->Information = 0;
|
2003-07-11 23:44:17 +02:00
|
|
|
ret = register_new_async(&ovp->async);
|
|
|
|
if (ret != STATUS_SUCCESS)
|
|
|
|
return ret;
|
2003-08-18 21:45:53 +02:00
|
|
|
if (flags & FD_FLAG_TIMEOUT)
|
|
|
|
{
|
|
|
|
NtWaitForSingleObject(hEvent, TRUE, NULL);
|
|
|
|
NtClose(hEvent);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LARGE_INTEGER timeout;
|
|
|
|
|
|
|
|
/* let some APC be run, this will write as much data as possible */
|
|
|
|
timeout.s.LowPart = timeout.s.HighPart = 0;
|
|
|
|
NtDelayExecution( TRUE, &timeout );
|
|
|
|
}
|
2003-06-26 04:08:17 +02:00
|
|
|
return io_status->u.Status;
|
|
|
|
}
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case FD_TYPE_SMB:
|
|
|
|
FIXME("NIY-SMB\n");
|
|
|
|
close(unix_handle);
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
|
|
|
|
|
|
case FD_TYPE_DEFAULT:
|
|
|
|
/* normal unix files */
|
|
|
|
if (unix_handle == -1) return STATUS_INVALID_HANDLE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
FIXME("Unsupported type of fd %d\n", type);
|
|
|
|
if (unix_handle == -1) close(unix_handle);
|
|
|
|
return STATUS_INVALID_HANDLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (offset)
|
|
|
|
{
|
|
|
|
FILE_POSITION_INFORMATION fpi;
|
|
|
|
|
|
|
|
fpi.CurrentByteOffset = *offset;
|
2003-07-19 00:55:28 +02:00
|
|
|
io_status->u.Status = NtSetInformationFile(hFile, io_status, &fpi, sizeof(fpi),
|
2003-06-26 04:08:17 +02:00
|
|
|
FilePositionInformation);
|
|
|
|
if (io_status->u.Status)
|
|
|
|
{
|
|
|
|
close(unix_handle);
|
|
|
|
return io_status->u.Status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* synchronous file write */
|
|
|
|
while ((io_status->Information = write( unix_handle, buffer, length )) == -1)
|
|
|
|
{
|
|
|
|
if ((errno == EAGAIN) || (errno == EINTR)) continue;
|
|
|
|
if (errno == EFAULT) FIXME( "EFAULT handling broken for now\n" );
|
|
|
|
if (errno == ENOSPC) io_status->u.Status = STATUS_DISK_FULL;
|
|
|
|
else io_status->u.Status = FILE_GetNtStatus();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
close( unix_handle );
|
|
|
|
return io_status->u.Status;
|
1999-03-09 18:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* NtDeviceIoControlFile [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwDeviceIoControlFile [NTDLL.@]
|
2003-07-19 00:55:28 +02:00
|
|
|
*
|
|
|
|
* Perform an I/O control operation on an open file handle.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* DeviceHandle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
|
|
|
|
* Event [I] Event to signal upon completion (or NULL)
|
|
|
|
* ApcRoutine [I] Callback to call upon completion (or NULL)
|
|
|
|
* ApcContext [I] Context for ApcRoutine (or NULL)
|
|
|
|
* IoStatusBlock [O] Receives information about the operation on return
|
|
|
|
* IoControlCode [I] Control code for the operation to perform
|
|
|
|
* InputBuffer [I] Source for any input data required (or NULL)
|
|
|
|
* InputBufferSize [I] Size of InputBuffer
|
|
|
|
* OutputBuffer [O] Source for any output data returned (or NULL)
|
|
|
|
* OutputBufferSize [I] Size of OutputBuffer
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: 0. IoStatusBlock is updated.
|
|
|
|
* Failure: An NTSTATUS error code describing the error.
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
2003-06-24 21:28:21 +02:00
|
|
|
NTSTATUS WINAPI NtDeviceIoControlFile(HANDLE DeviceHandle, HANDLE hEvent,
|
|
|
|
PIO_APC_ROUTINE UserApcRoutine,
|
|
|
|
PVOID UserApcContext,
|
|
|
|
PIO_STATUS_BLOCK IoStatusBlock,
|
|
|
|
ULONG IoControlCode,
|
|
|
|
PVOID InputBuffer,
|
|
|
|
ULONG InputBufferSize,
|
|
|
|
PVOID OutputBuffer,
|
|
|
|
ULONG OutputBufferSize)
|
1999-03-09 18:47:51 +01:00
|
|
|
{
|
2003-06-24 21:28:21 +02:00
|
|
|
DWORD clientID = 0;
|
|
|
|
char str[3];
|
|
|
|
|
|
|
|
TRACE("(%p,%p,%p,%p,%p,0x%08lx,%p,0x%08lx,%p,0x%08lx)\n",
|
|
|
|
DeviceHandle, hEvent, UserApcRoutine, UserApcContext,
|
|
|
|
IoStatusBlock, IoControlCode,
|
|
|
|
InputBuffer, InputBufferSize, OutputBuffer, OutputBufferSize);
|
|
|
|
|
|
|
|
/* FIXME: clientID hack should disappear */
|
|
|
|
SERVER_START_REQ( get_device_id )
|
|
|
|
{
|
|
|
|
req->handle = DeviceHandle;
|
|
|
|
if (!wine_server_call( req )) clientID = reply->id;
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
|
|
|
|
if (!clientID) return STATUS_INVALID_PARAMETER;
|
|
|
|
strcpy(str, "A:");
|
|
|
|
str[0] += LOBYTE(clientID);
|
|
|
|
|
|
|
|
/* FIXME: should use the NTDLL equivalent */
|
|
|
|
if (GetDriveTypeA(str) == DRIVE_CDROM)
|
|
|
|
{
|
|
|
|
return CDROM_DeviceIoControl(clientID, DeviceHandle, hEvent,
|
|
|
|
UserApcRoutine, UserApcContext,
|
|
|
|
IoStatusBlock, IoControlCode,
|
|
|
|
InputBuffer, InputBufferSize,
|
|
|
|
OutputBuffer, OutputBufferSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
FIXME("Unimplemented dwIoControlCode=%08lx\n", IoControlCode);
|
|
|
|
IoStatusBlock->u.Status = STATUS_NOT_IMPLEMENTED;
|
|
|
|
IoStatusBlock->Information = 0;
|
|
|
|
if (hEvent) NtSetEvent(hEvent, NULL);
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
1999-03-09 18:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* NtFsControlFile [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwFsControlFile [NTDLL.@]
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtFsControlFile(
|
|
|
|
IN HANDLE DeviceHandle,
|
|
|
|
IN HANDLE Event OPTIONAL,
|
|
|
|
IN PIO_APC_ROUTINE ApcRoutine OPTIONAL,
|
|
|
|
IN PVOID ApcContext OPTIONAL,
|
|
|
|
OUT PIO_STATUS_BLOCK IoStatusBlock,
|
|
|
|
IN ULONG IoControlCode,
|
|
|
|
IN PVOID InputBuffer,
|
|
|
|
IN ULONG InputBufferSize,
|
|
|
|
OUT PVOID OutputBuffer,
|
|
|
|
IN ULONG OutputBufferSize)
|
|
|
|
{
|
2002-12-05 20:56:15 +01:00
|
|
|
FIXME("(%p,%p,%p,%p,%p,0x%08lx,%p,0x%08lx,%p,0x%08lx): stub\n",
|
1999-03-09 18:47:51 +01:00
|
|
|
DeviceHandle,Event,ApcRoutine,ApcContext,IoStatusBlock,IoControlCode,
|
|
|
|
InputBuffer,InputBufferSize,OutputBuffer,OutputBufferSize);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtSetVolumeInformationFile [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwSetVolumeInformationFile [NTDLL.@]
|
2003-07-19 00:55:28 +02:00
|
|
|
*
|
|
|
|
* Set volume information for an open file handle.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* FileHandle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
|
|
|
|
* IoStatusBlock [O] Receives information about the operation on return
|
|
|
|
* FsInformation [I] Source for volume information
|
|
|
|
* Length [I] Size of FsInformation
|
|
|
|
* FsInformationClass [I] Type of volume information to set
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: 0. IoStatusBlock is updated.
|
|
|
|
* Failure: An NTSTATUS error code describing the error.
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtSetVolumeInformationFile(
|
|
|
|
IN HANDLE FileHandle,
|
1999-07-31 19:32:05 +02:00
|
|
|
PIO_STATUS_BLOCK IoStatusBlock,
|
|
|
|
PVOID FsInformation,
|
|
|
|
ULONG Length,
|
2002-06-01 01:06:46 +02:00
|
|
|
FS_INFORMATION_CLASS FsInformationClass)
|
1999-03-09 18:47:51 +01:00
|
|
|
{
|
2002-12-05 20:56:15 +01:00
|
|
|
FIXME("(%p,%p,%p,0x%08lx,0x%08x) stub\n",
|
1999-07-31 19:32:05 +02:00
|
|
|
FileHandle,IoStatusBlock,FsInformation,Length,FsInformationClass);
|
1999-03-09 18:47:51 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtQueryInformationFile [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwQueryInformationFile [NTDLL.@]
|
2003-07-19 00:55:28 +02:00
|
|
|
*
|
|
|
|
* Get information about an open file handle.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* FileHandle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
|
|
|
|
* IoStatusBlock [O] Receives information about the operation on return
|
|
|
|
* FileInformation [O] Destination for file information
|
|
|
|
* Length [I] Size of FileInformation
|
|
|
|
* FileInformationClass [I] Type of file information to get
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: 0. IoStatusBlock and FileInformation are updated.
|
|
|
|
* Failure: An NTSTATUS error code describing the error.
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
2003-06-24 04:32:01 +02:00
|
|
|
NTSTATUS WINAPI NtQueryInformationFile(HANDLE hFile, PIO_STATUS_BLOCK io_status,
|
|
|
|
PVOID ptr, LONG len,
|
|
|
|
FILE_INFORMATION_CLASS class)
|
1999-03-09 18:47:51 +01:00
|
|
|
{
|
2003-06-24 04:32:01 +02:00
|
|
|
NTSTATUS status;
|
|
|
|
LONG used = 0;
|
|
|
|
BYTE answer[256];
|
|
|
|
time_t ct = 0, wt = 0, at = 0;
|
|
|
|
|
|
|
|
TRACE("(%p,%p,%p,0x%08lx,0x%08x)\n", hFile, io_status, ptr, len, class);
|
|
|
|
|
|
|
|
switch (class)
|
|
|
|
{
|
|
|
|
case FileBasicInformation:
|
|
|
|
{
|
|
|
|
FILE_BASIC_INFORMATION* fbi = (FILE_BASIC_INFORMATION*)answer;
|
|
|
|
if (sizeof(answer) < sizeof(*fbi)) goto too_small;
|
|
|
|
|
|
|
|
SERVER_START_REQ( get_file_info )
|
|
|
|
{
|
|
|
|
req->handle = hFile;
|
|
|
|
if (!(status = wine_server_call( req )))
|
|
|
|
{
|
|
|
|
/* FIXME: which file types are supported ?
|
|
|
|
* Serial ports (FILE_TYPE_CHAR) are not,
|
|
|
|
* and MSDN also says that pipes are not supported.
|
|
|
|
* FILE_TYPE_REMOTE seems to be supported according to
|
|
|
|
* MSDN q234741.txt */
|
|
|
|
if ((reply->type == FILE_TYPE_DISK) ||
|
|
|
|
(reply->type == FILE_TYPE_REMOTE))
|
|
|
|
{
|
|
|
|
at = reply->access_time;
|
|
|
|
wt = reply->write_time;
|
|
|
|
ct = reply->change_time;
|
|
|
|
fbi->FileAttributes = reply->attr;
|
|
|
|
used = sizeof(*fbi);
|
|
|
|
}
|
|
|
|
else status = STATUS_INVALID_HANDLE; /* FIXME ??? */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
if (used)
|
|
|
|
{
|
|
|
|
RtlSecondsSince1970ToTime(wt, &fbi->CreationTime);
|
|
|
|
RtlSecondsSince1970ToTime(wt, &fbi->LastWriteTime);
|
|
|
|
RtlSecondsSince1970ToTime(ct, &fbi->ChangeTime);
|
|
|
|
RtlSecondsSince1970ToTime(at, &fbi->LastAccessTime);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case FileStandardInformation:
|
|
|
|
{
|
|
|
|
FILE_STANDARD_INFORMATION* fsi = (FILE_STANDARD_INFORMATION*)answer;
|
|
|
|
if (sizeof(answer) < sizeof(*fsi)) goto too_small;
|
|
|
|
|
|
|
|
SERVER_START_REQ( get_file_info )
|
|
|
|
{
|
|
|
|
req->handle = hFile;
|
|
|
|
if (!(status = wine_server_call( req )))
|
|
|
|
{
|
|
|
|
/* FIXME: which file types are supported ?
|
|
|
|
* Serial ports (FILE_TYPE_CHAR) are not,
|
|
|
|
* and MSDN also says that pipes are not supported.
|
|
|
|
* FILE_TYPE_REMOTE seems to be supported according to
|
|
|
|
* MSDN q234741.txt */
|
|
|
|
if ((reply->type == FILE_TYPE_DISK) ||
|
|
|
|
(reply->type == FILE_TYPE_REMOTE))
|
|
|
|
{
|
|
|
|
fsi->AllocationSize.s.HighPart = reply->alloc_high;
|
|
|
|
fsi->AllocationSize.s.LowPart = reply->alloc_low;
|
|
|
|
fsi->EndOfFile.s.HighPart = reply->size_high;
|
|
|
|
fsi->EndOfFile.s.LowPart = reply->size_low;
|
|
|
|
fsi->NumberOfLinks = reply->links;
|
|
|
|
fsi->DeletePending = FALSE; /* FIXME */
|
|
|
|
fsi->Directory = (reply->attr & FILE_ATTRIBUTE_DIRECTORY);
|
|
|
|
used = sizeof(*fsi);
|
|
|
|
}
|
|
|
|
else status = STATUS_INVALID_HANDLE; /* FIXME ??? */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case FilePositionInformation:
|
|
|
|
{
|
|
|
|
FILE_POSITION_INFORMATION* fpi = (FILE_POSITION_INFORMATION*)answer;
|
|
|
|
if (sizeof(answer) < sizeof(*fpi)) goto too_small;
|
|
|
|
|
|
|
|
SERVER_START_REQ( set_file_pointer )
|
|
|
|
{
|
|
|
|
req->handle = hFile;
|
|
|
|
req->low = 0;
|
|
|
|
req->high = 0;
|
|
|
|
req->whence = SEEK_CUR;
|
|
|
|
if (!(status = wine_server_call( req )))
|
|
|
|
{
|
|
|
|
fpi->CurrentByteOffset.s.HighPart = reply->new_high;
|
|
|
|
fpi->CurrentByteOffset.s.LowPart = reply->new_low;
|
|
|
|
used = sizeof(*fpi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME("Unsupported class (%d)\n", class);
|
|
|
|
return io_status->u.Status = STATUS_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
if (used) memcpy(ptr, answer, min(used, len));
|
|
|
|
io_status->u.Status = status;
|
|
|
|
io_status->Information = len;
|
|
|
|
return status;
|
|
|
|
too_small:
|
|
|
|
io_status->Information = 0;
|
|
|
|
return io_status->u.Status = STATUS_BUFFER_TOO_SMALL;
|
1999-03-09 18:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtSetInformationFile [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwSetInformationFile [NTDLL.@]
|
2003-07-19 00:55:28 +02:00
|
|
|
*
|
|
|
|
* Set information about an open file handle.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* FileHandle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
|
|
|
|
* IoStatusBlock [O] Receives information about the operation on return
|
|
|
|
* FileInformation [I] Source for file information
|
|
|
|
* Length [I] Size of FileInformation
|
|
|
|
* FileInformationClass [I] Type of file information to set
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: 0. IoStatusBlock is updated.
|
|
|
|
* Failure: An NTSTATUS error code describing the error.
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
2003-06-24 04:32:01 +02:00
|
|
|
NTSTATUS WINAPI NtSetInformationFile(HANDLE hFile, PIO_STATUS_BLOCK io_status,
|
2003-07-19 00:55:28 +02:00
|
|
|
PVOID ptr, ULONG len,
|
2003-06-24 04:32:01 +02:00
|
|
|
FILE_INFORMATION_CLASS class)
|
1999-03-09 18:47:51 +01:00
|
|
|
{
|
2003-06-24 04:32:01 +02:00
|
|
|
NTSTATUS status = STATUS_INVALID_PARAMETER_3;
|
|
|
|
|
|
|
|
TRACE("(%p,%p,%p,0x%08lx,0x%08x)\n", hFile, io_status, ptr, len, class);
|
|
|
|
|
|
|
|
switch (class)
|
2003-07-19 00:55:28 +02:00
|
|
|
{
|
2003-06-24 04:32:01 +02:00
|
|
|
case FilePositionInformation:
|
|
|
|
if (len >= sizeof(FILE_POSITION_INFORMATION))
|
|
|
|
{
|
|
|
|
FILE_POSITION_INFORMATION* fpi = (FILE_POSITION_INFORMATION*)ptr;
|
|
|
|
|
|
|
|
SERVER_START_REQ( set_file_pointer )
|
|
|
|
{
|
|
|
|
req->handle = hFile;
|
|
|
|
req->low = fpi->CurrentByteOffset.s.LowPart;
|
|
|
|
req->high = fpi->CurrentByteOffset.s.HighPart;
|
|
|
|
req->whence = SEEK_SET;
|
|
|
|
status = wine_server_call( req );
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
status = STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME("Unsupported class (%d)\n", class);
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
io_status->u.Status = status;
|
|
|
|
io_status->Information = 0;
|
|
|
|
return status;
|
1999-03-09 18:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtQueryDirectoryFile [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwQueryDirectoryFile [NTDLL.@]
|
1999-03-09 18:47:51 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtQueryDirectoryFile(
|
|
|
|
IN HANDLE FileHandle,
|
|
|
|
IN HANDLE Event OPTIONAL,
|
|
|
|
IN PIO_APC_ROUTINE ApcRoutine OPTIONAL,
|
|
|
|
IN PVOID ApcContext OPTIONAL,
|
|
|
|
OUT PIO_STATUS_BLOCK IoStatusBlock,
|
|
|
|
OUT PVOID FileInformation,
|
|
|
|
IN ULONG Length,
|
|
|
|
IN FILE_INFORMATION_CLASS FileInformationClass,
|
|
|
|
IN BOOLEAN ReturnSingleEntry,
|
|
|
|
IN PUNICODE_STRING FileName OPTIONAL,
|
|
|
|
IN BOOLEAN RestartScan)
|
|
|
|
{
|
2002-12-05 20:56:15 +01:00
|
|
|
FIXME("(%p %p %p %p %p %p 0x%08lx 0x%08x 0x%08x %p 0x%08x\n",
|
1999-03-09 18:47:51 +01:00
|
|
|
FileHandle, Event, ApcRoutine, ApcContext, IoStatusBlock, FileInformation,
|
2002-06-01 01:06:46 +02:00
|
|
|
Length, FileInformationClass, ReturnSingleEntry,
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
debugstr_us(FileName),RestartScan);
|
1999-03-09 18:47:51 +01:00
|
|
|
return 0;
|
|
|
|
}
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* NtQueryVolumeInformationFile [NTDLL.@]
|
2001-07-11 20:56:41 +02:00
|
|
|
* ZwQueryVolumeInformationFile [NTDLL.@]
|
2003-07-19 00:55:28 +02:00
|
|
|
*
|
|
|
|
* Get volume information for an open file handle.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* FileHandle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
|
|
|
|
* IoStatusBlock [O] Receives information about the operation on return
|
|
|
|
* FsInformation [O] Destination for volume information
|
|
|
|
* Length [I] Size of FsInformation
|
|
|
|
* FsInformationClass [I] Type of volume information to set
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: 0. IoStatusBlock and FsInformation are updated.
|
|
|
|
* Failure: An NTSTATUS error code describing the error.
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtQueryVolumeInformationFile (
|
|
|
|
IN HANDLE FileHandle,
|
|
|
|
OUT PIO_STATUS_BLOCK IoStatusBlock,
|
|
|
|
OUT PVOID FSInformation,
|
|
|
|
IN ULONG Length,
|
|
|
|
IN FS_INFORMATION_CLASS FSInformationClass)
|
|
|
|
{
|
2002-05-09 21:40:30 +02:00
|
|
|
ULONG len = 0;
|
|
|
|
|
2002-12-05 20:56:15 +01:00
|
|
|
FIXME("(%p %p %p 0x%08lx 0x%08x) stub!\n",
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
FileHandle, IoStatusBlock, FSInformation, Length, FSInformationClass);
|
2002-05-09 21:40:30 +02:00
|
|
|
|
|
|
|
switch ( FSInformationClass )
|
|
|
|
{
|
|
|
|
case FileFsVolumeInformation:
|
|
|
|
len = sizeof( FILE_FS_VOLUME_INFORMATION );
|
|
|
|
break;
|
|
|
|
case FileFsLabelInformation:
|
|
|
|
len = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FileFsSizeInformation:
|
|
|
|
len = sizeof( FILE_FS_SIZE_INFORMATION );
|
|
|
|
break;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
case FileFsDeviceInformation:
|
2002-05-09 21:40:30 +02:00
|
|
|
len = sizeof( FILE_FS_DEVICE_INFORMATION );
|
|
|
|
break;
|
|
|
|
case FileFsAttributeInformation:
|
|
|
|
len = sizeof( FILE_FS_ATTRIBUTE_INFORMATION );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FileFsControlInformation:
|
|
|
|
len = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FileFsFullSizeInformation:
|
|
|
|
len = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FileFsObjectIdInformation:
|
|
|
|
len = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FileFsMaximumInformation:
|
|
|
|
len = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Length < len)
|
|
|
|
return STATUS_BUFFER_TOO_SMALL;
|
|
|
|
|
|
|
|
switch ( FSInformationClass )
|
|
|
|
{
|
|
|
|
case FileFsVolumeInformation:
|
|
|
|
break;
|
|
|
|
case FileFsLabelInformation:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FileFsSizeInformation:
|
|
|
|
break;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
case FileFsDeviceInformation:
|
2002-05-09 21:40:30 +02:00
|
|
|
if (FSInformation)
|
|
|
|
{
|
|
|
|
FILE_FS_DEVICE_INFORMATION * DeviceInfo = FSInformation;
|
2002-06-01 01:06:46 +02:00
|
|
|
DeviceInfo->DeviceType = FILE_DEVICE_DISK;
|
2002-05-09 21:40:30 +02:00
|
|
|
DeviceInfo->Characteristics = 0;
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
case FileFsAttributeInformation:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FileFsControlInformation:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FileFsFullSizeInformation:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FileFsObjectIdInformation:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FileFsMaximumInformation:
|
|
|
|
break;
|
|
|
|
}
|
2003-06-24 04:32:01 +02:00
|
|
|
IoStatusBlock->u.Status = STATUS_SUCCESS;
|
2002-05-09 21:40:30 +02:00
|
|
|
IoStatusBlock->Information = len;
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
2003-04-22 06:04:17 +02:00
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* NtFlushBuffersFile (NTDLL.@)
|
2003-07-19 00:55:28 +02:00
|
|
|
*
|
|
|
|
* Flush any buffered data on an open file handle.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* FileHandle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
|
|
|
|
* IoStatusBlock [O] Receives information about the operation on return
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: 0. IoStatusBlock is updated.
|
|
|
|
* Failure: An NTSTATUS error code describing the error.
|
2003-04-22 06:04:17 +02:00
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtFlushBuffersFile( HANDLE hFile, IO_STATUS_BLOCK* IoStatusBlock )
|
|
|
|
{
|
|
|
|
NTSTATUS ret;
|
2003-05-15 06:22:45 +02:00
|
|
|
HANDLE hEvent = NULL;
|
|
|
|
|
2003-04-22 06:04:17 +02:00
|
|
|
SERVER_START_REQ( flush_file )
|
|
|
|
{
|
|
|
|
req->handle = hFile;
|
|
|
|
ret = wine_server_call( req );
|
2003-05-15 06:22:45 +02:00
|
|
|
hEvent = reply->event;
|
2003-04-22 06:04:17 +02:00
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
2003-06-26 04:08:17 +02:00
|
|
|
if (!ret && hEvent)
|
2003-05-15 06:22:45 +02:00
|
|
|
{
|
|
|
|
ret = NtWaitForSingleObject( hEvent, FALSE, NULL );
|
|
|
|
NtClose( hEvent );
|
|
|
|
}
|
2003-04-22 06:04:17 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2003-06-24 04:32:01 +02:00
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* NtLockFile (NTDLL.@)
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtLockFile( HANDLE hFile, HANDLE lock_granted_event,
|
2003-07-19 00:55:28 +02:00
|
|
|
PIO_APC_ROUTINE apc, void* apc_user,
|
|
|
|
PIO_STATUS_BLOCK io_status, PLARGE_INTEGER offset,
|
2003-06-24 04:32:01 +02:00
|
|
|
PLARGE_INTEGER count, ULONG* key, BOOLEAN dont_wait,
|
|
|
|
BOOLEAN exclusive )
|
|
|
|
{
|
|
|
|
NTSTATUS ret;
|
|
|
|
HANDLE handle;
|
|
|
|
BOOLEAN async;
|
|
|
|
|
|
|
|
if (apc || io_status || key)
|
|
|
|
{
|
|
|
|
FIXME("Unimplemented yet parameter\n");
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
SERVER_START_REQ( lock_file )
|
|
|
|
{
|
|
|
|
req->handle = hFile;
|
|
|
|
req->offset_low = offset->s.LowPart;
|
|
|
|
req->offset_high = offset->s.HighPart;
|
|
|
|
req->count_low = count->s.LowPart;
|
|
|
|
req->count_high = count->s.HighPart;
|
|
|
|
req->shared = !exclusive;
|
|
|
|
req->wait = !dont_wait;
|
|
|
|
ret = wine_server_call( req );
|
|
|
|
handle = reply->handle;
|
|
|
|
async = reply->overlapped;
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
if (ret != STATUS_PENDING)
|
|
|
|
{
|
|
|
|
if (!ret && lock_granted_event) NtSetEvent(lock_granted_event, NULL);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (async)
|
|
|
|
{
|
|
|
|
FIXME( "Async I/O lock wait not implemented, might deadlock\n" );
|
|
|
|
if (handle) NtClose( handle );
|
|
|
|
return STATUS_PENDING;
|
|
|
|
}
|
|
|
|
if (handle)
|
|
|
|
{
|
|
|
|
NtWaitForSingleObject( handle, FALSE, NULL );
|
|
|
|
NtClose( handle );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LARGE_INTEGER time;
|
|
|
|
|
|
|
|
/* Unix lock conflict, sleep a bit and retry */
|
|
|
|
time.QuadPart = 100 * (ULONGLONG)10000;
|
|
|
|
time.QuadPart = -time.QuadPart;
|
2003-06-30 23:00:15 +02:00
|
|
|
NtDelayExecution( FALSE, &time );
|
2003-06-24 04:32:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* NtUnlockFile (NTDLL.@)
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI NtUnlockFile( HANDLE hFile, PIO_STATUS_BLOCK io_status,
|
|
|
|
PLARGE_INTEGER offset, PLARGE_INTEGER count,
|
|
|
|
PULONG key )
|
|
|
|
{
|
|
|
|
NTSTATUS status;
|
|
|
|
|
|
|
|
TRACE( "%p %lx%08lx %lx%08lx\n",
|
|
|
|
hFile, offset->s.HighPart, offset->s.LowPart, count->s.HighPart, count->s.LowPart );
|
|
|
|
|
|
|
|
if (io_status || key)
|
|
|
|
{
|
|
|
|
FIXME("Unimplemented yet parameter\n");
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
SERVER_START_REQ( unlock_file )
|
|
|
|
{
|
|
|
|
req->handle = hFile;
|
|
|
|
req->offset_low = offset->s.LowPart;
|
|
|
|
req->offset_high = offset->s.HighPart;
|
|
|
|
req->count_low = count->s.LowPart;
|
|
|
|
req->count_high = count->s.HighPart;
|
|
|
|
status = wine_server_call( req );
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
return status;
|
|
|
|
}
|