- move async activation into the server
[wine/dcerpc.git] / files / file.c
blobb3ef8978fb4d8135b1d4dccaee3076011a4ab87d
1 /*
2 * File handling functions
4 * Copyright 1993 John Burton
5 * Copyright 1996 Alexandre Julliard
7 * TODO:
8 * Fix the CopyFileEx methods to implement the "extended" functionality.
9 * Right now, they simply call the CopyFile method.
12 #include "config.h"
13 #include "wine/port.h"
15 #include <assert.h>
16 #include <ctype.h>
17 #include <errno.h>
18 #include <fcntl.h>
19 #include <stdlib.h>
20 #include <stdio.h>
21 #include <string.h>
22 #ifdef HAVE_SYS_ERRNO_H
23 #include <sys/errno.h>
24 #endif
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #ifdef HAVE_SYS_MMAN_H
28 #include <sys/mman.h>
29 #endif
30 #include <sys/time.h>
31 #include <sys/poll.h>
32 #include <time.h>
33 #include <unistd.h>
34 #include <utime.h>
36 #include "winerror.h"
37 #include "windef.h"
38 #include "winbase.h"
39 #include "wine/winbase16.h"
40 #include "drive.h"
41 #include "file.h"
42 #include "heap.h"
43 #include "msdos.h"
44 #include "wincon.h"
45 #include "debugtools.h"
47 #include "wine/server.h"
49 DEFAULT_DEBUG_CHANNEL(file);
51 #if defined(MAP_ANONYMOUS) && !defined(MAP_ANON)
52 #define MAP_ANON MAP_ANONYMOUS
53 #endif
55 /* Size of per-process table of DOS handles */
56 #define DOS_TABLE_SIZE 256
58 static HANDLE dos_handles[DOS_TABLE_SIZE];
61 /***********************************************************************
62 * FILE_ConvertOFMode
64 * Convert OF_* mode into flags for CreateFile.
66 static void FILE_ConvertOFMode( INT mode, DWORD *access, DWORD *sharing )
68 switch(mode & 0x03)
70 case OF_READ: *access = GENERIC_READ; break;
71 case OF_WRITE: *access = GENERIC_WRITE; break;
72 case OF_READWRITE: *access = GENERIC_READ | GENERIC_WRITE; break;
73 default: *access = 0; break;
75 switch(mode & 0x70)
77 case OF_SHARE_EXCLUSIVE: *sharing = 0; break;
78 case OF_SHARE_DENY_WRITE: *sharing = FILE_SHARE_READ; break;
79 case OF_SHARE_DENY_READ: *sharing = FILE_SHARE_WRITE; break;
80 case OF_SHARE_DENY_NONE:
81 case OF_SHARE_COMPAT:
82 default: *sharing = FILE_SHARE_READ | FILE_SHARE_WRITE; break;
87 /***********************************************************************
88 * FILE_strcasecmp
90 * locale-independent case conversion for file I/O
92 int FILE_strcasecmp( const char *str1, const char *str2 )
94 for (;;)
96 int ret = FILE_toupper(*str1) - FILE_toupper(*str2);
97 if (ret || !*str1) return ret;
98 str1++;
99 str2++;
104 /***********************************************************************
105 * FILE_strncasecmp
107 * locale-independent case conversion for file I/O
109 int FILE_strncasecmp( const char *str1, const char *str2, int len )
111 int ret = 0;
112 for ( ; len > 0; len--, str1++, str2++)
113 if ((ret = FILE_toupper(*str1) - FILE_toupper(*str2)) || !*str1) break;
114 return ret;
118 /***********************************************************************
119 * FILE_SetDosError
121 * Set the DOS error code from errno.
123 void FILE_SetDosError(void)
125 int save_errno = errno; /* errno gets overwritten by printf */
127 TRACE("errno = %d %s\n", errno, strerror(errno));
128 switch (save_errno)
130 case EAGAIN:
131 SetLastError( ERROR_SHARING_VIOLATION );
132 break;
133 case EBADF:
134 SetLastError( ERROR_INVALID_HANDLE );
135 break;
136 case ENOSPC:
137 SetLastError( ERROR_HANDLE_DISK_FULL );
138 break;
139 case EACCES:
140 case EPERM:
141 case EROFS:
142 SetLastError( ERROR_ACCESS_DENIED );
143 break;
144 case EBUSY:
145 SetLastError( ERROR_LOCK_VIOLATION );
146 break;
147 case ENOENT:
148 SetLastError( ERROR_FILE_NOT_FOUND );
149 break;
150 case EISDIR:
151 SetLastError( ERROR_CANNOT_MAKE );
152 break;
153 case ENFILE:
154 case EMFILE:
155 SetLastError( ERROR_NO_MORE_FILES );
156 break;
157 case EEXIST:
158 SetLastError( ERROR_FILE_EXISTS );
159 break;
160 case EINVAL:
161 case ESPIPE:
162 SetLastError( ERROR_SEEK );
163 break;
164 case ENOTEMPTY:
165 SetLastError( ERROR_DIR_NOT_EMPTY );
166 break;
167 case ENOEXEC:
168 SetLastError( ERROR_BAD_FORMAT );
169 break;
170 default:
171 WARN("unknown file error: %s\n", strerror(save_errno) );
172 SetLastError( ERROR_GEN_FAILURE );
173 break;
175 errno = save_errno;
179 /***********************************************************************
180 * FILE_DupUnixHandle
182 * Duplicate a Unix handle into a task handle.
183 * Returns 0 on failure.
185 HANDLE FILE_DupUnixHandle( int fd, DWORD access, BOOL inherit )
187 HANDLE ret;
189 wine_server_send_fd( fd );
191 SERVER_START_REQ( alloc_file_handle )
193 req->access = access;
194 req->inherit = inherit;
195 req->fd = fd;
196 wine_server_call( req );
197 ret = reply->handle;
199 SERVER_END_REQ;
200 return ret;
204 /***********************************************************************
205 * FILE_GetUnixHandleType
207 * Retrieve the Unix handle corresponding to a file handle.
208 * Returns -1 on failure.
210 int FILE_GetUnixHandleType( HANDLE handle, DWORD access, DWORD *type )
212 int ret, fd = -1;
216 SERVER_START_REQ( get_handle_fd )
218 req->handle = handle;
219 req->access = access;
220 if (!(ret = wine_server_call_err( req )))
222 fd = reply->fd;
224 if (type) *type = reply->type;
226 SERVER_END_REQ;
227 if (ret) return -1;
229 if (fd == -1) /* it wasn't in the cache, get it from the server */
230 fd = wine_server_recv_fd( handle );
232 } while (fd == -2); /* -2 means race condition, so restart from scratch */
234 if (fd != -1)
236 if ((fd = dup(fd)) == -1)
237 SetLastError( ERROR_TOO_MANY_OPEN_FILES );
239 return fd;
242 /***********************************************************************
243 * FILE_GetUnixHandle
245 * Retrieve the Unix handle corresponding to a file handle.
246 * Returns -1 on failure.
248 int FILE_GetUnixHandle( HANDLE handle, DWORD access )
250 return FILE_GetUnixHandleType(handle, access, NULL);
253 /*************************************************************************
254 * FILE_OpenConsole
256 * Open a handle to the current process console.
257 * Returns 0 on failure.
259 static HANDLE FILE_OpenConsole( BOOL output, DWORD access, DWORD sharing, LPSECURITY_ATTRIBUTES sa )
261 HANDLE ret;
263 SERVER_START_REQ( open_console )
265 req->from = output;
266 req->access = access;
267 req->share = sharing;
268 req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
269 SetLastError(0);
270 wine_server_call_err( req );
271 ret = reply->handle;
273 SERVER_END_REQ;
274 return ret;
278 /***********************************************************************
279 * FILE_CreateFile
281 * Implementation of CreateFile. Takes a Unix path name.
282 * Returns 0 on failure.
284 HANDLE FILE_CreateFile( LPCSTR filename, DWORD access, DWORD sharing,
285 LPSECURITY_ATTRIBUTES sa, DWORD creation,
286 DWORD attributes, HANDLE template, BOOL fail_read_only,
287 UINT drive_type )
289 unsigned int err;
290 HANDLE ret;
292 for (;;)
294 SERVER_START_REQ( create_file )
296 req->access = access;
297 req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
298 req->sharing = sharing;
299 req->create = creation;
300 req->attrs = attributes;
301 req->drive_type = drive_type;
302 wine_server_add_data( req, filename, strlen(filename) );
303 SetLastError(0);
304 err = wine_server_call( req );
305 ret = reply->handle;
307 SERVER_END_REQ;
309 /* If write access failed, retry without GENERIC_WRITE */
311 if (!ret && !fail_read_only && (access & GENERIC_WRITE))
313 if ((err == STATUS_MEDIA_WRITE_PROTECTED) || (err == STATUS_ACCESS_DENIED))
315 TRACE("Write access failed for file '%s', trying without "
316 "write access\n", filename);
317 access &= ~GENERIC_WRITE;
318 continue;
322 if (err) SetLastError( RtlNtStatusToDosError(err) );
324 if (!ret) WARN("Unable to create file '%s' (GLE %ld)\n", filename, GetLastError());
325 return ret;
330 /***********************************************************************
331 * FILE_CreateDevice
333 * Same as FILE_CreateFile but for a device
334 * Returns 0 on failure.
336 HANDLE FILE_CreateDevice( int client_id, DWORD access, LPSECURITY_ATTRIBUTES sa )
338 HANDLE ret;
339 SERVER_START_REQ( create_device )
341 req->access = access;
342 req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
343 req->id = client_id;
344 SetLastError(0);
345 wine_server_call_err( req );
346 ret = reply->handle;
348 SERVER_END_REQ;
349 return ret;
352 static HANDLE FILE_OpenPipe(LPCSTR name, DWORD access)
354 WCHAR buffer[MAX_PATH];
355 HANDLE ret;
356 DWORD len = 0;
358 if (name && !(len = MultiByteToWideChar( CP_ACP, 0, name, strlen(name), buffer, MAX_PATH )))
360 SetLastError( ERROR_FILENAME_EXCED_RANGE );
361 return 0;
363 SERVER_START_REQ( open_named_pipe )
365 req->access = access;
366 SetLastError(0);
367 wine_server_add_data( req, buffer, len * sizeof(WCHAR) );
368 wine_server_call_err( req );
369 ret = reply->handle;
371 SERVER_END_REQ;
372 TRACE("Returned %d\n",ret);
373 return ret;
376 /*************************************************************************
377 * CreateFileA [KERNEL32.@] Creates or opens a file or other object
379 * Creates or opens an object, and returns a handle that can be used to
380 * access that object.
382 * PARAMS
384 * filename [in] pointer to filename to be accessed
385 * access [in] access mode requested
386 * sharing [in] share mode
387 * sa [in] pointer to security attributes
388 * creation [in] how to create the file
389 * attributes [in] attributes for newly created file
390 * template [in] handle to file with extended attributes to copy
392 * RETURNS
393 * Success: Open handle to specified file
394 * Failure: INVALID_HANDLE_VALUE
396 * NOTES
397 * Should call SetLastError() on failure.
399 * BUGS
401 * Doesn't support character devices, template files, or a
402 * lot of the 'attributes' flags yet.
404 HANDLE WINAPI CreateFileA( LPCSTR filename, DWORD access, DWORD sharing,
405 LPSECURITY_ATTRIBUTES sa, DWORD creation,
406 DWORD attributes, HANDLE template )
408 DOS_FULL_NAME full_name;
409 HANDLE ret;
411 if (!filename)
413 SetLastError( ERROR_INVALID_PARAMETER );
414 return INVALID_HANDLE_VALUE;
416 TRACE("%s %s%s%s%s%s%s%s\n",filename,
417 ((access & GENERIC_READ)==GENERIC_READ)?"GENERIC_READ ":"",
418 ((access & GENERIC_WRITE)==GENERIC_WRITE)?"GENERIC_WRITE ":"",
419 (!access)?"QUERY_ACCESS ":"",
420 ((sharing & FILE_SHARE_READ)==FILE_SHARE_READ)?"FILE_SHARE_READ ":"",
421 ((sharing & FILE_SHARE_WRITE)==FILE_SHARE_WRITE)?"FILE_SHARE_WRITE ":"",
422 ((sharing & FILE_SHARE_DELETE)==FILE_SHARE_DELETE)?"FILE_SHARE_DELETE ":"",
423 (creation ==CREATE_NEW)?"CREATE_NEW":
424 (creation ==CREATE_ALWAYS)?"CREATE_ALWAYS ":
425 (creation ==OPEN_EXISTING)?"OPEN_EXISTING ":
426 (creation ==OPEN_ALWAYS)?"OPEN_ALWAYS ":
427 (creation ==TRUNCATE_EXISTING)?"TRUNCATE_EXISTING ":"");
429 /* If the name starts with '\\?\', ignore the first 4 chars. */
430 if (!strncmp(filename, "\\\\?\\", 4))
432 filename += 4;
433 if (!strncmp(filename, "UNC\\", 4))
435 FIXME("UNC name (%s) not supported.\n", filename );
436 SetLastError( ERROR_PATH_NOT_FOUND );
437 return INVALID_HANDLE_VALUE;
441 if (!strncmp(filename, "\\\\.\\", 4)) {
442 if(!strncasecmp(&filename[4],"pipe\\",5))
444 TRACE("Opening a pipe: %s\n",filename);
445 ret = FILE_OpenPipe(filename,access);
446 goto done;
448 else if (!DOSFS_GetDevice( filename ))
450 ret = DEVICE_Open( filename+4, access, sa );
451 goto done;
453 else
454 filename+=4; /* fall into DOSFS_Device case below */
457 /* If the name still starts with '\\', it's a UNC name. */
458 if (!strncmp(filename, "\\\\", 2))
460 FIXME("UNC name (%s) not supported.\n", filename );
461 SetLastError( ERROR_PATH_NOT_FOUND );
462 return INVALID_HANDLE_VALUE;
465 /* If the name contains a DOS wild card (* or ?), do no create a file */
466 if(strchr(filename,'*') || strchr(filename,'?'))
467 return INVALID_HANDLE_VALUE;
469 /* Open a console for CONIN$ or CONOUT$ */
470 if (!strcasecmp(filename, "CONIN$"))
472 ret = FILE_OpenConsole( FALSE, access, sharing, sa );
473 goto done;
475 if (!strcasecmp(filename, "CONOUT$"))
477 ret = FILE_OpenConsole( TRUE, access, sharing, sa );
478 goto done;
481 if (DOSFS_GetDevice( filename ))
483 TRACE("opening device '%s'\n", filename );
485 if (!(ret = DOSFS_OpenDevice( filename, access, attributes, sa )))
487 /* Do not silence this please. It is a critical error. -MM */
488 ERR("Couldn't open device '%s'!\n",filename);
489 SetLastError( ERROR_FILE_NOT_FOUND );
491 goto done;
494 /* check for filename, don't check for last entry if creating */
495 if (!DOSFS_GetFullName( filename,
496 (creation == OPEN_EXISTING) ||
497 (creation == TRUNCATE_EXISTING),
498 &full_name )) {
499 WARN("Unable to get full filename from '%s' (GLE %ld)\n",
500 filename, GetLastError());
501 return INVALID_HANDLE_VALUE;
504 ret = FILE_CreateFile( full_name.long_name, access, sharing,
505 sa, creation, attributes, template,
506 DRIVE_GetFlags(full_name.drive) & DRIVE_FAIL_READ_ONLY,
507 GetDriveTypeA( full_name.short_name ) );
508 done:
509 if (!ret) ret = INVALID_HANDLE_VALUE;
510 return ret;
515 /*************************************************************************
516 * CreateFileW (KERNEL32.@)
518 HANDLE WINAPI CreateFileW( LPCWSTR filename, DWORD access, DWORD sharing,
519 LPSECURITY_ATTRIBUTES sa, DWORD creation,
520 DWORD attributes, HANDLE template)
522 LPSTR afn = HEAP_strdupWtoA( GetProcessHeap(), 0, filename );
523 HANDLE res = CreateFileA( afn, access, sharing, sa, creation, attributes, template );
524 HeapFree( GetProcessHeap(), 0, afn );
525 return res;
529 /***********************************************************************
530 * FILE_FillInfo
532 * Fill a file information from a struct stat.
534 static void FILE_FillInfo( struct stat *st, BY_HANDLE_FILE_INFORMATION *info )
536 if (S_ISDIR(st->st_mode))
537 info->dwFileAttributes = FILE_ATTRIBUTE_DIRECTORY;
538 else
539 info->dwFileAttributes = FILE_ATTRIBUTE_ARCHIVE;
540 if (!(st->st_mode & S_IWUSR))
541 info->dwFileAttributes |= FILE_ATTRIBUTE_READONLY;
543 RtlSecondsSince1970ToTime( st->st_mtime, &info->ftCreationTime );
544 RtlSecondsSince1970ToTime( st->st_mtime, &info->ftLastWriteTime );
545 RtlSecondsSince1970ToTime( st->st_atime, &info->ftLastAccessTime );
547 info->dwVolumeSerialNumber = 0; /* FIXME */
548 info->nFileSizeHigh = 0;
549 info->nFileSizeLow = 0;
550 if (!S_ISDIR(st->st_mode)) {
551 info->nFileSizeHigh = st->st_size >> 32;
552 info->nFileSizeLow = st->st_size & 0xffffffff;
554 info->nNumberOfLinks = st->st_nlink;
555 info->nFileIndexHigh = 0;
556 info->nFileIndexLow = st->st_ino;
560 /***********************************************************************
561 * FILE_Stat
563 * Stat a Unix path name. Return TRUE if OK.
565 BOOL FILE_Stat( LPCSTR unixName, BY_HANDLE_FILE_INFORMATION *info )
567 struct stat st;
569 if (lstat( unixName, &st ) == -1)
571 FILE_SetDosError();
572 return FALSE;
574 if (!S_ISLNK(st.st_mode)) FILE_FillInfo( &st, info );
575 else
577 /* do a "real" stat to find out
578 about the type of the symlink destination */
579 if (stat( unixName, &st ) == -1)
581 FILE_SetDosError();
582 return FALSE;
584 FILE_FillInfo( &st, info );
585 info->dwFileAttributes |= FILE_ATTRIBUTE_SYMLINK;
587 return TRUE;
591 /***********************************************************************
592 * GetFileInformationByHandle (KERNEL32.@)
594 DWORD WINAPI GetFileInformationByHandle( HANDLE hFile,
595 BY_HANDLE_FILE_INFORMATION *info )
597 DWORD ret;
598 if (!info) return 0;
600 SERVER_START_REQ( get_file_info )
602 req->handle = hFile;
603 if ((ret = !wine_server_call_err( req )))
605 /* FIXME: which file types are supported ?
606 * Serial ports (FILE_TYPE_CHAR) are not,
607 * and MSDN also says that pipes are not supported.
608 * FILE_TYPE_REMOTE seems to be supported according to
609 * MSDN q234741.txt */
610 if ((reply->type == FILE_TYPE_DISK) || (reply->type == FILE_TYPE_REMOTE))
612 RtlSecondsSince1970ToTime( reply->write_time, &info->ftCreationTime );
613 RtlSecondsSince1970ToTime( reply->write_time, &info->ftLastWriteTime );
614 RtlSecondsSince1970ToTime( reply->access_time, &info->ftLastAccessTime );
615 info->dwFileAttributes = reply->attr;
616 info->dwVolumeSerialNumber = reply->serial;
617 info->nFileSizeHigh = reply->size_high;
618 info->nFileSizeLow = reply->size_low;
619 info->nNumberOfLinks = reply->links;
620 info->nFileIndexHigh = reply->index_high;
621 info->nFileIndexLow = reply->index_low;
623 else
625 SetLastError(ERROR_NOT_SUPPORTED);
626 ret = 0;
630 SERVER_END_REQ;
631 return ret;
635 /**************************************************************************
636 * GetFileAttributes (KERNEL.420)
638 DWORD WINAPI GetFileAttributes16( LPCSTR name )
640 return GetFileAttributesA( name );
644 /**************************************************************************
645 * GetFileAttributesA (KERNEL32.@)
647 DWORD WINAPI GetFileAttributesA( LPCSTR name )
649 DOS_FULL_NAME full_name;
650 BY_HANDLE_FILE_INFORMATION info;
652 if (name == NULL)
654 SetLastError( ERROR_INVALID_PARAMETER );
655 return -1;
657 if (!DOSFS_GetFullName( name, TRUE, &full_name) )
658 return -1;
659 if (!FILE_Stat( full_name.long_name, &info )) return -1;
660 return info.dwFileAttributes;
664 /**************************************************************************
665 * GetFileAttributesW (KERNEL32.@)
667 DWORD WINAPI GetFileAttributesW( LPCWSTR name )
669 LPSTR nameA = HEAP_strdupWtoA( GetProcessHeap(), 0, name );
670 DWORD res = GetFileAttributesA( nameA );
671 HeapFree( GetProcessHeap(), 0, nameA );
672 return res;
676 /***********************************************************************
677 * GetFileSize (KERNEL32.@)
679 DWORD WINAPI GetFileSize( HANDLE hFile, LPDWORD filesizehigh )
681 BY_HANDLE_FILE_INFORMATION info;
682 if (!GetFileInformationByHandle( hFile, &info )) return -1;
683 if (filesizehigh) *filesizehigh = info.nFileSizeHigh;
684 return info.nFileSizeLow;
688 /***********************************************************************
689 * GetFileTime (KERNEL32.@)
691 BOOL WINAPI GetFileTime( HANDLE hFile, FILETIME *lpCreationTime,
692 FILETIME *lpLastAccessTime,
693 FILETIME *lpLastWriteTime )
695 BY_HANDLE_FILE_INFORMATION info;
696 if (!GetFileInformationByHandle( hFile, &info )) return FALSE;
697 if (lpCreationTime) *lpCreationTime = info.ftCreationTime;
698 if (lpLastAccessTime) *lpLastAccessTime = info.ftLastAccessTime;
699 if (lpLastWriteTime) *lpLastWriteTime = info.ftLastWriteTime;
700 return TRUE;
703 /***********************************************************************
704 * CompareFileTime (KERNEL32.@)
706 INT WINAPI CompareFileTime( LPFILETIME x, LPFILETIME y )
708 if (!x || !y) return -1;
710 if (x->dwHighDateTime > y->dwHighDateTime)
711 return 1;
712 if (x->dwHighDateTime < y->dwHighDateTime)
713 return -1;
714 if (x->dwLowDateTime > y->dwLowDateTime)
715 return 1;
716 if (x->dwLowDateTime < y->dwLowDateTime)
717 return -1;
718 return 0;
721 /***********************************************************************
722 * FILE_GetTempFileName : utility for GetTempFileName
724 static UINT FILE_GetTempFileName( LPCSTR path, LPCSTR prefix, UINT unique,
725 LPSTR buffer, BOOL isWin16 )
727 static UINT unique_temp;
728 DOS_FULL_NAME full_name;
729 int i;
730 LPSTR p;
731 UINT num;
733 if ( !path || !prefix || !buffer ) return 0;
735 if (!unique_temp) unique_temp = time(NULL) & 0xffff;
736 num = unique ? (unique & 0xffff) : (unique_temp++ & 0xffff);
738 strcpy( buffer, path );
739 p = buffer + strlen(buffer);
741 /* add a \, if there isn't one and path is more than just the drive letter ... */
742 if ( !((strlen(buffer) == 2) && (buffer[1] == ':'))
743 && ((p == buffer) || (p[-1] != '\\'))) *p++ = '\\';
745 if (isWin16) *p++ = '~';
746 for (i = 3; (i > 0) && (*prefix); i--) *p++ = *prefix++;
747 sprintf( p, "%04x.tmp", num );
749 /* Now try to create it */
751 if (!unique)
755 HFILE handle = CreateFileA( buffer, GENERIC_WRITE, 0, NULL,
756 CREATE_NEW, FILE_ATTRIBUTE_NORMAL, 0 );
757 if (handle != INVALID_HANDLE_VALUE)
758 { /* We created it */
759 TRACE("created %s\n",
760 buffer);
761 CloseHandle( handle );
762 break;
764 if (GetLastError() != ERROR_FILE_EXISTS)
765 break; /* No need to go on */
766 num++;
767 sprintf( p, "%04x.tmp", num );
768 } while (num != (unique & 0xffff));
771 /* Get the full path name */
773 if (DOSFS_GetFullName( buffer, FALSE, &full_name ))
775 /* Check if we have write access in the directory */
776 if ((p = strrchr( full_name.long_name, '/' ))) *p = '\0';
777 if (access( full_name.long_name, W_OK ) == -1)
778 WARN("returns '%s', which doesn't seem to be writeable.\n",
779 buffer);
781 TRACE("returning %s\n", buffer );
782 return unique ? unique : num;
786 /***********************************************************************
787 * GetTempFileNameA (KERNEL32.@)
789 UINT WINAPI GetTempFileNameA( LPCSTR path, LPCSTR prefix, UINT unique,
790 LPSTR buffer)
792 return FILE_GetTempFileName(path, prefix, unique, buffer, FALSE);
795 /***********************************************************************
796 * GetTempFileNameW (KERNEL32.@)
798 UINT WINAPI GetTempFileNameW( LPCWSTR path, LPCWSTR prefix, UINT unique,
799 LPWSTR buffer )
801 LPSTR patha,prefixa;
802 char buffera[144];
803 UINT ret;
805 if (!path) return 0;
806 patha = HEAP_strdupWtoA( GetProcessHeap(), 0, path );
807 prefixa = HEAP_strdupWtoA( GetProcessHeap(), 0, prefix );
808 ret = FILE_GetTempFileName( patha, prefixa, unique, buffera, FALSE );
809 MultiByteToWideChar( CP_ACP, 0, buffera, -1, buffer, MAX_PATH );
810 HeapFree( GetProcessHeap(), 0, patha );
811 HeapFree( GetProcessHeap(), 0, prefixa );
812 return ret;
816 /***********************************************************************
817 * GetTempFileName (KERNEL.97)
819 UINT16 WINAPI GetTempFileName16( BYTE drive, LPCSTR prefix, UINT16 unique,
820 LPSTR buffer )
822 char temppath[144];
824 if (!(drive & ~TF_FORCEDRIVE)) /* drive 0 means current default drive */
825 drive |= DRIVE_GetCurrentDrive() + 'A';
827 if ((drive & TF_FORCEDRIVE) &&
828 !DRIVE_IsValid( toupper(drive & ~TF_FORCEDRIVE) - 'A' ))
830 drive &= ~TF_FORCEDRIVE;
831 WARN("invalid drive %d specified\n", drive );
834 if (drive & TF_FORCEDRIVE)
835 sprintf(temppath,"%c:", drive & ~TF_FORCEDRIVE );
836 else
837 GetTempPathA( 132, temppath );
838 return (UINT16)FILE_GetTempFileName( temppath, prefix, unique, buffer, TRUE );
841 /***********************************************************************
842 * FILE_DoOpenFile
844 * Implementation of OpenFile16() and OpenFile32().
846 static HFILE FILE_DoOpenFile( LPCSTR name, OFSTRUCT *ofs, UINT mode,
847 BOOL win32 )
849 HFILE hFileRet;
850 FILETIME filetime;
851 WORD filedatetime[2];
852 DOS_FULL_NAME full_name;
853 DWORD access, sharing;
854 char *p;
856 if (!ofs) return HFILE_ERROR;
858 TRACE("%s %s %s %s%s%s%s%s%s%s%s%s\n",name,
859 ((mode & 0x3 )==OF_READ)?"OF_READ":
860 ((mode & 0x3 )==OF_WRITE)?"OF_WRITE":
861 ((mode & 0x3 )==OF_READWRITE)?"OF_READWRITE":"unknown",
862 ((mode & 0x70 )==OF_SHARE_COMPAT)?"OF_SHARE_COMPAT":
863 ((mode & 0x70 )==OF_SHARE_DENY_NONE)?"OF_SHARE_DENY_NONE":
864 ((mode & 0x70 )==OF_SHARE_DENY_READ)?"OF_SHARE_DENY_READ":
865 ((mode & 0x70 )==OF_SHARE_DENY_WRITE)?"OF_SHARE_DENY_WRITE":
866 ((mode & 0x70 )==OF_SHARE_EXCLUSIVE)?"OF_SHARE_EXCLUSIVE":"unknown",
867 ((mode & OF_PARSE )==OF_PARSE)?"OF_PARSE ":"",
868 ((mode & OF_DELETE )==OF_DELETE)?"OF_DELETE ":"",
869 ((mode & OF_VERIFY )==OF_VERIFY)?"OF_VERIFY ":"",
870 ((mode & OF_SEARCH )==OF_SEARCH)?"OF_SEARCH ":"",
871 ((mode & OF_CANCEL )==OF_CANCEL)?"OF_CANCEL ":"",
872 ((mode & OF_CREATE )==OF_CREATE)?"OF_CREATE ":"",
873 ((mode & OF_PROMPT )==OF_PROMPT)?"OF_PROMPT ":"",
874 ((mode & OF_EXIST )==OF_EXIST)?"OF_EXIST ":"",
875 ((mode & OF_REOPEN )==OF_REOPEN)?"OF_REOPEN ":""
879 ofs->cBytes = sizeof(OFSTRUCT);
880 ofs->nErrCode = 0;
881 if (mode & OF_REOPEN) name = ofs->szPathName;
883 if (!name) {
884 ERR("called with `name' set to NULL ! Please debug.\n");
885 return HFILE_ERROR;
888 TRACE("%s %04x\n", name, mode );
890 /* the watcom 10.6 IDE relies on a valid path returned in ofs->szPathName
891 Are there any cases where getting the path here is wrong?
892 Uwe Bonnes 1997 Apr 2 */
893 if (!GetFullPathNameA( name, sizeof(ofs->szPathName),
894 ofs->szPathName, NULL )) goto error;
895 FILE_ConvertOFMode( mode, &access, &sharing );
897 /* OF_PARSE simply fills the structure */
899 if (mode & OF_PARSE)
901 ofs->fFixedDisk = (GetDriveType16( ofs->szPathName[0]-'A' )
902 != DRIVE_REMOVABLE);
903 TRACE("(%s): OF_PARSE, res = '%s'\n",
904 name, ofs->szPathName );
905 return 0;
908 /* OF_CREATE is completely different from all other options, so
909 handle it first */
911 if (mode & OF_CREATE)
913 if ((hFileRet = CreateFileA( name, GENERIC_READ | GENERIC_WRITE,
914 sharing, NULL, CREATE_ALWAYS,
915 FILE_ATTRIBUTE_NORMAL, 0 ))== INVALID_HANDLE_VALUE)
916 goto error;
917 goto success;
920 /* If OF_SEARCH is set, ignore the given path */
922 if ((mode & OF_SEARCH) && !(mode & OF_REOPEN))
924 /* First try the file name as is */
925 if (DOSFS_GetFullName( name, TRUE, &full_name )) goto found;
926 /* Now remove the path */
927 if (name[0] && (name[1] == ':')) name += 2;
928 if ((p = strrchr( name, '\\' ))) name = p + 1;
929 if ((p = strrchr( name, '/' ))) name = p + 1;
930 if (!name[0]) goto not_found;
933 /* Now look for the file */
935 if (!DIR_SearchPath( NULL, name, NULL, &full_name, win32 )) goto not_found;
937 found:
938 TRACE("found %s = %s\n",
939 full_name.long_name, full_name.short_name );
940 lstrcpynA( ofs->szPathName, full_name.short_name,
941 sizeof(ofs->szPathName) );
943 if (mode & OF_SHARE_EXCLUSIVE)
944 /* Some InstallShield version uses OF_SHARE_EXCLUSIVE
945 on the file <tempdir>/_ins0432._mp to determine how
946 far installation has proceeded.
947 _ins0432._mp is an executable and while running the
948 application expects the open with OF_SHARE_ to fail*/
949 /* Probable FIXME:
950 As our loader closes the files after loading the executable,
951 we can't find the running executable with FILE_InUse.
952 The loader should keep the file open, as Windows does that, too.
955 char *last = strrchr(full_name.long_name,'/');
956 if (!last)
957 last = full_name.long_name - 1;
958 if (GetModuleHandle16(last+1))
960 TRACE("Denying shared open for %s\n",full_name.long_name);
961 return HFILE_ERROR;
965 if (mode & OF_DELETE)
967 if (unlink( full_name.long_name ) == -1) goto not_found;
968 TRACE("(%s): OF_DELETE return = OK\n", name);
969 return 1;
972 hFileRet = FILE_CreateFile( full_name.long_name, access, sharing,
973 NULL, OPEN_EXISTING, 0, 0,
974 DRIVE_GetFlags(full_name.drive) & DRIVE_FAIL_READ_ONLY,
975 GetDriveTypeA( full_name.short_name ) );
976 if (!hFileRet) goto not_found;
978 GetFileTime( hFileRet, NULL, NULL, &filetime );
979 FileTimeToDosDateTime( &filetime, &filedatetime[0], &filedatetime[1] );
980 if ((mode & OF_VERIFY) && (mode & OF_REOPEN))
982 if (memcmp( ofs->reserved, filedatetime, sizeof(ofs->reserved) ))
984 CloseHandle( hFileRet );
985 WARN("(%s): OF_VERIFY failed\n", name );
986 /* FIXME: what error here? */
987 SetLastError( ERROR_FILE_NOT_FOUND );
988 goto error;
991 memcpy( ofs->reserved, filedatetime, sizeof(ofs->reserved) );
993 success: /* We get here if the open was successful */
994 TRACE("(%s): OK, return = %d\n", name, hFileRet );
995 if (win32)
997 if (mode & OF_EXIST) /* Return the handle, but close it first */
998 CloseHandle( hFileRet );
1000 else
1002 hFileRet = Win32HandleToDosFileHandle( hFileRet );
1003 if (hFileRet == HFILE_ERROR16) goto error;
1004 if (mode & OF_EXIST) /* Return the handle, but close it first */
1005 _lclose16( hFileRet );
1007 return hFileRet;
1009 not_found: /* We get here if the file does not exist */
1010 WARN("'%s' not found or sharing violation\n", name );
1011 SetLastError( ERROR_FILE_NOT_FOUND );
1012 /* fall through */
1014 error: /* We get here if there was an error opening the file */
1015 ofs->nErrCode = GetLastError();
1016 WARN("(%s): return = HFILE_ERROR error= %d\n",
1017 name,ofs->nErrCode );
1018 return HFILE_ERROR;
1022 /***********************************************************************
1023 * OpenFile (KERNEL.74)
1024 * OpenFileEx (KERNEL.360)
1026 HFILE16 WINAPI OpenFile16( LPCSTR name, OFSTRUCT *ofs, UINT16 mode )
1028 return FILE_DoOpenFile( name, ofs, mode, FALSE );
1032 /***********************************************************************
1033 * OpenFile (KERNEL32.@)
1035 HFILE WINAPI OpenFile( LPCSTR name, OFSTRUCT *ofs, UINT mode )
1037 return FILE_DoOpenFile( name, ofs, mode, TRUE );
1041 /***********************************************************************
1042 * FILE_InitProcessDosHandles
1044 * Allocates the default DOS handles for a process. Called either by
1045 * Win32HandleToDosFileHandle below or by the DOSVM stuff.
1047 static void FILE_InitProcessDosHandles( void )
1049 dos_handles[0] = GetStdHandle(STD_INPUT_HANDLE);
1050 dos_handles[1] = GetStdHandle(STD_OUTPUT_HANDLE);
1051 dos_handles[2] = GetStdHandle(STD_ERROR_HANDLE);
1052 dos_handles[3] = GetStdHandle(STD_ERROR_HANDLE);
1053 dos_handles[4] = GetStdHandle(STD_ERROR_HANDLE);
1056 /***********************************************************************
1057 * Win32HandleToDosFileHandle (KERNEL32.21)
1059 * Allocate a DOS handle for a Win32 handle. The Win32 handle is no
1060 * longer valid after this function (even on failure).
1062 * Note: this is not exactly right, since on Win95 the Win32 handles
1063 * are on top of DOS handles and we do it the other way
1064 * around. Should be good enough though.
1066 HFILE WINAPI Win32HandleToDosFileHandle( HANDLE handle )
1068 int i;
1070 if (!handle || (handle == INVALID_HANDLE_VALUE))
1071 return HFILE_ERROR;
1073 for (i = 5; i < DOS_TABLE_SIZE; i++)
1074 if (!dos_handles[i])
1076 dos_handles[i] = handle;
1077 TRACE("Got %d for h32 %d\n", i, handle );
1078 return (HFILE)i;
1080 CloseHandle( handle );
1081 SetLastError( ERROR_TOO_MANY_OPEN_FILES );
1082 return HFILE_ERROR;
1086 /***********************************************************************
1087 * DosFileHandleToWin32Handle (KERNEL32.20)
1089 * Return the Win32 handle for a DOS handle.
1091 * Note: this is not exactly right, since on Win95 the Win32 handles
1092 * are on top of DOS handles and we do it the other way
1093 * around. Should be good enough though.
1095 HANDLE WINAPI DosFileHandleToWin32Handle( HFILE handle )
1097 HFILE16 hfile = (HFILE16)handle;
1098 if (hfile < 5 && !dos_handles[hfile]) FILE_InitProcessDosHandles();
1099 if ((hfile >= DOS_TABLE_SIZE) || !dos_handles[hfile])
1101 SetLastError( ERROR_INVALID_HANDLE );
1102 return INVALID_HANDLE_VALUE;
1104 return dos_handles[hfile];
1108 /***********************************************************************
1109 * DisposeLZ32Handle (KERNEL32.22)
1111 * Note: this is not entirely correct, we should only close the
1112 * 32-bit handle and not the 16-bit one, but we cannot do
1113 * this because of the way our DOS handles are implemented.
1114 * It shouldn't break anything though.
1116 void WINAPI DisposeLZ32Handle( HANDLE handle )
1118 int i;
1120 if (!handle || (handle == INVALID_HANDLE_VALUE)) return;
1122 for (i = 5; i < DOS_TABLE_SIZE; i++)
1123 if (dos_handles[i] == handle)
1125 dos_handles[i] = 0;
1126 CloseHandle( handle );
1127 break;
1132 /***********************************************************************
1133 * FILE_Dup2
1135 * dup2() function for DOS handles.
1137 HFILE16 FILE_Dup2( HFILE16 hFile1, HFILE16 hFile2 )
1139 HANDLE new_handle;
1141 if (hFile1 < 5 && !dos_handles[hFile1]) FILE_InitProcessDosHandles();
1143 if ((hFile1 >= DOS_TABLE_SIZE) || (hFile2 >= DOS_TABLE_SIZE) || !dos_handles[hFile1])
1145 SetLastError( ERROR_INVALID_HANDLE );
1146 return HFILE_ERROR16;
1148 if (hFile2 < 5)
1150 FIXME("stdio handle closed, need proper conversion\n" );
1151 SetLastError( ERROR_INVALID_HANDLE );
1152 return HFILE_ERROR16;
1154 if (!DuplicateHandle( GetCurrentProcess(), dos_handles[hFile1],
1155 GetCurrentProcess(), &new_handle,
1156 0, FALSE, DUPLICATE_SAME_ACCESS ))
1157 return HFILE_ERROR16;
1158 if (dos_handles[hFile2]) CloseHandle( dos_handles[hFile2] );
1159 dos_handles[hFile2] = new_handle;
1160 return hFile2;
1164 /***********************************************************************
1165 * _lclose (KERNEL.81)
1167 HFILE16 WINAPI _lclose16( HFILE16 hFile )
1169 if (hFile < 5)
1171 FIXME("stdio handle closed, need proper conversion\n" );
1172 SetLastError( ERROR_INVALID_HANDLE );
1173 return HFILE_ERROR16;
1175 if ((hFile >= DOS_TABLE_SIZE) || !dos_handles[hFile])
1177 SetLastError( ERROR_INVALID_HANDLE );
1178 return HFILE_ERROR16;
1180 TRACE("%d (handle32=%d)\n", hFile, dos_handles[hFile] );
1181 CloseHandle( dos_handles[hFile] );
1182 dos_handles[hFile] = 0;
1183 return 0;
1187 /***********************************************************************
1188 * _lclose (KERNEL32.@)
1190 HFILE WINAPI _lclose( HFILE hFile )
1192 TRACE("handle %d\n", hFile );
1193 return CloseHandle( hFile ) ? 0 : HFILE_ERROR;
1196 /***********************************************************************
1197 * GetOverlappedResult (KERNEL32.@)
1199 * Check the result of an Asynchronous data transfer from a file.
1201 * RETURNS
1202 * TRUE on success
1203 * FALSE on failure
1205 * If successful (and relevant) lpTransferred will hold the number of
1206 * bytes transferred during the async operation.
1208 * BUGS
1210 * Currently only works for WaitCommEvent, ReadFile, WriteFile
1211 * with communications ports.
1214 BOOL WINAPI GetOverlappedResult(
1215 HANDLE hFile, /* [in] handle of file to check on */
1216 LPOVERLAPPED lpOverlapped, /* [in/out] pointer to overlapped */
1217 LPDWORD lpTransferred, /* [in/out] number of bytes transferred */
1218 BOOL bWait /* [in] wait for the transfer to complete ? */
1220 DWORD r;
1222 TRACE("(%d %p %p %x)\n", hFile, lpOverlapped, lpTransferred, bWait);
1224 if(lpOverlapped==NULL)
1226 ERR("lpOverlapped was null\n");
1227 return FALSE;
1229 if(!lpOverlapped->hEvent)
1231 ERR("lpOverlapped->hEvent was null\n");
1232 return FALSE;
1235 do {
1236 TRACE("waiting on %p\n",lpOverlapped);
1237 r = WaitForSingleObjectEx(lpOverlapped->hEvent, bWait?INFINITE:0, TRUE);
1238 TRACE("wait on %p returned %ld\n",lpOverlapped,r);
1239 } while (r==STATUS_USER_APC);
1241 if(lpTransferred)
1242 *lpTransferred = lpOverlapped->InternalHigh;
1244 SetLastError(lpOverlapped->Internal);
1246 return (r==WAIT_OBJECT_0);
1250 /***********************************************************************
1251 * FILE_StartAsync (INTERNAL)
1253 * type==ASYNC_TYPE_NONE means cancel the indicated overlapped operation
1254 * lpOverlapped==NULL means all overlappeds match
1256 BOOL FILE_StartAsync(HANDLE hFile, LPOVERLAPPED lpOverlapped, DWORD type, DWORD count, DWORD status)
1258 BOOL ret;
1259 SERVER_START_REQ(register_async)
1261 req->handle = hFile;
1262 req->overlapped = lpOverlapped;
1263 req->type = type;
1264 req->count = count;
1265 req->func = check_async_list;
1266 req->status = status;
1267 ret = wine_server_call( req );
1269 SERVER_END_REQ;
1270 return !ret;
1273 /***********************************************************************
1274 * CancelIo (KERNEL32.@)
1276 BOOL WINAPI CancelIo(HANDLE handle)
1278 return FILE_StartAsync(handle, NULL, ASYNC_TYPE_NONE, 0, STATUS_CANCELLED);
1281 /***********************************************************************
1282 * FILE_AsyncReadService (INTERNAL)
1284 * This function is called while the client is waiting on the
1285 * server, so we can't make any server calls here.
1287 static void FILE_AsyncReadService(async_private *ovp)
1289 LPOVERLAPPED lpOverlapped = ovp->lpOverlapped;
1290 int result, r;
1292 TRACE("%p %p\n", lpOverlapped, ovp->buffer );
1294 /* check to see if the data is ready (non-blocking) */
1295 result = read(ovp->fd, &ovp->buffer[lpOverlapped->InternalHigh],
1296 ovp->count - lpOverlapped->InternalHigh);
1298 if ( (result<0) && ((errno == EAGAIN) || (errno == EINTR)))
1300 TRACE("Deferred read %d\n",errno);
1301 r = STATUS_PENDING;
1302 goto async_end;
1305 /* check to see if the transfer is complete */
1306 if(result<0)
1308 TRACE("read returned errno %d\n",errno);
1309 r = STATUS_UNSUCCESSFUL;
1310 goto async_end;
1313 lpOverlapped->InternalHigh += result;
1314 TRACE("read %d more bytes %ld/%d so far\n",result,lpOverlapped->InternalHigh,ovp->count);
1316 if(lpOverlapped->InternalHigh < ovp->count)
1317 r = STATUS_PENDING;
1318 else
1319 r = STATUS_SUCCESS;
1321 async_end:
1322 lpOverlapped->Internal = r;
1325 /***********************************************************************
1326 * FILE_ReadFileEx (INTERNAL)
1328 static BOOL FILE_ReadFileEx(HANDLE hFile, LPVOID buffer, DWORD bytesToRead,
1329 LPOVERLAPPED overlapped,
1330 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
1332 async_private *ovp;
1333 int fd;
1335 TRACE("file %d to buf %p num %ld %p func %p\n",
1336 hFile, buffer, bytesToRead, overlapped, lpCompletionRoutine);
1338 /* check that there is an overlapped struct with an event flag */
1339 if ( (overlapped==NULL) || NtResetEvent( overlapped->hEvent, NULL ) )
1341 TRACE("Overlapped not specified or invalid event flag\n");
1342 SetLastError(ERROR_INVALID_PARAMETER);
1343 return FALSE;
1346 fd = FILE_GetUnixHandle( hFile, GENERIC_READ );
1347 if(fd<0)
1349 TRACE("Couldn't get FD\n");
1350 return FALSE;
1353 ovp = (async_private *) HeapAlloc(GetProcessHeap(), 0, sizeof (async_private));
1354 if(!ovp)
1356 TRACE("HeapAlloc Failed\n");
1357 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1358 close(fd);
1359 return FALSE;
1361 ovp->lpOverlapped = overlapped;
1362 ovp->count = bytesToRead;
1363 ovp->completion_func = lpCompletionRoutine;
1364 ovp->func = FILE_AsyncReadService;
1365 ovp->buffer = buffer;
1366 ovp->fd = fd;
1367 ovp->type = ASYNC_TYPE_READ;
1368 ovp->handle = hFile;
1370 /* hook this overlap into the pending async operation list */
1371 ovp->next = NtCurrentTeb()->pending_list;
1372 ovp->prev = NULL;
1373 if(ovp->next)
1374 ovp->next->prev = ovp;
1375 NtCurrentTeb()->pending_list = ovp;
1377 if ( !FILE_StartAsync(hFile, overlapped, ASYNC_TYPE_READ, bytesToRead, STATUS_PENDING) )
1379 /* FIXME: remove async_private and release memory */
1380 ERR("FILE_StartAsync failed\n");
1381 return FALSE;
1384 return TRUE;
1387 /***********************************************************************
1388 * ReadFileEx (KERNEL32.@)
1390 BOOL WINAPI ReadFileEx(HANDLE hFile, LPVOID buffer, DWORD bytesToRead,
1391 LPOVERLAPPED overlapped,
1392 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
1394 /* FIXME: MS docs say we shouldn't set overlapped->hEvent */
1395 overlapped->Internal = STATUS_PENDING;
1396 overlapped->InternalHigh = 0;
1397 return FILE_ReadFileEx(hFile,buffer,bytesToRead,overlapped,lpCompletionRoutine);
1400 static VOID CALLBACK FILE_TimeoutComplete(DWORD status, DWORD count, LPOVERLAPPED ov)
1402 NtSetEvent(ov->hEvent,NULL);
1405 static BOOL FILE_TimeoutRead(HANDLE hFile, LPVOID buffer, DWORD bytesToRead, LPDWORD bytesRead)
1407 OVERLAPPED ov;
1408 BOOL r = FALSE;
1410 TRACE("%d %p %ld %p\n", hFile, buffer, bytesToRead, bytesRead );
1412 ZeroMemory(&ov, sizeof (OVERLAPPED));
1413 if(STATUS_SUCCESS==NtCreateEvent(&ov.hEvent, SYNCHRONIZE, NULL, 0, 0))
1415 if(ReadFileEx(hFile, buffer, bytesToRead, &ov, FILE_TimeoutComplete))
1417 r = GetOverlappedResult(hFile, &ov, bytesRead, TRUE);
1420 CloseHandle(ov.hEvent);
1421 return r;
1424 /***********************************************************************
1425 * ReadFile (KERNEL32.@)
1427 BOOL WINAPI ReadFile( HANDLE hFile, LPVOID buffer, DWORD bytesToRead,
1428 LPDWORD bytesRead, LPOVERLAPPED overlapped )
1430 int unix_handle, result;
1431 DWORD type;
1433 TRACE("%d %p %ld %p %p\n", hFile, buffer, bytesToRead,
1434 bytesRead, overlapped );
1436 if (bytesRead) *bytesRead = 0; /* Do this before anything else */
1437 if (!bytesToRead) return TRUE;
1439 unix_handle = FILE_GetUnixHandleType( hFile, GENERIC_READ, &type );
1441 switch (type)
1443 case FD_TYPE_OVERLAPPED:
1444 if (unix_handle == -1) return FALSE;
1445 if (!overlapped)
1447 close(unix_handle);
1448 SetLastError(ERROR_INVALID_PARAMETER);
1449 return FALSE;
1452 /* see if we can read some data already (this shouldn't block) */
1453 result = read( unix_handle, buffer, bytesToRead );
1454 close(unix_handle);
1456 if(result<0)
1458 FILE_SetDosError();
1459 return FALSE;
1462 /* if we read enough to keep the app happy, then return now */
1463 if(result>=bytesToRead)
1465 *bytesRead = result;
1466 return TRUE;
1469 /* at last resort, do an overlapped read */
1470 overlapped->Internal = STATUS_PENDING;
1471 overlapped->InternalHigh = result;
1473 if(!FILE_ReadFileEx(hFile, buffer, bytesToRead, overlapped, NULL))
1474 return FALSE;
1476 /* fail on return, with ERROR_IO_PENDING */
1477 SetLastError(ERROR_IO_PENDING);
1478 return FALSE;
1480 case FD_TYPE_CONSOLE:
1481 return ReadConsoleA(hFile, buffer, bytesToRead, bytesRead, NULL);
1483 case FD_TYPE_TIMEOUT:
1484 close(unix_handle);
1485 return FILE_TimeoutRead(hFile, buffer, bytesToRead, bytesRead);
1487 default:
1488 /* normal unix files */
1489 if (unix_handle == -1)
1490 return FALSE;
1491 if (overlapped)
1493 close(unix_handle);
1494 SetLastError(ERROR_INVALID_PARAMETER);
1495 return FALSE;
1497 break;
1500 /* code for synchronous reads */
1501 while ((result = read( unix_handle, buffer, bytesToRead )) == -1)
1503 if ((errno == EAGAIN) || (errno == EINTR)) continue;
1504 if ((errno == EFAULT) && !IsBadWritePtr( buffer, bytesToRead )) continue;
1505 FILE_SetDosError();
1506 break;
1508 close( unix_handle );
1509 if (result == -1) return FALSE;
1510 if (bytesRead) *bytesRead = result;
1511 return TRUE;
1515 /***********************************************************************
1516 * FILE_AsyncWriteService (INTERNAL)
1518 * This function is called while the client is waiting on the
1519 * server, so we can't make any server calls here.
1521 static void FILE_AsyncWriteService(struct async_private *ovp)
1523 LPOVERLAPPED lpOverlapped = ovp->lpOverlapped;
1524 int result, r;
1526 TRACE("(%p %p)\n",lpOverlapped,ovp->buffer);
1528 /* write some data (non-blocking) */
1529 result = write(ovp->fd, &ovp->buffer[lpOverlapped->InternalHigh],
1530 ovp->count-lpOverlapped->InternalHigh);
1532 if ( (result<0) && ((errno == EAGAIN) || (errno == EINTR)))
1534 r = STATUS_PENDING;
1535 goto async_end;
1538 /* check to see if the transfer is complete */
1539 if(result<0)
1541 r = STATUS_UNSUCCESSFUL;
1542 goto async_end;
1545 lpOverlapped->InternalHigh += result;
1547 TRACE("wrote %d more bytes %ld/%d so far\n",result,lpOverlapped->InternalHigh,ovp->count);
1549 if(lpOverlapped->InternalHigh < ovp->count)
1550 r = STATUS_PENDING;
1551 else
1552 r = STATUS_SUCCESS;
1554 async_end:
1555 lpOverlapped->Internal = r;
1558 /***********************************************************************
1559 * WriteFileEx (KERNEL32.@)
1561 BOOL WINAPI WriteFileEx(HANDLE hFile, LPCVOID buffer, DWORD bytesToWrite,
1562 LPOVERLAPPED overlapped,
1563 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
1565 async_private *ovp;
1567 TRACE("file %d to buf %p num %ld %p func %p stub\n",
1568 hFile, buffer, bytesToWrite, overlapped, lpCompletionRoutine);
1570 if ( (overlapped == NULL) || NtResetEvent( overlapped->hEvent, NULL ) )
1572 SetLastError(ERROR_INVALID_PARAMETER);
1573 return FALSE;
1576 overlapped->Internal = STATUS_PENDING;
1577 overlapped->InternalHigh = 0;
1579 if (!FILE_StartAsync(hFile, overlapped, ASYNC_TYPE_WRITE, bytesToWrite, STATUS_PENDING ))
1581 TRACE("FILE_StartAsync failed\n");
1582 return FALSE;
1585 ovp = (async_private*) HeapAlloc(GetProcessHeap(), 0, sizeof (async_private));
1586 if(!ovp)
1588 TRACE("HeapAlloc Failed\n");
1589 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1590 return FALSE;
1592 ovp->lpOverlapped = overlapped;
1593 ovp->func = FILE_AsyncWriteService;
1594 ovp->buffer = (LPVOID) buffer;
1595 ovp->count = bytesToWrite;
1596 ovp->completion_func = lpCompletionRoutine;
1597 ovp->fd = FILE_GetUnixHandle( hFile, GENERIC_WRITE );
1598 ovp->type = ASYNC_TYPE_WRITE;
1599 ovp->handle = hFile;
1601 if(ovp->fd <0)
1603 HeapFree(GetProcessHeap(), 0, ovp);
1604 return FALSE;
1607 /* hook this overlap into the pending async operation list */
1608 ovp->next = NtCurrentTeb()->pending_list;
1609 ovp->prev = NULL;
1610 if(ovp->next)
1611 ovp->next->prev = ovp;
1612 NtCurrentTeb()->pending_list = ovp;
1614 SetLastError(ERROR_IO_PENDING);
1616 /* always fail on return, either ERROR_IO_PENDING or other error */
1617 return FALSE;
1620 /***********************************************************************
1621 * WriteFile (KERNEL32.@)
1623 BOOL WINAPI WriteFile( HANDLE hFile, LPCVOID buffer, DWORD bytesToWrite,
1624 LPDWORD bytesWritten, LPOVERLAPPED overlapped )
1626 int unix_handle, result;
1627 DWORD type;
1629 TRACE("%d %p %ld %p %p\n", hFile, buffer, bytesToWrite,
1630 bytesWritten, overlapped );
1632 if (bytesWritten) *bytesWritten = 0; /* Do this before anything else */
1633 if (!bytesToWrite) return TRUE;
1635 /* this will only have impact if the overlappd structure is specified */
1636 if ( overlapped )
1637 return WriteFileEx(hFile, buffer, bytesToWrite, overlapped, NULL);
1639 unix_handle = FILE_GetUnixHandleType( hFile, GENERIC_WRITE, &type );
1641 switch (type)
1643 case FD_TYPE_CONSOLE:
1644 TRACE("%d %s %ld %p %p\n", hFile, debugstr_an(buffer, bytesToWrite), bytesToWrite,
1645 bytesWritten, overlapped );
1646 return WriteConsoleA(hFile, buffer, bytesToWrite, bytesWritten, NULL);
1647 default:
1648 if (unix_handle == -1)
1649 return FALSE;
1652 /* synchronous file write */
1653 while ((result = write( unix_handle, buffer, bytesToWrite )) == -1)
1655 if ((errno == EAGAIN) || (errno == EINTR)) continue;
1656 if ((errno == EFAULT) && !IsBadReadPtr( buffer, bytesToWrite )) continue;
1657 if (errno == ENOSPC)
1658 SetLastError( ERROR_DISK_FULL );
1659 else
1660 FILE_SetDosError();
1661 break;
1663 close( unix_handle );
1664 if (result == -1) return FALSE;
1665 if (bytesWritten) *bytesWritten = result;
1666 return TRUE;
1670 /***********************************************************************
1671 * _hread (KERNEL.349)
1673 LONG WINAPI WIN16_hread( HFILE16 hFile, SEGPTR buffer, LONG count )
1675 LONG maxlen;
1677 TRACE("%d %08lx %ld\n",
1678 hFile, (DWORD)buffer, count );
1680 /* Some programs pass a count larger than the allocated buffer */
1681 maxlen = GetSelectorLimit16( SELECTOROF(buffer) ) - OFFSETOF(buffer) + 1;
1682 if (count > maxlen) count = maxlen;
1683 return _lread(DosFileHandleToWin32Handle(hFile), MapSL(buffer), count );
1687 /***********************************************************************
1688 * _lread (KERNEL.82)
1690 UINT16 WINAPI WIN16_lread( HFILE16 hFile, SEGPTR buffer, UINT16 count )
1692 return (UINT16)WIN16_hread( hFile, buffer, (LONG)count );
1696 /***********************************************************************
1697 * _lread (KERNEL32.@)
1699 UINT WINAPI _lread( HFILE handle, LPVOID buffer, UINT count )
1701 DWORD result;
1702 if (!ReadFile( handle, buffer, count, &result, NULL )) return -1;
1703 return result;
1707 /***********************************************************************
1708 * _lread16 (KERNEL.82)
1710 UINT16 WINAPI _lread16( HFILE16 hFile, LPVOID buffer, UINT16 count )
1712 return (UINT16)_lread(DosFileHandleToWin32Handle(hFile), buffer, (LONG)count );
1716 /***********************************************************************
1717 * _lcreat (KERNEL.83)
1719 HFILE16 WINAPI _lcreat16( LPCSTR path, INT16 attr )
1721 return Win32HandleToDosFileHandle( _lcreat( path, attr ) );
1725 /***********************************************************************
1726 * _lcreat (KERNEL32.@)
1728 HFILE WINAPI _lcreat( LPCSTR path, INT attr )
1730 /* Mask off all flags not explicitly allowed by the doc */
1731 attr &= FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM;
1732 TRACE("%s %02x\n", path, attr );
1733 return CreateFileA( path, GENERIC_READ | GENERIC_WRITE,
1734 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
1735 CREATE_ALWAYS, attr, 0 );
1739 /***********************************************************************
1740 * SetFilePointer (KERNEL32.@)
1742 DWORD WINAPI SetFilePointer( HANDLE hFile, LONG distance, LONG *highword,
1743 DWORD method )
1745 DWORD ret = 0xffffffff;
1747 TRACE("handle %d offset %ld high %ld origin %ld\n",
1748 hFile, distance, highword?*highword:0, method );
1750 SERVER_START_REQ( set_file_pointer )
1752 req->handle = hFile;
1753 req->low = distance;
1754 req->high = highword ? *highword : (distance >= 0) ? 0 : -1;
1755 /* FIXME: assumes 1:1 mapping between Windows and Unix seek constants */
1756 req->whence = method;
1757 SetLastError( 0 );
1758 if (!wine_server_call_err( req ))
1760 ret = reply->new_low;
1761 if (highword) *highword = reply->new_high;
1764 SERVER_END_REQ;
1765 return ret;
1769 /***********************************************************************
1770 * _llseek (KERNEL.84)
1772 * FIXME:
1773 * Seeking before the start of the file should be allowed for _llseek16,
1774 * but cause subsequent I/O operations to fail (cf. interrupt list)
1777 LONG WINAPI _llseek16( HFILE16 hFile, LONG lOffset, INT16 nOrigin )
1779 return SetFilePointer( DosFileHandleToWin32Handle(hFile), lOffset, NULL, nOrigin );
1783 /***********************************************************************
1784 * _llseek (KERNEL32.@)
1786 LONG WINAPI _llseek( HFILE hFile, LONG lOffset, INT nOrigin )
1788 return SetFilePointer( hFile, lOffset, NULL, nOrigin );
1792 /***********************************************************************
1793 * _lopen (KERNEL.85)
1795 HFILE16 WINAPI _lopen16( LPCSTR path, INT16 mode )
1797 return Win32HandleToDosFileHandle( _lopen( path, mode ) );
1801 /***********************************************************************
1802 * _lopen (KERNEL32.@)
1804 HFILE WINAPI _lopen( LPCSTR path, INT mode )
1806 DWORD access, sharing;
1808 TRACE("('%s',%04x)\n", path, mode );
1809 FILE_ConvertOFMode( mode, &access, &sharing );
1810 return CreateFileA( path, access, sharing, NULL, OPEN_EXISTING, 0, 0 );
1814 /***********************************************************************
1815 * _lwrite (KERNEL.86)
1817 UINT16 WINAPI _lwrite16( HFILE16 hFile, LPCSTR buffer, UINT16 count )
1819 return (UINT16)_hwrite( DosFileHandleToWin32Handle(hFile), buffer, (LONG)count );
1822 /***********************************************************************
1823 * _lwrite (KERNEL32.@)
1825 UINT WINAPI _lwrite( HFILE hFile, LPCSTR buffer, UINT count )
1827 return (UINT)_hwrite( hFile, buffer, (LONG)count );
1831 /***********************************************************************
1832 * _hread16 (KERNEL.349)
1834 LONG WINAPI _hread16( HFILE16 hFile, LPVOID buffer, LONG count)
1836 return _lread( DosFileHandleToWin32Handle(hFile), buffer, count );
1840 /***********************************************************************
1841 * _hread (KERNEL32.@)
1843 LONG WINAPI _hread( HFILE hFile, LPVOID buffer, LONG count)
1845 return _lread( hFile, buffer, count );
1849 /***********************************************************************
1850 * _hwrite (KERNEL.350)
1852 LONG WINAPI _hwrite16( HFILE16 hFile, LPCSTR buffer, LONG count )
1854 return _hwrite( DosFileHandleToWin32Handle(hFile), buffer, count );
1858 /***********************************************************************
1859 * _hwrite (KERNEL32.@)
1861 * experimentation yields that _lwrite:
1862 * o truncates the file at the current position with
1863 * a 0 len write
1864 * o returns 0 on a 0 length write
1865 * o works with console handles
1868 LONG WINAPI _hwrite( HFILE handle, LPCSTR buffer, LONG count )
1870 DWORD result;
1872 TRACE("%d %p %ld\n", handle, buffer, count );
1874 if (!count)
1876 /* Expand or truncate at current position */
1877 if (!SetEndOfFile( handle )) return HFILE_ERROR;
1878 return 0;
1880 if (!WriteFile( handle, buffer, count, &result, NULL ))
1881 return HFILE_ERROR;
1882 return result;
1886 /***********************************************************************
1887 * SetHandleCount (KERNEL.199)
1889 UINT16 WINAPI SetHandleCount16( UINT16 count )
1891 return SetHandleCount( count );
1895 /*************************************************************************
1896 * SetHandleCount (KERNEL32.@)
1898 UINT WINAPI SetHandleCount( UINT count )
1900 return min( 256, count );
1904 /***********************************************************************
1905 * FlushFileBuffers (KERNEL32.@)
1907 BOOL WINAPI FlushFileBuffers( HANDLE hFile )
1909 BOOL ret;
1910 SERVER_START_REQ( flush_file )
1912 req->handle = hFile;
1913 ret = !wine_server_call_err( req );
1915 SERVER_END_REQ;
1916 return ret;
1920 /**************************************************************************
1921 * SetEndOfFile (KERNEL32.@)
1923 BOOL WINAPI SetEndOfFile( HANDLE hFile )
1925 BOOL ret;
1926 SERVER_START_REQ( truncate_file )
1928 req->handle = hFile;
1929 ret = !wine_server_call_err( req );
1931 SERVER_END_REQ;
1932 return ret;
1936 /***********************************************************************
1937 * DeleteFile (KERNEL.146)
1939 BOOL16 WINAPI DeleteFile16( LPCSTR path )
1941 return DeleteFileA( path );
1945 /***********************************************************************
1946 * DeleteFileA (KERNEL32.@)
1948 BOOL WINAPI DeleteFileA( LPCSTR path )
1950 DOS_FULL_NAME full_name;
1952 if (!path)
1954 SetLastError(ERROR_INVALID_PARAMETER);
1955 return FALSE;
1957 TRACE("'%s'\n", path );
1959 if (!*path)
1961 ERR("Empty path passed\n");
1962 return FALSE;
1964 if (DOSFS_GetDevice( path ))
1966 WARN("cannot remove DOS device '%s'!\n", path);
1967 SetLastError( ERROR_FILE_NOT_FOUND );
1968 return FALSE;
1971 if (!DOSFS_GetFullName( path, TRUE, &full_name )) return FALSE;
1972 if (unlink( full_name.long_name ) == -1)
1974 FILE_SetDosError();
1975 return FALSE;
1977 return TRUE;
1981 /***********************************************************************
1982 * DeleteFileW (KERNEL32.@)
1984 BOOL WINAPI DeleteFileW( LPCWSTR path )
1986 LPSTR xpath = HEAP_strdupWtoA( GetProcessHeap(), 0, path );
1987 BOOL ret = DeleteFileA( xpath );
1988 HeapFree( GetProcessHeap(), 0, xpath );
1989 return ret;
1993 /***********************************************************************
1994 * GetFileType (KERNEL32.@)
1996 DWORD WINAPI GetFileType( HANDLE hFile )
1998 DWORD ret = FILE_TYPE_UNKNOWN;
1999 SERVER_START_REQ( get_file_info )
2001 req->handle = hFile;
2002 if (!wine_server_call_err( req )) ret = reply->type;
2004 SERVER_END_REQ;
2005 return ret;
2009 /* check if a file name is for an executable file (.exe or .com) */
2010 inline static BOOL is_executable( const char *name )
2012 int len = strlen(name);
2014 if (len < 4) return FALSE;
2015 return (!strcasecmp( name + len - 4, ".exe" ) ||
2016 !strcasecmp( name + len - 4, ".com" ));
2020 /**************************************************************************
2021 * MoveFileExA (KERNEL32.@)
2023 BOOL WINAPI MoveFileExA( LPCSTR fn1, LPCSTR fn2, DWORD flag )
2025 DOS_FULL_NAME full_name1, full_name2;
2027 TRACE("(%s,%s,%04lx)\n", fn1, fn2, flag);
2029 if (!fn1) {
2030 SetLastError(ERROR_INVALID_PARAMETER);
2031 return FALSE;
2034 if (!DOSFS_GetFullName( fn1, TRUE, &full_name1 )) return FALSE;
2036 if (fn2) /* !fn2 means delete fn1 */
2038 if (DOSFS_GetFullName( fn2, TRUE, &full_name2 ))
2040 /* target exists, check if we may overwrite */
2041 if (!(flag & MOVEFILE_REPLACE_EXISTING))
2043 /* FIXME: Use right error code */
2044 SetLastError( ERROR_ACCESS_DENIED );
2045 return FALSE;
2048 else if (!DOSFS_GetFullName( fn2, FALSE, &full_name2 )) return FALSE;
2050 /* Source name and target path are valid */
2052 if (flag & MOVEFILE_DELAY_UNTIL_REBOOT)
2054 /* FIXME: (bon@elektron.ikp.physik.th-darmstadt.de 970706)
2055 Perhaps we should queue these command and execute it
2056 when exiting... What about using on_exit(2)
2058 FIXME("Please move existing file '%s' to file '%s' when Wine has finished\n",
2059 full_name1.long_name, full_name2.long_name);
2060 return TRUE;
2063 if (full_name1.drive != full_name2.drive)
2065 /* use copy, if allowed */
2066 if (!(flag & MOVEFILE_COPY_ALLOWED))
2068 /* FIXME: Use right error code */
2069 SetLastError( ERROR_FILE_EXISTS );
2070 return FALSE;
2072 return CopyFileA( fn1, fn2, !(flag & MOVEFILE_REPLACE_EXISTING) );
2074 if (rename( full_name1.long_name, full_name2.long_name ) == -1)
2076 FILE_SetDosError();
2077 return FALSE;
2079 if (is_executable( full_name1.long_name ) != is_executable( full_name2.long_name ))
2081 struct stat fstat;
2082 if (stat( full_name2.long_name, &fstat ) != -1)
2084 if (is_executable( full_name2.long_name ))
2085 /* set executable bit where read bit is set */
2086 fstat.st_mode |= (fstat.st_mode & 0444) >> 2;
2087 else
2088 fstat.st_mode &= ~0111;
2089 chmod( full_name2.long_name, fstat.st_mode );
2092 return TRUE;
2094 else /* fn2 == NULL means delete source */
2096 if (flag & MOVEFILE_DELAY_UNTIL_REBOOT)
2098 if (flag & MOVEFILE_COPY_ALLOWED) {
2099 WARN("Illegal flag\n");
2100 SetLastError( ERROR_GEN_FAILURE );
2101 return FALSE;
2103 /* FIXME: (bon@elektron.ikp.physik.th-darmstadt.de 970706)
2104 Perhaps we should queue these command and execute it
2105 when exiting... What about using on_exit(2)
2107 FIXME("Please delete file '%s' when Wine has finished\n",
2108 full_name1.long_name);
2109 return TRUE;
2112 if (unlink( full_name1.long_name ) == -1)
2114 FILE_SetDosError();
2115 return FALSE;
2117 return TRUE; /* successfully deleted */
2121 /**************************************************************************
2122 * MoveFileExW (KERNEL32.@)
2124 BOOL WINAPI MoveFileExW( LPCWSTR fn1, LPCWSTR fn2, DWORD flag )
2126 LPSTR afn1 = HEAP_strdupWtoA( GetProcessHeap(), 0, fn1 );
2127 LPSTR afn2 = HEAP_strdupWtoA( GetProcessHeap(), 0, fn2 );
2128 BOOL res = MoveFileExA( afn1, afn2, flag );
2129 HeapFree( GetProcessHeap(), 0, afn1 );
2130 HeapFree( GetProcessHeap(), 0, afn2 );
2131 return res;
2135 /**************************************************************************
2136 * MoveFileA (KERNEL32.@)
2138 * Move file or directory
2140 BOOL WINAPI MoveFileA( LPCSTR fn1, LPCSTR fn2 )
2142 DOS_FULL_NAME full_name1, full_name2;
2143 struct stat fstat;
2145 TRACE("(%s,%s)\n", fn1, fn2 );
2147 if (!DOSFS_GetFullName( fn1, TRUE, &full_name1 )) return FALSE;
2148 if (DOSFS_GetFullName( fn2, TRUE, &full_name2 )) {
2149 /* The new name must not already exist */
2150 SetLastError(ERROR_ALREADY_EXISTS);
2151 return FALSE;
2153 if (!DOSFS_GetFullName( fn2, FALSE, &full_name2 )) return FALSE;
2155 if (full_name1.drive == full_name2.drive) /* move */
2156 return MoveFileExA( fn1, fn2, MOVEFILE_COPY_ALLOWED );
2158 /* copy */
2159 if (stat( full_name1.long_name, &fstat ))
2161 WARN("Invalid source file %s\n",
2162 full_name1.long_name);
2163 FILE_SetDosError();
2164 return FALSE;
2166 if (S_ISDIR(fstat.st_mode)) {
2167 /* No Move for directories across file systems */
2168 /* FIXME: Use right error code */
2169 SetLastError( ERROR_GEN_FAILURE );
2170 return FALSE;
2172 return CopyFileA(fn1, fn2, TRUE); /*fail, if exist */
2176 /**************************************************************************
2177 * MoveFileW (KERNEL32.@)
2179 BOOL WINAPI MoveFileW( LPCWSTR fn1, LPCWSTR fn2 )
2181 LPSTR afn1 = HEAP_strdupWtoA( GetProcessHeap(), 0, fn1 );
2182 LPSTR afn2 = HEAP_strdupWtoA( GetProcessHeap(), 0, fn2 );
2183 BOOL res = MoveFileA( afn1, afn2 );
2184 HeapFree( GetProcessHeap(), 0, afn1 );
2185 HeapFree( GetProcessHeap(), 0, afn2 );
2186 return res;
2190 /**************************************************************************
2191 * CopyFileA (KERNEL32.@)
2193 BOOL WINAPI CopyFileA( LPCSTR source, LPCSTR dest, BOOL fail_if_exists )
2195 HFILE h1, h2;
2196 BY_HANDLE_FILE_INFORMATION info;
2197 UINT count;
2198 BOOL ret = FALSE;
2199 int mode;
2200 char buffer[2048];
2202 if ((h1 = _lopen( source, OF_READ )) == HFILE_ERROR) return FALSE;
2203 if (!GetFileInformationByHandle( h1, &info ))
2205 CloseHandle( h1 );
2206 return FALSE;
2208 mode = (info.dwFileAttributes & FILE_ATTRIBUTE_READONLY) ? 0444 : 0666;
2209 if ((h2 = CreateFileA( dest, GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
2210 fail_if_exists ? CREATE_NEW : CREATE_ALWAYS,
2211 info.dwFileAttributes, h1 )) == INVALID_HANDLE_VALUE)
2213 CloseHandle( h1 );
2214 return FALSE;
2216 while ((count = _lread( h1, buffer, sizeof(buffer) )) > 0)
2218 char *p = buffer;
2219 while (count > 0)
2221 INT res = _lwrite( h2, p, count );
2222 if (res <= 0) goto done;
2223 p += res;
2224 count -= res;
2227 ret = TRUE;
2228 done:
2229 CloseHandle( h1 );
2230 CloseHandle( h2 );
2231 return ret;
2235 /**************************************************************************
2236 * CopyFileW (KERNEL32.@)
2238 BOOL WINAPI CopyFileW( LPCWSTR source, LPCWSTR dest, BOOL fail_if_exists)
2240 LPSTR sourceA = HEAP_strdupWtoA( GetProcessHeap(), 0, source );
2241 LPSTR destA = HEAP_strdupWtoA( GetProcessHeap(), 0, dest );
2242 BOOL ret = CopyFileA( sourceA, destA, fail_if_exists );
2243 HeapFree( GetProcessHeap(), 0, sourceA );
2244 HeapFree( GetProcessHeap(), 0, destA );
2245 return ret;
2249 /**************************************************************************
2250 * CopyFileExA (KERNEL32.@)
2252 * This implementation ignores most of the extra parameters passed-in into
2253 * the "ex" version of the method and calls the CopyFile method.
2254 * It will have to be fixed eventually.
2256 BOOL WINAPI CopyFileExA(LPCSTR sourceFilename,
2257 LPCSTR destFilename,
2258 LPPROGRESS_ROUTINE progressRoutine,
2259 LPVOID appData,
2260 LPBOOL cancelFlagPointer,
2261 DWORD copyFlags)
2263 BOOL failIfExists = FALSE;
2266 * Interpret the only flag that CopyFile can interpret.
2268 if ( (copyFlags & COPY_FILE_FAIL_IF_EXISTS) != 0)
2270 failIfExists = TRUE;
2273 return CopyFileA(sourceFilename, destFilename, failIfExists);
2276 /**************************************************************************
2277 * CopyFileExW (KERNEL32.@)
2279 BOOL WINAPI CopyFileExW(LPCWSTR sourceFilename,
2280 LPCWSTR destFilename,
2281 LPPROGRESS_ROUTINE progressRoutine,
2282 LPVOID appData,
2283 LPBOOL cancelFlagPointer,
2284 DWORD copyFlags)
2286 LPSTR sourceA = HEAP_strdupWtoA( GetProcessHeap(), 0, sourceFilename );
2287 LPSTR destA = HEAP_strdupWtoA( GetProcessHeap(), 0, destFilename );
2289 BOOL ret = CopyFileExA(sourceA,
2290 destA,
2291 progressRoutine,
2292 appData,
2293 cancelFlagPointer,
2294 copyFlags);
2296 HeapFree( GetProcessHeap(), 0, sourceA );
2297 HeapFree( GetProcessHeap(), 0, destA );
2299 return ret;
2303 /***********************************************************************
2304 * SetFileTime (KERNEL32.@)
2306 BOOL WINAPI SetFileTime( HANDLE hFile,
2307 const FILETIME *lpCreationTime,
2308 const FILETIME *lpLastAccessTime,
2309 const FILETIME *lpLastWriteTime )
2311 BOOL ret;
2312 SERVER_START_REQ( set_file_time )
2314 req->handle = hFile;
2315 if (lpLastAccessTime)
2316 RtlTimeToSecondsSince1970( lpLastAccessTime, (DWORD *)&req->access_time );
2317 else
2318 req->access_time = 0; /* FIXME */
2319 if (lpLastWriteTime)
2320 RtlTimeToSecondsSince1970( lpLastWriteTime, (DWORD *)&req->write_time );
2321 else
2322 req->write_time = 0; /* FIXME */
2323 ret = !wine_server_call_err( req );
2325 SERVER_END_REQ;
2326 return ret;
2330 /**************************************************************************
2331 * LockFile (KERNEL32.@)
2333 BOOL WINAPI LockFile( HANDLE hFile, DWORD dwFileOffsetLow, DWORD dwFileOffsetHigh,
2334 DWORD nNumberOfBytesToLockLow, DWORD nNumberOfBytesToLockHigh )
2336 BOOL ret;
2337 SERVER_START_REQ( lock_file )
2339 req->handle = hFile;
2340 req->offset_low = dwFileOffsetLow;
2341 req->offset_high = dwFileOffsetHigh;
2342 req->count_low = nNumberOfBytesToLockLow;
2343 req->count_high = nNumberOfBytesToLockHigh;
2344 ret = !wine_server_call_err( req );
2346 SERVER_END_REQ;
2347 return ret;
2350 /**************************************************************************
2351 * LockFileEx [KERNEL32.@]
2353 * Locks a byte range within an open file for shared or exclusive access.
2355 * RETURNS
2356 * success: TRUE
2357 * failure: FALSE
2359 * NOTES
2360 * Per Microsoft docs, the third parameter (reserved) must be set to 0.
2362 BOOL WINAPI LockFileEx( HANDLE hFile, DWORD flags, DWORD reserved,
2363 DWORD nNumberOfBytesToLockLow, DWORD nNumberOfBytesToLockHigh,
2364 LPOVERLAPPED pOverlapped )
2366 FIXME("hFile=%d,flags=%ld,reserved=%ld,lowbytes=%ld,highbytes=%ld,overlapped=%p: stub.\n",
2367 hFile, flags, reserved, nNumberOfBytesToLockLow, nNumberOfBytesToLockHigh,
2368 pOverlapped);
2369 if (reserved == 0)
2370 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2371 else
2373 ERR("reserved == %ld: Supposed to be 0??\n", reserved);
2374 SetLastError(ERROR_INVALID_PARAMETER);
2377 return FALSE;
2381 /**************************************************************************
2382 * UnlockFile (KERNEL32.@)
2384 BOOL WINAPI UnlockFile( HANDLE hFile, DWORD dwFileOffsetLow, DWORD dwFileOffsetHigh,
2385 DWORD nNumberOfBytesToUnlockLow, DWORD nNumberOfBytesToUnlockHigh )
2387 BOOL ret;
2388 SERVER_START_REQ( unlock_file )
2390 req->handle = hFile;
2391 req->offset_low = dwFileOffsetLow;
2392 req->offset_high = dwFileOffsetHigh;
2393 req->count_low = nNumberOfBytesToUnlockLow;
2394 req->count_high = nNumberOfBytesToUnlockHigh;
2395 ret = !wine_server_call_err( req );
2397 SERVER_END_REQ;
2398 return ret;
2402 /**************************************************************************
2403 * UnlockFileEx (KERNEL32.@)
2405 BOOL WINAPI UnlockFileEx(
2406 HFILE hFile,
2407 DWORD dwReserved,
2408 DWORD nNumberOfBytesToUnlockLow,
2409 DWORD nNumberOfBytesToUnlockHigh,
2410 LPOVERLAPPED lpOverlapped
2413 FIXME("hFile=%d,reserved=%ld,lowbytes=%ld,highbytes=%ld,overlapped=%p: stub.\n",
2414 hFile, dwReserved, nNumberOfBytesToUnlockLow, nNumberOfBytesToUnlockHigh,
2415 lpOverlapped);
2416 if (dwReserved == 0)
2417 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2418 else
2420 ERR("reserved == %ld: Supposed to be 0??\n", dwReserved);
2421 SetLastError(ERROR_INVALID_PARAMETER);
2424 return FALSE;
2428 #if 0
2430 struct DOS_FILE_LOCK {
2431 struct DOS_FILE_LOCK * next;
2432 DWORD base;
2433 DWORD len;
2434 DWORD processId;
2435 FILE_OBJECT * dos_file;
2436 /* char * unix_name;*/
2439 typedef struct DOS_FILE_LOCK DOS_FILE_LOCK;
2441 static DOS_FILE_LOCK *locks = NULL;
2442 static void DOS_RemoveFileLocks(FILE_OBJECT *file);
2445 /* Locks need to be mirrored because unix file locking is based
2446 * on the pid. Inside of wine there can be multiple WINE processes
2447 * that share the same unix pid.
2448 * Read's and writes should check these locks also - not sure
2449 * how critical that is at this point (FIXME).
2452 static BOOL DOS_AddLock(FILE_OBJECT *file, struct flock *f)
2454 DOS_FILE_LOCK *curr;
2455 DWORD processId;
2457 processId = GetCurrentProcessId();
2459 /* check if lock overlaps a current lock for the same file */
2460 #if 0
2461 for (curr = locks; curr; curr = curr->next) {
2462 if (strcmp(curr->unix_name, file->unix_name) == 0) {
2463 if ((f->l_start == curr->base) && (f->l_len == curr->len))
2464 return TRUE;/* region is identic */
2465 if ((f->l_start < (curr->base + curr->len)) &&
2466 ((f->l_start + f->l_len) > curr->base)) {
2467 /* region overlaps */
2468 return FALSE;
2472 #endif
2474 curr = HeapAlloc( GetProcessHeap(), 0, sizeof(DOS_FILE_LOCK) );
2475 curr->processId = GetCurrentProcessId();
2476 curr->base = f->l_start;
2477 curr->len = f->l_len;
2478 /* curr->unix_name = HEAP_strdupA( GetProcessHeap(), 0, file->unix_name);*/
2479 curr->next = locks;
2480 curr->dos_file = file;
2481 locks = curr;
2482 return TRUE;
2485 static void DOS_RemoveFileLocks(FILE_OBJECT *file)
2487 DWORD processId;
2488 DOS_FILE_LOCK **curr;
2489 DOS_FILE_LOCK *rem;
2491 processId = GetCurrentProcessId();
2492 curr = &locks;
2493 while (*curr) {
2494 if ((*curr)->dos_file == file) {
2495 rem = *curr;
2496 *curr = (*curr)->next;
2497 /* HeapFree( GetProcessHeap(), 0, rem->unix_name );*/
2498 HeapFree( GetProcessHeap(), 0, rem );
2500 else
2501 curr = &(*curr)->next;
2505 static BOOL DOS_RemoveLock(FILE_OBJECT *file, struct flock *f)
2507 DWORD processId;
2508 DOS_FILE_LOCK **curr;
2509 DOS_FILE_LOCK *rem;
2511 processId = GetCurrentProcessId();
2512 for (curr = &locks; *curr; curr = &(*curr)->next) {
2513 if ((*curr)->processId == processId &&
2514 (*curr)->dos_file == file &&
2515 (*curr)->base == f->l_start &&
2516 (*curr)->len == f->l_len) {
2517 /* this is the same lock */
2518 rem = *curr;
2519 *curr = (*curr)->next;
2520 /* HeapFree( GetProcessHeap(), 0, rem->unix_name );*/
2521 HeapFree( GetProcessHeap(), 0, rem );
2522 return TRUE;
2525 /* no matching lock found */
2526 return FALSE;
2530 /**************************************************************************
2531 * LockFile (KERNEL32.@)
2533 BOOL WINAPI LockFile(
2534 HFILE hFile,DWORD dwFileOffsetLow,DWORD dwFileOffsetHigh,
2535 DWORD nNumberOfBytesToLockLow,DWORD nNumberOfBytesToLockHigh )
2537 struct flock f;
2538 FILE_OBJECT *file;
2540 TRACE("handle %d offsetlow=%ld offsethigh=%ld nbyteslow=%ld nbyteshigh=%ld\n",
2541 hFile, dwFileOffsetLow, dwFileOffsetHigh,
2542 nNumberOfBytesToLockLow, nNumberOfBytesToLockHigh);
2544 if (dwFileOffsetHigh || nNumberOfBytesToLockHigh) {
2545 FIXME("Unimplemented bytes > 32bits\n");
2546 return FALSE;
2549 f.l_start = dwFileOffsetLow;
2550 f.l_len = nNumberOfBytesToLockLow;
2551 f.l_whence = SEEK_SET;
2552 f.l_pid = 0;
2553 f.l_type = F_WRLCK;
2555 if (!(file = FILE_GetFile(hFile,0,NULL))) return FALSE;
2557 /* shadow locks internally */
2558 if (!DOS_AddLock(file, &f)) {
2559 SetLastError( ERROR_LOCK_VIOLATION );
2560 return FALSE;
2563 /* FIXME: Unix locking commented out for now, doesn't work with Excel */
2564 #ifdef USE_UNIX_LOCKS
2565 if (fcntl(file->unix_handle, F_SETLK, &f) == -1) {
2566 if (errno == EACCES || errno == EAGAIN) {
2567 SetLastError( ERROR_LOCK_VIOLATION );
2569 else {
2570 FILE_SetDosError();
2572 /* remove our internal copy of the lock */
2573 DOS_RemoveLock(file, &f);
2574 return FALSE;
2576 #endif
2577 return TRUE;
2581 /**************************************************************************
2582 * UnlockFile (KERNEL32.@)
2584 BOOL WINAPI UnlockFile(
2585 HFILE hFile,DWORD dwFileOffsetLow,DWORD dwFileOffsetHigh,
2586 DWORD nNumberOfBytesToUnlockLow,DWORD nNumberOfBytesToUnlockHigh )
2588 FILE_OBJECT *file;
2589 struct flock f;
2591 TRACE("handle %d offsetlow=%ld offsethigh=%ld nbyteslow=%ld nbyteshigh=%ld\n",
2592 hFile, dwFileOffsetLow, dwFileOffsetHigh,
2593 nNumberOfBytesToUnlockLow, nNumberOfBytesToUnlockHigh);
2595 if (dwFileOffsetHigh || nNumberOfBytesToUnlockHigh) {
2596 WARN("Unimplemented bytes > 32bits\n");
2597 return FALSE;
2600 f.l_start = dwFileOffsetLow;
2601 f.l_len = nNumberOfBytesToUnlockLow;
2602 f.l_whence = SEEK_SET;
2603 f.l_pid = 0;
2604 f.l_type = F_UNLCK;
2606 if (!(file = FILE_GetFile(hFile,0,NULL))) return FALSE;
2608 DOS_RemoveLock(file, &f); /* ok if fails - may be another wine */
2610 /* FIXME: Unix locking commented out for now, doesn't work with Excel */
2611 #ifdef USE_UNIX_LOCKS
2612 if (fcntl(file->unix_handle, F_SETLK, &f) == -1) {
2613 FILE_SetDosError();
2614 return FALSE;
2616 #endif
2617 return TRUE;
2619 #endif
2621 /**************************************************************************
2622 * GetFileAttributesExA [KERNEL32.@]
2624 BOOL WINAPI GetFileAttributesExA(
2625 LPCSTR lpFileName, GET_FILEEX_INFO_LEVELS fInfoLevelId,
2626 LPVOID lpFileInformation)
2628 DOS_FULL_NAME full_name;
2629 BY_HANDLE_FILE_INFORMATION info;
2631 if (lpFileName == NULL) return FALSE;
2632 if (lpFileInformation == NULL) return FALSE;
2634 if (fInfoLevelId == GetFileExInfoStandard) {
2635 LPWIN32_FILE_ATTRIBUTE_DATA lpFad =
2636 (LPWIN32_FILE_ATTRIBUTE_DATA) lpFileInformation;
2637 if (!DOSFS_GetFullName( lpFileName, TRUE, &full_name )) return FALSE;
2638 if (!FILE_Stat( full_name.long_name, &info )) return FALSE;
2640 lpFad->dwFileAttributes = info.dwFileAttributes;
2641 lpFad->ftCreationTime = info.ftCreationTime;
2642 lpFad->ftLastAccessTime = info.ftLastAccessTime;
2643 lpFad->ftLastWriteTime = info.ftLastWriteTime;
2644 lpFad->nFileSizeHigh = info.nFileSizeHigh;
2645 lpFad->nFileSizeLow = info.nFileSizeLow;
2647 else {
2648 FIXME("invalid info level %d!\n", fInfoLevelId);
2649 return FALSE;
2652 return TRUE;
2656 /**************************************************************************
2657 * GetFileAttributesExW [KERNEL32.@]
2659 BOOL WINAPI GetFileAttributesExW(
2660 LPCWSTR lpFileName, GET_FILEEX_INFO_LEVELS fInfoLevelId,
2661 LPVOID lpFileInformation)
2663 LPSTR nameA = HEAP_strdupWtoA( GetProcessHeap(), 0, lpFileName );
2664 BOOL res =
2665 GetFileAttributesExA( nameA, fInfoLevelId, lpFileInformation);
2666 HeapFree( GetProcessHeap(), 0, nameA );
2667 return res;