server: Infrastructure to return a wait handle for blocking ioctls.
[wine/wine-gecko.git] / dlls / ntdll / file.c
blobcb09e964c5058897d364e3c6e7a9354e4030a5de
1 /*
2 * Copyright 1999, 2000 Juergen Schmied
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include "config.h"
20 #include "wine/port.h"
22 #include <stdlib.h>
23 #include <string.h>
24 #include <stdio.h>
25 #include <errno.h>
26 #include <assert.h>
27 #ifdef HAVE_UNISTD_H
28 # include <unistd.h>
29 #endif
30 #ifdef HAVE_SYS_ERRNO_H
31 #include <sys/errno.h>
32 #endif
33 #ifdef HAVE_LINUX_MAJOR_H
34 # include <linux/major.h>
35 #endif
36 #ifdef HAVE_SYS_STATVFS_H
37 # include <sys/statvfs.h>
38 #endif
39 #ifdef HAVE_SYS_PARAM_H
40 # include <sys/param.h>
41 #endif
42 #ifdef HAVE_SYS_TIME_H
43 # include <sys/time.h>
44 #endif
45 #ifdef HAVE_SYS_IOCTL_H
46 #include <sys/ioctl.h>
47 #endif
48 #ifdef HAVE_POLL_H
49 #include <poll.h>
50 #endif
51 #ifdef HAVE_SYS_POLL_H
52 #include <sys/poll.h>
53 #endif
54 #ifdef HAVE_SYS_SOCKET_H
55 #include <sys/socket.h>
56 #endif
57 #ifdef HAVE_UTIME_H
58 # include <utime.h>
59 #endif
60 #ifdef HAVE_SYS_VFS_H
61 # include <sys/vfs.h>
62 #endif
63 #ifdef HAVE_SYS_MOUNT_H
64 # include <sys/mount.h>
65 #endif
66 #ifdef HAVE_SYS_STATFS_H
67 # include <sys/statfs.h>
68 #endif
70 #define NONAMELESSUNION
71 #define NONAMELESSSTRUCT
72 #include "ntstatus.h"
73 #define WIN32_NO_STATUS
74 #include "wine/unicode.h"
75 #include "wine/debug.h"
76 #include "thread.h"
77 #include "wine/server.h"
78 #include "ntdll_misc.h"
80 #include "winternl.h"
81 #include "winioctl.h"
82 #include "ddk/ntddser.h"
84 WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
86 mode_t FILE_umask = 0;
88 #define SECSPERDAY 86400
89 #define SECS_1601_TO_1970 ((369 * 365 + 89) * (ULONGLONG)SECSPERDAY)
91 /**************************************************************************
92 * NtOpenFile [NTDLL.@]
93 * ZwOpenFile [NTDLL.@]
95 * Open a file.
97 * PARAMS
98 * handle [O] Variable that receives the file handle on return
99 * access [I] Access desired by the caller to the file
100 * attr [I] Structure describing the file to be opened
101 * io [O] Receives details about the result of the operation
102 * sharing [I] Type of shared access the caller requires
103 * options [I] Options for the file open
105 * RETURNS
106 * Success: 0. FileHandle and IoStatusBlock are updated.
107 * Failure: An NTSTATUS error code describing the error.
109 NTSTATUS WINAPI NtOpenFile( PHANDLE handle, ACCESS_MASK access,
110 POBJECT_ATTRIBUTES attr, PIO_STATUS_BLOCK io,
111 ULONG sharing, ULONG options )
113 return NtCreateFile( handle, access, attr, io, NULL, 0,
114 sharing, FILE_OPEN, options, NULL, 0 );
117 /**************************************************************************
118 * NtCreateFile [NTDLL.@]
119 * ZwCreateFile [NTDLL.@]
121 * Either create a new file or directory, or open an existing file, device,
122 * directory or volume.
124 * PARAMS
125 * handle [O] Points to a variable which receives the file handle on return
126 * access [I] Desired access to the file
127 * attr [I] Structure describing the file
128 * io [O] Receives information about the operation on return
129 * alloc_size [I] Initial size of the file in bytes
130 * attributes [I] Attributes to create the file with
131 * sharing [I] Type of shared access the caller would like to the file
132 * disposition [I] Specifies what to do, depending on whether the file already exists
133 * options [I] Options for creating a new file
134 * ea_buffer [I] Pointer to an extended attributes buffer
135 * ea_length [I] Length of ea_buffer
137 * RETURNS
138 * Success: 0. handle and io are updated.
139 * Failure: An NTSTATUS error code describing the error.
141 NTSTATUS WINAPI NtCreateFile( PHANDLE handle, ACCESS_MASK access, POBJECT_ATTRIBUTES attr,
142 PIO_STATUS_BLOCK io, PLARGE_INTEGER alloc_size,
143 ULONG attributes, ULONG sharing, ULONG disposition,
144 ULONG options, PVOID ea_buffer, ULONG ea_length )
146 ANSI_STRING unix_name;
147 int created = FALSE;
149 TRACE("handle=%p access=%08x name=%s objattr=%08x root=%p sec=%p io=%p alloc_size=%p\n"
150 "attr=%08x sharing=%08x disp=%d options=%08x ea=%p.0x%08x\n",
151 handle, access, debugstr_us(attr->ObjectName), attr->Attributes,
152 attr->RootDirectory, attr->SecurityDescriptor, io, alloc_size,
153 attributes, sharing, disposition, options, ea_buffer, ea_length );
155 if (!attr || !attr->ObjectName) return STATUS_INVALID_PARAMETER;
157 if (alloc_size) FIXME( "alloc_size not supported\n" );
159 if (attr->RootDirectory)
161 FIXME( "RootDirectory %p not supported\n", attr->RootDirectory );
162 return STATUS_OBJECT_NAME_NOT_FOUND;
165 io->u.Status = wine_nt_to_unix_file_name( attr->ObjectName, &unix_name, disposition,
166 !(attr->Attributes & OBJ_CASE_INSENSITIVE) );
168 if (io->u.Status == STATUS_BAD_DEVICE_TYPE)
170 SERVER_START_REQ( open_file_object )
172 req->access = access;
173 req->attributes = attr->Attributes;
174 req->rootdir = attr->RootDirectory;
175 req->sharing = sharing;
176 req->options = options;
177 wine_server_add_data( req, attr->ObjectName->Buffer, attr->ObjectName->Length );
178 io->u.Status = wine_server_call( req );
179 *handle = reply->handle;
181 SERVER_END_REQ;
182 return io->u.Status;
185 if (io->u.Status == STATUS_NO_SUCH_FILE &&
186 disposition != FILE_OPEN && disposition != FILE_OVERWRITE)
188 created = TRUE;
189 io->u.Status = STATUS_SUCCESS;
192 if (io->u.Status == STATUS_SUCCESS)
194 SERVER_START_REQ( create_file )
196 req->access = access;
197 req->attributes = attr->Attributes;
198 req->sharing = sharing;
199 req->create = disposition;
200 req->options = options;
201 req->attrs = attributes;
202 wine_server_add_data( req, unix_name.Buffer, unix_name.Length );
203 io->u.Status = wine_server_call( req );
204 *handle = reply->handle;
206 SERVER_END_REQ;
207 RtlFreeAnsiString( &unix_name );
209 else WARN("%s not found (%x)\n", debugstr_us(attr->ObjectName), io->u.Status );
211 if (io->u.Status == STATUS_SUCCESS)
213 if (created) io->Information = FILE_CREATED;
214 else switch(disposition)
216 case FILE_SUPERSEDE:
217 io->Information = FILE_SUPERSEDED;
218 break;
219 case FILE_CREATE:
220 io->Information = FILE_CREATED;
221 break;
222 case FILE_OPEN:
223 case FILE_OPEN_IF:
224 io->Information = FILE_OPENED;
225 break;
226 case FILE_OVERWRITE:
227 case FILE_OVERWRITE_IF:
228 io->Information = FILE_OVERWRITTEN;
229 break;
233 return io->u.Status;
236 /***********************************************************************
237 * Asynchronous file I/O *
240 typedef struct
242 HANDLE handle;
243 char* buffer;
244 unsigned int already;
245 unsigned int count;
246 BOOL avail_mode;
247 } async_fileio_read;
249 typedef struct
251 HANDLE handle;
252 const char *buffer;
253 unsigned int already;
254 unsigned int count;
255 } async_fileio_write;
258 /***********************************************************************
259 * FILE_GetNtStatus(void)
261 * Retrieve the Nt Status code from errno.
262 * Try to be consistent with FILE_SetDosError().
264 NTSTATUS FILE_GetNtStatus(void)
266 int err = errno;
268 TRACE( "errno = %d\n", errno );
269 switch (err)
271 case EAGAIN: return STATUS_SHARING_VIOLATION;
272 case EBADF: return STATUS_INVALID_HANDLE;
273 case EBUSY: return STATUS_DEVICE_BUSY;
274 case ENOSPC: return STATUS_DISK_FULL;
275 case EPERM:
276 case EROFS:
277 case EACCES: return STATUS_ACCESS_DENIED;
278 case ENOTDIR: return STATUS_OBJECT_PATH_NOT_FOUND;
279 case ENOENT: return STATUS_OBJECT_NAME_NOT_FOUND;
280 case EISDIR: return STATUS_FILE_IS_A_DIRECTORY;
281 case EMFILE:
282 case ENFILE: return STATUS_TOO_MANY_OPENED_FILES;
283 case EINVAL: return STATUS_INVALID_PARAMETER;
284 case ENOTEMPTY: return STATUS_DIRECTORY_NOT_EMPTY;
285 case EPIPE: return STATUS_PIPE_DISCONNECTED;
286 case EIO: return STATUS_DEVICE_NOT_READY;
287 #ifdef ENOMEDIUM
288 case ENOMEDIUM: return STATUS_NO_MEDIA_IN_DEVICE;
289 #endif
290 case ENXIO: return STATUS_NO_SUCH_DEVICE;
291 case ENOTTY:
292 case EOPNOTSUPP:return STATUS_NOT_SUPPORTED;
293 case ECONNRESET:return STATUS_PIPE_DISCONNECTED;
294 case EFAULT: return STATUS_ACCESS_VIOLATION;
295 case ESPIPE: return STATUS_ILLEGAL_FUNCTION;
296 case ENOEXEC: /* ?? */
297 case EEXIST: /* ?? */
298 default:
299 FIXME( "Converting errno %d to STATUS_UNSUCCESSFUL\n", err );
300 return STATUS_UNSUCCESSFUL;
304 /***********************************************************************
305 * FILE_AsyncReadService (INTERNAL)
307 static NTSTATUS FILE_AsyncReadService(void *user, PIO_STATUS_BLOCK iosb, NTSTATUS status)
309 async_fileio_read *fileio = user;
310 int fd, needs_close, result;
312 TRACE("%p %p 0x%x\n", iosb, fileio->buffer, status);
314 switch (status)
316 case STATUS_ALERTED: /* got some new data */
317 /* check to see if the data is ready (non-blocking) */
318 if ((status = server_get_unix_fd( fileio->handle, FILE_READ_DATA, &fd,
319 &needs_close, NULL, NULL )))
320 break;
322 result = read(fd, &fileio->buffer[fileio->already], fileio->count - fileio->already);
323 if (needs_close) close( fd );
325 if (result < 0)
327 if (errno == EAGAIN || errno == EINTR)
329 TRACE("Deferred read %d\n", errno);
330 status = STATUS_PENDING;
332 else /* check to see if the transfer is complete */
333 status = FILE_GetNtStatus();
335 else if (result == 0)
337 status = fileio->already ? STATUS_SUCCESS : STATUS_PIPE_BROKEN;
339 else
341 fileio->already += result;
342 if (fileio->already >= fileio->count || fileio->avail_mode)
343 status = STATUS_SUCCESS;
344 else
346 /* if we only have to read the available data, and none is available,
347 * simply cancel the request. If data was available, it has been read
348 * while in by previous call (NtDelayExecution)
350 status = (fileio->avail_mode) ? STATUS_SUCCESS : STATUS_PENDING;
353 TRACE("read %d more bytes %u/%u so far (%s)\n",
354 result, fileio->already, fileio->count,
355 (status == STATUS_SUCCESS) ? "success" : "pending");
357 break;
359 case STATUS_TIMEOUT:
360 case STATUS_IO_TIMEOUT:
361 if (fileio->already) status = STATUS_SUCCESS;
362 break;
364 if (status != STATUS_PENDING)
366 iosb->u.Status = status;
367 iosb->Information = fileio->already;
368 RtlFreeHeap( GetProcessHeap(), 0, fileio );
370 return status;
373 struct io_timeouts
375 int interval; /* max interval between two bytes */
376 int total; /* total timeout for the whole operation */
377 int end_time; /* absolute time of end of operation */
380 /* retrieve the I/O timeouts to use for a given handle */
381 static NTSTATUS get_io_timeouts( HANDLE handle, enum server_fd_type type, ULONG count, BOOL is_read,
382 struct io_timeouts *timeouts )
384 NTSTATUS status = STATUS_SUCCESS;
386 timeouts->interval = timeouts->total = -1;
388 switch(type)
390 case FD_TYPE_SERIAL:
392 /* GetCommTimeouts */
393 SERIAL_TIMEOUTS st;
394 IO_STATUS_BLOCK io;
396 status = NtDeviceIoControlFile( handle, NULL, NULL, NULL, &io,
397 IOCTL_SERIAL_GET_TIMEOUTS, NULL, 0, &st, sizeof(st) );
398 if (status) break;
400 if (is_read)
402 if (st.ReadIntervalTimeout)
403 timeouts->interval = st.ReadIntervalTimeout;
405 if (st.ReadTotalTimeoutMultiplier || st.ReadTotalTimeoutConstant)
407 timeouts->total = st.ReadTotalTimeoutConstant;
408 if (st.ReadTotalTimeoutMultiplier != MAXDWORD)
409 timeouts->total += count * st.ReadTotalTimeoutMultiplier;
411 else if (st.ReadIntervalTimeout == MAXDWORD)
412 timeouts->interval = 0;
414 else /* write */
416 if (st.WriteTotalTimeoutMultiplier || st.WriteTotalTimeoutConstant)
418 timeouts->total = st.WriteTotalTimeoutConstant;
419 if (st.WriteTotalTimeoutMultiplier != MAXDWORD)
420 timeouts->total += count * st.WriteTotalTimeoutMultiplier;
424 break;
425 case FD_TYPE_MAILSLOT:
426 if (is_read)
428 timeouts->interval = 0; /* return as soon as we got something */
429 SERVER_START_REQ( set_mailslot_info )
431 req->handle = handle;
432 req->flags = 0;
433 if (!(status = wine_server_call( req )) &&
434 reply->read_timeout != TIMEOUT_INFINITE)
435 timeouts->total = reply->read_timeout / -10000;
437 SERVER_END_REQ;
439 break;
440 case FD_TYPE_SOCKET:
441 case FD_TYPE_PIPE:
442 case FD_TYPE_CHAR:
443 if (is_read) timeouts->interval = 0; /* return as soon as we got something */
444 break;
445 default:
446 break;
448 if (timeouts->total != -1) timeouts->end_time = NtGetTickCount() + timeouts->total;
449 return STATUS_SUCCESS;
453 /* retrieve the timeout for the next wait, in milliseconds */
454 static inline int get_next_io_timeout( struct io_timeouts *timeouts, ULONG already )
456 int ret = -1;
458 if (timeouts->total != -1)
460 ret = timeouts->end_time - NtGetTickCount();
461 if (ret < 0) ret = 0;
463 if (already && timeouts->interval != -1)
465 if (ret == -1 || ret > timeouts->interval) ret = timeouts->interval;
467 return ret;
471 /* retrieve the avail_mode flag for async reads */
472 static NTSTATUS get_io_avail_mode( HANDLE handle, enum server_fd_type type, BOOL *avail_mode )
474 NTSTATUS status = STATUS_SUCCESS;
476 switch(type)
478 case FD_TYPE_SERIAL:
480 /* GetCommTimeouts */
481 SERIAL_TIMEOUTS st;
482 IO_STATUS_BLOCK io;
484 status = NtDeviceIoControlFile( handle, NULL, NULL, NULL, &io,
485 IOCTL_SERIAL_GET_TIMEOUTS, NULL, 0, &st, sizeof(st) );
486 if (status) break;
487 *avail_mode = (!st.ReadTotalTimeoutMultiplier &&
488 !st.ReadTotalTimeoutConstant &&
489 st.ReadIntervalTimeout == MAXDWORD);
491 break;
492 case FD_TYPE_MAILSLOT:
493 case FD_TYPE_SOCKET:
494 case FD_TYPE_PIPE:
495 case FD_TYPE_CHAR:
496 *avail_mode = TRUE;
497 break;
498 default:
499 *avail_mode = FALSE;
500 break;
502 return status;
506 /******************************************************************************
507 * NtReadFile [NTDLL.@]
508 * ZwReadFile [NTDLL.@]
510 * Read from an open file handle.
512 * PARAMS
513 * FileHandle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
514 * Event [I] Event to signal upon completion (or NULL)
515 * ApcRoutine [I] Callback to call upon completion (or NULL)
516 * ApcContext [I] Context for ApcRoutine (or NULL)
517 * IoStatusBlock [O] Receives information about the operation on return
518 * Buffer [O] Destination for the data read
519 * Length [I] Size of Buffer
520 * ByteOffset [O] Destination for the new file pointer position (or NULL)
521 * Key [O] Function unknown (may be NULL)
523 * RETURNS
524 * Success: 0. IoStatusBlock is updated, and the Information member contains
525 * The number of bytes read.
526 * Failure: An NTSTATUS error code describing the error.
528 NTSTATUS WINAPI NtReadFile(HANDLE hFile, HANDLE hEvent,
529 PIO_APC_ROUTINE apc, void* apc_user,
530 PIO_STATUS_BLOCK io_status, void* buffer, ULONG length,
531 PLARGE_INTEGER offset, PULONG key)
533 int result, unix_handle, needs_close, timeout_init_done = 0;
534 unsigned int options;
535 struct io_timeouts timeouts;
536 NTSTATUS status;
537 ULONG total = 0;
538 enum server_fd_type type;
540 TRACE("(%p,%p,%p,%p,%p,%p,0x%08x,%p,%p),partial stub!\n",
541 hFile,hEvent,apc,apc_user,io_status,buffer,length,offset,key);
543 if (!io_status) return STATUS_ACCESS_VIOLATION;
545 status = server_get_unix_fd( hFile, FILE_READ_DATA, &unix_handle,
546 &needs_close, &type, &options );
547 if (status) return status;
549 if (type == FD_TYPE_FILE && offset && offset->QuadPart != (LONGLONG)-2 /* FILE_USE_FILE_POINTER_POSITION */ )
551 /* async I/O doesn't make sense on regular files */
552 while ((result = pread( unix_handle, buffer, length, offset->QuadPart )) == -1)
554 if (errno != EINTR)
556 status = FILE_GetNtStatus();
557 goto done;
560 if (options & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT))
561 /* update file pointer position */
562 lseek( unix_handle, offset->QuadPart + result, SEEK_SET );
564 total = result;
565 status = total ? STATUS_SUCCESS : STATUS_END_OF_FILE;
566 goto done;
569 for (;;)
571 if ((result = read( unix_handle, (char *)buffer + total, length - total )) >= 0)
573 total += result;
574 if (!result || total == length)
576 if (total)
577 status = STATUS_SUCCESS;
578 else
579 status = (type == FD_TYPE_FILE) ? STATUS_END_OF_FILE : STATUS_PIPE_BROKEN;
580 goto done;
583 else
585 if (errno == EINTR) continue;
586 if (errno != EAGAIN)
588 status = FILE_GetNtStatus();
589 goto done;
593 if (!(options & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT)))
595 async_fileio_read *fileio;
596 BOOL avail_mode;
598 if ((status = get_io_avail_mode( hFile, type, &avail_mode )))
599 goto done;
600 if (total && avail_mode)
602 status = STATUS_SUCCESS;
603 goto done;
606 if (!(fileio = RtlAllocateHeap(GetProcessHeap(), 0, sizeof(*fileio))))
608 status = STATUS_NO_MEMORY;
609 goto done;
611 fileio->handle = hFile;
612 fileio->already = total;
613 fileio->count = length;
614 fileio->buffer = buffer;
615 fileio->avail_mode = avail_mode;
617 SERVER_START_REQ( register_async )
619 req->handle = hFile;
620 req->type = ASYNC_TYPE_READ;
621 req->count = length;
622 req->async.callback = FILE_AsyncReadService;
623 req->async.iosb = io_status;
624 req->async.arg = fileio;
625 req->async.apc = apc;
626 req->async.apc_arg = apc_user;
627 req->async.event = hEvent;
628 status = wine_server_call( req );
630 SERVER_END_REQ;
632 if (status != STATUS_PENDING) RtlFreeHeap( GetProcessHeap(), 0, fileio );
633 else NtCurrentTeb()->num_async_io++;
634 goto done;
636 else /* synchronous read, wait for the fd to become ready */
638 struct pollfd pfd;
639 int ret, timeout;
641 if (!timeout_init_done)
643 timeout_init_done = 1;
644 if ((status = get_io_timeouts( hFile, type, length, TRUE, &timeouts )))
645 goto done;
646 if (hEvent) NtResetEvent( hEvent, NULL );
648 timeout = get_next_io_timeout( &timeouts, total );
650 pfd.fd = unix_handle;
651 pfd.events = POLLIN;
653 if (!timeout || !(ret = poll( &pfd, 1, timeout )))
655 if (total) /* return with what we got so far */
656 status = STATUS_SUCCESS;
657 else
658 status = (type == FD_TYPE_MAILSLOT) ? STATUS_IO_TIMEOUT : STATUS_TIMEOUT;
659 goto done;
661 if (ret == -1 && errno != EINTR)
663 status = FILE_GetNtStatus();
664 goto done;
666 /* will now restart the read */
670 done:
671 if (needs_close) close( unix_handle );
672 if (status == STATUS_SUCCESS)
674 io_status->u.Status = status;
675 io_status->Information = total;
676 TRACE("= SUCCESS (%u)\n", total);
677 if (hEvent) NtSetEvent( hEvent, NULL );
678 if (apc) NtQueueApcThread( GetCurrentThread(), (PNTAPCFUNC)apc,
679 (ULONG_PTR)apc_user, (ULONG_PTR)io_status, 0 );
681 else
683 TRACE("= 0x%08x\n", status);
684 if (status != STATUS_PENDING && hEvent) NtResetEvent( hEvent, NULL );
686 return status;
689 /***********************************************************************
690 * FILE_AsyncWriteService (INTERNAL)
692 static NTSTATUS FILE_AsyncWriteService(void *user, IO_STATUS_BLOCK *iosb, NTSTATUS status)
694 async_fileio_write *fileio = user;
695 int result, fd, needs_close;
696 enum server_fd_type type;
698 TRACE("(%p %p 0x%x)\n",iosb, fileio->buffer, status);
700 switch (status)
702 case STATUS_ALERTED:
703 /* write some data (non-blocking) */
704 if ((status = server_get_unix_fd( fileio->handle, FILE_WRITE_DATA, &fd,
705 &needs_close, &type, NULL )))
706 break;
708 if (!fileio->count && (type == FD_TYPE_MAILSLOT || type == FD_TYPE_PIPE || type == FD_TYPE_SOCKET))
709 result = send( fd, fileio->buffer, 0, 0 );
710 else
711 result = write( fd, &fileio->buffer[fileio->already], fileio->count - fileio->already );
713 if (needs_close) close( fd );
715 if (result < 0)
717 if (errno == EAGAIN || errno == EINTR) status = STATUS_PENDING;
718 else status = FILE_GetNtStatus();
720 else
722 fileio->already += result;
723 status = (fileio->already < fileio->count) ? STATUS_PENDING : STATUS_SUCCESS;
724 TRACE("wrote %d more bytes %u/%u so far\n", result, fileio->already, fileio->count);
726 break;
728 case STATUS_TIMEOUT:
729 case STATUS_IO_TIMEOUT:
730 if (fileio->already) status = STATUS_SUCCESS;
731 break;
733 if (status != STATUS_PENDING)
735 iosb->u.Status = status;
736 iosb->Information = fileio->already;
737 RtlFreeHeap( GetProcessHeap(), 0, fileio );
739 return status;
742 /******************************************************************************
743 * NtWriteFile [NTDLL.@]
744 * ZwWriteFile [NTDLL.@]
746 * Write to an open file handle.
748 * PARAMS
749 * FileHandle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
750 * Event [I] Event to signal upon completion (or NULL)
751 * ApcRoutine [I] Callback to call upon completion (or NULL)
752 * ApcContext [I] Context for ApcRoutine (or NULL)
753 * IoStatusBlock [O] Receives information about the operation on return
754 * Buffer [I] Source for the data to write
755 * Length [I] Size of Buffer
756 * ByteOffset [O] Destination for the new file pointer position (or NULL)
757 * Key [O] Function unknown (may be NULL)
759 * RETURNS
760 * Success: 0. IoStatusBlock is updated, and the Information member contains
761 * The number of bytes written.
762 * Failure: An NTSTATUS error code describing the error.
764 NTSTATUS WINAPI NtWriteFile(HANDLE hFile, HANDLE hEvent,
765 PIO_APC_ROUTINE apc, void* apc_user,
766 PIO_STATUS_BLOCK io_status,
767 const void* buffer, ULONG length,
768 PLARGE_INTEGER offset, PULONG key)
770 int result, unix_handle, needs_close, timeout_init_done = 0;
771 unsigned int options;
772 struct io_timeouts timeouts;
773 NTSTATUS status;
774 ULONG total = 0;
775 enum server_fd_type type;
777 TRACE("(%p,%p,%p,%p,%p,%p,0x%08x,%p,%p)!\n",
778 hFile,hEvent,apc,apc_user,io_status,buffer,length,offset,key);
780 if (!io_status) return STATUS_ACCESS_VIOLATION;
782 status = server_get_unix_fd( hFile, FILE_WRITE_DATA, &unix_handle,
783 &needs_close, &type, &options );
784 if (status) return status;
786 if (type == FD_TYPE_FILE && offset && offset->QuadPart != (LONGLONG)-2 /* FILE_USE_FILE_POINTER_POSITION */ )
788 /* async I/O doesn't make sense on regular files */
789 while ((result = pwrite( unix_handle, buffer, length, offset->QuadPart )) == -1)
791 if (errno != EINTR)
793 if (errno == EFAULT) status = STATUS_INVALID_USER_BUFFER;
794 else status = FILE_GetNtStatus();
795 goto done;
799 if (options & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT))
800 /* update file pointer position */
801 lseek( unix_handle, offset->QuadPart + result, SEEK_SET );
803 total = result;
804 status = STATUS_SUCCESS;
805 goto done;
808 for (;;)
810 /* zero-length writes on sockets may not work with plain write(2) */
811 if (!length && (type == FD_TYPE_MAILSLOT || type == FD_TYPE_PIPE || type == FD_TYPE_SOCKET))
812 result = send( unix_handle, buffer, 0, 0 );
813 else
814 result = write( unix_handle, (const char *)buffer + total, length - total );
816 if (result >= 0)
818 total += result;
819 if (total == length)
821 status = STATUS_SUCCESS;
822 goto done;
825 else
827 if (errno == EINTR) continue;
828 if (errno != EAGAIN)
830 if (errno == EFAULT) status = STATUS_INVALID_USER_BUFFER;
831 else status = FILE_GetNtStatus();
832 goto done;
836 if (!(options & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT)))
838 async_fileio_write *fileio;
840 if (!(fileio = RtlAllocateHeap(GetProcessHeap(), 0, sizeof(*fileio))))
842 status = STATUS_NO_MEMORY;
843 goto done;
845 fileio->handle = hFile;
846 fileio->already = total;
847 fileio->count = length;
848 fileio->buffer = buffer;
850 SERVER_START_REQ( register_async )
852 req->handle = hFile;
853 req->type = ASYNC_TYPE_WRITE;
854 req->count = length;
855 req->async.callback = FILE_AsyncWriteService;
856 req->async.iosb = io_status;
857 req->async.arg = fileio;
858 req->async.apc = apc;
859 req->async.apc_arg = apc_user;
860 req->async.event = hEvent;
861 status = wine_server_call( req );
863 SERVER_END_REQ;
865 if (status != STATUS_PENDING) RtlFreeHeap( GetProcessHeap(), 0, fileio );
866 else NtCurrentTeb()->num_async_io++;
867 goto done;
869 else /* synchronous write, wait for the fd to become ready */
871 struct pollfd pfd;
872 int ret, timeout;
874 if (!timeout_init_done)
876 timeout_init_done = 1;
877 if ((status = get_io_timeouts( hFile, type, length, FALSE, &timeouts )))
878 goto done;
879 if (hEvent) NtResetEvent( hEvent, NULL );
881 timeout = get_next_io_timeout( &timeouts, total );
883 pfd.fd = unix_handle;
884 pfd.events = POLLIN;
886 if (!timeout || !(ret = poll( &pfd, 1, timeout )))
888 /* return with what we got so far */
889 status = total ? STATUS_SUCCESS : STATUS_TIMEOUT;
890 goto done;
892 if (ret == -1 && errno != EINTR)
894 status = FILE_GetNtStatus();
895 goto done;
897 /* will now restart the write */
901 done:
902 if (needs_close) close( unix_handle );
903 if (status == STATUS_SUCCESS)
905 io_status->u.Status = status;
906 io_status->Information = total;
907 TRACE("= SUCCESS (%u)\n", total);
908 if (hEvent) NtSetEvent( hEvent, NULL );
909 if (apc) NtQueueApcThread( GetCurrentThread(), (PNTAPCFUNC)apc,
910 (ULONG_PTR)apc_user, (ULONG_PTR)io_status, 0 );
912 else
914 TRACE("= 0x%08x\n", status);
915 if (status != STATUS_PENDING && hEvent) NtResetEvent( hEvent, NULL );
917 return status;
921 /* callback for ioctl async I/O completion */
922 static NTSTATUS ioctl_completion( void *arg, IO_STATUS_BLOCK *io, NTSTATUS status )
924 io->u.Status = status;
925 return status;
928 /* do a ioctl call through the server */
929 static NTSTATUS server_ioctl_file( HANDLE handle, HANDLE event,
930 PIO_APC_ROUTINE apc, PVOID apc_context,
931 IO_STATUS_BLOCK *io, ULONG code,
932 PVOID in_buffer, ULONG in_size,
933 PVOID out_buffer, ULONG out_size )
935 NTSTATUS status;
936 HANDLE wait_handle;
937 ULONG options;
939 SERVER_START_REQ( ioctl )
941 req->handle = handle;
942 req->code = code;
943 req->async.callback = ioctl_completion;
944 req->async.iosb = io;
945 req->async.arg = NULL;
946 req->async.apc = apc;
947 req->async.apc_arg = apc_context;
948 req->async.event = event;
949 wine_server_add_data( req, in_buffer, in_size );
950 wine_server_set_reply( req, out_buffer, out_size );
951 if (!(status = wine_server_call( req )))
952 io->Information = wine_server_reply_size( reply );
953 wait_handle = reply->wait;
954 options = reply->options;
956 SERVER_END_REQ;
958 if (status == STATUS_NOT_SUPPORTED)
959 FIXME("Unsupported ioctl %x (device=%x access=%x func=%x method=%x)\n",
960 code, code >> 16, (code >> 14) & 3, (code >> 2) & 0xfff, code & 3);
962 if (wait_handle)
964 NtWaitForSingleObject( wait_handle, (options & FILE_SYNCHRONOUS_IO_ALERT), NULL );
965 status = io->u.Status;
966 NtClose( wait_handle );
969 return status;
973 /**************************************************************************
974 * NtDeviceIoControlFile [NTDLL.@]
975 * ZwDeviceIoControlFile [NTDLL.@]
977 * Perform an I/O control operation on an open file handle.
979 * PARAMS
980 * handle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
981 * event [I] Event to signal upon completion (or NULL)
982 * apc [I] Callback to call upon completion (or NULL)
983 * apc_context [I] Context for ApcRoutine (or NULL)
984 * io [O] Receives information about the operation on return
985 * code [I] Control code for the operation to perform
986 * in_buffer [I] Source for any input data required (or NULL)
987 * in_size [I] Size of InputBuffer
988 * out_buffer [O] Source for any output data returned (or NULL)
989 * out_size [I] Size of OutputBuffer
991 * RETURNS
992 * Success: 0. IoStatusBlock is updated.
993 * Failure: An NTSTATUS error code describing the error.
995 NTSTATUS WINAPI NtDeviceIoControlFile(HANDLE handle, HANDLE event,
996 PIO_APC_ROUTINE apc, PVOID apc_context,
997 PIO_STATUS_BLOCK io, ULONG code,
998 PVOID in_buffer, ULONG in_size,
999 PVOID out_buffer, ULONG out_size)
1001 ULONG device = (code >> 16);
1002 NTSTATUS status;
1004 TRACE("(%p,%p,%p,%p,%p,0x%08x,%p,0x%08x,%p,0x%08x)\n",
1005 handle, event, apc, apc_context, io, code,
1006 in_buffer, in_size, out_buffer, out_size);
1008 switch(device)
1010 case FILE_DEVICE_DISK:
1011 case FILE_DEVICE_CD_ROM:
1012 case FILE_DEVICE_DVD:
1013 case FILE_DEVICE_CONTROLLER:
1014 case FILE_DEVICE_MASS_STORAGE:
1015 status = CDROM_DeviceIoControl(handle, event, apc, apc_context, io, code,
1016 in_buffer, in_size, out_buffer, out_size);
1017 break;
1018 case FILE_DEVICE_SERIAL_PORT:
1019 status = COMM_DeviceIoControl(handle, event, apc, apc_context, io, code,
1020 in_buffer, in_size, out_buffer, out_size);
1021 break;
1022 case FILE_DEVICE_TAPE:
1023 status = TAPE_DeviceIoControl(handle, event, apc, apc_context, io, code,
1024 in_buffer, in_size, out_buffer, out_size);
1025 break;
1026 default:
1027 status = server_ioctl_file( handle, event, apc, apc_context, io, code,
1028 in_buffer, in_size, out_buffer, out_size );
1029 break;
1031 if (status != STATUS_PENDING) io->u.Status = status;
1032 return status;
1036 /**************************************************************************
1037 * NtFsControlFile [NTDLL.@]
1038 * ZwFsControlFile [NTDLL.@]
1040 * Perform a file system control operation on an open file handle.
1042 * PARAMS
1043 * handle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
1044 * event [I] Event to signal upon completion (or NULL)
1045 * apc [I] Callback to call upon completion (or NULL)
1046 * apc_context [I] Context for ApcRoutine (or NULL)
1047 * io [O] Receives information about the operation on return
1048 * code [I] Control code for the operation to perform
1049 * in_buffer [I] Source for any input data required (or NULL)
1050 * in_size [I] Size of InputBuffer
1051 * out_buffer [O] Source for any output data returned (or NULL)
1052 * out_size [I] Size of OutputBuffer
1054 * RETURNS
1055 * Success: 0. IoStatusBlock is updated.
1056 * Failure: An NTSTATUS error code describing the error.
1058 NTSTATUS WINAPI NtFsControlFile(HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc,
1059 PVOID apc_context, PIO_STATUS_BLOCK io, ULONG code,
1060 PVOID in_buffer, ULONG in_size, PVOID out_buffer, ULONG out_size)
1062 NTSTATUS status;
1064 TRACE("(%p,%p,%p,%p,%p,0x%08x,%p,0x%08x,%p,0x%08x)\n",
1065 handle, event, apc, apc_context, io, code,
1066 in_buffer, in_size, out_buffer, out_size);
1068 if (!io) return STATUS_INVALID_PARAMETER;
1070 switch(code)
1072 case FSCTL_DISMOUNT_VOLUME:
1073 status = server_ioctl_file( handle, event, apc, apc_context, io, code,
1074 in_buffer, in_size, out_buffer, out_size );
1075 if (!status) status = DIR_unmount_device( handle );
1076 break;
1078 case FSCTL_PIPE_LISTEN:
1079 case FSCTL_PIPE_WAIT:
1081 HANDLE internal_event = 0;
1083 if(!event && !apc)
1085 status = NtCreateEvent(&internal_event, EVENT_ALL_ACCESS, NULL, FALSE, FALSE);
1086 if (status != STATUS_SUCCESS) break;
1087 event = internal_event;
1089 status = server_ioctl_file( handle, event, apc, apc_context, io, code,
1090 in_buffer, in_size, out_buffer, out_size );
1092 if (internal_event && status == STATUS_PENDING)
1094 while (NtWaitForSingleObject(internal_event, TRUE, NULL) == STATUS_USER_APC) /*nothing*/ ;
1095 status = io->u.Status;
1097 if (internal_event) NtClose(internal_event);
1099 break;
1101 case FSCTL_PIPE_PEEK:
1103 FILE_PIPE_PEEK_BUFFER *buffer = out_buffer;
1104 int avail = 0, fd, needs_close;
1106 if (out_size < FIELD_OFFSET( FILE_PIPE_PEEK_BUFFER, Data ))
1108 status = STATUS_INFO_LENGTH_MISMATCH;
1109 break;
1112 if ((status = server_get_unix_fd( handle, FILE_READ_DATA, &fd, &needs_close, NULL, NULL )))
1113 break;
1115 #ifdef FIONREAD
1116 if (ioctl( fd, FIONREAD, &avail ) != 0)
1118 TRACE("FIONREAD failed reason: %s\n",strerror(errno));
1119 if (needs_close) close( fd );
1120 status = FILE_GetNtStatus();
1121 break;
1123 #endif
1124 if (!avail) /* check for closed pipe */
1126 struct pollfd pollfd;
1127 int ret;
1129 pollfd.fd = fd;
1130 pollfd.events = POLLIN;
1131 pollfd.revents = 0;
1132 ret = poll( &pollfd, 1, 0 );
1133 if (ret == -1 || (ret == 1 && (pollfd.revents & (POLLHUP|POLLERR))))
1135 if (needs_close) close( fd );
1136 status = STATUS_PIPE_BROKEN;
1137 break;
1140 buffer->NamedPipeState = 0; /* FIXME */
1141 buffer->ReadDataAvailable = avail;
1142 buffer->NumberOfMessages = 0; /* FIXME */
1143 buffer->MessageLength = 0; /* FIXME */
1144 io->Information = FIELD_OFFSET( FILE_PIPE_PEEK_BUFFER, Data );
1145 status = STATUS_SUCCESS;
1146 if (avail)
1148 ULONG data_size = out_size - FIELD_OFFSET( FILE_PIPE_PEEK_BUFFER, Data );
1149 if (data_size)
1151 int res = recv( fd, buffer->Data, data_size, MSG_PEEK );
1152 if (res >= 0) io->Information += res;
1155 if (needs_close) close( fd );
1157 break;
1159 case FSCTL_PIPE_DISCONNECT:
1160 status = server_ioctl_file( handle, event, apc, apc_context, io, code,
1161 in_buffer, in_size, out_buffer, out_size );
1162 if (!status)
1164 int fd = server_remove_fd_from_cache( handle );
1165 if (fd != -1) close( fd );
1167 break;
1169 case FSCTL_LOCK_VOLUME:
1170 case FSCTL_UNLOCK_VOLUME:
1171 FIXME("stub! return success - Unsupported fsctl %x (device=%x access=%x func=%x method=%x)\n",
1172 code, code >> 16, (code >> 14) & 3, (code >> 2) & 0xfff, code & 3);
1173 status = STATUS_SUCCESS;
1174 break;
1176 default:
1177 status = server_ioctl_file( handle, event, apc, apc_context, io, code,
1178 in_buffer, in_size, out_buffer, out_size );
1179 break;
1182 if (status != STATUS_PENDING) io->u.Status = status;
1183 return status;
1186 /******************************************************************************
1187 * NtSetVolumeInformationFile [NTDLL.@]
1188 * ZwSetVolumeInformationFile [NTDLL.@]
1190 * Set volume information for an open file handle.
1192 * PARAMS
1193 * FileHandle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
1194 * IoStatusBlock [O] Receives information about the operation on return
1195 * FsInformation [I] Source for volume information
1196 * Length [I] Size of FsInformation
1197 * FsInformationClass [I] Type of volume information to set
1199 * RETURNS
1200 * Success: 0. IoStatusBlock is updated.
1201 * Failure: An NTSTATUS error code describing the error.
1203 NTSTATUS WINAPI NtSetVolumeInformationFile(
1204 IN HANDLE FileHandle,
1205 PIO_STATUS_BLOCK IoStatusBlock,
1206 PVOID FsInformation,
1207 ULONG Length,
1208 FS_INFORMATION_CLASS FsInformationClass)
1210 FIXME("(%p,%p,%p,0x%08x,0x%08x) stub\n",
1211 FileHandle,IoStatusBlock,FsInformation,Length,FsInformationClass);
1212 return 0;
1215 /******************************************************************************
1216 * NtQueryInformationFile [NTDLL.@]
1217 * ZwQueryInformationFile [NTDLL.@]
1219 * Get information about an open file handle.
1221 * PARAMS
1222 * hFile [I] Handle returned from ZwOpenFile() or ZwCreateFile()
1223 * io [O] Receives information about the operation on return
1224 * ptr [O] Destination for file information
1225 * len [I] Size of FileInformation
1226 * class [I] Type of file information to get
1228 * RETURNS
1229 * Success: 0. IoStatusBlock and FileInformation are updated.
1230 * Failure: An NTSTATUS error code describing the error.
1232 NTSTATUS WINAPI NtQueryInformationFile( HANDLE hFile, PIO_STATUS_BLOCK io,
1233 PVOID ptr, LONG len, FILE_INFORMATION_CLASS class )
1235 static const size_t info_sizes[] =
1238 sizeof(FILE_DIRECTORY_INFORMATION), /* FileDirectoryInformation */
1239 sizeof(FILE_FULL_DIRECTORY_INFORMATION), /* FileFullDirectoryInformation */
1240 sizeof(FILE_BOTH_DIRECTORY_INFORMATION), /* FileBothDirectoryInformation */
1241 sizeof(FILE_BASIC_INFORMATION), /* FileBasicInformation */
1242 sizeof(FILE_STANDARD_INFORMATION), /* FileStandardInformation */
1243 sizeof(FILE_INTERNAL_INFORMATION), /* FileInternalInformation */
1244 sizeof(FILE_EA_INFORMATION), /* FileEaInformation */
1245 sizeof(FILE_ACCESS_INFORMATION), /* FileAccessInformation */
1246 sizeof(FILE_NAME_INFORMATION)-sizeof(WCHAR), /* FileNameInformation */
1247 sizeof(FILE_RENAME_INFORMATION)-sizeof(WCHAR), /* FileRenameInformation */
1248 0, /* FileLinkInformation */
1249 sizeof(FILE_NAMES_INFORMATION)-sizeof(WCHAR), /* FileNamesInformation */
1250 sizeof(FILE_DISPOSITION_INFORMATION), /* FileDispositionInformation */
1251 sizeof(FILE_POSITION_INFORMATION), /* FilePositionInformation */
1252 sizeof(FILE_FULL_EA_INFORMATION), /* FileFullEaInformation */
1253 sizeof(FILE_MODE_INFORMATION), /* FileModeInformation */
1254 sizeof(FILE_ALIGNMENT_INFORMATION), /* FileAlignmentInformation */
1255 sizeof(FILE_ALL_INFORMATION)-sizeof(WCHAR), /* FileAllInformation */
1256 sizeof(FILE_ALLOCATION_INFORMATION), /* FileAllocationInformation */
1257 sizeof(FILE_END_OF_FILE_INFORMATION), /* FileEndOfFileInformation */
1258 0, /* FileAlternateNameInformation */
1259 sizeof(FILE_STREAM_INFORMATION)-sizeof(WCHAR), /* FileStreamInformation */
1260 0, /* FilePipeInformation */
1261 sizeof(FILE_PIPE_LOCAL_INFORMATION), /* FilePipeLocalInformation */
1262 0, /* FilePipeRemoteInformation */
1263 sizeof(FILE_MAILSLOT_QUERY_INFORMATION), /* FileMailslotQueryInformation */
1264 0, /* FileMailslotSetInformation */
1265 0, /* FileCompressionInformation */
1266 0, /* FileObjectIdInformation */
1267 0, /* FileCompletionInformation */
1268 0, /* FileMoveClusterInformation */
1269 0, /* FileQuotaInformation */
1270 0, /* FileReparsePointInformation */
1271 0, /* FileNetworkOpenInformation */
1272 0, /* FileAttributeTagInformation */
1273 0 /* FileTrackingInformation */
1276 struct stat st;
1277 int fd, needs_close = FALSE;
1279 TRACE("(%p,%p,%p,0x%08x,0x%08x)\n", hFile, io, ptr, len, class);
1281 io->Information = 0;
1283 if (class <= 0 || class >= FileMaximumInformation)
1284 return io->u.Status = STATUS_INVALID_INFO_CLASS;
1285 if (!info_sizes[class])
1287 FIXME("Unsupported class (%d)\n", class);
1288 return io->u.Status = STATUS_NOT_IMPLEMENTED;
1290 if (len < info_sizes[class])
1291 return io->u.Status = STATUS_INFO_LENGTH_MISMATCH;
1293 if (class != FilePipeLocalInformation)
1295 if ((io->u.Status = server_get_unix_fd( hFile, 0, &fd, &needs_close, NULL, NULL )))
1296 return io->u.Status;
1299 switch (class)
1301 case FileBasicInformation:
1303 FILE_BASIC_INFORMATION *info = ptr;
1305 if (fstat( fd, &st ) == -1)
1306 io->u.Status = FILE_GetNtStatus();
1307 else if (!S_ISREG(st.st_mode) && !S_ISDIR(st.st_mode))
1308 io->u.Status = STATUS_INVALID_INFO_CLASS;
1309 else
1311 if (S_ISDIR(st.st_mode)) info->FileAttributes = FILE_ATTRIBUTE_DIRECTORY;
1312 else info->FileAttributes = FILE_ATTRIBUTE_ARCHIVE;
1313 if (!(st.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH)))
1314 info->FileAttributes |= FILE_ATTRIBUTE_READONLY;
1315 RtlSecondsSince1970ToTime( st.st_mtime, &info->CreationTime);
1316 RtlSecondsSince1970ToTime( st.st_mtime, &info->LastWriteTime);
1317 RtlSecondsSince1970ToTime( st.st_ctime, &info->ChangeTime);
1318 RtlSecondsSince1970ToTime( st.st_atime, &info->LastAccessTime);
1321 break;
1322 case FileStandardInformation:
1324 FILE_STANDARD_INFORMATION *info = ptr;
1326 if (fstat( fd, &st ) == -1) io->u.Status = FILE_GetNtStatus();
1327 else
1329 if ((info->Directory = S_ISDIR(st.st_mode)))
1331 info->AllocationSize.QuadPart = 0;
1332 info->EndOfFile.QuadPart = 0;
1333 info->NumberOfLinks = 1;
1334 info->DeletePending = FALSE;
1336 else
1338 info->AllocationSize.QuadPart = (ULONGLONG)st.st_blocks * 512;
1339 info->EndOfFile.QuadPart = st.st_size;
1340 info->NumberOfLinks = st.st_nlink;
1341 info->DeletePending = FALSE; /* FIXME */
1345 break;
1346 case FilePositionInformation:
1348 FILE_POSITION_INFORMATION *info = ptr;
1349 off_t res = lseek( fd, 0, SEEK_CUR );
1350 if (res == (off_t)-1) io->u.Status = FILE_GetNtStatus();
1351 else info->CurrentByteOffset.QuadPart = res;
1353 break;
1354 case FileInternalInformation:
1356 FILE_INTERNAL_INFORMATION *info = ptr;
1358 if (fstat( fd, &st ) == -1) io->u.Status = FILE_GetNtStatus();
1359 else info->IndexNumber.QuadPart = st.st_ino;
1361 break;
1362 case FileEaInformation:
1364 FILE_EA_INFORMATION *info = ptr;
1365 info->EaSize = 0;
1367 break;
1368 case FileEndOfFileInformation:
1370 FILE_END_OF_FILE_INFORMATION *info = ptr;
1372 if (fstat( fd, &st ) == -1) io->u.Status = FILE_GetNtStatus();
1373 else info->EndOfFile.QuadPart = S_ISDIR(st.st_mode) ? 0 : st.st_size;
1375 break;
1376 case FileAllInformation:
1378 FILE_ALL_INFORMATION *info = ptr;
1380 if (fstat( fd, &st ) == -1) io->u.Status = FILE_GetNtStatus();
1381 else if (!S_ISREG(st.st_mode) && !S_ISDIR(st.st_mode))
1382 io->u.Status = STATUS_INVALID_INFO_CLASS;
1383 else
1385 if ((info->StandardInformation.Directory = S_ISDIR(st.st_mode)))
1387 info->BasicInformation.FileAttributes = FILE_ATTRIBUTE_DIRECTORY;
1388 info->StandardInformation.AllocationSize.QuadPart = 0;
1389 info->StandardInformation.EndOfFile.QuadPart = 0;
1390 info->StandardInformation.NumberOfLinks = 1;
1391 info->StandardInformation.DeletePending = FALSE;
1393 else
1395 info->BasicInformation.FileAttributes = FILE_ATTRIBUTE_ARCHIVE;
1396 info->StandardInformation.AllocationSize.QuadPart = (ULONGLONG)st.st_blocks * 512;
1397 info->StandardInformation.EndOfFile.QuadPart = st.st_size;
1398 info->StandardInformation.NumberOfLinks = st.st_nlink;
1399 info->StandardInformation.DeletePending = FALSE; /* FIXME */
1401 if (!(st.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH)))
1402 info->BasicInformation.FileAttributes |= FILE_ATTRIBUTE_READONLY;
1403 RtlSecondsSince1970ToTime( st.st_mtime, &info->BasicInformation.CreationTime);
1404 RtlSecondsSince1970ToTime( st.st_mtime, &info->BasicInformation.LastWriteTime);
1405 RtlSecondsSince1970ToTime( st.st_ctime, &info->BasicInformation.ChangeTime);
1406 RtlSecondsSince1970ToTime( st.st_atime, &info->BasicInformation.LastAccessTime);
1407 info->InternalInformation.IndexNumber.QuadPart = st.st_ino;
1408 info->EaInformation.EaSize = 0;
1409 info->AccessInformation.AccessFlags = 0; /* FIXME */
1410 info->PositionInformation.CurrentByteOffset.QuadPart = lseek( fd, 0, SEEK_CUR );
1411 info->ModeInformation.Mode = 0; /* FIXME */
1412 info->AlignmentInformation.AlignmentRequirement = 1; /* FIXME */
1413 info->NameInformation.FileNameLength = 0;
1414 io->Information = sizeof(*info) - sizeof(WCHAR);
1417 break;
1418 case FileMailslotQueryInformation:
1420 FILE_MAILSLOT_QUERY_INFORMATION *info = ptr;
1422 SERVER_START_REQ( set_mailslot_info )
1424 req->handle = hFile;
1425 req->flags = 0;
1426 io->u.Status = wine_server_call( req );
1427 if( io->u.Status == STATUS_SUCCESS )
1429 info->MaximumMessageSize = reply->max_msgsize;
1430 info->MailslotQuota = 0;
1431 info->NextMessageSize = 0;
1432 info->MessagesAvailable = 0;
1433 info->ReadTimeout.QuadPart = reply->read_timeout;
1436 SERVER_END_REQ;
1437 if (!io->u.Status)
1439 ULONG size = info->MaximumMessageSize ? info->MaximumMessageSize : 0x10000;
1440 char *tmpbuf = RtlAllocateHeap( GetProcessHeap(), 0, size );
1441 if (tmpbuf)
1443 int fd, needs_close;
1444 if (!server_get_unix_fd( hFile, FILE_READ_DATA, &fd, &needs_close, NULL, NULL ))
1446 int res = recv( fd, tmpbuf, size, MSG_PEEK );
1447 info->MessagesAvailable = (res > 0);
1448 info->NextMessageSize = (res >= 0) ? res : MAILSLOT_NO_MESSAGE;
1449 if (needs_close) close( fd );
1451 RtlFreeHeap( GetProcessHeap(), 0, tmpbuf );
1455 break;
1456 case FilePipeLocalInformation:
1458 FILE_PIPE_LOCAL_INFORMATION* pli = ptr;
1460 SERVER_START_REQ( get_named_pipe_info )
1462 req->handle = hFile;
1463 if (!(io->u.Status = wine_server_call( req )))
1465 pli->NamedPipeType = (reply->flags & NAMED_PIPE_MESSAGE_STREAM_WRITE) ?
1466 FILE_PIPE_TYPE_MESSAGE : FILE_PIPE_TYPE_BYTE;
1467 pli->NamedPipeConfiguration = 0; /* FIXME */
1468 pli->MaximumInstances = reply->maxinstances;
1469 pli->CurrentInstances = reply->instances;
1470 pli->InboundQuota = reply->insize;
1471 pli->ReadDataAvailable = 0; /* FIXME */
1472 pli->OutboundQuota = reply->outsize;
1473 pli->WriteQuotaAvailable = 0; /* FIXME */
1474 pli->NamedPipeState = 0; /* FIXME */
1475 pli->NamedPipeEnd = (reply->flags & NAMED_PIPE_SERVER_END) ?
1476 FILE_PIPE_SERVER_END : FILE_PIPE_CLIENT_END;
1479 SERVER_END_REQ;
1481 break;
1482 default:
1483 FIXME("Unsupported class (%d)\n", class);
1484 io->u.Status = STATUS_NOT_IMPLEMENTED;
1485 break;
1487 if (needs_close) close( fd );
1488 if (io->u.Status == STATUS_SUCCESS && !io->Information) io->Information = info_sizes[class];
1489 return io->u.Status;
1492 /******************************************************************************
1493 * NtSetInformationFile [NTDLL.@]
1494 * ZwSetInformationFile [NTDLL.@]
1496 * Set information about an open file handle.
1498 * PARAMS
1499 * handle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
1500 * io [O] Receives information about the operation on return
1501 * ptr [I] Source for file information
1502 * len [I] Size of FileInformation
1503 * class [I] Type of file information to set
1505 * RETURNS
1506 * Success: 0. io is updated.
1507 * Failure: An NTSTATUS error code describing the error.
1509 NTSTATUS WINAPI NtSetInformationFile(HANDLE handle, PIO_STATUS_BLOCK io,
1510 PVOID ptr, ULONG len, FILE_INFORMATION_CLASS class)
1512 int fd, needs_close;
1514 TRACE("(%p,%p,%p,0x%08x,0x%08x)\n", handle, io, ptr, len, class);
1516 if ((io->u.Status = server_get_unix_fd( handle, 0, &fd, &needs_close, NULL, NULL )))
1517 return io->u.Status;
1519 io->u.Status = STATUS_SUCCESS;
1520 switch (class)
1522 case FileBasicInformation:
1523 if (len >= sizeof(FILE_BASIC_INFORMATION))
1525 struct stat st;
1526 const FILE_BASIC_INFORMATION *info = ptr;
1528 if (info->LastAccessTime.QuadPart || info->LastWriteTime.QuadPart)
1530 ULONGLONG sec, nsec;
1531 struct timeval tv[2];
1533 if (!info->LastAccessTime.QuadPart || !info->LastWriteTime.QuadPart)
1536 tv[0].tv_sec = tv[0].tv_usec = 0;
1537 tv[1].tv_sec = tv[1].tv_usec = 0;
1538 if (!fstat( fd, &st ))
1540 tv[0].tv_sec = st.st_atime;
1541 tv[1].tv_sec = st.st_mtime;
1544 if (info->LastAccessTime.QuadPart)
1546 sec = RtlLargeIntegerDivide( info->LastAccessTime.QuadPart, 10000000, &nsec );
1547 tv[0].tv_sec = sec - SECS_1601_TO_1970;
1548 tv[0].tv_usec = (UINT)nsec / 10;
1550 if (info->LastWriteTime.QuadPart)
1552 sec = RtlLargeIntegerDivide( info->LastWriteTime.QuadPart, 10000000, &nsec );
1553 tv[1].tv_sec = sec - SECS_1601_TO_1970;
1554 tv[1].tv_usec = (UINT)nsec / 10;
1556 if (futimes( fd, tv ) == -1) io->u.Status = FILE_GetNtStatus();
1559 if (io->u.Status == STATUS_SUCCESS && info->FileAttributes)
1561 if (fstat( fd, &st ) == -1) io->u.Status = FILE_GetNtStatus();
1562 else
1564 if (info->FileAttributes & FILE_ATTRIBUTE_READONLY)
1566 if (S_ISDIR( st.st_mode))
1567 WARN("FILE_ATTRIBUTE_READONLY ignored for directory.\n");
1568 else
1569 st.st_mode &= ~0222; /* clear write permission bits */
1571 else
1573 /* add write permission only where we already have read permission */
1574 st.st_mode |= (0600 | ((st.st_mode & 044) >> 1)) & (~FILE_umask);
1576 if (fchmod( fd, st.st_mode ) == -1) io->u.Status = FILE_GetNtStatus();
1580 else io->u.Status = STATUS_INVALID_PARAMETER_3;
1581 break;
1583 case FilePositionInformation:
1584 if (len >= sizeof(FILE_POSITION_INFORMATION))
1586 const FILE_POSITION_INFORMATION *info = ptr;
1588 if (lseek( fd, info->CurrentByteOffset.QuadPart, SEEK_SET ) == (off_t)-1)
1589 io->u.Status = FILE_GetNtStatus();
1591 else io->u.Status = STATUS_INVALID_PARAMETER_3;
1592 break;
1594 case FileEndOfFileInformation:
1595 if (len >= sizeof(FILE_END_OF_FILE_INFORMATION))
1597 struct stat st;
1598 const FILE_END_OF_FILE_INFORMATION *info = ptr;
1600 /* first try normal truncate */
1601 if (ftruncate( fd, (off_t)info->EndOfFile.QuadPart ) != -1) break;
1603 /* now check for the need to extend the file */
1604 if (fstat( fd, &st ) != -1 && (off_t)info->EndOfFile.QuadPart > st.st_size)
1606 static const char zero;
1608 /* extend the file one byte beyond the requested size and then truncate it */
1609 /* this should work around ftruncate implementations that can't extend files */
1610 if (pwrite( fd, &zero, 1, (off_t)info->EndOfFile.QuadPart ) != -1 &&
1611 ftruncate( fd, (off_t)info->EndOfFile.QuadPart ) != -1) break;
1613 io->u.Status = FILE_GetNtStatus();
1615 else io->u.Status = STATUS_INVALID_PARAMETER_3;
1616 break;
1618 case FileMailslotSetInformation:
1620 FILE_MAILSLOT_SET_INFORMATION *info = ptr;
1622 SERVER_START_REQ( set_mailslot_info )
1624 req->handle = handle;
1625 req->flags = MAILSLOT_SET_READ_TIMEOUT;
1626 req->read_timeout = info->ReadTimeout.QuadPart;
1627 io->u.Status = wine_server_call( req );
1629 SERVER_END_REQ;
1631 break;
1633 default:
1634 FIXME("Unsupported class (%d)\n", class);
1635 io->u.Status = STATUS_NOT_IMPLEMENTED;
1636 break;
1638 if (needs_close) close( fd );
1639 io->Information = 0;
1640 return io->u.Status;
1644 /******************************************************************************
1645 * NtQueryFullAttributesFile (NTDLL.@)
1647 NTSTATUS WINAPI NtQueryFullAttributesFile( const OBJECT_ATTRIBUTES *attr,
1648 FILE_NETWORK_OPEN_INFORMATION *info )
1650 ANSI_STRING unix_name;
1651 NTSTATUS status;
1653 if (!(status = wine_nt_to_unix_file_name( attr->ObjectName, &unix_name, FILE_OPEN,
1654 !(attr->Attributes & OBJ_CASE_INSENSITIVE) )))
1656 struct stat st;
1658 if (stat( unix_name.Buffer, &st ) == -1)
1659 status = FILE_GetNtStatus();
1660 else if (!S_ISREG(st.st_mode) && !S_ISDIR(st.st_mode))
1661 status = STATUS_INVALID_INFO_CLASS;
1662 else
1664 if (S_ISDIR(st.st_mode))
1666 info->FileAttributes = FILE_ATTRIBUTE_DIRECTORY;
1667 info->AllocationSize.QuadPart = 0;
1668 info->EndOfFile.QuadPart = 0;
1670 else
1672 info->FileAttributes = FILE_ATTRIBUTE_ARCHIVE;
1673 info->AllocationSize.QuadPart = (ULONGLONG)st.st_blocks * 512;
1674 info->EndOfFile.QuadPart = st.st_size;
1676 if (!(st.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH)))
1677 info->FileAttributes |= FILE_ATTRIBUTE_READONLY;
1678 RtlSecondsSince1970ToTime( st.st_mtime, &info->CreationTime );
1679 RtlSecondsSince1970ToTime( st.st_mtime, &info->LastWriteTime );
1680 RtlSecondsSince1970ToTime( st.st_ctime, &info->ChangeTime );
1681 RtlSecondsSince1970ToTime( st.st_atime, &info->LastAccessTime );
1682 if (DIR_is_hidden_file( attr->ObjectName ))
1683 info->FileAttributes |= FILE_ATTRIBUTE_HIDDEN;
1685 RtlFreeAnsiString( &unix_name );
1687 else WARN("%s not found (%x)\n", debugstr_us(attr->ObjectName), status );
1688 return status;
1692 /******************************************************************************
1693 * NtQueryAttributesFile (NTDLL.@)
1694 * ZwQueryAttributesFile (NTDLL.@)
1696 NTSTATUS WINAPI NtQueryAttributesFile( const OBJECT_ATTRIBUTES *attr, FILE_BASIC_INFORMATION *info )
1698 FILE_NETWORK_OPEN_INFORMATION full_info;
1699 NTSTATUS status;
1701 if (!(status = NtQueryFullAttributesFile( attr, &full_info )))
1703 info->CreationTime.QuadPart = full_info.CreationTime.QuadPart;
1704 info->LastAccessTime.QuadPart = full_info.LastAccessTime.QuadPart;
1705 info->LastWriteTime.QuadPart = full_info.LastWriteTime.QuadPart;
1706 info->ChangeTime.QuadPart = full_info.ChangeTime.QuadPart;
1707 info->FileAttributes = full_info.FileAttributes;
1709 return status;
1713 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__APPLE__)
1714 /* helper for FILE_GetDeviceInfo to hide some platform differences in fstatfs */
1715 static inline void get_device_info_fstatfs( FILE_FS_DEVICE_INFORMATION *info, const char *fstypename,
1716 size_t fstypesize, unsigned int flags )
1718 if (!strncmp("cd9660", fstypename, fstypesize) ||
1719 !strncmp("udf", fstypename, fstypesize))
1721 info->DeviceType = FILE_DEVICE_CD_ROM_FILE_SYSTEM;
1722 /* Don't assume read-only, let the mount options set it below */
1723 info->Characteristics |= FILE_REMOVABLE_MEDIA;
1725 else if (!strncmp("nfs", fstypename, fstypesize) ||
1726 !strncmp("nwfs", fstypename, fstypesize) ||
1727 !strncmp("smbfs", fstypename, fstypesize) ||
1728 !strncmp("afpfs", fstypename, fstypesize))
1730 info->DeviceType = FILE_DEVICE_NETWORK_FILE_SYSTEM;
1731 info->Characteristics |= FILE_REMOTE_DEVICE;
1733 else if (!strncmp("procfs", fstypename, fstypesize))
1734 info->DeviceType = FILE_DEVICE_VIRTUAL_DISK;
1735 else
1736 info->DeviceType = FILE_DEVICE_DISK_FILE_SYSTEM;
1738 if (flags & MNT_RDONLY)
1739 info->Characteristics |= FILE_READ_ONLY_DEVICE;
1741 if (!(flags & MNT_LOCAL))
1743 info->DeviceType = FILE_DEVICE_NETWORK_FILE_SYSTEM;
1744 info->Characteristics |= FILE_REMOTE_DEVICE;
1747 #endif
1749 /******************************************************************************
1750 * get_device_info
1752 * Implementation of the FileFsDeviceInformation query for NtQueryVolumeInformationFile.
1754 static NTSTATUS get_device_info( int fd, FILE_FS_DEVICE_INFORMATION *info )
1756 struct stat st;
1758 info->Characteristics = 0;
1759 if (fstat( fd, &st ) < 0) return FILE_GetNtStatus();
1760 if (S_ISCHR( st.st_mode ))
1762 info->DeviceType = FILE_DEVICE_UNKNOWN;
1763 #ifdef linux
1764 switch(major(st.st_rdev))
1766 case MEM_MAJOR:
1767 info->DeviceType = FILE_DEVICE_NULL;
1768 break;
1769 case TTY_MAJOR:
1770 info->DeviceType = FILE_DEVICE_SERIAL_PORT;
1771 break;
1772 case LP_MAJOR:
1773 info->DeviceType = FILE_DEVICE_PARALLEL_PORT;
1774 break;
1775 case SCSI_TAPE_MAJOR:
1776 info->DeviceType = FILE_DEVICE_TAPE;
1777 break;
1779 #endif
1781 else if (S_ISBLK( st.st_mode ))
1783 info->DeviceType = FILE_DEVICE_DISK;
1785 else if (S_ISFIFO( st.st_mode ) || S_ISSOCK( st.st_mode ))
1787 info->DeviceType = FILE_DEVICE_NAMED_PIPE;
1789 else /* regular file or directory */
1791 #if defined(linux) && defined(HAVE_FSTATFS)
1792 struct statfs stfs;
1794 /* check for floppy disk */
1795 if (major(st.st_dev) == FLOPPY_MAJOR)
1796 info->Characteristics |= FILE_REMOVABLE_MEDIA;
1798 if (fstatfs( fd, &stfs ) < 0) stfs.f_type = 0;
1799 switch (stfs.f_type)
1801 case 0x9660: /* iso9660 */
1802 case 0x9fa1: /* supermount */
1803 case 0x15013346: /* udf */
1804 info->DeviceType = FILE_DEVICE_CD_ROM_FILE_SYSTEM;
1805 info->Characteristics |= FILE_REMOVABLE_MEDIA|FILE_READ_ONLY_DEVICE;
1806 break;
1807 case 0x6969: /* nfs */
1808 case 0x517B: /* smbfs */
1809 case 0x564c: /* ncpfs */
1810 info->DeviceType = FILE_DEVICE_NETWORK_FILE_SYSTEM;
1811 info->Characteristics |= FILE_REMOTE_DEVICE;
1812 break;
1813 case 0x01021994: /* tmpfs */
1814 case 0x28cd3d45: /* cramfs */
1815 case 0x1373: /* devfs */
1816 case 0x9fa0: /* procfs */
1817 info->DeviceType = FILE_DEVICE_VIRTUAL_DISK;
1818 break;
1819 default:
1820 info->DeviceType = FILE_DEVICE_DISK_FILE_SYSTEM;
1821 break;
1823 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__APPLE__)
1824 struct statfs stfs;
1826 if (fstatfs( fd, &stfs ) < 0)
1827 info->DeviceType = FILE_DEVICE_DISK_FILE_SYSTEM;
1828 else
1829 get_device_info_fstatfs( info, stfs.f_fstypename,
1830 sizeof(stfs.f_fstypename), stfs.f_flags );
1831 #elif defined(__NetBSD__)
1832 struct statvfs stfs;
1834 if (fstatvfs( fd, &stfs) < 0)
1835 info->DeviceType = FILE_DEVICE_DISK_FILE_SYSTEM;
1836 else
1837 get_device_info_fstatfs( info, stfs.f_fstypename,
1838 sizeof(stfs.f_fstypename), stfs.f_flag );
1839 #elif defined(sun)
1840 /* Use dkio to work out device types */
1842 # include <sys/dkio.h>
1843 # include <sys/vtoc.h>
1844 struct dk_cinfo dkinf;
1845 int retval = ioctl(fd, DKIOCINFO, &dkinf);
1846 if(retval==-1){
1847 WARN("Unable to get disk device type information - assuming a disk like device\n");
1848 info->DeviceType = FILE_DEVICE_DISK_FILE_SYSTEM;
1850 switch (dkinf.dki_ctype)
1852 case DKC_CDROM:
1853 info->DeviceType = FILE_DEVICE_CD_ROM_FILE_SYSTEM;
1854 info->Characteristics |= FILE_REMOVABLE_MEDIA|FILE_READ_ONLY_DEVICE;
1855 break;
1856 case DKC_NCRFLOPPY:
1857 case DKC_SMSFLOPPY:
1858 case DKC_INTEL82072:
1859 case DKC_INTEL82077:
1860 info->DeviceType = FILE_DEVICE_DISK_FILE_SYSTEM;
1861 info->Characteristics |= FILE_REMOVABLE_MEDIA;
1862 break;
1863 case DKC_MD:
1864 info->DeviceType = FILE_DEVICE_VIRTUAL_DISK;
1865 break;
1866 default:
1867 info->DeviceType = FILE_DEVICE_DISK_FILE_SYSTEM;
1870 #else
1871 static int warned;
1872 if (!warned++) FIXME( "device info not properly supported on this platform\n" );
1873 info->DeviceType = FILE_DEVICE_DISK_FILE_SYSTEM;
1874 #endif
1875 info->Characteristics |= FILE_DEVICE_IS_MOUNTED;
1877 return STATUS_SUCCESS;
1881 /******************************************************************************
1882 * NtQueryVolumeInformationFile [NTDLL.@]
1883 * ZwQueryVolumeInformationFile [NTDLL.@]
1885 * Get volume information for an open file handle.
1887 * PARAMS
1888 * handle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
1889 * io [O] Receives information about the operation on return
1890 * buffer [O] Destination for volume information
1891 * length [I] Size of FsInformation
1892 * info_class [I] Type of volume information to set
1894 * RETURNS
1895 * Success: 0. io and buffer are updated.
1896 * Failure: An NTSTATUS error code describing the error.
1898 NTSTATUS WINAPI NtQueryVolumeInformationFile( HANDLE handle, PIO_STATUS_BLOCK io,
1899 PVOID buffer, ULONG length,
1900 FS_INFORMATION_CLASS info_class )
1902 int fd, needs_close;
1903 struct stat st;
1905 if ((io->u.Status = server_get_unix_fd( handle, 0, &fd, &needs_close, NULL, NULL )) != STATUS_SUCCESS)
1906 return io->u.Status;
1908 io->u.Status = STATUS_NOT_IMPLEMENTED;
1909 io->Information = 0;
1911 switch( info_class )
1913 case FileFsVolumeInformation:
1914 FIXME( "%p: volume info not supported\n", handle );
1915 break;
1916 case FileFsLabelInformation:
1917 FIXME( "%p: label info not supported\n", handle );
1918 break;
1919 case FileFsSizeInformation:
1920 if (length < sizeof(FILE_FS_SIZE_INFORMATION))
1921 io->u.Status = STATUS_BUFFER_TOO_SMALL;
1922 else
1924 FILE_FS_SIZE_INFORMATION *info = buffer;
1926 if (fstat( fd, &st ) < 0)
1928 io->u.Status = FILE_GetNtStatus();
1929 break;
1931 if (!S_ISREG(st.st_mode) && !S_ISDIR(st.st_mode))
1933 io->u.Status = STATUS_INVALID_DEVICE_REQUEST;
1935 else
1937 /* Linux's fstatvfs is buggy */
1938 #if !defined(linux) || !defined(HAVE_FSTATFS)
1939 struct statvfs stfs;
1941 if (fstatvfs( fd, &stfs ) < 0)
1943 io->u.Status = FILE_GetNtStatus();
1944 break;
1946 info->BytesPerSector = stfs.f_frsize;
1947 #else
1948 struct statfs stfs;
1949 if (fstatfs( fd, &stfs ) < 0)
1951 io->u.Status = FILE_GetNtStatus();
1952 break;
1954 info->BytesPerSector = stfs.f_bsize;
1955 #endif
1956 info->TotalAllocationUnits.QuadPart = stfs.f_blocks;
1957 info->AvailableAllocationUnits.QuadPart = stfs.f_bavail;
1958 info->SectorsPerAllocationUnit = 1;
1959 io->Information = sizeof(*info);
1960 io->u.Status = STATUS_SUCCESS;
1963 break;
1964 case FileFsDeviceInformation:
1965 if (length < sizeof(FILE_FS_DEVICE_INFORMATION))
1966 io->u.Status = STATUS_BUFFER_TOO_SMALL;
1967 else
1969 FILE_FS_DEVICE_INFORMATION *info = buffer;
1971 if ((io->u.Status = get_device_info( fd, info )) == STATUS_SUCCESS)
1972 io->Information = sizeof(*info);
1974 break;
1975 case FileFsAttributeInformation:
1976 FIXME( "%p: attribute info not supported\n", handle );
1977 break;
1978 case FileFsControlInformation:
1979 FIXME( "%p: control info not supported\n", handle );
1980 break;
1981 case FileFsFullSizeInformation:
1982 FIXME( "%p: full size info not supported\n", handle );
1983 break;
1984 case FileFsObjectIdInformation:
1985 FIXME( "%p: object id info not supported\n", handle );
1986 break;
1987 case FileFsMaximumInformation:
1988 FIXME( "%p: maximum info not supported\n", handle );
1989 break;
1990 default:
1991 io->u.Status = STATUS_INVALID_PARAMETER;
1992 break;
1994 if (needs_close) close( fd );
1995 return io->u.Status;
1999 /******************************************************************
2000 * NtFlushBuffersFile (NTDLL.@)
2002 * Flush any buffered data on an open file handle.
2004 * PARAMS
2005 * FileHandle [I] Handle returned from ZwOpenFile() or ZwCreateFile()
2006 * IoStatusBlock [O] Receives information about the operation on return
2008 * RETURNS
2009 * Success: 0. IoStatusBlock is updated.
2010 * Failure: An NTSTATUS error code describing the error.
2012 NTSTATUS WINAPI NtFlushBuffersFile( HANDLE hFile, IO_STATUS_BLOCK* IoStatusBlock )
2014 NTSTATUS ret;
2015 HANDLE hEvent = NULL;
2017 SERVER_START_REQ( flush_file )
2019 req->handle = hFile;
2020 ret = wine_server_call( req );
2021 hEvent = reply->event;
2023 SERVER_END_REQ;
2024 if (!ret && hEvent)
2026 ret = NtWaitForSingleObject( hEvent, FALSE, NULL );
2027 NtClose( hEvent );
2029 return ret;
2032 /******************************************************************
2033 * NtLockFile (NTDLL.@)
2037 NTSTATUS WINAPI NtLockFile( HANDLE hFile, HANDLE lock_granted_event,
2038 PIO_APC_ROUTINE apc, void* apc_user,
2039 PIO_STATUS_BLOCK io_status, PLARGE_INTEGER offset,
2040 PLARGE_INTEGER count, ULONG* key, BOOLEAN dont_wait,
2041 BOOLEAN exclusive )
2043 NTSTATUS ret;
2044 HANDLE handle;
2045 BOOLEAN async;
2047 if (apc || io_status || key)
2049 FIXME("Unimplemented yet parameter\n");
2050 return STATUS_NOT_IMPLEMENTED;
2053 for (;;)
2055 SERVER_START_REQ( lock_file )
2057 req->handle = hFile;
2058 req->offset_low = offset->u.LowPart;
2059 req->offset_high = offset->u.HighPart;
2060 req->count_low = count->u.LowPart;
2061 req->count_high = count->u.HighPart;
2062 req->shared = !exclusive;
2063 req->wait = !dont_wait;
2064 ret = wine_server_call( req );
2065 handle = reply->handle;
2066 async = reply->overlapped;
2068 SERVER_END_REQ;
2069 if (ret != STATUS_PENDING)
2071 if (!ret && lock_granted_event) NtSetEvent(lock_granted_event, NULL);
2072 return ret;
2075 if (async)
2077 FIXME( "Async I/O lock wait not implemented, might deadlock\n" );
2078 if (handle) NtClose( handle );
2079 return STATUS_PENDING;
2081 if (handle)
2083 NtWaitForSingleObject( handle, FALSE, NULL );
2084 NtClose( handle );
2086 else
2088 LARGE_INTEGER time;
2090 /* Unix lock conflict, sleep a bit and retry */
2091 time.QuadPart = 100 * (ULONGLONG)10000;
2092 time.QuadPart = -time.QuadPart;
2093 NtDelayExecution( FALSE, &time );
2099 /******************************************************************
2100 * NtUnlockFile (NTDLL.@)
2104 NTSTATUS WINAPI NtUnlockFile( HANDLE hFile, PIO_STATUS_BLOCK io_status,
2105 PLARGE_INTEGER offset, PLARGE_INTEGER count,
2106 PULONG key )
2108 NTSTATUS status;
2110 TRACE( "%p %x%08x %x%08x\n",
2111 hFile, offset->u.HighPart, offset->u.LowPart, count->u.HighPart, count->u.LowPart );
2113 if (io_status || key)
2115 FIXME("Unimplemented yet parameter\n");
2116 return STATUS_NOT_IMPLEMENTED;
2119 SERVER_START_REQ( unlock_file )
2121 req->handle = hFile;
2122 req->offset_low = offset->u.LowPart;
2123 req->offset_high = offset->u.HighPart;
2124 req->count_low = count->u.LowPart;
2125 req->count_high = count->u.HighPart;
2126 status = wine_server_call( req );
2128 SERVER_END_REQ;
2129 return status;
2132 /******************************************************************
2133 * NtCreateNamedPipeFile (NTDLL.@)
2137 NTSTATUS WINAPI NtCreateNamedPipeFile( PHANDLE handle, ULONG access,
2138 POBJECT_ATTRIBUTES attr, PIO_STATUS_BLOCK iosb,
2139 ULONG sharing, ULONG dispo, ULONG options,
2140 ULONG pipe_type, ULONG read_mode,
2141 ULONG completion_mode, ULONG max_inst,
2142 ULONG inbound_quota, ULONG outbound_quota,
2143 PLARGE_INTEGER timeout)
2145 NTSTATUS status;
2147 TRACE("(%p %x %s %p %x %d %x %d %d %d %d %d %d %p)\n",
2148 handle, access, debugstr_w(attr->ObjectName->Buffer), iosb, sharing, dispo,
2149 options, pipe_type, read_mode, completion_mode, max_inst, inbound_quota,
2150 outbound_quota, timeout);
2152 /* assume we only get relative timeout */
2153 if (timeout->QuadPart > 0)
2154 FIXME("Wrong time %s\n", wine_dbgstr_longlong(timeout->QuadPart));
2156 SERVER_START_REQ( create_named_pipe )
2158 req->access = access;
2159 req->attributes = attr->Attributes;
2160 req->rootdir = attr->RootDirectory;
2161 req->options = options;
2162 req->flags =
2163 (pipe_type) ? NAMED_PIPE_MESSAGE_STREAM_WRITE : 0 |
2164 (read_mode) ? NAMED_PIPE_MESSAGE_STREAM_READ : 0 |
2165 (completion_mode) ? NAMED_PIPE_NONBLOCKING_MODE : 0;
2166 req->maxinstances = max_inst;
2167 req->outsize = outbound_quota;
2168 req->insize = inbound_quota;
2169 req->timeout = timeout->QuadPart;
2170 wine_server_add_data( req, attr->ObjectName->Buffer,
2171 attr->ObjectName->Length );
2172 status = wine_server_call( req );
2173 if (!status) *handle = reply->handle;
2175 SERVER_END_REQ;
2176 return status;
2179 /******************************************************************
2180 * NtDeleteFile (NTDLL.@)
2184 NTSTATUS WINAPI NtDeleteFile( POBJECT_ATTRIBUTES ObjectAttributes )
2186 NTSTATUS status;
2187 HANDLE hFile;
2188 IO_STATUS_BLOCK io;
2190 TRACE("%p\n", ObjectAttributes);
2191 status = NtCreateFile( &hFile, GENERIC_READ | GENERIC_WRITE | DELETE,
2192 ObjectAttributes, &io, NULL, 0,
2193 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
2194 FILE_OPEN, FILE_DELETE_ON_CLOSE, NULL, 0 );
2195 if (status == STATUS_SUCCESS) status = NtClose(hFile);
2196 return status;
2199 /******************************************************************
2200 * NtCancelIoFile (NTDLL.@)
2204 NTSTATUS WINAPI NtCancelIoFile( HANDLE hFile, PIO_STATUS_BLOCK io_status )
2206 LARGE_INTEGER timeout;
2208 TRACE("%p %p\n", hFile, io_status );
2210 SERVER_START_REQ( cancel_async )
2212 req->handle = hFile;
2213 wine_server_call( req );
2215 SERVER_END_REQ;
2216 /* Let some APC be run, so that we can run the remaining APCs on hFile
2217 * either the cancelation of the pending one, but also the execution
2218 * of the queued APC, but not yet run. This is needed to ensure proper
2219 * clean-up of allocated data.
2221 timeout.u.LowPart = timeout.u.HighPart = 0;
2222 return io_status->u.Status = NtDelayExecution( TRUE, &timeout );
2225 /******************************************************************************
2226 * NtCreateMailslotFile [NTDLL.@]
2227 * ZwCreateMailslotFile [NTDLL.@]
2229 * PARAMS
2230 * pHandle [O] pointer to receive the handle created
2231 * DesiredAccess [I] access mode (read, write, etc)
2232 * ObjectAttributes [I] fully qualified NT path of the mailslot
2233 * IoStatusBlock [O] receives completion status and other info
2234 * CreateOptions [I]
2235 * MailslotQuota [I]
2236 * MaxMessageSize [I]
2237 * TimeOut [I]
2239 * RETURNS
2240 * An NT status code
2242 NTSTATUS WINAPI NtCreateMailslotFile(PHANDLE pHandle, ULONG DesiredAccess,
2243 POBJECT_ATTRIBUTES attr, PIO_STATUS_BLOCK IoStatusBlock,
2244 ULONG CreateOptions, ULONG MailslotQuota, ULONG MaxMessageSize,
2245 PLARGE_INTEGER TimeOut)
2247 LARGE_INTEGER timeout;
2248 NTSTATUS ret;
2250 TRACE("%p %08x %p %p %08x %08x %08x %p\n",
2251 pHandle, DesiredAccess, attr, IoStatusBlock,
2252 CreateOptions, MailslotQuota, MaxMessageSize, TimeOut);
2254 if (!pHandle) return STATUS_ACCESS_VIOLATION;
2255 if (!attr) return STATUS_INVALID_PARAMETER;
2256 if (!attr->ObjectName) return STATUS_OBJECT_PATH_SYNTAX_BAD;
2259 * For a NULL TimeOut pointer set the default timeout value
2261 if (!TimeOut)
2262 timeout.QuadPart = -1;
2263 else
2264 timeout.QuadPart = TimeOut->QuadPart;
2266 SERVER_START_REQ( create_mailslot )
2268 req->access = DesiredAccess;
2269 req->attributes = attr->Attributes;
2270 req->rootdir = attr->RootDirectory;
2271 req->max_msgsize = MaxMessageSize;
2272 req->read_timeout = timeout.QuadPart;
2273 wine_server_add_data( req, attr->ObjectName->Buffer,
2274 attr->ObjectName->Length );
2275 ret = wine_server_call( req );
2276 if( ret == STATUS_SUCCESS )
2277 *pHandle = reply->handle;
2279 SERVER_END_REQ;
2281 return ret;