2 * File handling functions
4 * Copyright 1993 John Burton
5 * Copyright 1996 Alexandre Julliard
8 * Fix the CopyFileEx methods to implement the "extended" functionality.
9 * Right now, they simply call the CopyFile method.
13 #include "wine/port.h"
22 #ifdef HAVE_SYS_ERRNO_H
23 #include <sys/errno.h>
25 #include <sys/types.h>
27 #ifdef HAVE_SYS_MMAN_H
39 #include "wine/winbase16.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
55 /* Size of per-process table of DOS handles */
56 #define DOS_TABLE_SIZE 256
58 static HANDLE dos_handles
[DOS_TABLE_SIZE
];
61 /***********************************************************************
64 * Convert OF_* mode into flags for CreateFile.
66 static void FILE_ConvertOFMode( INT mode
, DWORD
*access
, DWORD
*sharing
)
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;
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
:
82 default: *sharing
= FILE_SHARE_READ
| FILE_SHARE_WRITE
; break;
87 /***********************************************************************
90 * locale-independent case conversion for file I/O
92 int FILE_strcasecmp( const char *str1
, const char *str2
)
96 int ret
= FILE_toupper(*str1
) - FILE_toupper(*str2
);
97 if (ret
|| !*str1
) return ret
;
104 /***********************************************************************
107 * locale-independent case conversion for file I/O
109 int FILE_strncasecmp( const char *str1
, const char *str2
, int len
)
112 for ( ; len
> 0; len
--, str1
++, str2
++)
113 if ((ret
= FILE_toupper(*str1
) - FILE_toupper(*str2
)) || !*str1
) break;
118 /***********************************************************************
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
));
131 SetLastError( ERROR_SHARING_VIOLATION
);
134 SetLastError( ERROR_INVALID_HANDLE
);
137 SetLastError( ERROR_HANDLE_DISK_FULL
);
142 SetLastError( ERROR_ACCESS_DENIED
);
145 SetLastError( ERROR_LOCK_VIOLATION
);
148 SetLastError( ERROR_FILE_NOT_FOUND
);
151 SetLastError( ERROR_CANNOT_MAKE
);
155 SetLastError( ERROR_NO_MORE_FILES
);
158 SetLastError( ERROR_FILE_EXISTS
);
162 SetLastError( ERROR_SEEK
);
165 SetLastError( ERROR_DIR_NOT_EMPTY
);
168 SetLastError( ERROR_BAD_FORMAT
);
171 WARN("unknown file error: %s\n", strerror(save_errno
) );
172 SetLastError( ERROR_GEN_FAILURE
);
179 /***********************************************************************
182 * Duplicate a Unix handle into a task handle.
183 * Returns 0 on failure.
185 HANDLE
FILE_DupUnixHandle( int fd
, DWORD access
, BOOL inherit
)
189 wine_server_send_fd( fd
);
191 SERVER_START_REQ( alloc_file_handle
)
193 req
->access
= access
;
194 req
->inherit
= inherit
;
196 wine_server_call( req
);
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
)
216 SERVER_START_REQ( get_handle_fd
)
218 req
->handle
= handle
;
219 req
->access
= access
;
220 if (!(ret
= wine_server_call_err( req
)))
224 if (type
) *type
= reply
->type
;
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 */
236 if ((fd
= dup(fd
)) == -1)
237 SetLastError( ERROR_TOO_MANY_OPEN_FILES
);
242 /***********************************************************************
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 /*************************************************************************
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
)
263 SERVER_START_REQ( open_console
)
266 req
->access
= access
;
267 req
->share
= sharing
;
268 req
->inherit
= (sa
&& (sa
->nLength
>=sizeof(*sa
)) && sa
->bInheritHandle
);
270 wine_server_call_err( req
);
278 /***********************************************************************
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
,
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
) );
304 err
= wine_server_call( 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
;
322 if (err
) SetLastError( RtlNtStatusToDosError(err
) );
324 if (!ret
) WARN("Unable to create file '%s' (GLE %ld)\n", filename
, GetLastError());
330 /***********************************************************************
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
)
339 SERVER_START_REQ( create_device
)
341 req
->access
= access
;
342 req
->inherit
= (sa
&& (sa
->nLength
>=sizeof(*sa
)) && sa
->bInheritHandle
);
345 wine_server_call_err( req
);
352 static HANDLE
FILE_OpenPipe(LPCSTR name
, DWORD access
)
354 WCHAR buffer
[MAX_PATH
];
358 if (name
&& !(len
= MultiByteToWideChar( CP_ACP
, 0, name
, strlen(name
), buffer
, MAX_PATH
)))
360 SetLastError( ERROR_FILENAME_EXCED_RANGE
);
363 SERVER_START_REQ( open_named_pipe
)
365 req
->access
= access
;
367 wine_server_add_data( req
, buffer
, len
* sizeof(WCHAR
) );
368 wine_server_call_err( req
);
372 TRACE("Returned %d\n",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.
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
393 * Success: Open handle to specified file
394 * Failure: INVALID_HANDLE_VALUE
397 * Should call SetLastError() on failure.
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
;
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))
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
);
448 else if (!DOSFS_GetDevice( filename
))
450 ret
= DEVICE_Open( filename
+4, access
, sa
);
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
);
475 if (!strcasecmp(filename
, "CONOUT$"))
477 ret
= FILE_OpenConsole( TRUE
, access
, sharing
, sa
);
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
);
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
),
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
) );
509 if (!ret
) ret
= INVALID_HANDLE_VALUE
;
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
);
529 /***********************************************************************
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
;
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 /***********************************************************************
563 * Stat a Unix path name. Return TRUE if OK.
565 BOOL
FILE_Stat( LPCSTR unixName
, BY_HANDLE_FILE_INFORMATION
*info
)
569 if (lstat( unixName
, &st
) == -1)
574 if (!S_ISLNK(st
.st_mode
)) FILE_FillInfo( &st
, info
);
577 /* do a "real" stat to find out
578 about the type of the symlink destination */
579 if (stat( unixName
, &st
) == -1)
584 FILE_FillInfo( &st
, info
);
585 info
->dwFileAttributes
|= FILE_ATTRIBUTE_SYMLINK
;
591 /***********************************************************************
592 * GetFileInformationByHandle (KERNEL32.@)
594 DWORD WINAPI
GetFileInformationByHandle( HANDLE hFile
,
595 BY_HANDLE_FILE_INFORMATION
*info
)
600 SERVER_START_REQ( get_file_info
)
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
;
625 SetLastError(ERROR_NOT_SUPPORTED
);
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
;
654 SetLastError( ERROR_INVALID_PARAMETER
);
657 if (!DOSFS_GetFullName( name
, TRUE
, &full_name
) )
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
);
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
;
703 /***********************************************************************
704 * CompareFileTime (KERNEL32.@)
706 INT WINAPI
CompareFileTime( LPFILETIME x
, LPFILETIME y
)
708 if (!x
|| !y
) return -1;
710 if (x
->dwHighDateTime
> y
->dwHighDateTime
)
712 if (x
->dwHighDateTime
< y
->dwHighDateTime
)
714 if (x
->dwLowDateTime
> y
->dwLowDateTime
)
716 if (x
->dwLowDateTime
< y
->dwLowDateTime
)
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
;
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 */
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",
761 CloseHandle( handle
);
764 if (GetLastError() != ERROR_FILE_EXISTS
)
765 break; /* No need to go on */
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",
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
,
792 return FILE_GetTempFileName(path
, prefix
, unique
, buffer
, FALSE
);
795 /***********************************************************************
796 * GetTempFileNameW (KERNEL32.@)
798 UINT WINAPI
GetTempFileNameW( LPCWSTR path
, LPCWSTR prefix
, UINT unique
,
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
);
816 /***********************************************************************
817 * GetTempFileName (KERNEL.97)
819 UINT16 WINAPI
GetTempFileName16( BYTE drive
, LPCSTR prefix
, UINT16 unique
,
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
);
837 GetTempPathA( 132, temppath
);
838 return (UINT16
)FILE_GetTempFileName( temppath
, prefix
, unique
, buffer
, TRUE
);
841 /***********************************************************************
844 * Implementation of OpenFile16() and OpenFile32().
846 static HFILE
FILE_DoOpenFile( LPCSTR name
, OFSTRUCT
*ofs
, UINT mode
,
851 WORD filedatetime
[2];
852 DOS_FULL_NAME full_name
;
853 DWORD access
, sharing
;
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
);
881 if (mode
& OF_REOPEN
) name
= ofs
->szPathName
;
884 ERR("called with `name' set to NULL ! Please debug.\n");
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 */
901 ofs
->fFixedDisk
= (GetDriveType16( ofs
->szPathName
[0]-'A' )
903 TRACE("(%s): OF_PARSE, res = '%s'\n",
904 name
, ofs
->szPathName
);
908 /* OF_CREATE is completely different from all other options, so
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
)
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
;
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*/
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
,'/');
957 last
= full_name
.long_name
- 1;
958 if (GetModuleHandle16(last
+1))
960 TRACE("Denying shared open for %s\n",full_name
.long_name
);
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
);
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
);
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
);
997 if (mode
& OF_EXIST
) /* Return the handle, but close it first */
998 CloseHandle( hFileRet
);
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
);
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
);
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
);
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
)
1070 if (!handle
|| (handle
== INVALID_HANDLE_VALUE
))
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
);
1080 CloseHandle( handle
);
1081 SetLastError( ERROR_TOO_MANY_OPEN_FILES
);
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
)
1120 if (!handle
|| (handle
== INVALID_HANDLE_VALUE
)) return;
1122 for (i
= 5; i
< DOS_TABLE_SIZE
; i
++)
1123 if (dos_handles
[i
] == handle
)
1126 CloseHandle( handle
);
1132 /***********************************************************************
1135 * dup2() function for DOS handles.
1137 HFILE16
FILE_Dup2( HFILE16 hFile1
, HFILE16 hFile2
)
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
;
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
;
1164 /***********************************************************************
1165 * _lclose (KERNEL.81)
1167 HFILE16 WINAPI
_lclose16( HFILE16 hFile
)
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;
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.
1205 * If successful (and relevant) lpTransferred will hold the number of
1206 * bytes transferred during the async operation.
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 ? */
1222 TRACE("(%d %p %p %x)\n", hFile
, lpOverlapped
, lpTransferred
, bWait
);
1224 if(lpOverlapped
==NULL
)
1226 ERR("lpOverlapped was null\n");
1229 if(!lpOverlapped
->hEvent
)
1231 ERR("lpOverlapped->hEvent was null\n");
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
);
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
)
1259 SERVER_START_REQ(register_async
)
1261 req
->handle
= hFile
;
1262 req
->overlapped
= lpOverlapped
;
1265 req
->func
= check_async_list
;
1266 req
->status
= status
;
1267 ret
= wine_server_call( req
);
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
;
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
);
1305 /* check to see if the transfer is complete */
1308 TRACE("read returned errno %d\n",errno
);
1309 r
= STATUS_UNSUCCESSFUL
;
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
)
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
)
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 */
1339 if (overlapped
==NULL
)
1341 SetLastError(ERROR_INVALID_PARAMETER
);
1345 fd
= FILE_GetUnixHandle( hFile
, GENERIC_READ
);
1348 TRACE("Couldn't get FD\n");
1352 ovp
= (async_private
*) HeapAlloc(GetProcessHeap(), 0, sizeof (async_private
));
1355 TRACE("HeapAlloc Failed\n");
1356 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
1360 ovp
->lpOverlapped
= overlapped
;
1361 ovp
->count
= bytesToRead
;
1362 ovp
->completion_func
= lpCompletionRoutine
;
1363 ovp
->func
= FILE_AsyncReadService
;
1364 ovp
->buffer
= buffer
;
1366 ovp
->type
= ASYNC_TYPE_READ
;
1367 ovp
->handle
= hFile
;
1369 /* hook this overlap into the pending async operation list */
1370 ovp
->next
= NtCurrentTeb()->pending_list
;
1373 ovp
->next
->prev
= ovp
;
1374 NtCurrentTeb()->pending_list
= ovp
;
1376 if ( !FILE_StartAsync(hFile
, overlapped
, ASYNC_TYPE_READ
, bytesToRead
, STATUS_PENDING
) )
1378 /* FIXME: remove async_private and release memory */
1379 ERR("FILE_StartAsync failed\n");
1386 /***********************************************************************
1387 * ReadFileEx (KERNEL32.@)
1389 BOOL WINAPI
ReadFileEx(HANDLE hFile
, LPVOID buffer
, DWORD bytesToRead
,
1390 LPOVERLAPPED overlapped
,
1391 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine
)
1393 overlapped
->Internal
= STATUS_PENDING
;
1394 overlapped
->InternalHigh
= 0;
1395 return FILE_ReadFileEx(hFile
,buffer
,bytesToRead
,overlapped
,lpCompletionRoutine
);
1398 static VOID CALLBACK
FILE_OverlappedComplete(DWORD status
, DWORD count
, LPOVERLAPPED ov
)
1400 NtSetEvent(ov
->hEvent
,NULL
);
1403 static BOOL
FILE_TimeoutRead(HANDLE hFile
, LPVOID buffer
, DWORD bytesToRead
, LPDWORD bytesRead
)
1408 TRACE("%d %p %ld %p\n", hFile
, buffer
, bytesToRead
, bytesRead
);
1410 ZeroMemory(&ov
, sizeof (OVERLAPPED
));
1411 if(STATUS_SUCCESS
==NtCreateEvent(&ov
.hEvent
, SYNCHRONIZE
, NULL
, 0, 0))
1413 if(ReadFileEx(hFile
, buffer
, bytesToRead
, &ov
, FILE_OverlappedComplete
))
1415 r
= GetOverlappedResult(hFile
, &ov
, bytesRead
, TRUE
);
1418 CloseHandle(ov
.hEvent
);
1422 /***********************************************************************
1423 * ReadFile (KERNEL32.@)
1425 BOOL WINAPI
ReadFile( HANDLE hFile
, LPVOID buffer
, DWORD bytesToRead
,
1426 LPDWORD bytesRead
, LPOVERLAPPED overlapped
)
1428 int unix_handle
, result
;
1431 TRACE("%d %p %ld %p %p\n", hFile
, buffer
, bytesToRead
,
1432 bytesRead
, overlapped
);
1434 if (bytesRead
) *bytesRead
= 0; /* Do this before anything else */
1435 if (!bytesToRead
) return TRUE
;
1437 unix_handle
= FILE_GetUnixHandleType( hFile
, GENERIC_READ
, &type
);
1441 case FD_TYPE_OVERLAPPED
:
1442 if (unix_handle
== -1) return FALSE
;
1443 if ( (overlapped
==NULL
) || NtResetEvent( overlapped
->hEvent
, NULL
) )
1445 TRACE("Overlapped not specified or invalid event flag\n");
1447 SetLastError(ERROR_INVALID_PARAMETER
);
1451 /* see if we can read some data already (this shouldn't block) */
1452 result
= read( unix_handle
, buffer
, bytesToRead
);
1457 if( (errno
!=EAGAIN
) && (errno
!=EINTR
) &&
1458 ((errno
!= EFAULT
) || IsBadWritePtr( buffer
, bytesToRead
)) )
1467 /* if we read enough to keep the app happy, then return now */
1468 if(result
>=bytesToRead
)
1470 *bytesRead
= result
;
1474 /* at last resort, do an overlapped read */
1475 overlapped
->Internal
= STATUS_PENDING
;
1476 overlapped
->InternalHigh
= result
;
1478 if(!FILE_ReadFileEx(hFile
, buffer
, bytesToRead
, overlapped
, FILE_OverlappedComplete
))
1481 /* fail on return, with ERROR_IO_PENDING */
1482 SetLastError(ERROR_IO_PENDING
);
1485 case FD_TYPE_CONSOLE
:
1486 return ReadConsoleA(hFile
, buffer
, bytesToRead
, bytesRead
, NULL
);
1488 case FD_TYPE_TIMEOUT
:
1490 return FILE_TimeoutRead(hFile
, buffer
, bytesToRead
, bytesRead
);
1493 /* normal unix files */
1494 if (unix_handle
== -1)
1499 SetLastError(ERROR_INVALID_PARAMETER
);
1505 /* code for synchronous reads */
1506 while ((result
= read( unix_handle
, buffer
, bytesToRead
)) == -1)
1508 if ((errno
== EAGAIN
) || (errno
== EINTR
)) continue;
1509 if ((errno
== EFAULT
) && !IsBadWritePtr( buffer
, bytesToRead
)) continue;
1513 close( unix_handle
);
1514 if (result
== -1) return FALSE
;
1515 if (bytesRead
) *bytesRead
= result
;
1520 /***********************************************************************
1521 * FILE_AsyncWriteService (INTERNAL)
1523 * This function is called while the client is waiting on the
1524 * server, so we can't make any server calls here.
1526 static void FILE_AsyncWriteService(struct async_private
*ovp
)
1528 LPOVERLAPPED lpOverlapped
= ovp
->lpOverlapped
;
1531 TRACE("(%p %p)\n",lpOverlapped
,ovp
->buffer
);
1533 /* write some data (non-blocking) */
1534 result
= write(ovp
->fd
, &ovp
->buffer
[lpOverlapped
->InternalHigh
],
1535 ovp
->count
-lpOverlapped
->InternalHigh
);
1537 if ( (result
<0) && ((errno
== EAGAIN
) || (errno
== EINTR
)))
1543 /* check to see if the transfer is complete */
1546 r
= STATUS_UNSUCCESSFUL
;
1550 lpOverlapped
->InternalHigh
+= result
;
1552 TRACE("wrote %d more bytes %ld/%d so far\n",result
,lpOverlapped
->InternalHigh
,ovp
->count
);
1554 if(lpOverlapped
->InternalHigh
< ovp
->count
)
1560 lpOverlapped
->Internal
= r
;
1563 /***********************************************************************
1564 * WriteFileEx (KERNEL32.@)
1566 BOOL WINAPI
WriteFileEx(HANDLE hFile
, LPCVOID buffer
, DWORD bytesToWrite
,
1567 LPOVERLAPPED overlapped
,
1568 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine
)
1572 TRACE("file %d to buf %p num %ld %p func %p stub\n",
1573 hFile
, buffer
, bytesToWrite
, overlapped
, lpCompletionRoutine
);
1575 if (overlapped
== NULL
)
1577 SetLastError(ERROR_INVALID_PARAMETER
);
1581 overlapped
->Internal
= STATUS_PENDING
;
1582 overlapped
->InternalHigh
= 0;
1584 if (!FILE_StartAsync(hFile
, overlapped
, ASYNC_TYPE_WRITE
, bytesToWrite
, STATUS_PENDING
))
1586 TRACE("FILE_StartAsync failed\n");
1590 ovp
= (async_private
*) HeapAlloc(GetProcessHeap(), 0, sizeof (async_private
));
1593 TRACE("HeapAlloc Failed\n");
1594 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
1597 ovp
->lpOverlapped
= overlapped
;
1598 ovp
->func
= FILE_AsyncWriteService
;
1599 ovp
->buffer
= (LPVOID
) buffer
;
1600 ovp
->count
= bytesToWrite
;
1601 ovp
->completion_func
= lpCompletionRoutine
;
1602 ovp
->fd
= FILE_GetUnixHandle( hFile
, GENERIC_WRITE
);
1603 ovp
->type
= ASYNC_TYPE_WRITE
;
1604 ovp
->handle
= hFile
;
1608 HeapFree(GetProcessHeap(), 0, ovp
);
1612 /* hook this overlap into the pending async operation list */
1613 ovp
->next
= NtCurrentTeb()->pending_list
;
1616 ovp
->next
->prev
= ovp
;
1617 NtCurrentTeb()->pending_list
= ovp
;
1619 SetLastError(ERROR_IO_PENDING
);
1621 /* always fail on return, either ERROR_IO_PENDING or other error */
1625 /***********************************************************************
1626 * WriteFile (KERNEL32.@)
1628 BOOL WINAPI
WriteFile( HANDLE hFile
, LPCVOID buffer
, DWORD bytesToWrite
,
1629 LPDWORD bytesWritten
, LPOVERLAPPED overlapped
)
1631 int unix_handle
, result
;
1634 TRACE("%d %p %ld %p %p\n", hFile
, buffer
, bytesToWrite
,
1635 bytesWritten
, overlapped
);
1637 if (bytesWritten
) *bytesWritten
= 0; /* Do this before anything else */
1638 if (!bytesToWrite
) return TRUE
;
1640 unix_handle
= FILE_GetUnixHandleType( hFile
, GENERIC_WRITE
, &type
);
1644 case FD_TYPE_OVERLAPPED
:
1645 if (unix_handle
== -1) return FALSE
;
1646 if ( (overlapped
==NULL
) || NtResetEvent( overlapped
->hEvent
, NULL
) )
1648 TRACE("Overlapped not specified or invalid event flag\n");
1650 SetLastError(ERROR_INVALID_PARAMETER
);
1653 /* FIXME: try write immediately before starting overlapped operation */
1654 return WriteFileEx(hFile
, buffer
, bytesToWrite
, overlapped
, FILE_OverlappedComplete
);
1656 case FD_TYPE_CONSOLE
:
1657 TRACE("%d %s %ld %p %p\n", hFile
, debugstr_an(buffer
, bytesToWrite
), bytesToWrite
,
1658 bytesWritten
, overlapped
);
1659 return WriteConsoleA(hFile
, buffer
, bytesToWrite
, bytesWritten
, NULL
);
1661 if (unix_handle
== -1)
1665 /* synchronous file write */
1666 while ((result
= write( unix_handle
, buffer
, bytesToWrite
)) == -1)
1668 if ((errno
== EAGAIN
) || (errno
== EINTR
)) continue;
1669 if ((errno
== EFAULT
) && !IsBadReadPtr( buffer
, bytesToWrite
)) continue;
1670 if (errno
== ENOSPC
)
1671 SetLastError( ERROR_DISK_FULL
);
1676 close( unix_handle
);
1677 if (result
== -1) return FALSE
;
1678 if (bytesWritten
) *bytesWritten
= result
;
1683 /***********************************************************************
1684 * _hread (KERNEL.349)
1686 LONG WINAPI
WIN16_hread( HFILE16 hFile
, SEGPTR buffer
, LONG count
)
1690 TRACE("%d %08lx %ld\n",
1691 hFile
, (DWORD
)buffer
, count
);
1693 /* Some programs pass a count larger than the allocated buffer */
1694 maxlen
= GetSelectorLimit16( SELECTOROF(buffer
) ) - OFFSETOF(buffer
) + 1;
1695 if (count
> maxlen
) count
= maxlen
;
1696 return _lread(DosFileHandleToWin32Handle(hFile
), MapSL(buffer
), count
);
1700 /***********************************************************************
1701 * _lread (KERNEL.82)
1703 UINT16 WINAPI
WIN16_lread( HFILE16 hFile
, SEGPTR buffer
, UINT16 count
)
1705 return (UINT16
)WIN16_hread( hFile
, buffer
, (LONG
)count
);
1709 /***********************************************************************
1710 * _lread (KERNEL32.@)
1712 UINT WINAPI
_lread( HFILE handle
, LPVOID buffer
, UINT count
)
1715 if (!ReadFile( handle
, buffer
, count
, &result
, NULL
)) return -1;
1720 /***********************************************************************
1721 * _lread16 (KERNEL.82)
1723 UINT16 WINAPI
_lread16( HFILE16 hFile
, LPVOID buffer
, UINT16 count
)
1725 return (UINT16
)_lread(DosFileHandleToWin32Handle(hFile
), buffer
, (LONG
)count
);
1729 /***********************************************************************
1730 * _lcreat (KERNEL.83)
1732 HFILE16 WINAPI
_lcreat16( LPCSTR path
, INT16 attr
)
1734 return Win32HandleToDosFileHandle( _lcreat( path
, attr
) );
1738 /***********************************************************************
1739 * _lcreat (KERNEL32.@)
1741 HFILE WINAPI
_lcreat( LPCSTR path
, INT attr
)
1743 /* Mask off all flags not explicitly allowed by the doc */
1744 attr
&= FILE_ATTRIBUTE_READONLY
| FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_SYSTEM
;
1745 TRACE("%s %02x\n", path
, attr
);
1746 return CreateFileA( path
, GENERIC_READ
| GENERIC_WRITE
,
1747 FILE_SHARE_READ
| FILE_SHARE_WRITE
, NULL
,
1748 CREATE_ALWAYS
, attr
, 0 );
1752 /***********************************************************************
1753 * SetFilePointer (KERNEL32.@)
1755 DWORD WINAPI
SetFilePointer( HANDLE hFile
, LONG distance
, LONG
*highword
,
1758 DWORD ret
= 0xffffffff;
1760 TRACE("handle %d offset %ld high %ld origin %ld\n",
1761 hFile
, distance
, highword
?*highword
:0, method
);
1763 SERVER_START_REQ( set_file_pointer
)
1765 req
->handle
= hFile
;
1766 req
->low
= distance
;
1767 req
->high
= highword
? *highword
: (distance
>= 0) ? 0 : -1;
1768 /* FIXME: assumes 1:1 mapping between Windows and Unix seek constants */
1769 req
->whence
= method
;
1771 if (!wine_server_call_err( req
))
1773 ret
= reply
->new_low
;
1774 if (highword
) *highword
= reply
->new_high
;
1782 /***********************************************************************
1783 * _llseek (KERNEL.84)
1786 * Seeking before the start of the file should be allowed for _llseek16,
1787 * but cause subsequent I/O operations to fail (cf. interrupt list)
1790 LONG WINAPI
_llseek16( HFILE16 hFile
, LONG lOffset
, INT16 nOrigin
)
1792 return SetFilePointer( DosFileHandleToWin32Handle(hFile
), lOffset
, NULL
, nOrigin
);
1796 /***********************************************************************
1797 * _llseek (KERNEL32.@)
1799 LONG WINAPI
_llseek( HFILE hFile
, LONG lOffset
, INT nOrigin
)
1801 return SetFilePointer( hFile
, lOffset
, NULL
, nOrigin
);
1805 /***********************************************************************
1806 * _lopen (KERNEL.85)
1808 HFILE16 WINAPI
_lopen16( LPCSTR path
, INT16 mode
)
1810 return Win32HandleToDosFileHandle( _lopen( path
, mode
) );
1814 /***********************************************************************
1815 * _lopen (KERNEL32.@)
1817 HFILE WINAPI
_lopen( LPCSTR path
, INT mode
)
1819 DWORD access
, sharing
;
1821 TRACE("('%s',%04x)\n", path
, mode
);
1822 FILE_ConvertOFMode( mode
, &access
, &sharing
);
1823 return CreateFileA( path
, access
, sharing
, NULL
, OPEN_EXISTING
, 0, 0 );
1827 /***********************************************************************
1828 * _lwrite (KERNEL.86)
1830 UINT16 WINAPI
_lwrite16( HFILE16 hFile
, LPCSTR buffer
, UINT16 count
)
1832 return (UINT16
)_hwrite( DosFileHandleToWin32Handle(hFile
), buffer
, (LONG
)count
);
1835 /***********************************************************************
1836 * _lwrite (KERNEL32.@)
1838 UINT WINAPI
_lwrite( HFILE hFile
, LPCSTR buffer
, UINT count
)
1840 return (UINT
)_hwrite( hFile
, buffer
, (LONG
)count
);
1844 /***********************************************************************
1845 * _hread16 (KERNEL.349)
1847 LONG WINAPI
_hread16( HFILE16 hFile
, LPVOID buffer
, LONG count
)
1849 return _lread( DosFileHandleToWin32Handle(hFile
), buffer
, count
);
1853 /***********************************************************************
1854 * _hread (KERNEL32.@)
1856 LONG WINAPI
_hread( HFILE hFile
, LPVOID buffer
, LONG count
)
1858 return _lread( hFile
, buffer
, count
);
1862 /***********************************************************************
1863 * _hwrite (KERNEL.350)
1865 LONG WINAPI
_hwrite16( HFILE16 hFile
, LPCSTR buffer
, LONG count
)
1867 return _hwrite( DosFileHandleToWin32Handle(hFile
), buffer
, count
);
1871 /***********************************************************************
1872 * _hwrite (KERNEL32.@)
1874 * experimentation yields that _lwrite:
1875 * o truncates the file at the current position with
1877 * o returns 0 on a 0 length write
1878 * o works with console handles
1881 LONG WINAPI
_hwrite( HFILE handle
, LPCSTR buffer
, LONG count
)
1885 TRACE("%d %p %ld\n", handle
, buffer
, count
);
1889 /* Expand or truncate at current position */
1890 if (!SetEndOfFile( handle
)) return HFILE_ERROR
;
1893 if (!WriteFile( handle
, buffer
, count
, &result
, NULL
))
1899 /***********************************************************************
1900 * SetHandleCount (KERNEL.199)
1902 UINT16 WINAPI
SetHandleCount16( UINT16 count
)
1904 return SetHandleCount( count
);
1908 /*************************************************************************
1909 * SetHandleCount (KERNEL32.@)
1911 UINT WINAPI
SetHandleCount( UINT count
)
1913 return min( 256, count
);
1917 /***********************************************************************
1918 * FlushFileBuffers (KERNEL32.@)
1920 BOOL WINAPI
FlushFileBuffers( HANDLE hFile
)
1923 SERVER_START_REQ( flush_file
)
1925 req
->handle
= hFile
;
1926 ret
= !wine_server_call_err( req
);
1933 /**************************************************************************
1934 * SetEndOfFile (KERNEL32.@)
1936 BOOL WINAPI
SetEndOfFile( HANDLE hFile
)
1939 SERVER_START_REQ( truncate_file
)
1941 req
->handle
= hFile
;
1942 ret
= !wine_server_call_err( req
);
1949 /***********************************************************************
1950 * DeleteFile (KERNEL.146)
1952 BOOL16 WINAPI
DeleteFile16( LPCSTR path
)
1954 return DeleteFileA( path
);
1958 /***********************************************************************
1959 * DeleteFileA (KERNEL32.@)
1961 BOOL WINAPI
DeleteFileA( LPCSTR path
)
1963 DOS_FULL_NAME full_name
;
1967 SetLastError(ERROR_INVALID_PARAMETER
);
1970 TRACE("'%s'\n", path
);
1974 ERR("Empty path passed\n");
1977 if (DOSFS_GetDevice( path
))
1979 WARN("cannot remove DOS device '%s'!\n", path
);
1980 SetLastError( ERROR_FILE_NOT_FOUND
);
1984 if (!DOSFS_GetFullName( path
, TRUE
, &full_name
)) return FALSE
;
1985 if (unlink( full_name
.long_name
) == -1)
1994 /***********************************************************************
1995 * DeleteFileW (KERNEL32.@)
1997 BOOL WINAPI
DeleteFileW( LPCWSTR path
)
1999 LPSTR xpath
= HEAP_strdupWtoA( GetProcessHeap(), 0, path
);
2000 BOOL ret
= DeleteFileA( xpath
);
2001 HeapFree( GetProcessHeap(), 0, xpath
);
2006 /***********************************************************************
2007 * GetFileType (KERNEL32.@)
2009 DWORD WINAPI
GetFileType( HANDLE hFile
)
2011 DWORD ret
= FILE_TYPE_UNKNOWN
;
2012 SERVER_START_REQ( get_file_info
)
2014 req
->handle
= hFile
;
2015 if (!wine_server_call_err( req
)) ret
= reply
->type
;
2022 /* check if a file name is for an executable file (.exe or .com) */
2023 inline static BOOL
is_executable( const char *name
)
2025 int len
= strlen(name
);
2027 if (len
< 4) return FALSE
;
2028 return (!strcasecmp( name
+ len
- 4, ".exe" ) ||
2029 !strcasecmp( name
+ len
- 4, ".com" ));
2033 /**************************************************************************
2034 * MoveFileExA (KERNEL32.@)
2036 BOOL WINAPI
MoveFileExA( LPCSTR fn1
, LPCSTR fn2
, DWORD flag
)
2038 DOS_FULL_NAME full_name1
, full_name2
;
2040 TRACE("(%s,%s,%04lx)\n", fn1
, fn2
, flag
);
2043 SetLastError(ERROR_INVALID_PARAMETER
);
2047 if (!DOSFS_GetFullName( fn1
, TRUE
, &full_name1
)) return FALSE
;
2049 if (fn2
) /* !fn2 means delete fn1 */
2051 if (DOSFS_GetFullName( fn2
, TRUE
, &full_name2
))
2053 /* target exists, check if we may overwrite */
2054 if (!(flag
& MOVEFILE_REPLACE_EXISTING
))
2056 /* FIXME: Use right error code */
2057 SetLastError( ERROR_ACCESS_DENIED
);
2061 else if (!DOSFS_GetFullName( fn2
, FALSE
, &full_name2
)) return FALSE
;
2063 /* Source name and target path are valid */
2065 if (flag
& MOVEFILE_DELAY_UNTIL_REBOOT
)
2067 /* FIXME: (bon@elektron.ikp.physik.th-darmstadt.de 970706)
2068 Perhaps we should queue these command and execute it
2069 when exiting... What about using on_exit(2)
2071 FIXME("Please move existing file '%s' to file '%s' when Wine has finished\n",
2072 full_name1
.long_name
, full_name2
.long_name
);
2076 if (full_name1
.drive
!= full_name2
.drive
)
2078 /* use copy, if allowed */
2079 if (!(flag
& MOVEFILE_COPY_ALLOWED
))
2081 /* FIXME: Use right error code */
2082 SetLastError( ERROR_FILE_EXISTS
);
2085 return CopyFileA( fn1
, fn2
, !(flag
& MOVEFILE_REPLACE_EXISTING
) );
2087 if (rename( full_name1
.long_name
, full_name2
.long_name
) == -1)
2092 if (is_executable( full_name1
.long_name
) != is_executable( full_name2
.long_name
))
2095 if (stat( full_name2
.long_name
, &fstat
) != -1)
2097 if (is_executable( full_name2
.long_name
))
2098 /* set executable bit where read bit is set */
2099 fstat
.st_mode
|= (fstat
.st_mode
& 0444) >> 2;
2101 fstat
.st_mode
&= ~0111;
2102 chmod( full_name2
.long_name
, fstat
.st_mode
);
2107 else /* fn2 == NULL means delete source */
2109 if (flag
& MOVEFILE_DELAY_UNTIL_REBOOT
)
2111 if (flag
& MOVEFILE_COPY_ALLOWED
) {
2112 WARN("Illegal flag\n");
2113 SetLastError( ERROR_GEN_FAILURE
);
2116 /* FIXME: (bon@elektron.ikp.physik.th-darmstadt.de 970706)
2117 Perhaps we should queue these command and execute it
2118 when exiting... What about using on_exit(2)
2120 FIXME("Please delete file '%s' when Wine has finished\n",
2121 full_name1
.long_name
);
2125 if (unlink( full_name1
.long_name
) == -1)
2130 return TRUE
; /* successfully deleted */
2134 /**************************************************************************
2135 * MoveFileExW (KERNEL32.@)
2137 BOOL WINAPI
MoveFileExW( LPCWSTR fn1
, LPCWSTR fn2
, DWORD flag
)
2139 LPSTR afn1
= HEAP_strdupWtoA( GetProcessHeap(), 0, fn1
);
2140 LPSTR afn2
= HEAP_strdupWtoA( GetProcessHeap(), 0, fn2
);
2141 BOOL res
= MoveFileExA( afn1
, afn2
, flag
);
2142 HeapFree( GetProcessHeap(), 0, afn1
);
2143 HeapFree( GetProcessHeap(), 0, afn2
);
2148 /**************************************************************************
2149 * MoveFileA (KERNEL32.@)
2151 * Move file or directory
2153 BOOL WINAPI
MoveFileA( LPCSTR fn1
, LPCSTR fn2
)
2155 DOS_FULL_NAME full_name1
, full_name2
;
2158 TRACE("(%s,%s)\n", fn1
, fn2
);
2160 if (!DOSFS_GetFullName( fn1
, TRUE
, &full_name1
)) return FALSE
;
2161 if (DOSFS_GetFullName( fn2
, TRUE
, &full_name2
)) {
2162 /* The new name must not already exist */
2163 SetLastError(ERROR_ALREADY_EXISTS
);
2166 if (!DOSFS_GetFullName( fn2
, FALSE
, &full_name2
)) return FALSE
;
2168 if (full_name1
.drive
== full_name2
.drive
) /* move */
2169 return MoveFileExA( fn1
, fn2
, MOVEFILE_COPY_ALLOWED
);
2172 if (stat( full_name1
.long_name
, &fstat
))
2174 WARN("Invalid source file %s\n",
2175 full_name1
.long_name
);
2179 if (S_ISDIR(fstat
.st_mode
)) {
2180 /* No Move for directories across file systems */
2181 /* FIXME: Use right error code */
2182 SetLastError( ERROR_GEN_FAILURE
);
2185 return CopyFileA(fn1
, fn2
, TRUE
); /*fail, if exist */
2189 /**************************************************************************
2190 * MoveFileW (KERNEL32.@)
2192 BOOL WINAPI
MoveFileW( LPCWSTR fn1
, LPCWSTR fn2
)
2194 LPSTR afn1
= HEAP_strdupWtoA( GetProcessHeap(), 0, fn1
);
2195 LPSTR afn2
= HEAP_strdupWtoA( GetProcessHeap(), 0, fn2
);
2196 BOOL res
= MoveFileA( afn1
, afn2
);
2197 HeapFree( GetProcessHeap(), 0, afn1
);
2198 HeapFree( GetProcessHeap(), 0, afn2
);
2203 /**************************************************************************
2204 * CopyFileA (KERNEL32.@)
2206 BOOL WINAPI
CopyFileA( LPCSTR source
, LPCSTR dest
, BOOL fail_if_exists
)
2209 BY_HANDLE_FILE_INFORMATION info
;
2215 if ((h1
= _lopen( source
, OF_READ
)) == HFILE_ERROR
) return FALSE
;
2216 if (!GetFileInformationByHandle( h1
, &info
))
2221 mode
= (info
.dwFileAttributes
& FILE_ATTRIBUTE_READONLY
) ? 0444 : 0666;
2222 if ((h2
= CreateFileA( dest
, GENERIC_WRITE
, FILE_SHARE_READ
| FILE_SHARE_WRITE
, NULL
,
2223 fail_if_exists
? CREATE_NEW
: CREATE_ALWAYS
,
2224 info
.dwFileAttributes
, h1
)) == INVALID_HANDLE_VALUE
)
2229 while ((count
= _lread( h1
, buffer
, sizeof(buffer
) )) > 0)
2234 INT res
= _lwrite( h2
, p
, count
);
2235 if (res
<= 0) goto done
;
2248 /**************************************************************************
2249 * CopyFileW (KERNEL32.@)
2251 BOOL WINAPI
CopyFileW( LPCWSTR source
, LPCWSTR dest
, BOOL fail_if_exists
)
2253 LPSTR sourceA
= HEAP_strdupWtoA( GetProcessHeap(), 0, source
);
2254 LPSTR destA
= HEAP_strdupWtoA( GetProcessHeap(), 0, dest
);
2255 BOOL ret
= CopyFileA( sourceA
, destA
, fail_if_exists
);
2256 HeapFree( GetProcessHeap(), 0, sourceA
);
2257 HeapFree( GetProcessHeap(), 0, destA
);
2262 /**************************************************************************
2263 * CopyFileExA (KERNEL32.@)
2265 * This implementation ignores most of the extra parameters passed-in into
2266 * the "ex" version of the method and calls the CopyFile method.
2267 * It will have to be fixed eventually.
2269 BOOL WINAPI
CopyFileExA(LPCSTR sourceFilename
,
2270 LPCSTR destFilename
,
2271 LPPROGRESS_ROUTINE progressRoutine
,
2273 LPBOOL cancelFlagPointer
,
2276 BOOL failIfExists
= FALSE
;
2279 * Interpret the only flag that CopyFile can interpret.
2281 if ( (copyFlags
& COPY_FILE_FAIL_IF_EXISTS
) != 0)
2283 failIfExists
= TRUE
;
2286 return CopyFileA(sourceFilename
, destFilename
, failIfExists
);
2289 /**************************************************************************
2290 * CopyFileExW (KERNEL32.@)
2292 BOOL WINAPI
CopyFileExW(LPCWSTR sourceFilename
,
2293 LPCWSTR destFilename
,
2294 LPPROGRESS_ROUTINE progressRoutine
,
2296 LPBOOL cancelFlagPointer
,
2299 LPSTR sourceA
= HEAP_strdupWtoA( GetProcessHeap(), 0, sourceFilename
);
2300 LPSTR destA
= HEAP_strdupWtoA( GetProcessHeap(), 0, destFilename
);
2302 BOOL ret
= CopyFileExA(sourceA
,
2309 HeapFree( GetProcessHeap(), 0, sourceA
);
2310 HeapFree( GetProcessHeap(), 0, destA
);
2316 /***********************************************************************
2317 * SetFileTime (KERNEL32.@)
2319 BOOL WINAPI
SetFileTime( HANDLE hFile
,
2320 const FILETIME
*lpCreationTime
,
2321 const FILETIME
*lpLastAccessTime
,
2322 const FILETIME
*lpLastWriteTime
)
2325 SERVER_START_REQ( set_file_time
)
2327 req
->handle
= hFile
;
2328 if (lpLastAccessTime
)
2329 RtlTimeToSecondsSince1970( lpLastAccessTime
, (DWORD
*)&req
->access_time
);
2331 req
->access_time
= 0; /* FIXME */
2332 if (lpLastWriteTime
)
2333 RtlTimeToSecondsSince1970( lpLastWriteTime
, (DWORD
*)&req
->write_time
);
2335 req
->write_time
= 0; /* FIXME */
2336 ret
= !wine_server_call_err( req
);
2343 /**************************************************************************
2344 * LockFile (KERNEL32.@)
2346 BOOL WINAPI
LockFile( HANDLE hFile
, DWORD dwFileOffsetLow
, DWORD dwFileOffsetHigh
,
2347 DWORD nNumberOfBytesToLockLow
, DWORD nNumberOfBytesToLockHigh
)
2350 SERVER_START_REQ( lock_file
)
2352 req
->handle
= hFile
;
2353 req
->offset_low
= dwFileOffsetLow
;
2354 req
->offset_high
= dwFileOffsetHigh
;
2355 req
->count_low
= nNumberOfBytesToLockLow
;
2356 req
->count_high
= nNumberOfBytesToLockHigh
;
2357 ret
= !wine_server_call_err( req
);
2363 /**************************************************************************
2364 * LockFileEx [KERNEL32.@]
2366 * Locks a byte range within an open file for shared or exclusive access.
2373 * Per Microsoft docs, the third parameter (reserved) must be set to 0.
2375 BOOL WINAPI
LockFileEx( HANDLE hFile
, DWORD flags
, DWORD reserved
,
2376 DWORD nNumberOfBytesToLockLow
, DWORD nNumberOfBytesToLockHigh
,
2377 LPOVERLAPPED pOverlapped
)
2379 FIXME("hFile=%d,flags=%ld,reserved=%ld,lowbytes=%ld,highbytes=%ld,overlapped=%p: stub.\n",
2380 hFile
, flags
, reserved
, nNumberOfBytesToLockLow
, nNumberOfBytesToLockHigh
,
2383 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
2386 ERR("reserved == %ld: Supposed to be 0??\n", reserved
);
2387 SetLastError(ERROR_INVALID_PARAMETER
);
2394 /**************************************************************************
2395 * UnlockFile (KERNEL32.@)
2397 BOOL WINAPI
UnlockFile( HANDLE hFile
, DWORD dwFileOffsetLow
, DWORD dwFileOffsetHigh
,
2398 DWORD nNumberOfBytesToUnlockLow
, DWORD nNumberOfBytesToUnlockHigh
)
2401 SERVER_START_REQ( unlock_file
)
2403 req
->handle
= hFile
;
2404 req
->offset_low
= dwFileOffsetLow
;
2405 req
->offset_high
= dwFileOffsetHigh
;
2406 req
->count_low
= nNumberOfBytesToUnlockLow
;
2407 req
->count_high
= nNumberOfBytesToUnlockHigh
;
2408 ret
= !wine_server_call_err( req
);
2415 /**************************************************************************
2416 * UnlockFileEx (KERNEL32.@)
2418 BOOL WINAPI
UnlockFileEx(
2421 DWORD nNumberOfBytesToUnlockLow
,
2422 DWORD nNumberOfBytesToUnlockHigh
,
2423 LPOVERLAPPED lpOverlapped
2426 FIXME("hFile=%d,reserved=%ld,lowbytes=%ld,highbytes=%ld,overlapped=%p: stub.\n",
2427 hFile
, dwReserved
, nNumberOfBytesToUnlockLow
, nNumberOfBytesToUnlockHigh
,
2429 if (dwReserved
== 0)
2430 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
2433 ERR("reserved == %ld: Supposed to be 0??\n", dwReserved
);
2434 SetLastError(ERROR_INVALID_PARAMETER
);
2443 struct DOS_FILE_LOCK
{
2444 struct DOS_FILE_LOCK
* next
;
2448 FILE_OBJECT
* dos_file
;
2449 /* char * unix_name;*/
2452 typedef struct DOS_FILE_LOCK DOS_FILE_LOCK
;
2454 static DOS_FILE_LOCK
*locks
= NULL
;
2455 static void DOS_RemoveFileLocks(FILE_OBJECT
*file
);
2458 /* Locks need to be mirrored because unix file locking is based
2459 * on the pid. Inside of wine there can be multiple WINE processes
2460 * that share the same unix pid.
2461 * Read's and writes should check these locks also - not sure
2462 * how critical that is at this point (FIXME).
2465 static BOOL
DOS_AddLock(FILE_OBJECT
*file
, struct flock
*f
)
2467 DOS_FILE_LOCK
*curr
;
2470 processId
= GetCurrentProcessId();
2472 /* check if lock overlaps a current lock for the same file */
2474 for (curr
= locks
; curr
; curr
= curr
->next
) {
2475 if (strcmp(curr
->unix_name
, file
->unix_name
) == 0) {
2476 if ((f
->l_start
== curr
->base
) && (f
->l_len
== curr
->len
))
2477 return TRUE
;/* region is identic */
2478 if ((f
->l_start
< (curr
->base
+ curr
->len
)) &&
2479 ((f
->l_start
+ f
->l_len
) > curr
->base
)) {
2480 /* region overlaps */
2487 curr
= HeapAlloc( GetProcessHeap(), 0, sizeof(DOS_FILE_LOCK
) );
2488 curr
->processId
= GetCurrentProcessId();
2489 curr
->base
= f
->l_start
;
2490 curr
->len
= f
->l_len
;
2491 /* curr->unix_name = HEAP_strdupA( GetProcessHeap(), 0, file->unix_name);*/
2493 curr
->dos_file
= file
;
2498 static void DOS_RemoveFileLocks(FILE_OBJECT
*file
)
2501 DOS_FILE_LOCK
**curr
;
2504 processId
= GetCurrentProcessId();
2507 if ((*curr
)->dos_file
== file
) {
2509 *curr
= (*curr
)->next
;
2510 /* HeapFree( GetProcessHeap(), 0, rem->unix_name );*/
2511 HeapFree( GetProcessHeap(), 0, rem
);
2514 curr
= &(*curr
)->next
;
2518 static BOOL
DOS_RemoveLock(FILE_OBJECT
*file
, struct flock
*f
)
2521 DOS_FILE_LOCK
**curr
;
2524 processId
= GetCurrentProcessId();
2525 for (curr
= &locks
; *curr
; curr
= &(*curr
)->next
) {
2526 if ((*curr
)->processId
== processId
&&
2527 (*curr
)->dos_file
== file
&&
2528 (*curr
)->base
== f
->l_start
&&
2529 (*curr
)->len
== f
->l_len
) {
2530 /* this is the same lock */
2532 *curr
= (*curr
)->next
;
2533 /* HeapFree( GetProcessHeap(), 0, rem->unix_name );*/
2534 HeapFree( GetProcessHeap(), 0, rem
);
2538 /* no matching lock found */
2543 /**************************************************************************
2544 * LockFile (KERNEL32.@)
2546 BOOL WINAPI
LockFile(
2547 HFILE hFile
,DWORD dwFileOffsetLow
,DWORD dwFileOffsetHigh
,
2548 DWORD nNumberOfBytesToLockLow
,DWORD nNumberOfBytesToLockHigh
)
2553 TRACE("handle %d offsetlow=%ld offsethigh=%ld nbyteslow=%ld nbyteshigh=%ld\n",
2554 hFile
, dwFileOffsetLow
, dwFileOffsetHigh
,
2555 nNumberOfBytesToLockLow
, nNumberOfBytesToLockHigh
);
2557 if (dwFileOffsetHigh
|| nNumberOfBytesToLockHigh
) {
2558 FIXME("Unimplemented bytes > 32bits\n");
2562 f
.l_start
= dwFileOffsetLow
;
2563 f
.l_len
= nNumberOfBytesToLockLow
;
2564 f
.l_whence
= SEEK_SET
;
2568 if (!(file
= FILE_GetFile(hFile
,0,NULL
))) return FALSE
;
2570 /* shadow locks internally */
2571 if (!DOS_AddLock(file
, &f
)) {
2572 SetLastError( ERROR_LOCK_VIOLATION
);
2576 /* FIXME: Unix locking commented out for now, doesn't work with Excel */
2577 #ifdef USE_UNIX_LOCKS
2578 if (fcntl(file
->unix_handle
, F_SETLK
, &f
) == -1) {
2579 if (errno
== EACCES
|| errno
== EAGAIN
) {
2580 SetLastError( ERROR_LOCK_VIOLATION
);
2585 /* remove our internal copy of the lock */
2586 DOS_RemoveLock(file
, &f
);
2594 /**************************************************************************
2595 * UnlockFile (KERNEL32.@)
2597 BOOL WINAPI
UnlockFile(
2598 HFILE hFile
,DWORD dwFileOffsetLow
,DWORD dwFileOffsetHigh
,
2599 DWORD nNumberOfBytesToUnlockLow
,DWORD nNumberOfBytesToUnlockHigh
)
2604 TRACE("handle %d offsetlow=%ld offsethigh=%ld nbyteslow=%ld nbyteshigh=%ld\n",
2605 hFile
, dwFileOffsetLow
, dwFileOffsetHigh
,
2606 nNumberOfBytesToUnlockLow
, nNumberOfBytesToUnlockHigh
);
2608 if (dwFileOffsetHigh
|| nNumberOfBytesToUnlockHigh
) {
2609 WARN("Unimplemented bytes > 32bits\n");
2613 f
.l_start
= dwFileOffsetLow
;
2614 f
.l_len
= nNumberOfBytesToUnlockLow
;
2615 f
.l_whence
= SEEK_SET
;
2619 if (!(file
= FILE_GetFile(hFile
,0,NULL
))) return FALSE
;
2621 DOS_RemoveLock(file
, &f
); /* ok if fails - may be another wine */
2623 /* FIXME: Unix locking commented out for now, doesn't work with Excel */
2624 #ifdef USE_UNIX_LOCKS
2625 if (fcntl(file
->unix_handle
, F_SETLK
, &f
) == -1) {
2634 /**************************************************************************
2635 * GetFileAttributesExA [KERNEL32.@]
2637 BOOL WINAPI
GetFileAttributesExA(
2638 LPCSTR lpFileName
, GET_FILEEX_INFO_LEVELS fInfoLevelId
,
2639 LPVOID lpFileInformation
)
2641 DOS_FULL_NAME full_name
;
2642 BY_HANDLE_FILE_INFORMATION info
;
2644 if (lpFileName
== NULL
) return FALSE
;
2645 if (lpFileInformation
== NULL
) return FALSE
;
2647 if (fInfoLevelId
== GetFileExInfoStandard
) {
2648 LPWIN32_FILE_ATTRIBUTE_DATA lpFad
=
2649 (LPWIN32_FILE_ATTRIBUTE_DATA
) lpFileInformation
;
2650 if (!DOSFS_GetFullName( lpFileName
, TRUE
, &full_name
)) return FALSE
;
2651 if (!FILE_Stat( full_name
.long_name
, &info
)) return FALSE
;
2653 lpFad
->dwFileAttributes
= info
.dwFileAttributes
;
2654 lpFad
->ftCreationTime
= info
.ftCreationTime
;
2655 lpFad
->ftLastAccessTime
= info
.ftLastAccessTime
;
2656 lpFad
->ftLastWriteTime
= info
.ftLastWriteTime
;
2657 lpFad
->nFileSizeHigh
= info
.nFileSizeHigh
;
2658 lpFad
->nFileSizeLow
= info
.nFileSizeLow
;
2661 FIXME("invalid info level %d!\n", fInfoLevelId
);
2669 /**************************************************************************
2670 * GetFileAttributesExW [KERNEL32.@]
2672 BOOL WINAPI
GetFileAttributesExW(
2673 LPCWSTR lpFileName
, GET_FILEEX_INFO_LEVELS fInfoLevelId
,
2674 LPVOID lpFileInformation
)
2676 LPSTR nameA
= HEAP_strdupWtoA( GetProcessHeap(), 0, lpFileName
);
2678 GetFileAttributesExA( nameA
, fInfoLevelId
, lpFileInformation
);
2679 HeapFree( GetProcessHeap(), 0, nameA
);