wined3d: Pass a texture and sub-resource index to wined3d_volume_download_data().
[wine.git] / dlls / kernel32 / file.c
blobcc7ead1cdd6d068d6121bf9410ddfc69ea4f06a2
1 /*
2 * File handling functions
4 * Copyright 1993 John Burton
5 * Copyright 1996, 2004 Alexandre Julliard
6 * Copyright 2008 Jeff Zaroyko
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "config.h"
24 #include "wine/port.h"
26 #include <stdarg.h>
27 #include <stdio.h>
28 #include <errno.h>
29 #ifdef HAVE_SYS_STAT_H
30 # include <sys/stat.h>
31 #endif
33 #define NONAMELESSUNION
34 #define NONAMELESSSTRUCT
35 #include "winerror.h"
36 #include "ntstatus.h"
37 #define WIN32_NO_STATUS
38 #include "windef.h"
39 #include "winbase.h"
40 #include "winternl.h"
41 #include "winioctl.h"
42 #include "wincon.h"
43 #include "ddk/ntddk.h"
44 #include "kernel_private.h"
45 #include "fileapi.h"
47 #include "wine/exception.h"
48 #include "wine/unicode.h"
49 #include "wine/debug.h"
51 WINE_DEFAULT_DEBUG_CHANNEL(file);
53 /* info structure for FindFirstFile handle */
54 typedef struct
56 DWORD magic; /* magic number */
57 HANDLE handle; /* handle to directory */
58 CRITICAL_SECTION cs; /* crit section protecting this structure */
59 FINDEX_SEARCH_OPS search_op; /* Flags passed to FindFirst. */
60 FINDEX_INFO_LEVELS level; /* Level passed to FindFirst */
61 UNICODE_STRING path; /* NT path used to open the directory */
62 BOOL is_root; /* is directory the root of the drive? */
63 BOOL wildcard; /* did the mask contain wildcard characters? */
64 UINT data_pos; /* current position in dir data */
65 UINT data_len; /* length of dir data */
66 UINT data_size; /* size of data buffer, or 0 when everything has been read */
67 BYTE data[1]; /* directory data */
68 } FIND_FIRST_INFO;
70 #define FIND_FIRST_MAGIC 0xc0ffee11
72 static const UINT max_entry_size = offsetof( FILE_BOTH_DIRECTORY_INFORMATION, FileName[256] );
74 static BOOL oem_file_apis;
76 static const WCHAR wildcardsW[] = { '*','?',0 };
78 /***********************************************************************
79 * create_file_OF
81 * Wrapper for CreateFile that takes OF_* mode flags.
83 static HANDLE create_file_OF( LPCSTR path, INT mode )
85 DWORD access, sharing, creation;
87 if (mode & OF_CREATE)
89 creation = CREATE_ALWAYS;
90 access = GENERIC_READ | GENERIC_WRITE;
92 else
94 creation = OPEN_EXISTING;
95 switch(mode & 0x03)
97 case OF_READ: access = GENERIC_READ; break;
98 case OF_WRITE: access = GENERIC_WRITE; break;
99 case OF_READWRITE: access = GENERIC_READ | GENERIC_WRITE; break;
100 default: access = 0; break;
104 switch(mode & 0x70)
106 case OF_SHARE_EXCLUSIVE: sharing = 0; break;
107 case OF_SHARE_DENY_WRITE: sharing = FILE_SHARE_READ; break;
108 case OF_SHARE_DENY_READ: sharing = FILE_SHARE_WRITE; break;
109 case OF_SHARE_DENY_NONE:
110 case OF_SHARE_COMPAT:
111 default: sharing = FILE_SHARE_READ | FILE_SHARE_WRITE; break;
113 return CreateFileA( path, access, sharing, NULL, creation, FILE_ATTRIBUTE_NORMAL, 0 );
117 /***********************************************************************
118 * check_dir_symlink
120 * Check if a dir symlink should be returned by FindNextFile.
122 static BOOL check_dir_symlink( FIND_FIRST_INFO *info, const FILE_BOTH_DIR_INFORMATION *file_info )
124 UNICODE_STRING str;
125 ANSI_STRING unix_name;
126 struct stat st, parent_st;
127 BOOL ret = TRUE;
128 DWORD len;
130 str.MaximumLength = info->path.Length + sizeof(WCHAR) + file_info->FileNameLength;
131 if (!(str.Buffer = HeapAlloc( GetProcessHeap(), 0, str.MaximumLength ))) return TRUE;
132 memcpy( str.Buffer, info->path.Buffer, info->path.Length );
133 len = info->path.Length / sizeof(WCHAR);
134 if (!len || str.Buffer[len-1] != '\\') str.Buffer[len++] = '\\';
135 memcpy( str.Buffer + len, file_info->FileName, file_info->FileNameLength );
136 str.Length = len * sizeof(WCHAR) + file_info->FileNameLength;
138 unix_name.Buffer = NULL;
139 if (!wine_nt_to_unix_file_name( &str, &unix_name, OPEN_EXISTING, FALSE ) &&
140 !stat( unix_name.Buffer, &st ))
142 char *p = unix_name.Buffer + unix_name.Length - 1;
144 /* skip trailing slashes */
145 while (p > unix_name.Buffer && *p == '/') p--;
147 while (ret && p > unix_name.Buffer)
149 while (p > unix_name.Buffer && *p != '/') p--;
150 while (p > unix_name.Buffer && *p == '/') p--;
151 p[1] = 0;
152 if (!stat( unix_name.Buffer, &parent_st ) &&
153 parent_st.st_dev == st.st_dev &&
154 parent_st.st_ino == st.st_ino)
156 WARN( "suppressing dir symlink %s pointing to parent %s\n",
157 debugstr_wn( str.Buffer, str.Length/sizeof(WCHAR) ),
158 debugstr_a( unix_name.Buffer ));
159 ret = FALSE;
163 RtlFreeAnsiString( &unix_name );
164 RtlFreeUnicodeString( &str );
165 return ret;
169 /***********************************************************************
170 * FILE_SetDosError
172 * Set the DOS error code from errno.
174 void FILE_SetDosError(void)
176 int save_errno = errno; /* errno gets overwritten by printf */
178 TRACE("errno = %d %s\n", errno, strerror(errno));
179 switch (save_errno)
181 case EAGAIN:
182 SetLastError( ERROR_SHARING_VIOLATION );
183 break;
184 case EBADF:
185 SetLastError( ERROR_INVALID_HANDLE );
186 break;
187 case ENOSPC:
188 SetLastError( ERROR_HANDLE_DISK_FULL );
189 break;
190 case EACCES:
191 case EPERM:
192 case EROFS:
193 SetLastError( ERROR_ACCESS_DENIED );
194 break;
195 case EBUSY:
196 SetLastError( ERROR_LOCK_VIOLATION );
197 break;
198 case ENOENT:
199 SetLastError( ERROR_FILE_NOT_FOUND );
200 break;
201 case EISDIR:
202 SetLastError( ERROR_CANNOT_MAKE );
203 break;
204 case ENFILE:
205 case EMFILE:
206 SetLastError( ERROR_TOO_MANY_OPEN_FILES );
207 break;
208 case EEXIST:
209 SetLastError( ERROR_FILE_EXISTS );
210 break;
211 case EINVAL:
212 case ESPIPE:
213 SetLastError( ERROR_SEEK );
214 break;
215 case ENOTEMPTY:
216 SetLastError( ERROR_DIR_NOT_EMPTY );
217 break;
218 case ENOEXEC:
219 SetLastError( ERROR_BAD_FORMAT );
220 break;
221 case ENOTDIR:
222 SetLastError( ERROR_PATH_NOT_FOUND );
223 break;
224 case EXDEV:
225 SetLastError( ERROR_NOT_SAME_DEVICE );
226 break;
227 default:
228 WARN("unknown file error: %s\n", strerror(save_errno) );
229 SetLastError( ERROR_GEN_FAILURE );
230 break;
232 errno = save_errno;
236 /***********************************************************************
237 * FILE_name_AtoW
239 * Convert a file name to Unicode, taking into account the OEM/Ansi API mode.
241 * If alloc is FALSE uses the TEB static buffer, so it can only be used when
242 * there is no possibility for the function to do that twice, taking into
243 * account any called function.
245 WCHAR *FILE_name_AtoW( LPCSTR name, BOOL alloc )
247 ANSI_STRING str;
248 UNICODE_STRING strW, *pstrW;
249 NTSTATUS status;
251 RtlInitAnsiString( &str, name );
252 pstrW = alloc ? &strW : &NtCurrentTeb()->StaticUnicodeString;
253 if (oem_file_apis)
254 status = RtlOemStringToUnicodeString( pstrW, &str, alloc );
255 else
256 status = RtlAnsiStringToUnicodeString( pstrW, &str, alloc );
257 if (status == STATUS_SUCCESS) return pstrW->Buffer;
259 if (status == STATUS_BUFFER_OVERFLOW)
260 SetLastError( ERROR_FILENAME_EXCED_RANGE );
261 else
262 SetLastError( RtlNtStatusToDosError(status) );
263 return NULL;
267 /***********************************************************************
268 * FILE_name_WtoA
270 * Convert a file name back to OEM/Ansi. Returns number of bytes copied.
272 DWORD FILE_name_WtoA( LPCWSTR src, INT srclen, LPSTR dest, INT destlen )
274 DWORD ret;
276 if (srclen < 0) srclen = strlenW( src ) + 1;
277 if (oem_file_apis)
278 RtlUnicodeToOemN( dest, destlen, &ret, src, srclen * sizeof(WCHAR) );
279 else
280 RtlUnicodeToMultiByteN( dest, destlen, &ret, src, srclen * sizeof(WCHAR) );
281 return ret;
285 /**************************************************************************
286 * SetFileApisToOEM (KERNEL32.@)
288 VOID WINAPI SetFileApisToOEM(void)
290 oem_file_apis = TRUE;
294 /**************************************************************************
295 * SetFileApisToANSI (KERNEL32.@)
297 VOID WINAPI SetFileApisToANSI(void)
299 oem_file_apis = FALSE;
303 /******************************************************************************
304 * AreFileApisANSI (KERNEL32.@)
306 * Determines if file functions are using ANSI
308 * RETURNS
309 * TRUE: Set of file functions is using ANSI code page
310 * FALSE: Set of file functions is using OEM code page
312 BOOL WINAPI AreFileApisANSI(void)
314 return !oem_file_apis;
318 /**************************************************************************
319 * Operations on file handles *
320 **************************************************************************/
322 /******************************************************************
323 * FILE_ReadWriteApc (internal)
325 static void WINAPI FILE_ReadWriteApc(void* apc_user, PIO_STATUS_BLOCK io_status, ULONG reserved)
327 LPOVERLAPPED_COMPLETION_ROUTINE cr = apc_user;
329 cr(RtlNtStatusToDosError(io_status->u.Status), io_status->Information, (LPOVERLAPPED)io_status);
333 /***********************************************************************
334 * ReadFileEx (KERNEL32.@)
336 BOOL WINAPI ReadFileEx(HANDLE hFile, LPVOID buffer, DWORD bytesToRead,
337 LPOVERLAPPED overlapped,
338 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
340 LARGE_INTEGER offset;
341 NTSTATUS status;
342 PIO_STATUS_BLOCK io_status;
344 TRACE("(hFile=%p, buffer=%p, bytes=%u, ovl=%p, ovl_fn=%p)\n", hFile, buffer, bytesToRead, overlapped, lpCompletionRoutine);
346 if (!overlapped)
348 SetLastError(ERROR_INVALID_PARAMETER);
349 return FALSE;
352 offset.u.LowPart = overlapped->u.s.Offset;
353 offset.u.HighPart = overlapped->u.s.OffsetHigh;
354 io_status = (PIO_STATUS_BLOCK)overlapped;
355 io_status->u.Status = STATUS_PENDING;
356 io_status->Information = 0;
358 status = NtReadFile(hFile, NULL, FILE_ReadWriteApc, lpCompletionRoutine,
359 io_status, buffer, bytesToRead, &offset, NULL);
361 if (status && status != STATUS_PENDING)
363 SetLastError( RtlNtStatusToDosError(status) );
364 return FALSE;
366 return TRUE;
370 /***********************************************************************
371 * ReadFileScatter (KERNEL32.@)
373 BOOL WINAPI ReadFileScatter( HANDLE file, FILE_SEGMENT_ELEMENT *segments, DWORD count,
374 LPDWORD reserved, LPOVERLAPPED overlapped )
376 PIO_STATUS_BLOCK io_status;
377 LARGE_INTEGER offset;
378 void *cvalue = NULL;
379 NTSTATUS status;
381 TRACE( "(%p %p %u %p)\n", file, segments, count, overlapped );
383 offset.u.LowPart = overlapped->u.s.Offset;
384 offset.u.HighPart = overlapped->u.s.OffsetHigh;
385 if (!((ULONG_PTR)overlapped->hEvent & 1)) cvalue = overlapped;
386 io_status = (PIO_STATUS_BLOCK)overlapped;
387 io_status->u.Status = STATUS_PENDING;
388 io_status->Information = 0;
390 status = NtReadFileScatter( file, overlapped->hEvent, NULL, cvalue, io_status,
391 segments, count, &offset, NULL );
392 if (status) SetLastError( RtlNtStatusToDosError(status) );
393 return !status;
397 /***********************************************************************
398 * ReadFile (KERNEL32.@)
400 BOOL WINAPI ReadFile( HANDLE hFile, LPVOID buffer, DWORD bytesToRead,
401 LPDWORD bytesRead, LPOVERLAPPED overlapped )
403 LARGE_INTEGER offset;
404 PLARGE_INTEGER poffset = NULL;
405 IO_STATUS_BLOCK iosb;
406 PIO_STATUS_BLOCK io_status = &iosb;
407 HANDLE hEvent = 0;
408 NTSTATUS status;
409 LPVOID cvalue = NULL;
411 TRACE("%p %p %d %p %p\n", hFile, buffer, bytesToRead,
412 bytesRead, overlapped );
414 if (bytesRead) *bytesRead = 0; /* Do this before anything else */
416 if (is_console_handle(hFile))
418 DWORD conread, mode;
419 if (!ReadConsoleA(hFile, buffer, bytesToRead, &conread, NULL) ||
420 !GetConsoleMode(hFile, &mode))
421 return FALSE;
422 /* ctrl-Z (26) means end of file on window (if at beginning of buffer)
423 * but Unix uses ctrl-D (4), and ctrl-Z is a bad idea on Unix :-/
424 * So map both ctrl-D ctrl-Z to EOF.
426 if ((mode & ENABLE_PROCESSED_INPUT) && conread > 0 &&
427 (((char*)buffer)[0] == 26 || ((char*)buffer)[0] == 4))
429 conread = 0;
431 if (bytesRead) *bytesRead = conread;
432 return TRUE;
435 if (overlapped != NULL)
437 offset.u.LowPart = overlapped->u.s.Offset;
438 offset.u.HighPart = overlapped->u.s.OffsetHigh;
439 poffset = &offset;
440 hEvent = overlapped->hEvent;
441 io_status = (PIO_STATUS_BLOCK)overlapped;
442 if (((ULONG_PTR)hEvent & 1) == 0) cvalue = overlapped;
444 io_status->u.Status = STATUS_PENDING;
445 io_status->Information = 0;
447 status = NtReadFile(hFile, hEvent, NULL, cvalue, io_status, buffer, bytesToRead, poffset, NULL);
449 if (status == STATUS_PENDING && !overlapped)
451 WaitForSingleObject( hFile, INFINITE );
452 status = io_status->u.Status;
455 if (status != STATUS_PENDING && bytesRead)
456 *bytesRead = io_status->Information;
458 if (status == STATUS_END_OF_FILE)
460 if (overlapped != NULL)
462 SetLastError( RtlNtStatusToDosError(status) );
463 return FALSE;
466 else if (status && status != STATUS_TIMEOUT)
468 SetLastError( RtlNtStatusToDosError(status) );
469 return FALSE;
471 return TRUE;
475 /***********************************************************************
476 * WriteFileEx (KERNEL32.@)
478 BOOL WINAPI WriteFileEx(HANDLE hFile, LPCVOID buffer, DWORD bytesToWrite,
479 LPOVERLAPPED overlapped,
480 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
482 LARGE_INTEGER offset;
483 NTSTATUS status;
484 PIO_STATUS_BLOCK io_status;
486 TRACE("%p %p %d %p %p\n", hFile, buffer, bytesToWrite, overlapped, lpCompletionRoutine);
488 if (overlapped == NULL)
490 SetLastError(ERROR_INVALID_PARAMETER);
491 return FALSE;
493 offset.u.LowPart = overlapped->u.s.Offset;
494 offset.u.HighPart = overlapped->u.s.OffsetHigh;
496 io_status = (PIO_STATUS_BLOCK)overlapped;
497 io_status->u.Status = STATUS_PENDING;
498 io_status->Information = 0;
500 status = NtWriteFile(hFile, NULL, FILE_ReadWriteApc, lpCompletionRoutine,
501 io_status, buffer, bytesToWrite, &offset, NULL);
503 if (status && status != STATUS_PENDING)
505 SetLastError( RtlNtStatusToDosError(status) );
506 return FALSE;
508 return TRUE;
512 /***********************************************************************
513 * WriteFileGather (KERNEL32.@)
515 BOOL WINAPI WriteFileGather( HANDLE file, FILE_SEGMENT_ELEMENT *segments, DWORD count,
516 LPDWORD reserved, LPOVERLAPPED overlapped )
518 PIO_STATUS_BLOCK io_status;
519 LARGE_INTEGER offset;
520 void *cvalue = NULL;
521 NTSTATUS status;
523 TRACE( "%p %p %u %p\n", file, segments, count, overlapped );
525 offset.u.LowPart = overlapped->u.s.Offset;
526 offset.u.HighPart = overlapped->u.s.OffsetHigh;
527 if (!((ULONG_PTR)overlapped->hEvent & 1)) cvalue = overlapped;
528 io_status = (PIO_STATUS_BLOCK)overlapped;
529 io_status->u.Status = STATUS_PENDING;
530 io_status->Information = 0;
532 status = NtWriteFileGather( file, overlapped->hEvent, NULL, cvalue, io_status,
533 segments, count, &offset, NULL );
534 if (status) SetLastError( RtlNtStatusToDosError(status) );
535 return !status;
539 /***********************************************************************
540 * WriteFile (KERNEL32.@)
542 BOOL WINAPI WriteFile( HANDLE hFile, LPCVOID buffer, DWORD bytesToWrite,
543 LPDWORD bytesWritten, LPOVERLAPPED overlapped )
545 HANDLE hEvent = NULL;
546 LARGE_INTEGER offset;
547 PLARGE_INTEGER poffset = NULL;
548 NTSTATUS status;
549 IO_STATUS_BLOCK iosb;
550 PIO_STATUS_BLOCK piosb = &iosb;
551 LPVOID cvalue = NULL;
553 TRACE("%p %p %d %p %p\n", hFile, buffer, bytesToWrite, bytesWritten, overlapped );
555 if (is_console_handle(hFile))
556 return WriteConsoleA(hFile, buffer, bytesToWrite, bytesWritten, NULL);
558 if (overlapped)
560 offset.u.LowPart = overlapped->u.s.Offset;
561 offset.u.HighPart = overlapped->u.s.OffsetHigh;
562 poffset = &offset;
563 hEvent = overlapped->hEvent;
564 piosb = (PIO_STATUS_BLOCK)overlapped;
565 if (((ULONG_PTR)hEvent & 1) == 0) cvalue = overlapped;
567 piosb->u.Status = STATUS_PENDING;
568 piosb->Information = 0;
570 status = NtWriteFile(hFile, hEvent, NULL, cvalue, piosb,
571 buffer, bytesToWrite, poffset, NULL);
573 if (status == STATUS_PENDING && !overlapped)
575 WaitForSingleObject( hFile, INFINITE );
576 status = piosb->u.Status;
579 if (status != STATUS_PENDING && bytesWritten)
580 *bytesWritten = piosb->Information;
582 if (status && status != STATUS_TIMEOUT)
584 SetLastError( RtlNtStatusToDosError(status) );
585 return FALSE;
587 return TRUE;
591 /***********************************************************************
592 * GetOverlappedResult (KERNEL32.@)
594 * Check the result of an Asynchronous data transfer from a file.
596 * Parameters
597 * HANDLE hFile [in] handle of file to check on
598 * LPOVERLAPPED lpOverlapped [in/out] pointer to overlapped
599 * LPDWORD lpTransferred [in/out] number of bytes transferred
600 * BOOL bWait [in] wait for the transfer to complete ?
602 * RETURNS
603 * TRUE on success
604 * FALSE on failure
606 * If successful (and relevant) lpTransferred will hold the number of
607 * bytes transferred during the async operation.
609 BOOL WINAPI GetOverlappedResult(HANDLE hFile, LPOVERLAPPED lpOverlapped,
610 LPDWORD lpTransferred, BOOL bWait)
612 NTSTATUS status;
614 TRACE( "(%p %p %p %x)\n", hFile, lpOverlapped, lpTransferred, bWait );
616 status = lpOverlapped->Internal;
617 if (status == STATUS_PENDING)
619 if (!bWait)
621 SetLastError( ERROR_IO_INCOMPLETE );
622 return FALSE;
625 if (WaitForSingleObject( lpOverlapped->hEvent ? lpOverlapped->hEvent : hFile,
626 INFINITE ) == WAIT_FAILED)
627 return FALSE;
629 status = lpOverlapped->Internal;
630 if (status == STATUS_PENDING) status = STATUS_SUCCESS;
633 *lpTransferred = lpOverlapped->InternalHigh;
635 if (status) SetLastError( RtlNtStatusToDosError(status) );
636 return !status;
639 /***********************************************************************
640 * CancelIoEx (KERNEL32.@)
642 * Cancels pending I/O operations on a file given the overlapped used.
644 * PARAMS
645 * handle [I] File handle.
646 * lpOverlapped [I,OPT] pointer to overlapped (if null, cancel all)
648 * RETURNS
649 * Success: TRUE.
650 * Failure: FALSE, check GetLastError().
652 BOOL WINAPI CancelIoEx(HANDLE handle, LPOVERLAPPED lpOverlapped)
654 IO_STATUS_BLOCK io_status;
656 NtCancelIoFileEx(handle, (PIO_STATUS_BLOCK) lpOverlapped, &io_status);
657 if (io_status.u.Status)
659 SetLastError( RtlNtStatusToDosError( io_status.u.Status ) );
660 return FALSE;
662 return TRUE;
665 /***********************************************************************
666 * CancelIo (KERNEL32.@)
668 * Cancels pending I/O operations initiated by the current thread on a file.
670 * PARAMS
671 * handle [I] File handle.
673 * RETURNS
674 * Success: TRUE.
675 * Failure: FALSE, check GetLastError().
677 BOOL WINAPI CancelIo(HANDLE handle)
679 IO_STATUS_BLOCK io_status;
681 NtCancelIoFile(handle, &io_status);
682 if (io_status.u.Status)
684 SetLastError( RtlNtStatusToDosError( io_status.u.Status ) );
685 return FALSE;
687 return TRUE;
690 /***********************************************************************
691 * CancelSynchronousIo (KERNEL32.@)
693 * Marks pending synchronous I/O operations issued by the specified thread as cancelled
695 * PARAMS
696 * handle [I] handle to the thread whose I/O operations should be cancelled
698 * RETURNS
699 * Success: TRUE.
700 * Failure: FALSE, check GetLastError().
702 BOOL WINAPI CancelSynchronousIo(HANDLE thread)
704 FIXME("(%p): stub\n", thread);
705 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
706 return FALSE;
709 /***********************************************************************
710 * _hread (KERNEL32.@)
712 LONG WINAPI _hread( HFILE hFile, LPVOID buffer, LONG count)
714 return _lread( hFile, buffer, count );
718 /***********************************************************************
719 * _hwrite (KERNEL32.@)
721 * experimentation yields that _lwrite:
722 * o truncates the file at the current position with
723 * a 0 len write
724 * o returns 0 on a 0 length write
725 * o works with console handles
728 LONG WINAPI _hwrite( HFILE handle, LPCSTR buffer, LONG count )
730 DWORD result;
732 TRACE("%d %p %d\n", handle, buffer, count );
734 if (!count)
736 /* Expand or truncate at current position */
737 if (!SetEndOfFile( LongToHandle(handle) )) return HFILE_ERROR;
738 return 0;
740 if (!WriteFile( LongToHandle(handle), buffer, count, &result, NULL ))
741 return HFILE_ERROR;
742 return result;
746 /***********************************************************************
747 * _lclose (KERNEL32.@)
749 HFILE WINAPI _lclose( HFILE hFile )
751 TRACE("handle %d\n", hFile );
752 return CloseHandle( LongToHandle(hFile) ) ? 0 : HFILE_ERROR;
756 /***********************************************************************
757 * _lcreat (KERNEL32.@)
759 HFILE WINAPI _lcreat( LPCSTR path, INT attr )
761 HANDLE hfile;
763 /* Mask off all flags not explicitly allowed by the doc */
764 attr &= FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM;
765 TRACE("%s %02x\n", path, attr );
766 hfile = CreateFileA( path, GENERIC_READ | GENERIC_WRITE,
767 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
768 CREATE_ALWAYS, attr, 0 );
769 return HandleToLong(hfile);
773 /***********************************************************************
774 * _lopen (KERNEL32.@)
776 HFILE WINAPI _lopen( LPCSTR path, INT mode )
778 HANDLE hfile;
780 TRACE("(%s,%04x)\n", debugstr_a(path), mode );
781 hfile = create_file_OF( path, mode & ~OF_CREATE );
782 return HandleToLong(hfile);
785 /***********************************************************************
786 * _lread (KERNEL32.@)
788 UINT WINAPI _lread( HFILE handle, LPVOID buffer, UINT count )
790 DWORD result;
791 if (!ReadFile( LongToHandle(handle), buffer, count, &result, NULL ))
792 return HFILE_ERROR;
793 return result;
797 /***********************************************************************
798 * _llseek (KERNEL32.@)
800 LONG WINAPI _llseek( HFILE hFile, LONG lOffset, INT nOrigin )
802 return SetFilePointer( LongToHandle(hFile), lOffset, NULL, nOrigin );
806 /***********************************************************************
807 * _lwrite (KERNEL32.@)
809 UINT WINAPI _lwrite( HFILE hFile, LPCSTR buffer, UINT count )
811 return (UINT)_hwrite( hFile, buffer, (LONG)count );
815 /***********************************************************************
816 * FlushFileBuffers (KERNEL32.@)
818 BOOL WINAPI FlushFileBuffers( HANDLE hFile )
820 NTSTATUS nts;
821 IO_STATUS_BLOCK ioblk;
823 if (is_console_handle( hFile ))
825 /* this will fail (as expected) for an output handle */
826 return FlushConsoleInputBuffer( hFile );
828 nts = NtFlushBuffersFile( hFile, &ioblk );
829 if (nts != STATUS_SUCCESS)
831 SetLastError( RtlNtStatusToDosError( nts ) );
832 return FALSE;
835 return TRUE;
839 /***********************************************************************
840 * GetFileType (KERNEL32.@)
842 DWORD WINAPI GetFileType( HANDLE hFile )
844 FILE_FS_DEVICE_INFORMATION info;
845 IO_STATUS_BLOCK io;
846 NTSTATUS status;
848 if (hFile == (HANDLE)STD_INPUT_HANDLE || hFile == (HANDLE)STD_OUTPUT_HANDLE
849 || hFile == (HANDLE)STD_ERROR_HANDLE)
850 hFile = GetStdHandle((DWORD_PTR)hFile);
852 if (is_console_handle( hFile )) return FILE_TYPE_CHAR;
854 status = NtQueryVolumeInformationFile( hFile, &io, &info, sizeof(info), FileFsDeviceInformation );
855 if (status != STATUS_SUCCESS)
857 SetLastError( RtlNtStatusToDosError(status) );
858 return FILE_TYPE_UNKNOWN;
861 switch(info.DeviceType)
863 case FILE_DEVICE_NULL:
864 case FILE_DEVICE_SERIAL_PORT:
865 case FILE_DEVICE_PARALLEL_PORT:
866 case FILE_DEVICE_TAPE:
867 case FILE_DEVICE_UNKNOWN:
868 return FILE_TYPE_CHAR;
869 case FILE_DEVICE_NAMED_PIPE:
870 return FILE_TYPE_PIPE;
871 default:
872 return FILE_TYPE_DISK;
877 /***********************************************************************
878 * GetFileInformationByHandle (KERNEL32.@)
880 BOOL WINAPI GetFileInformationByHandle( HANDLE hFile, BY_HANDLE_FILE_INFORMATION *info )
882 FILE_ALL_INFORMATION all_info;
883 IO_STATUS_BLOCK io;
884 NTSTATUS status;
886 status = NtQueryInformationFile( hFile, &io, &all_info, sizeof(all_info), FileAllInformation );
887 if (status == STATUS_BUFFER_OVERFLOW) status = STATUS_SUCCESS;
888 if (status == STATUS_SUCCESS)
890 info->dwFileAttributes = all_info.BasicInformation.FileAttributes;
891 info->ftCreationTime.dwHighDateTime = all_info.BasicInformation.CreationTime.u.HighPart;
892 info->ftCreationTime.dwLowDateTime = all_info.BasicInformation.CreationTime.u.LowPart;
893 info->ftLastAccessTime.dwHighDateTime = all_info.BasicInformation.LastAccessTime.u.HighPart;
894 info->ftLastAccessTime.dwLowDateTime = all_info.BasicInformation.LastAccessTime.u.LowPart;
895 info->ftLastWriteTime.dwHighDateTime = all_info.BasicInformation.LastWriteTime.u.HighPart;
896 info->ftLastWriteTime.dwLowDateTime = all_info.BasicInformation.LastWriteTime.u.LowPart;
897 info->dwVolumeSerialNumber = 0; /* FIXME */
898 info->nFileSizeHigh = all_info.StandardInformation.EndOfFile.u.HighPart;
899 info->nFileSizeLow = all_info.StandardInformation.EndOfFile.u.LowPart;
900 info->nNumberOfLinks = all_info.StandardInformation.NumberOfLinks;
901 info->nFileIndexHigh = all_info.InternalInformation.IndexNumber.u.HighPart;
902 info->nFileIndexLow = all_info.InternalInformation.IndexNumber.u.LowPart;
903 return TRUE;
905 SetLastError( RtlNtStatusToDosError(status) );
906 return FALSE;
910 /***********************************************************************
911 * GetFileInformationByHandleEx (KERNEL32.@)
913 BOOL WINAPI GetFileInformationByHandleEx( HANDLE handle, FILE_INFO_BY_HANDLE_CLASS class,
914 LPVOID info, DWORD size )
916 NTSTATUS status;
917 IO_STATUS_BLOCK io;
919 switch (class)
921 case FileStreamInfo:
922 case FileCompressionInfo:
923 case FileAttributeTagInfo:
924 case FileRemoteProtocolInfo:
925 case FileFullDirectoryInfo:
926 case FileFullDirectoryRestartInfo:
927 case FileStorageInfo:
928 case FileAlignmentInfo:
929 case FileIdInfo:
930 case FileIdExtdDirectoryInfo:
931 case FileIdExtdDirectoryRestartInfo:
932 FIXME( "%p, %u, %p, %u\n", handle, class, info, size );
933 SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
934 return FALSE;
936 case FileBasicInfo:
937 status = NtQueryInformationFile( handle, &io, info, size, FileBasicInformation );
938 break;
940 case FileStandardInfo:
941 status = NtQueryInformationFile( handle, &io, info, size, FileStandardInformation );
942 break;
944 case FileNameInfo:
945 status = NtQueryInformationFile( handle, &io, info, size, FileNameInformation );
946 break;
948 case FileIdBothDirectoryRestartInfo:
949 case FileIdBothDirectoryInfo:
950 status = NtQueryDirectoryFile( handle, NULL, NULL, NULL, &io, info, size,
951 FileIdBothDirectoryInformation, FALSE, NULL,
952 (class == FileIdBothDirectoryRestartInfo) );
953 break;
955 case FileRenameInfo:
956 case FileDispositionInfo:
957 case FileAllocationInfo:
958 case FileIoPriorityHintInfo:
959 case FileEndOfFileInfo:
960 default:
961 SetLastError( ERROR_INVALID_PARAMETER );
962 return FALSE;
965 if (status != STATUS_SUCCESS)
967 SetLastError( RtlNtStatusToDosError( status ) );
968 return FALSE;
970 return TRUE;
974 /***********************************************************************
975 * GetFileSize (KERNEL32.@)
977 * Retrieve the size of a file.
979 * PARAMS
980 * hFile [I] File to retrieve size of.
981 * filesizehigh [O] On return, the high bits of the file size.
983 * RETURNS
984 * Success: The low bits of the file size.
985 * Failure: INVALID_FILE_SIZE. As this is could also be a success value,
986 * check GetLastError() for values other than ERROR_SUCCESS.
988 DWORD WINAPI GetFileSize( HANDLE hFile, LPDWORD filesizehigh )
990 LARGE_INTEGER size;
991 if (!GetFileSizeEx( hFile, &size )) return INVALID_FILE_SIZE;
992 if (filesizehigh) *filesizehigh = size.u.HighPart;
993 if (size.u.LowPart == INVALID_FILE_SIZE) SetLastError(0);
994 return size.u.LowPart;
998 /***********************************************************************
999 * GetFileSizeEx (KERNEL32.@)
1001 * Retrieve the size of a file.
1003 * PARAMS
1004 * hFile [I] File to retrieve size of.
1005 * lpFileSIze [O] On return, the size of the file.
1007 * RETURNS
1008 * Success: TRUE.
1009 * Failure: FALSE, check GetLastError().
1011 BOOL WINAPI GetFileSizeEx( HANDLE hFile, PLARGE_INTEGER lpFileSize )
1013 FILE_STANDARD_INFORMATION info;
1014 IO_STATUS_BLOCK io;
1015 NTSTATUS status;
1017 if (is_console_handle( hFile ))
1019 SetLastError( ERROR_INVALID_HANDLE );
1020 return FALSE;
1023 status = NtQueryInformationFile( hFile, &io, &info, sizeof(info), FileStandardInformation );
1024 if (status == STATUS_SUCCESS)
1026 *lpFileSize = info.EndOfFile;
1027 return TRUE;
1029 SetLastError( RtlNtStatusToDosError(status) );
1030 return FALSE;
1034 /**************************************************************************
1035 * SetEndOfFile (KERNEL32.@)
1037 * Sets the current position as the end of the file.
1039 * PARAMS
1040 * hFile [I] File handle.
1042 * RETURNS
1043 * Success: TRUE.
1044 * Failure: FALSE, check GetLastError().
1046 BOOL WINAPI SetEndOfFile( HANDLE hFile )
1048 FILE_POSITION_INFORMATION pos;
1049 FILE_END_OF_FILE_INFORMATION eof;
1050 IO_STATUS_BLOCK io;
1051 NTSTATUS status;
1053 status = NtQueryInformationFile( hFile, &io, &pos, sizeof(pos), FilePositionInformation );
1054 if (status == STATUS_SUCCESS)
1056 eof.EndOfFile = pos.CurrentByteOffset;
1057 status = NtSetInformationFile( hFile, &io, &eof, sizeof(eof), FileEndOfFileInformation );
1059 if (status == STATUS_SUCCESS) return TRUE;
1060 SetLastError( RtlNtStatusToDosError(status) );
1061 return FALSE;
1064 /**************************************************************************
1065 * SetFileCompletionNotificationModes (KERNEL32.@)
1067 BOOL WINAPI SetFileCompletionNotificationModes( HANDLE handle, UCHAR flags )
1069 FIXME("%p %x - stub\n", handle, flags);
1070 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1071 return FALSE;
1075 /***********************************************************************
1076 * SetFileInformationByHandle (KERNEL32.@)
1078 BOOL WINAPI SetFileInformationByHandle( HANDLE file, FILE_INFO_BY_HANDLE_CLASS class, VOID *info, DWORD size )
1080 NTSTATUS status;
1081 IO_STATUS_BLOCK io;
1083 TRACE( "%p %u %p %u\n", file, class, info, size );
1085 switch (class)
1087 case FileBasicInfo:
1088 case FileNameInfo:
1089 case FileRenameInfo:
1090 case FileAllocationInfo:
1091 case FileEndOfFileInfo:
1092 case FileStreamInfo:
1093 case FileIdBothDirectoryInfo:
1094 case FileIdBothDirectoryRestartInfo:
1095 case FileIoPriorityHintInfo:
1096 case FileFullDirectoryInfo:
1097 case FileFullDirectoryRestartInfo:
1098 case FileStorageInfo:
1099 case FileAlignmentInfo:
1100 case FileIdInfo:
1101 case FileIdExtdDirectoryInfo:
1102 case FileIdExtdDirectoryRestartInfo:
1103 FIXME( "%p, %u, %p, %u\n", file, class, info, size );
1104 SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
1105 return FALSE;
1107 case FileDispositionInfo:
1108 status = NtSetInformationFile( file, &io, info, size, FileDispositionInformation );
1109 break;
1111 case FileStandardInfo:
1112 case FileCompressionInfo:
1113 case FileAttributeTagInfo:
1114 case FileRemoteProtocolInfo:
1115 default:
1116 SetLastError( ERROR_INVALID_PARAMETER );
1117 return FALSE;
1120 if (status != STATUS_SUCCESS)
1122 SetLastError( RtlNtStatusToDosError( status ) );
1123 return FALSE;
1125 return TRUE;
1129 /***********************************************************************
1130 * SetFilePointer (KERNEL32.@)
1132 DWORD WINAPI DECLSPEC_HOTPATCH SetFilePointer( HANDLE hFile, LONG distance, LONG *highword, DWORD method )
1134 LARGE_INTEGER dist, newpos;
1136 if (highword)
1138 dist.u.LowPart = distance;
1139 dist.u.HighPart = *highword;
1141 else dist.QuadPart = distance;
1143 if (!SetFilePointerEx( hFile, dist, &newpos, method )) return INVALID_SET_FILE_POINTER;
1145 if (highword) *highword = newpos.u.HighPart;
1146 if (newpos.u.LowPart == INVALID_SET_FILE_POINTER) SetLastError( 0 );
1147 return newpos.u.LowPart;
1151 /***********************************************************************
1152 * SetFilePointerEx (KERNEL32.@)
1154 BOOL WINAPI SetFilePointerEx( HANDLE hFile, LARGE_INTEGER distance,
1155 LARGE_INTEGER *newpos, DWORD method )
1157 LONGLONG pos;
1158 IO_STATUS_BLOCK io;
1159 FILE_POSITION_INFORMATION info;
1161 switch(method)
1163 case FILE_BEGIN:
1164 pos = distance.QuadPart;
1165 break;
1166 case FILE_CURRENT:
1167 if (NtQueryInformationFile( hFile, &io, &info, sizeof(info), FilePositionInformation ))
1168 goto error;
1169 pos = info.CurrentByteOffset.QuadPart + distance.QuadPart;
1170 break;
1171 case FILE_END:
1173 FILE_END_OF_FILE_INFORMATION eof;
1174 if (NtQueryInformationFile( hFile, &io, &eof, sizeof(eof), FileEndOfFileInformation ))
1175 goto error;
1176 pos = eof.EndOfFile.QuadPart + distance.QuadPart;
1178 break;
1179 default:
1180 SetLastError( ERROR_INVALID_PARAMETER );
1181 return FALSE;
1184 if (pos < 0)
1186 SetLastError( ERROR_NEGATIVE_SEEK );
1187 return FALSE;
1190 info.CurrentByteOffset.QuadPart = pos;
1191 if (NtSetInformationFile( hFile, &io, &info, sizeof(info), FilePositionInformation ))
1192 goto error;
1193 if (newpos) newpos->QuadPart = pos;
1194 return TRUE;
1196 error:
1197 SetLastError( RtlNtStatusToDosError(io.u.Status) );
1198 return FALSE;
1201 /***********************************************************************
1202 * SetFileValidData (KERNEL32.@)
1204 BOOL WINAPI SetFileValidData( HANDLE hFile, LONGLONG ValidDataLength )
1206 FILE_VALID_DATA_LENGTH_INFORMATION info;
1207 IO_STATUS_BLOCK io;
1208 NTSTATUS status;
1210 info.ValidDataLength.QuadPart = ValidDataLength;
1211 status = NtSetInformationFile( hFile, &io, &info, sizeof(info), FileValidDataLengthInformation );
1213 if (status == STATUS_SUCCESS) return TRUE;
1214 SetLastError( RtlNtStatusToDosError(status) );
1215 return FALSE;
1218 /***********************************************************************
1219 * GetFileTime (KERNEL32.@)
1221 BOOL WINAPI GetFileTime( HANDLE hFile, FILETIME *lpCreationTime,
1222 FILETIME *lpLastAccessTime, FILETIME *lpLastWriteTime )
1224 FILE_BASIC_INFORMATION info;
1225 IO_STATUS_BLOCK io;
1226 NTSTATUS status;
1228 status = NtQueryInformationFile( hFile, &io, &info, sizeof(info), FileBasicInformation );
1229 if (status == STATUS_SUCCESS)
1231 if (lpCreationTime)
1233 lpCreationTime->dwHighDateTime = info.CreationTime.u.HighPart;
1234 lpCreationTime->dwLowDateTime = info.CreationTime.u.LowPart;
1236 if (lpLastAccessTime)
1238 lpLastAccessTime->dwHighDateTime = info.LastAccessTime.u.HighPart;
1239 lpLastAccessTime->dwLowDateTime = info.LastAccessTime.u.LowPart;
1241 if (lpLastWriteTime)
1243 lpLastWriteTime->dwHighDateTime = info.LastWriteTime.u.HighPart;
1244 lpLastWriteTime->dwLowDateTime = info.LastWriteTime.u.LowPart;
1246 return TRUE;
1248 SetLastError( RtlNtStatusToDosError(status) );
1249 return FALSE;
1253 /***********************************************************************
1254 * SetFileTime (KERNEL32.@)
1256 BOOL WINAPI SetFileTime( HANDLE hFile, const FILETIME *ctime,
1257 const FILETIME *atime, const FILETIME *mtime )
1259 FILE_BASIC_INFORMATION info;
1260 IO_STATUS_BLOCK io;
1261 NTSTATUS status;
1263 memset( &info, 0, sizeof(info) );
1264 if (ctime)
1266 info.CreationTime.u.HighPart = ctime->dwHighDateTime;
1267 info.CreationTime.u.LowPart = ctime->dwLowDateTime;
1269 if (atime)
1271 info.LastAccessTime.u.HighPart = atime->dwHighDateTime;
1272 info.LastAccessTime.u.LowPart = atime->dwLowDateTime;
1274 if (mtime)
1276 info.LastWriteTime.u.HighPart = mtime->dwHighDateTime;
1277 info.LastWriteTime.u.LowPart = mtime->dwLowDateTime;
1280 status = NtSetInformationFile( hFile, &io, &info, sizeof(info), FileBasicInformation );
1281 if (status == STATUS_SUCCESS) return TRUE;
1282 SetLastError( RtlNtStatusToDosError(status) );
1283 return FALSE;
1287 /**************************************************************************
1288 * LockFile (KERNEL32.@)
1290 BOOL WINAPI LockFile( HANDLE hFile, DWORD offset_low, DWORD offset_high,
1291 DWORD count_low, DWORD count_high )
1293 NTSTATUS status;
1294 LARGE_INTEGER count, offset;
1296 TRACE( "%p %x%08x %x%08x\n",
1297 hFile, offset_high, offset_low, count_high, count_low );
1299 count.u.LowPart = count_low;
1300 count.u.HighPart = count_high;
1301 offset.u.LowPart = offset_low;
1302 offset.u.HighPart = offset_high;
1304 status = NtLockFile( hFile, 0, NULL, NULL,
1305 NULL, &offset, &count, NULL, TRUE, TRUE );
1307 if (status != STATUS_SUCCESS) SetLastError( RtlNtStatusToDosError(status) );
1308 return !status;
1312 /**************************************************************************
1313 * LockFileEx [KERNEL32.@]
1315 * Locks a byte range within an open file for shared or exclusive access.
1317 * RETURNS
1318 * success: TRUE
1319 * failure: FALSE
1321 * NOTES
1322 * Per Microsoft docs, the third parameter (reserved) must be set to 0.
1324 BOOL WINAPI LockFileEx( HANDLE hFile, DWORD flags, DWORD reserved,
1325 DWORD count_low, DWORD count_high, LPOVERLAPPED overlapped )
1327 NTSTATUS status;
1328 LARGE_INTEGER count, offset;
1329 LPVOID cvalue = NULL;
1331 if (reserved)
1333 SetLastError( ERROR_INVALID_PARAMETER );
1334 return FALSE;
1337 TRACE( "%p %x%08x %x%08x flags %x\n",
1338 hFile, overlapped->u.s.OffsetHigh, overlapped->u.s.Offset,
1339 count_high, count_low, flags );
1341 count.u.LowPart = count_low;
1342 count.u.HighPart = count_high;
1343 offset.u.LowPart = overlapped->u.s.Offset;
1344 offset.u.HighPart = overlapped->u.s.OffsetHigh;
1346 if (((ULONG_PTR)overlapped->hEvent & 1) == 0) cvalue = overlapped;
1348 status = NtLockFile( hFile, overlapped->hEvent, NULL, cvalue,
1349 NULL, &offset, &count, NULL,
1350 flags & LOCKFILE_FAIL_IMMEDIATELY,
1351 flags & LOCKFILE_EXCLUSIVE_LOCK );
1353 if (status) SetLastError( RtlNtStatusToDosError(status) );
1354 return !status;
1358 /**************************************************************************
1359 * UnlockFile (KERNEL32.@)
1361 BOOL WINAPI UnlockFile( HANDLE hFile, DWORD offset_low, DWORD offset_high,
1362 DWORD count_low, DWORD count_high )
1364 NTSTATUS status;
1365 LARGE_INTEGER count, offset;
1367 count.u.LowPart = count_low;
1368 count.u.HighPart = count_high;
1369 offset.u.LowPart = offset_low;
1370 offset.u.HighPart = offset_high;
1372 status = NtUnlockFile( hFile, NULL, &offset, &count, NULL);
1373 if (status) SetLastError( RtlNtStatusToDosError(status) );
1374 return !status;
1378 /**************************************************************************
1379 * UnlockFileEx (KERNEL32.@)
1381 BOOL WINAPI UnlockFileEx( HANDLE hFile, DWORD reserved, DWORD count_low, DWORD count_high,
1382 LPOVERLAPPED overlapped )
1384 if (reserved)
1386 SetLastError( ERROR_INVALID_PARAMETER );
1387 return FALSE;
1389 if (overlapped->hEvent) FIXME("Unimplemented overlapped operation\n");
1391 return UnlockFile( hFile, overlapped->u.s.Offset, overlapped->u.s.OffsetHigh, count_low, count_high );
1395 /*************************************************************************
1396 * SetHandleCount (KERNEL32.@)
1398 UINT WINAPI SetHandleCount( UINT count )
1400 return count;
1404 /**************************************************************************
1405 * Operations on file names *
1406 **************************************************************************/
1409 /*************************************************************************
1410 * CreateFileW [KERNEL32.@] Creates or opens a file or other object
1412 * Creates or opens an object, and returns a handle that can be used to
1413 * access that object.
1415 * PARAMS
1417 * filename [in] pointer to filename to be accessed
1418 * access [in] access mode requested
1419 * sharing [in] share mode
1420 * sa [in] pointer to security attributes
1421 * creation [in] how to create the file
1422 * attributes [in] attributes for newly created file
1423 * template [in] handle to file with extended attributes to copy
1425 * RETURNS
1426 * Success: Open handle to specified file
1427 * Failure: INVALID_HANDLE_VALUE
1429 HANDLE WINAPI CreateFileW( LPCWSTR filename, DWORD access, DWORD sharing,
1430 LPSECURITY_ATTRIBUTES sa, DWORD creation,
1431 DWORD attributes, HANDLE template )
1433 NTSTATUS status;
1434 UINT options;
1435 OBJECT_ATTRIBUTES attr;
1436 UNICODE_STRING nameW;
1437 IO_STATUS_BLOCK io;
1438 HANDLE ret;
1439 DWORD dosdev;
1440 const WCHAR *vxd_name = NULL;
1441 static const WCHAR bkslashes_with_dotW[] = {'\\','\\','.','\\',0};
1442 static const WCHAR coninW[] = {'C','O','N','I','N','$',0};
1443 static const WCHAR conoutW[] = {'C','O','N','O','U','T','$',0};
1444 SECURITY_QUALITY_OF_SERVICE qos;
1446 static const UINT nt_disposition[5] =
1448 FILE_CREATE, /* CREATE_NEW */
1449 FILE_OVERWRITE_IF, /* CREATE_ALWAYS */
1450 FILE_OPEN, /* OPEN_EXISTING */
1451 FILE_OPEN_IF, /* OPEN_ALWAYS */
1452 FILE_OVERWRITE /* TRUNCATE_EXISTING */
1456 /* sanity checks */
1458 if (!filename || !filename[0])
1460 SetLastError( ERROR_PATH_NOT_FOUND );
1461 return INVALID_HANDLE_VALUE;
1464 TRACE("%s %s%s%s%s%s%s%s creation %d attributes 0x%x\n", debugstr_w(filename),
1465 (access & GENERIC_READ)?"GENERIC_READ ":"",
1466 (access & GENERIC_WRITE)?"GENERIC_WRITE ":"",
1467 (access & GENERIC_EXECUTE)?"GENERIC_EXECUTE ":"",
1468 (!access)?"QUERY_ACCESS ":"",
1469 (sharing & FILE_SHARE_READ)?"FILE_SHARE_READ ":"",
1470 (sharing & FILE_SHARE_WRITE)?"FILE_SHARE_WRITE ":"",
1471 (sharing & FILE_SHARE_DELETE)?"FILE_SHARE_DELETE ":"",
1472 creation, attributes);
1474 /* Open a console for CONIN$ or CONOUT$ */
1476 if (!strcmpiW(filename, coninW) || !strcmpiW(filename, conoutW))
1478 ret = OpenConsoleW(filename, access, (sa && sa->bInheritHandle),
1479 creation ? OPEN_EXISTING : 0);
1480 if (ret == INVALID_HANDLE_VALUE) SetLastError(ERROR_INVALID_PARAMETER);
1481 goto done;
1484 if (!strncmpW(filename, bkslashes_with_dotW, 4))
1486 static const WCHAR pipeW[] = {'P','I','P','E','\\',0};
1487 static const WCHAR mailslotW[] = {'M','A','I','L','S','L','O','T','\\',0};
1489 if ((isalphaW(filename[4]) && filename[5] == ':' && filename[6] == '\0') ||
1490 !strncmpiW( filename + 4, pipeW, 5 ) ||
1491 !strncmpiW( filename + 4, mailslotW, 9 ))
1493 dosdev = 0;
1495 else if ((dosdev = RtlIsDosDeviceName_U( filename + 4 )))
1497 dosdev += MAKELONG( 0, 4*sizeof(WCHAR) ); /* adjust position to start of filename */
1499 else if (GetVersion() & 0x80000000)
1501 vxd_name = filename + 4;
1502 if (!creation) creation = OPEN_EXISTING;
1505 else dosdev = RtlIsDosDeviceName_U( filename );
1507 if (dosdev)
1509 static const WCHAR conW[] = {'C','O','N'};
1511 if (LOWORD(dosdev) == sizeof(conW) &&
1512 !memicmpW( filename + HIWORD(dosdev)/sizeof(WCHAR), conW, sizeof(conW)/sizeof(WCHAR)))
1514 switch (access & (GENERIC_READ|GENERIC_WRITE))
1516 case GENERIC_READ:
1517 ret = OpenConsoleW(coninW, access, (sa && sa->bInheritHandle), OPEN_EXISTING);
1518 goto done;
1519 case GENERIC_WRITE:
1520 ret = OpenConsoleW(conoutW, access, (sa && sa->bInheritHandle), OPEN_EXISTING);
1521 goto done;
1522 default:
1523 SetLastError( ERROR_FILE_NOT_FOUND );
1524 return INVALID_HANDLE_VALUE;
1529 if (creation < CREATE_NEW || creation > TRUNCATE_EXISTING)
1531 SetLastError( ERROR_INVALID_PARAMETER );
1532 return INVALID_HANDLE_VALUE;
1535 if (!RtlDosPathNameToNtPathName_U( filename, &nameW, NULL, NULL ))
1537 SetLastError( ERROR_PATH_NOT_FOUND );
1538 return INVALID_HANDLE_VALUE;
1541 /* now call NtCreateFile */
1543 options = 0;
1544 if (attributes & FILE_FLAG_BACKUP_SEMANTICS)
1545 options |= FILE_OPEN_FOR_BACKUP_INTENT;
1546 else
1547 options |= FILE_NON_DIRECTORY_FILE;
1548 if (attributes & FILE_FLAG_DELETE_ON_CLOSE)
1550 options |= FILE_DELETE_ON_CLOSE;
1551 access |= DELETE;
1553 if (attributes & FILE_FLAG_NO_BUFFERING)
1554 options |= FILE_NO_INTERMEDIATE_BUFFERING;
1555 if (!(attributes & FILE_FLAG_OVERLAPPED))
1556 options |= FILE_SYNCHRONOUS_IO_NONALERT;
1557 if (attributes & FILE_FLAG_RANDOM_ACCESS)
1558 options |= FILE_RANDOM_ACCESS;
1559 attributes &= FILE_ATTRIBUTE_VALID_FLAGS;
1561 attr.Length = sizeof(attr);
1562 attr.RootDirectory = 0;
1563 attr.Attributes = OBJ_CASE_INSENSITIVE;
1564 attr.ObjectName = &nameW;
1565 attr.SecurityDescriptor = sa ? sa->lpSecurityDescriptor : NULL;
1566 if (attributes & SECURITY_SQOS_PRESENT)
1568 qos.Length = sizeof(qos);
1569 qos.ImpersonationLevel = (attributes >> 16) & 0x3;
1570 qos.ContextTrackingMode = attributes & SECURITY_CONTEXT_TRACKING ? SECURITY_DYNAMIC_TRACKING : SECURITY_STATIC_TRACKING;
1571 qos.EffectiveOnly = (attributes & SECURITY_EFFECTIVE_ONLY) != 0;
1572 attr.SecurityQualityOfService = &qos;
1574 else
1575 attr.SecurityQualityOfService = NULL;
1577 if (sa && sa->bInheritHandle) attr.Attributes |= OBJ_INHERIT;
1579 status = NtCreateFile( &ret, access | SYNCHRONIZE, &attr, &io, NULL, attributes,
1580 sharing, nt_disposition[creation - CREATE_NEW],
1581 options, NULL, 0 );
1582 if (status)
1584 if (vxd_name && vxd_name[0])
1586 static HANDLE (*vxd_open)(LPCWSTR,DWORD,SECURITY_ATTRIBUTES*);
1587 if (!vxd_open) vxd_open = (void *)GetProcAddress( GetModuleHandleA("krnl386.exe16"),
1588 "__wine_vxd_open" );
1589 if (vxd_open && (ret = vxd_open( vxd_name, access, sa ))) goto done;
1592 WARN("Unable to create file %s (status %x)\n", debugstr_w(filename), status);
1593 ret = INVALID_HANDLE_VALUE;
1595 /* In the case file creation was rejected due to CREATE_NEW flag
1596 * was specified and file with that name already exists, correct
1597 * last error is ERROR_FILE_EXISTS and not ERROR_ALREADY_EXISTS.
1598 * Note: RtlNtStatusToDosError is not the subject to blame here.
1600 if (status == STATUS_OBJECT_NAME_COLLISION)
1601 SetLastError( ERROR_FILE_EXISTS );
1602 else
1603 SetLastError( RtlNtStatusToDosError(status) );
1605 else
1607 if ((creation == CREATE_ALWAYS && io.Information == FILE_OVERWRITTEN) ||
1608 (creation == OPEN_ALWAYS && io.Information == FILE_OPENED))
1609 SetLastError( ERROR_ALREADY_EXISTS );
1610 else
1611 SetLastError( 0 );
1613 RtlFreeUnicodeString( &nameW );
1615 done:
1616 if (!ret) ret = INVALID_HANDLE_VALUE;
1617 TRACE("returning %p\n", ret);
1618 return ret;
1623 /*************************************************************************
1624 * CreateFileA (KERNEL32.@)
1626 * See CreateFileW.
1628 HANDLE WINAPI CreateFileA( LPCSTR filename, DWORD access, DWORD sharing,
1629 LPSECURITY_ATTRIBUTES sa, DWORD creation,
1630 DWORD attributes, HANDLE template)
1632 WCHAR *nameW;
1634 if ((GetVersion() & 0x80000000) && IsBadStringPtrA(filename, -1)) return INVALID_HANDLE_VALUE;
1635 if (!(nameW = FILE_name_AtoW( filename, FALSE ))) return INVALID_HANDLE_VALUE;
1636 return CreateFileW( nameW, access, sharing, sa, creation, attributes, template );
1639 /*************************************************************************
1640 * CreateFile2 (KERNEL32.@)
1642 HANDLE WINAPI CreateFile2( LPCWSTR filename, DWORD access, DWORD sharing, DWORD creation,
1643 CREATEFILE2_EXTENDED_PARAMETERS *exparams )
1645 LPSECURITY_ATTRIBUTES sa = exparams ? exparams->lpSecurityAttributes : NULL;
1646 DWORD attributes = exparams ? exparams->dwFileAttributes : 0;
1647 HANDLE template = exparams ? exparams->hTemplateFile : NULL;
1649 FIXME("(%s %x %x %x %p), partial stub\n", debugstr_w(filename), access, sharing, creation, exparams);
1651 return CreateFileW( filename, access, sharing, sa, creation, attributes, template );
1654 /***********************************************************************
1655 * DeleteFileW (KERNEL32.@)
1657 * Delete a file.
1659 * PARAMS
1660 * path [I] Path to the file to delete.
1662 * RETURNS
1663 * Success: TRUE.
1664 * Failure: FALSE, check GetLastError().
1666 BOOL WINAPI DeleteFileW( LPCWSTR path )
1668 UNICODE_STRING nameW;
1669 OBJECT_ATTRIBUTES attr;
1670 NTSTATUS status;
1671 HANDLE hFile;
1672 IO_STATUS_BLOCK io;
1674 TRACE("%s\n", debugstr_w(path) );
1676 if (!RtlDosPathNameToNtPathName_U( path, &nameW, NULL, NULL ))
1678 SetLastError( ERROR_PATH_NOT_FOUND );
1679 return FALSE;
1682 attr.Length = sizeof(attr);
1683 attr.RootDirectory = 0;
1684 attr.Attributes = OBJ_CASE_INSENSITIVE;
1685 attr.ObjectName = &nameW;
1686 attr.SecurityDescriptor = NULL;
1687 attr.SecurityQualityOfService = NULL;
1689 status = NtCreateFile(&hFile, SYNCHRONIZE | DELETE, &attr, &io, NULL, 0,
1690 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
1691 FILE_OPEN, FILE_DELETE_ON_CLOSE | FILE_NON_DIRECTORY_FILE, NULL, 0);
1692 if (status == STATUS_SUCCESS) status = NtClose(hFile);
1694 RtlFreeUnicodeString( &nameW );
1695 if (status)
1697 SetLastError( RtlNtStatusToDosError(status) );
1698 return FALSE;
1700 return TRUE;
1704 /***********************************************************************
1705 * DeleteFileA (KERNEL32.@)
1707 * See DeleteFileW.
1709 BOOL WINAPI DeleteFileA( LPCSTR path )
1711 WCHAR *pathW;
1713 if (!(pathW = FILE_name_AtoW( path, FALSE ))) return FALSE;
1714 return DeleteFileW( pathW );
1718 /**************************************************************************
1719 * ReplaceFileW (KERNEL32.@)
1720 * ReplaceFile (KERNEL32.@)
1722 BOOL WINAPI ReplaceFileW(LPCWSTR lpReplacedFileName, LPCWSTR lpReplacementFileName,
1723 LPCWSTR lpBackupFileName, DWORD dwReplaceFlags,
1724 LPVOID lpExclude, LPVOID lpReserved)
1726 UNICODE_STRING nt_replaced_name, nt_replacement_name;
1727 ANSI_STRING unix_replaced_name, unix_replacement_name, unix_backup_name;
1728 HANDLE hReplaced = NULL, hReplacement = NULL, hBackup = NULL;
1729 DWORD error = ERROR_SUCCESS;
1730 UINT replaced_flags;
1731 BOOL ret = FALSE;
1732 NTSTATUS status;
1733 IO_STATUS_BLOCK io;
1734 OBJECT_ATTRIBUTES attr;
1736 TRACE("%s %s %s 0x%08x %p %p\n", debugstr_w(lpReplacedFileName),
1737 debugstr_w(lpReplacementFileName), debugstr_w(lpBackupFileName),
1738 dwReplaceFlags, lpExclude, lpReserved);
1740 if (dwReplaceFlags)
1741 FIXME("Ignoring flags %x\n", dwReplaceFlags);
1743 /* First two arguments are mandatory */
1744 if (!lpReplacedFileName || !lpReplacementFileName)
1746 SetLastError(ERROR_INVALID_PARAMETER);
1747 return FALSE;
1750 unix_replaced_name.Buffer = NULL;
1751 unix_replacement_name.Buffer = NULL;
1752 unix_backup_name.Buffer = NULL;
1754 attr.Length = sizeof(attr);
1755 attr.RootDirectory = 0;
1756 attr.Attributes = OBJ_CASE_INSENSITIVE;
1757 attr.ObjectName = NULL;
1758 attr.SecurityDescriptor = NULL;
1759 attr.SecurityQualityOfService = NULL;
1761 /* Open the "replaced" file for reading and writing */
1762 if (!(RtlDosPathNameToNtPathName_U(lpReplacedFileName, &nt_replaced_name, NULL, NULL)))
1764 error = ERROR_PATH_NOT_FOUND;
1765 goto fail;
1767 replaced_flags = lpBackupFileName ? FILE_OPEN : FILE_OPEN_IF;
1768 attr.ObjectName = &nt_replaced_name;
1769 status = NtOpenFile(&hReplaced, GENERIC_READ|GENERIC_WRITE|DELETE|SYNCHRONIZE,
1770 &attr, &io,
1771 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
1772 FILE_SYNCHRONOUS_IO_NONALERT|FILE_NON_DIRECTORY_FILE);
1773 if (status == STATUS_SUCCESS)
1774 status = wine_nt_to_unix_file_name(&nt_replaced_name, &unix_replaced_name, replaced_flags, FALSE);
1775 RtlFreeUnicodeString(&nt_replaced_name);
1776 if (status != STATUS_SUCCESS)
1778 if (status == STATUS_OBJECT_NAME_NOT_FOUND)
1779 error = ERROR_FILE_NOT_FOUND;
1780 else
1781 error = ERROR_UNABLE_TO_REMOVE_REPLACED;
1782 goto fail;
1786 * Open the replacement file for reading, writing, and deleting
1787 * (writing and deleting are needed when finished)
1789 if (!(RtlDosPathNameToNtPathName_U(lpReplacementFileName, &nt_replacement_name, NULL, NULL)))
1791 error = ERROR_PATH_NOT_FOUND;
1792 goto fail;
1794 attr.ObjectName = &nt_replacement_name;
1795 status = NtOpenFile(&hReplacement,
1796 GENERIC_READ|GENERIC_WRITE|DELETE|WRITE_DAC|SYNCHRONIZE,
1797 &attr, &io, 0,
1798 FILE_SYNCHRONOUS_IO_NONALERT|FILE_NON_DIRECTORY_FILE);
1799 if (status == STATUS_SUCCESS)
1800 status = wine_nt_to_unix_file_name(&nt_replacement_name, &unix_replacement_name, FILE_OPEN, FALSE);
1801 RtlFreeUnicodeString(&nt_replacement_name);
1802 if (status != STATUS_SUCCESS)
1804 error = RtlNtStatusToDosError(status);
1805 goto fail;
1808 /* If the user wants a backup then that needs to be performed first */
1809 if (lpBackupFileName)
1811 UNICODE_STRING nt_backup_name;
1812 FILE_BASIC_INFORMATION replaced_info;
1814 /* Obtain the file attributes from the "replaced" file */
1815 status = NtQueryInformationFile(hReplaced, &io, &replaced_info,
1816 sizeof(replaced_info),
1817 FileBasicInformation);
1818 if (status != STATUS_SUCCESS)
1820 error = RtlNtStatusToDosError(status);
1821 goto fail;
1824 if (!(RtlDosPathNameToNtPathName_U(lpBackupFileName, &nt_backup_name, NULL, NULL)))
1826 error = ERROR_PATH_NOT_FOUND;
1827 goto fail;
1829 attr.ObjectName = &nt_backup_name;
1830 /* Open the backup with permissions to write over it */
1831 status = NtCreateFile(&hBackup, GENERIC_WRITE | SYNCHRONIZE,
1832 &attr, &io, NULL, replaced_info.FileAttributes,
1833 FILE_SHARE_WRITE, FILE_OPEN_IF,
1834 FILE_SYNCHRONOUS_IO_NONALERT|FILE_NON_DIRECTORY_FILE,
1835 NULL, 0);
1836 if (status == STATUS_SUCCESS)
1837 status = wine_nt_to_unix_file_name(&nt_backup_name, &unix_backup_name, FILE_OPEN_IF, FALSE);
1838 RtlFreeUnicodeString(&nt_backup_name);
1839 if (status != STATUS_SUCCESS)
1841 error = RtlNtStatusToDosError(status);
1842 goto fail;
1845 /* If an existing backup exists then copy over it */
1846 if (rename(unix_replaced_name.Buffer, unix_backup_name.Buffer) == -1)
1848 error = ERROR_UNABLE_TO_REMOVE_REPLACED; /* is this correct? */
1849 goto fail;
1854 * Now that the backup has been performed (if requested), copy the replacement
1855 * into place
1857 if (rename(unix_replacement_name.Buffer, unix_replaced_name.Buffer) == -1)
1859 if (errno == EACCES)
1861 /* Inappropriate permissions on "replaced", rename will fail */
1862 error = ERROR_UNABLE_TO_REMOVE_REPLACED;
1863 goto fail;
1865 /* on failure we need to indicate whether a backup was made */
1866 if (!lpBackupFileName)
1867 error = ERROR_UNABLE_TO_MOVE_REPLACEMENT;
1868 else
1869 error = ERROR_UNABLE_TO_MOVE_REPLACEMENT_2;
1870 goto fail;
1872 /* Success! */
1873 ret = TRUE;
1875 /* Perform resource cleanup */
1876 fail:
1877 if (hBackup) CloseHandle(hBackup);
1878 if (hReplaced) CloseHandle(hReplaced);
1879 if (hReplacement) CloseHandle(hReplacement);
1880 RtlFreeAnsiString(&unix_backup_name);
1881 RtlFreeAnsiString(&unix_replacement_name);
1882 RtlFreeAnsiString(&unix_replaced_name);
1884 /* If there was an error, set the error code */
1885 if(!ret)
1886 SetLastError(error);
1887 return ret;
1891 /**************************************************************************
1892 * ReplaceFileA (KERNEL32.@)
1894 BOOL WINAPI ReplaceFileA(LPCSTR lpReplacedFileName,LPCSTR lpReplacementFileName,
1895 LPCSTR lpBackupFileName, DWORD dwReplaceFlags,
1896 LPVOID lpExclude, LPVOID lpReserved)
1898 WCHAR *replacedW, *replacementW, *backupW = NULL;
1899 BOOL ret;
1901 /* This function only makes sense when the first two parameters are defined */
1902 if (!lpReplacedFileName || !(replacedW = FILE_name_AtoW( lpReplacedFileName, TRUE )))
1904 SetLastError(ERROR_INVALID_PARAMETER);
1905 return FALSE;
1907 if (!lpReplacementFileName || !(replacementW = FILE_name_AtoW( lpReplacementFileName, TRUE )))
1909 HeapFree( GetProcessHeap(), 0, replacedW );
1910 SetLastError(ERROR_INVALID_PARAMETER);
1911 return FALSE;
1913 /* The backup parameter, however, is optional */
1914 if (lpBackupFileName)
1916 if (!(backupW = FILE_name_AtoW( lpBackupFileName, TRUE )))
1918 HeapFree( GetProcessHeap(), 0, replacedW );
1919 HeapFree( GetProcessHeap(), 0, replacementW );
1920 SetLastError(ERROR_INVALID_PARAMETER);
1921 return FALSE;
1924 ret = ReplaceFileW( replacedW, replacementW, backupW, dwReplaceFlags, lpExclude, lpReserved );
1925 HeapFree( GetProcessHeap(), 0, replacedW );
1926 HeapFree( GetProcessHeap(), 0, replacementW );
1927 HeapFree( GetProcessHeap(), 0, backupW );
1928 return ret;
1932 /*************************************************************************
1933 * FindFirstFileExW (KERNEL32.@)
1935 * NOTE: The FindExSearchLimitToDirectories is ignored - it gives the same
1936 * results as FindExSearchNameMatch
1938 HANDLE WINAPI FindFirstFileExW( LPCWSTR filename, FINDEX_INFO_LEVELS level,
1939 LPVOID data, FINDEX_SEARCH_OPS search_op,
1940 LPVOID filter, DWORD flags)
1942 WCHAR *mask;
1943 BOOL has_wildcard = FALSE;
1944 FIND_FIRST_INFO *info = NULL;
1945 UNICODE_STRING nt_name;
1946 OBJECT_ATTRIBUTES attr;
1947 IO_STATUS_BLOCK io;
1948 NTSTATUS status;
1949 DWORD size, device = 0;
1951 TRACE("%s %d %p %d %p %x\n", debugstr_w(filename), level, data, search_op, filter, flags);
1953 if (flags != 0)
1955 FIXME("flags not implemented 0x%08x\n", flags );
1957 if (search_op != FindExSearchNameMatch && search_op != FindExSearchLimitToDirectories)
1959 FIXME("search_op not implemented 0x%08x\n", search_op);
1960 SetLastError( ERROR_INVALID_PARAMETER );
1961 return INVALID_HANDLE_VALUE;
1963 if (level != FindExInfoStandard && level != FindExInfoBasic)
1965 FIXME("info level %d not implemented\n", level );
1966 SetLastError( ERROR_INVALID_PARAMETER );
1967 return INVALID_HANDLE_VALUE;
1970 if (!RtlDosPathNameToNtPathName_U( filename, &nt_name, &mask, NULL ))
1972 SetLastError( ERROR_PATH_NOT_FOUND );
1973 return INVALID_HANDLE_VALUE;
1976 if (!mask && (device = RtlIsDosDeviceName_U( filename )))
1978 static const WCHAR dotW[] = {'.',0};
1979 WCHAR *dir = NULL;
1981 /* we still need to check that the directory can be opened */
1983 if (HIWORD(device))
1985 if (!(dir = HeapAlloc( GetProcessHeap(), 0, HIWORD(device) + sizeof(WCHAR) )))
1987 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
1988 goto error;
1990 memcpy( dir, filename, HIWORD(device) );
1991 dir[HIWORD(device)/sizeof(WCHAR)] = 0;
1993 RtlFreeUnicodeString( &nt_name );
1994 if (!RtlDosPathNameToNtPathName_U( dir ? dir : dotW, &nt_name, &mask, NULL ))
1996 HeapFree( GetProcessHeap(), 0, dir );
1997 SetLastError( ERROR_PATH_NOT_FOUND );
1998 goto error;
2000 HeapFree( GetProcessHeap(), 0, dir );
2001 size = 0;
2003 else if (!mask || !*mask)
2005 SetLastError( ERROR_FILE_NOT_FOUND );
2006 goto error;
2008 else
2010 nt_name.Length = (mask - nt_name.Buffer) * sizeof(WCHAR);
2011 has_wildcard = strpbrkW( mask, wildcardsW ) != NULL;
2012 size = has_wildcard ? 8192 : max_entry_size;
2015 if (!(info = HeapAlloc( GetProcessHeap(), 0, offsetof( FIND_FIRST_INFO, data[size] ))))
2017 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
2018 goto error;
2021 /* check if path is the root of the drive, skipping the \??\ prefix */
2022 info->is_root = FALSE;
2023 if (nt_name.Length >= 6 * sizeof(WCHAR) && nt_name.Buffer[5] == ':')
2025 DWORD pos = 6;
2026 while (pos * sizeof(WCHAR) < nt_name.Length && nt_name.Buffer[pos] == '\\') pos++;
2027 info->is_root = (pos * sizeof(WCHAR) >= nt_name.Length);
2030 attr.Length = sizeof(attr);
2031 attr.RootDirectory = 0;
2032 attr.Attributes = OBJ_CASE_INSENSITIVE;
2033 attr.ObjectName = &nt_name;
2034 attr.SecurityDescriptor = NULL;
2035 attr.SecurityQualityOfService = NULL;
2037 status = NtOpenFile( &info->handle, GENERIC_READ | SYNCHRONIZE, &attr, &io,
2038 FILE_SHARE_READ | FILE_SHARE_WRITE,
2039 FILE_DIRECTORY_FILE | FILE_SYNCHRONOUS_IO_NONALERT );
2041 if (status != STATUS_SUCCESS)
2043 if (status == STATUS_OBJECT_NAME_NOT_FOUND)
2044 SetLastError( ERROR_PATH_NOT_FOUND );
2045 else
2046 SetLastError( RtlNtStatusToDosError(status) );
2047 goto error;
2050 RtlInitializeCriticalSection( &info->cs );
2051 info->cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": FIND_FIRST_INFO.cs");
2052 info->path = nt_name;
2053 info->magic = FIND_FIRST_MAGIC;
2054 info->wildcard = has_wildcard;
2055 info->data_pos = 0;
2056 info->data_len = 0;
2057 info->data_size = size;
2058 info->search_op = search_op;
2059 info->level = level;
2061 if (device)
2063 WIN32_FIND_DATAW *wfd = data;
2065 memset( wfd, 0, sizeof(*wfd) );
2066 memcpy( wfd->cFileName, filename + HIWORD(device)/sizeof(WCHAR), LOWORD(device) );
2067 wfd->dwFileAttributes = FILE_ATTRIBUTE_ARCHIVE;
2068 CloseHandle( info->handle );
2069 info->handle = 0;
2071 else
2073 UNICODE_STRING mask_str;
2075 RtlInitUnicodeString( &mask_str, mask );
2076 status = NtQueryDirectoryFile( info->handle, 0, NULL, NULL, &io, info->data, info->data_size,
2077 FileBothDirectoryInformation, FALSE, &mask_str, TRUE );
2078 if (status)
2080 FindClose( info );
2081 SetLastError( RtlNtStatusToDosError( status ) );
2082 return INVALID_HANDLE_VALUE;
2085 info->data_len = io.Information;
2086 if (!has_wildcard || info->data_len < info->data_size - max_entry_size)
2088 if (has_wildcard) /* release unused buffer space */
2089 HeapReAlloc( GetProcessHeap(), HEAP_REALLOC_IN_PLACE_ONLY,
2090 info, offsetof( FIND_FIRST_INFO, data[info->data_len] ));
2091 info->data_size = 0; /* we read everything */
2094 if (!FindNextFileW( info, data ))
2096 TRACE( "%s not found\n", debugstr_w(filename) );
2097 FindClose( info );
2098 SetLastError( ERROR_FILE_NOT_FOUND );
2099 return INVALID_HANDLE_VALUE;
2101 if (!has_wildcard) /* we can't find two files with the same name */
2103 CloseHandle( info->handle );
2104 info->handle = 0;
2107 return info;
2109 error:
2110 HeapFree( GetProcessHeap(), 0, info );
2111 RtlFreeUnicodeString( &nt_name );
2112 return INVALID_HANDLE_VALUE;
2116 /*************************************************************************
2117 * FindNextFileW (KERNEL32.@)
2119 BOOL WINAPI FindNextFileW( HANDLE handle, WIN32_FIND_DATAW *data )
2121 FIND_FIRST_INFO *info;
2122 FILE_BOTH_DIR_INFORMATION *dir_info;
2123 BOOL ret = FALSE;
2124 NTSTATUS status;
2126 TRACE("%p %p\n", handle, data);
2128 if (!handle || handle == INVALID_HANDLE_VALUE)
2130 SetLastError( ERROR_INVALID_HANDLE );
2131 return ret;
2133 info = handle;
2134 if (info->magic != FIND_FIRST_MAGIC)
2136 SetLastError( ERROR_INVALID_HANDLE );
2137 return ret;
2140 RtlEnterCriticalSection( &info->cs );
2142 if (!info->handle) SetLastError( ERROR_NO_MORE_FILES );
2143 else for (;;)
2145 if (info->data_pos >= info->data_len) /* need to read some more data */
2147 IO_STATUS_BLOCK io;
2149 if (info->data_size)
2150 status = NtQueryDirectoryFile( info->handle, 0, NULL, NULL, &io, info->data, info->data_size,
2151 FileBothDirectoryInformation, FALSE, NULL, FALSE );
2152 else
2153 status = STATUS_NO_MORE_FILES;
2155 if (status)
2157 SetLastError( RtlNtStatusToDosError( status ) );
2158 if (status == STATUS_NO_MORE_FILES)
2160 CloseHandle( info->handle );
2161 info->handle = 0;
2163 break;
2165 info->data_len = io.Information;
2166 info->data_pos = 0;
2169 dir_info = (FILE_BOTH_DIR_INFORMATION *)(info->data + info->data_pos);
2171 if (dir_info->NextEntryOffset) info->data_pos += dir_info->NextEntryOffset;
2172 else info->data_pos = info->data_len;
2174 /* don't return '.' and '..' in the root of the drive */
2175 if (info->is_root)
2177 if (dir_info->FileNameLength == sizeof(WCHAR) && dir_info->FileName[0] == '.') continue;
2178 if (dir_info->FileNameLength == 2 * sizeof(WCHAR) &&
2179 dir_info->FileName[0] == '.' && dir_info->FileName[1] == '.') continue;
2182 /* check for dir symlink */
2183 if ((dir_info->FileAttributes & FILE_ATTRIBUTE_DIRECTORY) &&
2184 (dir_info->FileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) &&
2185 info->wildcard)
2187 if (!check_dir_symlink( info, dir_info )) continue;
2190 data->dwFileAttributes = dir_info->FileAttributes;
2191 data->ftCreationTime = *(FILETIME *)&dir_info->CreationTime;
2192 data->ftLastAccessTime = *(FILETIME *)&dir_info->LastAccessTime;
2193 data->ftLastWriteTime = *(FILETIME *)&dir_info->LastWriteTime;
2194 data->nFileSizeHigh = dir_info->EndOfFile.QuadPart >> 32;
2195 data->nFileSizeLow = (DWORD)dir_info->EndOfFile.QuadPart;
2196 data->dwReserved0 = 0;
2197 data->dwReserved1 = 0;
2199 memcpy( data->cFileName, dir_info->FileName, dir_info->FileNameLength );
2200 data->cFileName[dir_info->FileNameLength/sizeof(WCHAR)] = 0;
2202 if (info->level != FindExInfoBasic)
2204 memcpy( data->cAlternateFileName, dir_info->ShortName, dir_info->ShortNameLength );
2205 data->cAlternateFileName[dir_info->ShortNameLength/sizeof(WCHAR)] = 0;
2207 else
2208 data->cAlternateFileName[0] = 0;
2210 TRACE("returning %s (%s)\n",
2211 debugstr_w(data->cFileName), debugstr_w(data->cAlternateFileName) );
2213 ret = TRUE;
2214 break;
2217 RtlLeaveCriticalSection( &info->cs );
2218 return ret;
2222 /*************************************************************************
2223 * FindClose (KERNEL32.@)
2225 BOOL WINAPI FindClose( HANDLE handle )
2227 FIND_FIRST_INFO *info = handle;
2229 if (!handle || handle == INVALID_HANDLE_VALUE)
2231 SetLastError( ERROR_INVALID_HANDLE );
2232 return FALSE;
2235 __TRY
2237 if (info->magic == FIND_FIRST_MAGIC)
2239 RtlEnterCriticalSection( &info->cs );
2240 if (info->magic == FIND_FIRST_MAGIC) /* in case someone else freed it in the meantime */
2242 info->magic = 0;
2243 if (info->handle) CloseHandle( info->handle );
2244 info->handle = 0;
2245 RtlFreeUnicodeString( &info->path );
2246 info->data_pos = 0;
2247 info->data_len = 0;
2248 RtlLeaveCriticalSection( &info->cs );
2249 info->cs.DebugInfo->Spare[0] = 0;
2250 RtlDeleteCriticalSection( &info->cs );
2251 HeapFree( GetProcessHeap(), 0, info );
2255 __EXCEPT_PAGE_FAULT
2257 WARN("Illegal handle %p\n", handle);
2258 SetLastError( ERROR_INVALID_HANDLE );
2259 return FALSE;
2261 __ENDTRY
2263 return TRUE;
2267 /*************************************************************************
2268 * FindFirstFileA (KERNEL32.@)
2270 HANDLE WINAPI FindFirstFileA( LPCSTR lpFileName, WIN32_FIND_DATAA *lpFindData )
2272 return FindFirstFileExA(lpFileName, FindExInfoStandard, lpFindData,
2273 FindExSearchNameMatch, NULL, 0);
2276 /*************************************************************************
2277 * FindFirstFileExA (KERNEL32.@)
2279 HANDLE WINAPI FindFirstFileExA( LPCSTR lpFileName, FINDEX_INFO_LEVELS fInfoLevelId,
2280 LPVOID lpFindFileData, FINDEX_SEARCH_OPS fSearchOp,
2281 LPVOID lpSearchFilter, DWORD dwAdditionalFlags)
2283 HANDLE handle;
2284 WIN32_FIND_DATAA *dataA;
2285 WIN32_FIND_DATAW dataW;
2286 WCHAR *nameW;
2288 if (!(nameW = FILE_name_AtoW( lpFileName, FALSE ))) return INVALID_HANDLE_VALUE;
2290 handle = FindFirstFileExW(nameW, fInfoLevelId, &dataW, fSearchOp, lpSearchFilter, dwAdditionalFlags);
2291 if (handle == INVALID_HANDLE_VALUE) return handle;
2293 dataA = lpFindFileData;
2294 dataA->dwFileAttributes = dataW.dwFileAttributes;
2295 dataA->ftCreationTime = dataW.ftCreationTime;
2296 dataA->ftLastAccessTime = dataW.ftLastAccessTime;
2297 dataA->ftLastWriteTime = dataW.ftLastWriteTime;
2298 dataA->nFileSizeHigh = dataW.nFileSizeHigh;
2299 dataA->nFileSizeLow = dataW.nFileSizeLow;
2300 FILE_name_WtoA( dataW.cFileName, -1, dataA->cFileName, sizeof(dataA->cFileName) );
2301 FILE_name_WtoA( dataW.cAlternateFileName, -1, dataA->cAlternateFileName,
2302 sizeof(dataA->cAlternateFileName) );
2303 return handle;
2307 /*************************************************************************
2308 * FindFirstFileW (KERNEL32.@)
2310 HANDLE WINAPI FindFirstFileW( LPCWSTR lpFileName, WIN32_FIND_DATAW *lpFindData )
2312 return FindFirstFileExW(lpFileName, FindExInfoStandard, lpFindData,
2313 FindExSearchNameMatch, NULL, 0);
2317 /*************************************************************************
2318 * FindNextFileA (KERNEL32.@)
2320 BOOL WINAPI FindNextFileA( HANDLE handle, WIN32_FIND_DATAA *data )
2322 WIN32_FIND_DATAW dataW;
2324 if (!FindNextFileW( handle, &dataW )) return FALSE;
2325 data->dwFileAttributes = dataW.dwFileAttributes;
2326 data->ftCreationTime = dataW.ftCreationTime;
2327 data->ftLastAccessTime = dataW.ftLastAccessTime;
2328 data->ftLastWriteTime = dataW.ftLastWriteTime;
2329 data->nFileSizeHigh = dataW.nFileSizeHigh;
2330 data->nFileSizeLow = dataW.nFileSizeLow;
2331 FILE_name_WtoA( dataW.cFileName, -1, data->cFileName, sizeof(data->cFileName) );
2332 FILE_name_WtoA( dataW.cAlternateFileName, -1, data->cAlternateFileName,
2333 sizeof(data->cAlternateFileName) );
2334 return TRUE;
2338 /**************************************************************************
2339 * GetFileAttributesW (KERNEL32.@)
2341 DWORD WINAPI GetFileAttributesW( LPCWSTR name )
2343 FILE_BASIC_INFORMATION info;
2344 UNICODE_STRING nt_name;
2345 OBJECT_ATTRIBUTES attr;
2346 NTSTATUS status;
2348 TRACE("%s\n", debugstr_w(name));
2350 if (!RtlDosPathNameToNtPathName_U( name, &nt_name, NULL, NULL ))
2352 SetLastError( ERROR_PATH_NOT_FOUND );
2353 return INVALID_FILE_ATTRIBUTES;
2356 attr.Length = sizeof(attr);
2357 attr.RootDirectory = 0;
2358 attr.Attributes = OBJ_CASE_INSENSITIVE;
2359 attr.ObjectName = &nt_name;
2360 attr.SecurityDescriptor = NULL;
2361 attr.SecurityQualityOfService = NULL;
2363 status = NtQueryAttributesFile( &attr, &info );
2364 RtlFreeUnicodeString( &nt_name );
2366 if (status == STATUS_SUCCESS) return info.FileAttributes;
2368 /* NtQueryAttributesFile fails on devices, but GetFileAttributesW succeeds */
2369 if (RtlIsDosDeviceName_U( name )) return FILE_ATTRIBUTE_ARCHIVE;
2371 SetLastError( RtlNtStatusToDosError(status) );
2372 return INVALID_FILE_ATTRIBUTES;
2376 /**************************************************************************
2377 * GetFileAttributesA (KERNEL32.@)
2379 DWORD WINAPI GetFileAttributesA( LPCSTR name )
2381 WCHAR *nameW;
2383 if (!(nameW = FILE_name_AtoW( name, FALSE ))) return INVALID_FILE_ATTRIBUTES;
2384 return GetFileAttributesW( nameW );
2388 /**************************************************************************
2389 * SetFileAttributesW (KERNEL32.@)
2391 BOOL WINAPI SetFileAttributesW( LPCWSTR name, DWORD attributes )
2393 UNICODE_STRING nt_name;
2394 OBJECT_ATTRIBUTES attr;
2395 IO_STATUS_BLOCK io;
2396 NTSTATUS status;
2397 HANDLE handle;
2399 TRACE("%s %x\n", debugstr_w(name), attributes);
2401 if (!RtlDosPathNameToNtPathName_U( name, &nt_name, NULL, NULL ))
2403 SetLastError( ERROR_PATH_NOT_FOUND );
2404 return FALSE;
2407 attr.Length = sizeof(attr);
2408 attr.RootDirectory = 0;
2409 attr.Attributes = OBJ_CASE_INSENSITIVE;
2410 attr.ObjectName = &nt_name;
2411 attr.SecurityDescriptor = NULL;
2412 attr.SecurityQualityOfService = NULL;
2414 status = NtOpenFile( &handle, SYNCHRONIZE, &attr, &io, 0, FILE_SYNCHRONOUS_IO_NONALERT );
2415 RtlFreeUnicodeString( &nt_name );
2417 if (status == STATUS_SUCCESS)
2419 FILE_BASIC_INFORMATION info;
2421 memset( &info, 0, sizeof(info) );
2422 info.FileAttributes = attributes | FILE_ATTRIBUTE_NORMAL; /* make sure it's not zero */
2423 status = NtSetInformationFile( handle, &io, &info, sizeof(info), FileBasicInformation );
2424 NtClose( handle );
2427 if (status == STATUS_SUCCESS) return TRUE;
2428 SetLastError( RtlNtStatusToDosError(status) );
2429 return FALSE;
2433 /**************************************************************************
2434 * SetFileAttributesA (KERNEL32.@)
2436 BOOL WINAPI SetFileAttributesA( LPCSTR name, DWORD attributes )
2438 WCHAR *nameW;
2440 if (!(nameW = FILE_name_AtoW( name, FALSE ))) return FALSE;
2441 return SetFileAttributesW( nameW, attributes );
2445 /**************************************************************************
2446 * GetFileAttributesExW (KERNEL32.@)
2448 BOOL WINAPI GetFileAttributesExW( LPCWSTR name, GET_FILEEX_INFO_LEVELS level, LPVOID ptr )
2450 FILE_NETWORK_OPEN_INFORMATION info;
2451 WIN32_FILE_ATTRIBUTE_DATA *data = ptr;
2452 UNICODE_STRING nt_name;
2453 OBJECT_ATTRIBUTES attr;
2454 NTSTATUS status;
2456 TRACE("%s %d %p\n", debugstr_w(name), level, ptr);
2458 if (level != GetFileExInfoStandard)
2460 SetLastError( ERROR_INVALID_PARAMETER );
2461 return FALSE;
2464 if (!RtlDosPathNameToNtPathName_U( name, &nt_name, NULL, NULL ))
2466 SetLastError( ERROR_PATH_NOT_FOUND );
2467 return FALSE;
2470 attr.Length = sizeof(attr);
2471 attr.RootDirectory = 0;
2472 attr.Attributes = OBJ_CASE_INSENSITIVE;
2473 attr.ObjectName = &nt_name;
2474 attr.SecurityDescriptor = NULL;
2475 attr.SecurityQualityOfService = NULL;
2477 status = NtQueryFullAttributesFile( &attr, &info );
2478 RtlFreeUnicodeString( &nt_name );
2480 if (status != STATUS_SUCCESS)
2482 SetLastError( RtlNtStatusToDosError(status) );
2483 return FALSE;
2486 data->dwFileAttributes = info.FileAttributes;
2487 data->ftCreationTime.dwLowDateTime = info.CreationTime.u.LowPart;
2488 data->ftCreationTime.dwHighDateTime = info.CreationTime.u.HighPart;
2489 data->ftLastAccessTime.dwLowDateTime = info.LastAccessTime.u.LowPart;
2490 data->ftLastAccessTime.dwHighDateTime = info.LastAccessTime.u.HighPart;
2491 data->ftLastWriteTime.dwLowDateTime = info.LastWriteTime.u.LowPart;
2492 data->ftLastWriteTime.dwHighDateTime = info.LastWriteTime.u.HighPart;
2493 data->nFileSizeLow = info.EndOfFile.u.LowPart;
2494 data->nFileSizeHigh = info.EndOfFile.u.HighPart;
2495 return TRUE;
2499 /**************************************************************************
2500 * GetFileAttributesExA (KERNEL32.@)
2502 BOOL WINAPI GetFileAttributesExA( LPCSTR name, GET_FILEEX_INFO_LEVELS level, LPVOID ptr )
2504 WCHAR *nameW;
2506 if (!(nameW = FILE_name_AtoW( name, FALSE ))) return FALSE;
2507 return GetFileAttributesExW( nameW, level, ptr );
2511 /******************************************************************************
2512 * GetCompressedFileSizeW (KERNEL32.@)
2514 * Get the actual number of bytes used on disk.
2516 * RETURNS
2517 * Success: Low-order doubleword of number of bytes
2518 * Failure: INVALID_FILE_SIZE
2520 DWORD WINAPI GetCompressedFileSizeW(
2521 LPCWSTR name, /* [in] Pointer to name of file */
2522 LPDWORD size_high ) /* [out] Receives high-order doubleword of size */
2524 UNICODE_STRING nt_name;
2525 OBJECT_ATTRIBUTES attr;
2526 IO_STATUS_BLOCK io;
2527 NTSTATUS status;
2528 HANDLE handle;
2529 DWORD ret = INVALID_FILE_SIZE;
2531 TRACE("%s %p\n", debugstr_w(name), size_high);
2533 if (!RtlDosPathNameToNtPathName_U( name, &nt_name, NULL, NULL ))
2535 SetLastError( ERROR_PATH_NOT_FOUND );
2536 return INVALID_FILE_SIZE;
2539 attr.Length = sizeof(attr);
2540 attr.RootDirectory = 0;
2541 attr.Attributes = OBJ_CASE_INSENSITIVE;
2542 attr.ObjectName = &nt_name;
2543 attr.SecurityDescriptor = NULL;
2544 attr.SecurityQualityOfService = NULL;
2546 status = NtOpenFile( &handle, SYNCHRONIZE, &attr, &io, 0, FILE_SYNCHRONOUS_IO_NONALERT );
2547 RtlFreeUnicodeString( &nt_name );
2549 if (status == STATUS_SUCCESS)
2551 /* we don't support compressed files, simply return the file size */
2552 ret = GetFileSize( handle, size_high );
2553 NtClose( handle );
2555 else SetLastError( RtlNtStatusToDosError(status) );
2557 return ret;
2561 /******************************************************************************
2562 * GetCompressedFileSizeA (KERNEL32.@)
2564 * See GetCompressedFileSizeW.
2566 DWORD WINAPI GetCompressedFileSizeA( LPCSTR name, LPDWORD size_high )
2568 WCHAR *nameW;
2570 if (!(nameW = FILE_name_AtoW( name, FALSE ))) return INVALID_FILE_SIZE;
2571 return GetCompressedFileSizeW( nameW, size_high );
2575 /***********************************************************************
2576 * OpenVxDHandle (KERNEL32.@)
2578 * This function is supposed to return the corresponding Ring 0
2579 * ("kernel") handle for a Ring 3 handle in Win9x.
2580 * Evidently, Wine will have problems with this. But we try anyway,
2581 * maybe it helps...
2583 HANDLE WINAPI OpenVxDHandle(HANDLE hHandleRing3)
2585 FIXME( "(%p), stub! (returning Ring 3 handle instead of Ring 0)\n", hHandleRing3);
2586 return hHandleRing3;
2590 /****************************************************************************
2591 * DeviceIoControl (KERNEL32.@)
2593 BOOL WINAPI DeviceIoControl(HANDLE hDevice, DWORD dwIoControlCode,
2594 LPVOID lpvInBuffer, DWORD cbInBuffer,
2595 LPVOID lpvOutBuffer, DWORD cbOutBuffer,
2596 LPDWORD lpcbBytesReturned,
2597 LPOVERLAPPED lpOverlapped)
2599 NTSTATUS status;
2601 TRACE( "(%p,%x,%p,%d,%p,%d,%p,%p)\n",
2602 hDevice,dwIoControlCode,lpvInBuffer,cbInBuffer,
2603 lpvOutBuffer,cbOutBuffer,lpcbBytesReturned,lpOverlapped );
2605 /* Check if this is a user defined control code for a VxD */
2607 if (HIWORD( dwIoControlCode ) == 0 && (GetVersion() & 0x80000000))
2609 typedef BOOL (WINAPI *DeviceIoProc)(DWORD, LPVOID, DWORD, LPVOID, DWORD, LPDWORD, LPOVERLAPPED);
2610 static DeviceIoProc (*vxd_get_proc)(HANDLE);
2611 DeviceIoProc proc = NULL;
2613 if (!vxd_get_proc) vxd_get_proc = (void *)GetProcAddress( GetModuleHandleA("krnl386.exe16"),
2614 "__wine_vxd_get_proc" );
2615 if (vxd_get_proc) proc = vxd_get_proc( hDevice );
2616 if (proc) return proc( dwIoControlCode, lpvInBuffer, cbInBuffer,
2617 lpvOutBuffer, cbOutBuffer, lpcbBytesReturned, lpOverlapped );
2620 /* Not a VxD, let ntdll handle it */
2622 if (lpOverlapped)
2624 LPVOID cvalue = ((ULONG_PTR)lpOverlapped->hEvent & 1) ? NULL : lpOverlapped;
2625 lpOverlapped->Internal = STATUS_PENDING;
2626 lpOverlapped->InternalHigh = 0;
2627 if (HIWORD(dwIoControlCode) == FILE_DEVICE_FILE_SYSTEM)
2628 status = NtFsControlFile(hDevice, lpOverlapped->hEvent,
2629 NULL, cvalue, (PIO_STATUS_BLOCK)lpOverlapped,
2630 dwIoControlCode, lpvInBuffer, cbInBuffer,
2631 lpvOutBuffer, cbOutBuffer);
2632 else
2633 status = NtDeviceIoControlFile(hDevice, lpOverlapped->hEvent,
2634 NULL, cvalue, (PIO_STATUS_BLOCK)lpOverlapped,
2635 dwIoControlCode, lpvInBuffer, cbInBuffer,
2636 lpvOutBuffer, cbOutBuffer);
2637 if (lpcbBytesReturned) *lpcbBytesReturned = lpOverlapped->InternalHigh;
2639 else
2641 IO_STATUS_BLOCK iosb;
2643 if (HIWORD(dwIoControlCode) == FILE_DEVICE_FILE_SYSTEM)
2644 status = NtFsControlFile(hDevice, NULL, NULL, NULL, &iosb,
2645 dwIoControlCode, lpvInBuffer, cbInBuffer,
2646 lpvOutBuffer, cbOutBuffer);
2647 else
2648 status = NtDeviceIoControlFile(hDevice, NULL, NULL, NULL, &iosb,
2649 dwIoControlCode, lpvInBuffer, cbInBuffer,
2650 lpvOutBuffer, cbOutBuffer);
2651 if (lpcbBytesReturned) *lpcbBytesReturned = iosb.Information;
2653 if (status) SetLastError( RtlNtStatusToDosError(status) );
2654 return !status;
2658 /***********************************************************************
2659 * OpenFile (KERNEL32.@)
2661 HFILE WINAPI OpenFile( LPCSTR name, OFSTRUCT *ofs, UINT mode )
2663 HANDLE handle;
2664 FILETIME filetime;
2665 WORD filedatetime[2];
2667 if (!ofs) return HFILE_ERROR;
2669 TRACE("%s %s %s %s%s%s%s%s%s%s%s%s\n",name,
2670 ((mode & 0x3 )==OF_READ)?"OF_READ":
2671 ((mode & 0x3 )==OF_WRITE)?"OF_WRITE":
2672 ((mode & 0x3 )==OF_READWRITE)?"OF_READWRITE":"unknown",
2673 ((mode & 0x70 )==OF_SHARE_COMPAT)?"OF_SHARE_COMPAT":
2674 ((mode & 0x70 )==OF_SHARE_DENY_NONE)?"OF_SHARE_DENY_NONE":
2675 ((mode & 0x70 )==OF_SHARE_DENY_READ)?"OF_SHARE_DENY_READ":
2676 ((mode & 0x70 )==OF_SHARE_DENY_WRITE)?"OF_SHARE_DENY_WRITE":
2677 ((mode & 0x70 )==OF_SHARE_EXCLUSIVE)?"OF_SHARE_EXCLUSIVE":"unknown",
2678 ((mode & OF_PARSE )==OF_PARSE)?"OF_PARSE ":"",
2679 ((mode & OF_DELETE )==OF_DELETE)?"OF_DELETE ":"",
2680 ((mode & OF_VERIFY )==OF_VERIFY)?"OF_VERIFY ":"",
2681 ((mode & OF_SEARCH )==OF_SEARCH)?"OF_SEARCH ":"",
2682 ((mode & OF_CANCEL )==OF_CANCEL)?"OF_CANCEL ":"",
2683 ((mode & OF_CREATE )==OF_CREATE)?"OF_CREATE ":"",
2684 ((mode & OF_PROMPT )==OF_PROMPT)?"OF_PROMPT ":"",
2685 ((mode & OF_EXIST )==OF_EXIST)?"OF_EXIST ":"",
2686 ((mode & OF_REOPEN )==OF_REOPEN)?"OF_REOPEN ":""
2690 ofs->cBytes = sizeof(OFSTRUCT);
2691 ofs->nErrCode = 0;
2692 if (mode & OF_REOPEN) name = ofs->szPathName;
2694 if (!name) return HFILE_ERROR;
2696 TRACE("%s %04x\n", name, mode );
2698 /* the watcom 10.6 IDE relies on a valid path returned in ofs->szPathName
2699 Are there any cases where getting the path here is wrong?
2700 Uwe Bonnes 1997 Apr 2 */
2701 if (!GetFullPathNameA( name, sizeof(ofs->szPathName), ofs->szPathName, NULL )) goto error;
2703 /* OF_PARSE simply fills the structure */
2705 if (mode & OF_PARSE)
2707 ofs->fFixedDisk = (GetDriveTypeA( ofs->szPathName ) != DRIVE_REMOVABLE);
2708 TRACE("(%s): OF_PARSE, res = '%s'\n", name, ofs->szPathName );
2709 return 0;
2712 /* OF_CREATE is completely different from all other options, so
2713 handle it first */
2715 if (mode & OF_CREATE)
2717 if ((handle = create_file_OF( name, mode )) == INVALID_HANDLE_VALUE)
2718 goto error;
2720 else
2722 /* Now look for the file */
2724 if (!SearchPathA( NULL, name, NULL, sizeof(ofs->szPathName), ofs->szPathName, NULL ))
2725 goto error;
2727 TRACE("found %s\n", debugstr_a(ofs->szPathName) );
2729 if (mode & OF_DELETE)
2731 if (!DeleteFileA( ofs->szPathName )) goto error;
2732 TRACE("(%s): OF_DELETE return = OK\n", name);
2733 return TRUE;
2736 handle = LongToHandle(_lopen( ofs->szPathName, mode ));
2737 if (handle == INVALID_HANDLE_VALUE) goto error;
2739 GetFileTime( handle, NULL, NULL, &filetime );
2740 FileTimeToDosDateTime( &filetime, &filedatetime[0], &filedatetime[1] );
2741 if ((mode & OF_VERIFY) && (mode & OF_REOPEN))
2743 if (ofs->Reserved1 != filedatetime[0] || ofs->Reserved2 != filedatetime[1] )
2745 CloseHandle( handle );
2746 WARN("(%s): OF_VERIFY failed\n", name );
2747 /* FIXME: what error here? */
2748 SetLastError( ERROR_FILE_NOT_FOUND );
2749 goto error;
2752 ofs->Reserved1 = filedatetime[0];
2753 ofs->Reserved2 = filedatetime[1];
2755 TRACE("(%s): OK, return = %p\n", name, handle );
2756 if (mode & OF_EXIST) /* Return TRUE instead of a handle */
2758 CloseHandle( handle );
2759 return TRUE;
2761 return HandleToLong(handle);
2763 error: /* We get here if there was an error opening the file */
2764 ofs->nErrCode = GetLastError();
2765 WARN("(%s): return = HFILE_ERROR error= %d\n", name,ofs->nErrCode );
2766 return HFILE_ERROR;
2770 /***********************************************************************
2771 * OpenFileById (KERNEL32.@)
2773 HANDLE WINAPI OpenFileById( HANDLE handle, LPFILE_ID_DESCRIPTOR id, DWORD access,
2774 DWORD share, LPSECURITY_ATTRIBUTES sec_attr, DWORD flags )
2776 UINT options;
2777 HANDLE result;
2778 OBJECT_ATTRIBUTES attr;
2779 NTSTATUS status;
2780 IO_STATUS_BLOCK io;
2781 UNICODE_STRING objectName;
2783 if (!id)
2785 SetLastError( ERROR_INVALID_PARAMETER );
2786 return INVALID_HANDLE_VALUE;
2789 options = FILE_OPEN_BY_FILE_ID;
2790 if (flags & FILE_FLAG_BACKUP_SEMANTICS)
2791 options |= FILE_OPEN_FOR_BACKUP_INTENT;
2792 else
2793 options |= FILE_NON_DIRECTORY_FILE;
2794 if (flags & FILE_FLAG_NO_BUFFERING) options |= FILE_NO_INTERMEDIATE_BUFFERING;
2795 if (!(flags & FILE_FLAG_OVERLAPPED)) options |= FILE_SYNCHRONOUS_IO_NONALERT;
2796 if (flags & FILE_FLAG_RANDOM_ACCESS) options |= FILE_RANDOM_ACCESS;
2797 flags &= FILE_ATTRIBUTE_VALID_FLAGS;
2799 objectName.Length = sizeof(ULONGLONG);
2800 objectName.Buffer = (WCHAR *)&id->u.FileId;
2801 attr.Length = sizeof(attr);
2802 attr.RootDirectory = handle;
2803 attr.Attributes = 0;
2804 attr.ObjectName = &objectName;
2805 attr.SecurityDescriptor = sec_attr ? sec_attr->lpSecurityDescriptor : NULL;
2806 attr.SecurityQualityOfService = NULL;
2807 if (sec_attr && sec_attr->bInheritHandle) attr.Attributes |= OBJ_INHERIT;
2809 status = NtCreateFile( &result, access | SYNCHRONIZE, &attr, &io, NULL, flags,
2810 share, OPEN_EXISTING, options, NULL, 0 );
2811 if (status != STATUS_SUCCESS)
2813 SetLastError( RtlNtStatusToDosError( status ) );
2814 return INVALID_HANDLE_VALUE;
2816 return result;
2820 /***********************************************************************
2821 * K32EnumDeviceDrivers (KERNEL32.@)
2823 BOOL WINAPI K32EnumDeviceDrivers(void **image_base, DWORD cb, DWORD *needed)
2825 FIXME("(%p, %d, %p): stub\n", image_base, cb, needed);
2827 if (needed)
2828 *needed = 0;
2830 return TRUE;
2833 /***********************************************************************
2834 * K32GetDeviceDriverBaseNameA (KERNEL32.@)
2836 DWORD WINAPI K32GetDeviceDriverBaseNameA(void *image_base, LPSTR base_name, DWORD size)
2838 FIXME("(%p, %p, %d): stub\n", image_base, base_name, size);
2840 if (base_name && size)
2841 base_name[0] = '\0';
2843 return 0;
2846 /***********************************************************************
2847 * K32GetDeviceDriverBaseNameW (KERNEL32.@)
2849 DWORD WINAPI K32GetDeviceDriverBaseNameW(void *image_base, LPWSTR base_name, DWORD size)
2851 FIXME("(%p, %p, %d): stub\n", image_base, base_name, size);
2853 if (base_name && size)
2854 base_name[0] = '\0';
2856 return 0;
2859 /***********************************************************************
2860 * K32GetDeviceDriverFileNameA (KERNEL32.@)
2862 DWORD WINAPI K32GetDeviceDriverFileNameA(void *image_base, LPSTR file_name, DWORD size)
2864 FIXME("(%p, %p, %d): stub\n", image_base, file_name, size);
2866 if (file_name && size)
2867 file_name[0] = '\0';
2869 return 0;
2872 /***********************************************************************
2873 * K32GetDeviceDriverFileNameW (KERNEL32.@)
2875 DWORD WINAPI K32GetDeviceDriverFileNameW(void *image_base, LPWSTR file_name, DWORD size)
2877 FIXME("(%p, %p, %d): stub\n", image_base, file_name, size);
2879 if (file_name && size)
2880 file_name[0] = '\0';
2882 return 0;
2885 /***********************************************************************
2886 * GetFinalPathNameByHandleW (KERNEL32.@)
2888 DWORD WINAPI GetFinalPathNameByHandleW(HANDLE file, LPWSTR path, DWORD charcount, DWORD flags)
2890 WCHAR buffer[sizeof(OBJECT_NAME_INFORMATION) + MAX_PATH + 1];
2891 OBJECT_NAME_INFORMATION *info = (OBJECT_NAME_INFORMATION*)&buffer;
2892 WCHAR drive_part[MAX_PATH];
2893 DWORD drive_part_len = 0;
2894 NTSTATUS status;
2895 DWORD result = 0;
2896 ULONG dummy;
2897 WCHAR *ptr;
2899 TRACE( "(%p,%p,%d,%x)\n", file, path, charcount, flags );
2901 if (flags & ~(FILE_NAME_OPENED | VOLUME_NAME_GUID | VOLUME_NAME_NONE | VOLUME_NAME_NT))
2903 WARN("Unknown flags: %x\n", flags);
2904 SetLastError( ERROR_INVALID_PARAMETER );
2905 return 0;
2908 /* get object name */
2909 status = NtQueryObject( file, ObjectNameInformation, &buffer, sizeof(buffer) - sizeof(WCHAR), &dummy );
2910 if (status != STATUS_SUCCESS)
2912 SetLastError( RtlNtStatusToDosError( status ) );
2913 return 0;
2915 if (!info->Name.Buffer)
2917 SetLastError( ERROR_INVALID_HANDLE );
2918 return 0;
2920 if (info->Name.Length < 4 * sizeof(WCHAR) || info->Name.Buffer[0] != '\\' ||
2921 info->Name.Buffer[1] != '?' || info->Name.Buffer[2] != '?' || info->Name.Buffer[3] != '\\' )
2923 FIXME("Unexpected object name: %s\n", debugstr_wn(info->Name.Buffer, info->Name.Length / sizeof(WCHAR)));
2924 SetLastError( ERROR_GEN_FAILURE );
2925 return 0;
2928 /* add terminating null character, remove "\\??\\" */
2929 info->Name.Buffer[info->Name.Length / sizeof(WCHAR)] = 0;
2930 info->Name.Length -= 4 * sizeof(WCHAR);
2931 info->Name.Buffer += 4;
2933 /* FILE_NAME_OPENED is not supported yet, and would require Wineserver changes */
2934 if (flags & FILE_NAME_OPENED)
2936 FIXME("FILE_NAME_OPENED not supported\n");
2937 flags &= ~FILE_NAME_OPENED;
2940 /* Get information required for VOLUME_NAME_NONE, VOLUME_NAME_GUID and VOLUME_NAME_NT */
2941 if (flags == VOLUME_NAME_NONE || flags == VOLUME_NAME_GUID || flags == VOLUME_NAME_NT)
2943 if (!GetVolumePathNameW( info->Name.Buffer, drive_part, MAX_PATH ))
2944 return 0;
2946 drive_part_len = strlenW(drive_part);
2947 if (!drive_part_len || drive_part_len > strlenW(info->Name.Buffer) ||
2948 drive_part[drive_part_len-1] != '\\' ||
2949 strncmpiW( info->Name.Buffer, drive_part, drive_part_len ))
2951 FIXME("Path %s returned by GetVolumePathNameW does not match file path %s\n",
2952 debugstr_w(drive_part), debugstr_w(info->Name.Buffer));
2953 SetLastError( ERROR_GEN_FAILURE );
2954 return 0;
2958 if (flags == VOLUME_NAME_NONE)
2960 ptr = info->Name.Buffer + drive_part_len - 1;
2961 result = strlenW(ptr);
2962 if (result < charcount)
2963 memcpy(path, ptr, (result + 1) * sizeof(WCHAR));
2964 else result++;
2966 else if (flags == VOLUME_NAME_GUID)
2968 WCHAR volume_prefix[51];
2970 /* GetVolumeNameForVolumeMountPointW sets error code on failure */
2971 if (!GetVolumeNameForVolumeMountPointW( drive_part, volume_prefix, 50 ))
2972 return 0;
2974 ptr = info->Name.Buffer + drive_part_len;
2975 result = strlenW(volume_prefix) + strlenW(ptr);
2976 if (result < charcount)
2978 path[0] = 0;
2979 strcatW(path, volume_prefix);
2980 strcatW(path, ptr);
2982 else
2984 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
2985 result++;
2988 else if (flags == VOLUME_NAME_NT)
2990 WCHAR nt_prefix[MAX_PATH];
2992 /* QueryDosDeviceW sets error code on failure */
2993 drive_part[drive_part_len - 1] = 0;
2994 if (!QueryDosDeviceW( drive_part, nt_prefix, MAX_PATH ))
2995 return 0;
2997 ptr = info->Name.Buffer + drive_part_len - 1;
2998 result = strlenW(nt_prefix) + strlenW(ptr);
2999 if (result < charcount)
3001 path[0] = 0;
3002 strcatW(path, nt_prefix);
3003 strcatW(path, ptr);
3005 else
3007 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
3008 result++;
3011 else if (flags == VOLUME_NAME_DOS)
3013 static const WCHAR dos_prefix[] = {'\\','\\','?','\\', '\0'};
3015 result = strlenW(dos_prefix) + strlenW(info->Name.Buffer);
3016 if (result < charcount)
3018 path[0] = 0;
3019 strcatW(path, dos_prefix);
3020 strcatW(path, info->Name.Buffer);
3022 else
3024 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
3025 result++;
3028 else
3030 /* Windows crashes here, but we prefer returning ERROR_INVALID_PARAMETER */
3031 WARN("Invalid combination of flags: %x\n", flags);
3032 SetLastError( ERROR_INVALID_PARAMETER );
3035 return result;
3038 /***********************************************************************
3039 * GetFinalPathNameByHandleA (KERNEL32.@)
3041 DWORD WINAPI GetFinalPathNameByHandleA(HANDLE file, LPSTR path, DWORD charcount, DWORD flags)
3043 WCHAR *str;
3044 DWORD result, len, cp;
3046 TRACE( "(%p,%p,%d,%x)\n", file, path, charcount, flags);
3048 len = GetFinalPathNameByHandleW(file, NULL, 0, flags);
3049 if (len == 0)
3050 return 0;
3052 str = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3053 if (!str)
3055 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
3056 return 0;
3059 result = GetFinalPathNameByHandleW(file, str, len, flags);
3060 if (result != len - 1)
3062 HeapFree(GetProcessHeap(), 0, str);
3063 WARN("GetFinalPathNameByHandleW failed unexpectedly: %u\n", result);
3064 return 0;
3067 cp = oem_file_apis ? CP_OEMCP : CP_ACP;
3069 len = WideCharToMultiByte(cp, 0, str, -1, NULL, 0, NULL, NULL);
3070 if (!len)
3072 HeapFree(GetProcessHeap(), 0, str);
3073 WARN("Failed to get multibyte length\n");
3074 return 0;
3077 if (charcount < len)
3079 HeapFree(GetProcessHeap(), 0, str);
3080 return len - 1;
3083 len = WideCharToMultiByte(cp, 0, str, -1, path, charcount, NULL, NULL);
3084 if (!len)
3086 HeapFree(GetProcessHeap(), 0, str);
3087 WARN("WideCharToMultiByte failed\n");
3088 return 0;
3091 HeapFree(GetProcessHeap(), 0, str);
3093 return len - 1;