Added WNetRemoveCachedPassword() stub.
[wine] / win32 / file.c
1 /*
2  * Win32 kernel functions
3  *
4  * Copyright 1995 Martin von Loewis, Sven Verdoolaege, and Cameron Heide
5  */
6
7 #include <errno.h>
8 #include <sys/errno.h>
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <sys/types.h>
12 #include <sys/stat.h>
13 #include <sys/mman.h>
14 #include <fcntl.h>
15 #include <string.h>
16 #include <time.h>
17 #include "winbase.h"
18 #include "winerror.h"
19 #include "file.h"
20 #include "device.h"
21 #include "process.h"
22 #include "heap.h"
23 #include "debugtools.h"
24
25 DEFAULT_DEBUG_CHANNEL(file)
26
27 DWORD ErrnoToLastError(int errno_num);
28
29 /***********************************************************************
30  *              ReadFileEx                (KERNEL32.)
31  */
32 typedef
33 VOID
34 (CALLBACK *LPOVERLAPPED_COMPLETION_ROUTINE)(
35     DWORD dwErrorCode,
36     DWORD dwNumberOfBytesTransfered,
37     LPOVERLAPPED lpOverlapped
38     );
39
40 BOOL WINAPI ReadFileEx(HFILE hFile, LPVOID lpBuffer, DWORD numtoread,
41                          LPOVERLAPPED lpOverlapped, 
42                          LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
43 {
44
45     FIXME("file %d to buf %p num %ld %p func %p stub\n",
46           hFile, lpBuffer, numtoread, lpOverlapped, lpCompletionRoutine);
47     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
48     return 0;
49 }
50
51 /**************************************************************************
52  *              SetFileAttributes16     (KERNEL.421)
53  */
54 BOOL16 WINAPI SetFileAttributes16( LPCSTR lpFileName, DWORD attributes )
55 {
56     return SetFileAttributesA( lpFileName, attributes );
57 }
58
59
60 /**************************************************************************
61  *              SetFileAttributes32A    (KERNEL32.490)
62  */
63 BOOL WINAPI SetFileAttributesA(LPCSTR lpFileName, DWORD attributes)
64 {
65     struct stat buf;
66     DOS_FULL_NAME full_name;
67
68     if (!DOSFS_GetFullName( lpFileName, TRUE, &full_name ))
69         return FALSE;
70
71     TRACE("(%s,%lx)\n",lpFileName,attributes);
72     if (attributes & FILE_ATTRIBUTE_NORMAL) {
73       attributes &= ~FILE_ATTRIBUTE_NORMAL;
74       if (attributes)
75         FIXME("(%s):%lx illegal combination with FILE_ATTRIBUTE_NORMAL.\n",
76               lpFileName,attributes);
77     }
78     if(stat(full_name.long_name,&buf)==-1)
79     {
80         SetLastError(ErrnoToLastError(errno));
81         return FALSE;
82     }
83     if (attributes & FILE_ATTRIBUTE_READONLY)
84     {
85         buf.st_mode &= ~0222; /* octal!, clear write permission bits */
86         attributes &= ~FILE_ATTRIBUTE_READONLY;
87     }
88     else
89     {
90         /* add write permission */
91         buf.st_mode |= 0600 | ((buf.st_mode & 044) >> 1);
92     }
93     if (attributes & FILE_ATTRIBUTE_DIRECTORY)
94     {
95         if (!S_ISDIR(buf.st_mode))
96             FIXME("SetFileAttributes expected the file '%s' to be a directory",
97                   lpFileName);
98         attributes &= ~FILE_ATTRIBUTE_DIRECTORY;
99     }
100     attributes &= ~(FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM);
101     if (attributes)
102         FIXME("(%s):%lx attribute(s) not implemented.\n",
103               lpFileName,attributes);
104     if (-1==chmod(full_name.long_name,buf.st_mode))
105     {
106         MESSAGE("Wine ERROR: Couldn't set file attributes for existing file \"%s\". Check permissions !\n", full_name.long_name);
107         SetLastError(ErrnoToLastError(errno));
108         return FALSE;
109     }
110     return TRUE;
111 }
112
113
114 /**************************************************************************
115  *              SetFileAttributes32W    (KERNEL32.491)
116  */
117 BOOL WINAPI SetFileAttributesW(LPCWSTR lpFileName, DWORD attributes)
118 {
119     LPSTR afn = HEAP_strdupWtoA( GetProcessHeap(), 0, lpFileName );
120     BOOL res = SetFileAttributesA( afn, attributes );
121     HeapFree( GetProcessHeap(), 0, afn );
122     return res;
123 }
124
125
126 /**************************************************************************
127  *              SetFileApisToOEM   (KERNEL32.645)
128  */
129 VOID WINAPI SetFileApisToOEM(void)
130 {
131   /*FIXME(file,"(): stub!\n");*/
132 }
133
134
135 /**************************************************************************
136  *              SetFileApisToANSI   (KERNEL32.644)
137  */
138 VOID WINAPI SetFileApisToANSI(void)
139 {
140     /*FIXME(file,"(): stub\n");*/
141 }
142
143
144 /******************************************************************************
145  * AreFileApisANSI [KERNEL32.105]  Determines if file functions are using ANSI
146  *
147  * RETURNS
148  *    TRUE:  Set of file functions is using ANSI code page
149  *    FALSE: Set of file functions is using OEM code page
150  */
151 BOOL WINAPI AreFileApisANSI(void)
152 {
153     FIXME("(void): stub\n");
154     return TRUE;
155 }
156