2 * msvcrt.dll file functions
4 * Copyright 1996,1998 Marcus Meissner
5 * Copyright 1996 Jukka Iivonen
6 * Copyright 1997,2000 Uwe Bonnes
7 * Copyright 2000 Jon Griffiths
8 * Copyright 2004 Eric Pouech
9 * Copyright 2004 Juan Lang
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 * Use the file flag hints O_SEQUENTIAL, O_RANDOM, O_SHORT_LIVED
30 #include "wine/port.h"
38 #include <sys/types.h>
46 #include "wine/unicode.h"
48 #include "wine/debug.h"
50 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt
);
52 /* for stat mode, permissions apply to all,owner and group */
53 #define ALL_S_IREAD (MSVCRT__S_IREAD | (MSVCRT__S_IREAD >> 3) | (MSVCRT__S_IREAD >> 6))
54 #define ALL_S_IWRITE (MSVCRT__S_IWRITE | (MSVCRT__S_IWRITE >> 3) | (MSVCRT__S_IWRITE >> 6))
55 #define ALL_S_IEXEC (MSVCRT__S_IEXEC | (MSVCRT__S_IEXEC >> 3) | (MSVCRT__S_IEXEC >> 6))
57 /* _access() bit flags FIXME: incomplete */
58 #define MSVCRT_W_OK 0x02
60 /* values for wxflag in file descriptor */
63 #define WX_DONTINHERIT 0x10
64 #define WX_APPEND 0x20
67 /* FIXME: this should be allocated dynamically */
68 #define MSVCRT_MAX_FILES 2048
73 DWORD unkn
[7]; /* critical section and init flag */
76 static ioinfo MSVCRT_fdesc
[MSVCRT_MAX_FILES
];
78 MSVCRT_FILE MSVCRT__iob
[3];
80 static int MSVCRT_fdstart
= 3; /* first unallocated fd */
81 static int MSVCRT_fdend
= 3; /* highest allocated fd */
83 static MSVCRT_FILE
* MSVCRT_fstreams
[2048];
84 static int MSVCRT_stream_idx
;
86 /* INTERNAL: process umask */
87 static int MSVCRT_umask
= 0;
89 /* INTERNAL: Static buffer for temp file name */
90 static char MSVCRT_tmpname
[MAX_PATH
];
92 static const unsigned int EXE
= 'e' << 16 | 'x' << 8 | 'e';
93 static const unsigned int BAT
= 'b' << 16 | 'a' << 8 | 't';
94 static const unsigned int CMD
= 'c' << 16 | 'm' << 8 | 'd';
95 static const unsigned int COM
= 'c' << 16 | 'o' << 8 | 'm';
97 #define TOUL(x) (ULONGLONG)(x)
98 static const ULONGLONG WCEXE
= TOUL('e') << 32 | TOUL('x') << 16 | TOUL('e');
99 static const ULONGLONG WCBAT
= TOUL('b') << 32 | TOUL('a') << 16 | TOUL('t');
100 static const ULONGLONG WCCMD
= TOUL('c') << 32 | TOUL('m') << 16 | TOUL('d');
101 static const ULONGLONG WCCOM
= TOUL('c') << 32 | TOUL('o') << 16 | TOUL('m');
103 /* This critical section protects the tables MSVCRT_fdesc and MSVCRT_fstreams,
104 * and their related indexes, MSVCRT_fdstart, MSVCRT_fdend,
105 * and MSVCRT_stream_idx, from race conditions.
106 * It doesn't protect against race conditions manipulating the underlying files
107 * or flags; doing so would probably be better accomplished with per-file
108 * protection, rather than locking the whole table for every change.
110 static CRITICAL_SECTION MSVCRT_file_cs
;
111 #define LOCK_FILES() do { EnterCriticalSection(&MSVCRT_file_cs); } while (0)
112 #define UNLOCK_FILES() do { LeaveCriticalSection(&MSVCRT_file_cs); } while (0)
114 static void msvcrt_cp_from_stati64(const struct MSVCRT__stati64
*bufi64
, struct MSVCRT__stat
*buf
)
116 buf
->st_dev
= bufi64
->st_dev
;
117 buf
->st_ino
= bufi64
->st_ino
;
118 buf
->st_mode
= bufi64
->st_mode
;
119 buf
->st_nlink
= bufi64
->st_nlink
;
120 buf
->st_uid
= bufi64
->st_uid
;
121 buf
->st_gid
= bufi64
->st_gid
;
122 buf
->st_rdev
= bufi64
->st_rdev
;
123 buf
->st_size
= bufi64
->st_size
;
124 buf
->st_atime
= bufi64
->st_atime
;
125 buf
->st_mtime
= bufi64
->st_mtime
;
126 buf
->st_ctime
= bufi64
->st_ctime
;
129 static inline BOOL
msvcrt_is_valid_fd(int fd
)
131 return fd
>= 0 && fd
< MSVCRT_fdend
&& (MSVCRT_fdesc
[fd
].wxflag
& WX_OPEN
);
134 /* INTERNAL: Get the HANDLE for a fd
135 * This doesn't lock the table, because a failure will result in
136 * INVALID_HANDLE_VALUE being returned, which should be handled correctly. If
137 * it returns a valid handle which is about to be closed, a subsequent call
138 * will fail, most likely in a sane way.
140 static HANDLE
msvcrt_fdtoh(int fd
)
142 if (!msvcrt_is_valid_fd(fd
))
144 WARN(":fd (%d) - no handle!\n",fd
);
145 *MSVCRT___doserrno() = 0;
146 *MSVCRT__errno() = MSVCRT_EBADF
;
147 return INVALID_HANDLE_VALUE
;
149 if (MSVCRT_fdesc
[fd
].handle
== INVALID_HANDLE_VALUE
) FIXME("wtf\n");
150 return MSVCRT_fdesc
[fd
].handle
;
153 /* INTERNAL: free a file entry fd */
154 static void msvcrt_free_fd(int fd
)
157 MSVCRT_fdesc
[fd
].handle
= INVALID_HANDLE_VALUE
;
158 MSVCRT_fdesc
[fd
].wxflag
= 0;
159 TRACE(":fd (%d) freed\n",fd
);
160 if (fd
< 3) /* don't use 0,1,2 for user files */
164 case 0: SetStdHandle(STD_INPUT_HANDLE
, NULL
); break;
165 case 1: SetStdHandle(STD_OUTPUT_HANDLE
, NULL
); break;
166 case 2: SetStdHandle(STD_ERROR_HANDLE
, NULL
); break;
171 if (fd
== MSVCRT_fdend
- 1)
173 if (fd
< MSVCRT_fdstart
)
179 /* INTERNAL: Allocate an fd slot from a Win32 HANDLE, starting from fd */
180 /* caller must hold the files lock */
181 static int msvcrt_alloc_fd_from(HANDLE hand
, int flag
, int fd
)
183 if (fd
>= MSVCRT_MAX_FILES
)
185 WARN(":files exhausted!\n");
188 MSVCRT_fdesc
[fd
].handle
= hand
;
189 MSVCRT_fdesc
[fd
].wxflag
= WX_OPEN
| (flag
& (WX_DONTINHERIT
| WX_APPEND
| WX_TEXT
));
191 /* locate next free slot */
192 if (fd
== MSVCRT_fdstart
&& fd
== MSVCRT_fdend
)
193 MSVCRT_fdstart
= MSVCRT_fdend
+ 1;
195 while (MSVCRT_fdstart
< MSVCRT_fdend
&&
196 MSVCRT_fdesc
[MSVCRT_fdstart
].handle
!= INVALID_HANDLE_VALUE
)
198 /* update last fd in use */
199 if (fd
>= MSVCRT_fdend
)
200 MSVCRT_fdend
= fd
+ 1;
201 TRACE("fdstart is %d, fdend is %d\n", MSVCRT_fdstart
, MSVCRT_fdend
);
205 case 0: SetStdHandle(STD_INPUT_HANDLE
, hand
); break;
206 case 1: SetStdHandle(STD_OUTPUT_HANDLE
, hand
); break;
207 case 2: SetStdHandle(STD_ERROR_HANDLE
, hand
); break;
213 /* INTERNAL: Allocate an fd slot from a Win32 HANDLE */
214 static int msvcrt_alloc_fd(HANDLE hand
, int flag
)
219 TRACE(":handle (%p) allocating fd (%d)\n",hand
,MSVCRT_fdstart
);
220 ret
= msvcrt_alloc_fd_from(hand
, flag
, MSVCRT_fdstart
);
225 /* INTERNAL: Allocate a FILE* for an fd slot */
226 /* caller must hold the files lock */
227 static MSVCRT_FILE
* msvcrt_alloc_fp(void)
231 for (i
= 3; i
< sizeof(MSVCRT_fstreams
) / sizeof(MSVCRT_fstreams
[0]); i
++)
233 if (!MSVCRT_fstreams
[i
] || MSVCRT_fstreams
[i
]->_flag
== 0)
235 if (!MSVCRT_fstreams
[i
])
237 if (!(MSVCRT_fstreams
[i
] = MSVCRT_calloc(sizeof(MSVCRT_FILE
),1)))
239 if (i
== MSVCRT_stream_idx
) MSVCRT_stream_idx
++;
241 return MSVCRT_fstreams
[i
];
247 /* INTERNAL: initialize a FILE* from an open fd */
248 static int msvcrt_init_fp(MSVCRT_FILE
* file
, int fd
, unsigned stream_flags
)
250 TRACE(":fd (%d) allocating FILE*\n",fd
);
251 if (!msvcrt_is_valid_fd(fd
))
253 WARN(":invalid fd %d\n",fd
);
254 *MSVCRT___doserrno() = 0;
255 *MSVCRT__errno() = MSVCRT_EBADF
;
258 memset(file
, 0, sizeof(*file
));
260 file
->_flag
= stream_flags
;
262 TRACE(":got FILE* (%p)\n",file
);
266 /* INTERNAL: Create an inheritance data block (for spawned process)
267 * The inheritance block is made of:
268 * 00 int nb of file descriptor (NBFD)
269 * 04 char file flags (wxflag): repeated for each fd
270 * 4+NBFD HANDLE file handle: repeated for each fd
272 unsigned msvcrt_create_io_inherit_block(STARTUPINFOA
* si
)
278 si
->cbReserved2
= sizeof(unsigned) + (sizeof(char) + sizeof(HANDLE
)) * MSVCRT_fdend
;
279 si
->lpReserved2
= MSVCRT_calloc(si
->cbReserved2
, 1);
280 if (!si
->lpReserved2
)
285 wxflag_ptr
= (char*)si
->lpReserved2
+ sizeof(unsigned);
286 handle_ptr
= (HANDLE
*)(wxflag_ptr
+ MSVCRT_fdend
* sizeof(char));
288 *(unsigned*)si
->lpReserved2
= MSVCRT_fdend
;
289 for (fd
= 0; fd
< MSVCRT_fdend
; fd
++)
291 /* to be inherited, we need it to be open, and that DONTINHERIT isn't set */
292 if ((MSVCRT_fdesc
[fd
].wxflag
& (WX_OPEN
| WX_DONTINHERIT
)) == WX_OPEN
)
294 *wxflag_ptr
= MSVCRT_fdesc
[fd
].wxflag
;
295 *handle_ptr
= MSVCRT_fdesc
[fd
].handle
;
300 *handle_ptr
= INVALID_HANDLE_VALUE
;
302 wxflag_ptr
++; handle_ptr
++;
307 /* INTERNAL: Set up all file descriptors,
308 * as well as default streams (stdin, stderr and stdout)
310 void msvcrt_init_io(void)
315 InitializeCriticalSection(&MSVCRT_file_cs
);
316 GetStartupInfoA(&si
);
317 if (si
.cbReserved2
!= 0 && si
.lpReserved2
!= NULL
)
322 MSVCRT_fdend
= *(unsigned*)si
.lpReserved2
;
324 wxflag_ptr
= (char*)(si
.lpReserved2
+ sizeof(unsigned));
325 handle_ptr
= (HANDLE
*)(wxflag_ptr
+ MSVCRT_fdend
* sizeof(char));
327 MSVCRT_fdend
= min(MSVCRT_fdend
, sizeof(MSVCRT_fdesc
) / sizeof(MSVCRT_fdesc
[0]));
328 for (i
= 0; i
< MSVCRT_fdend
; i
++)
330 if ((*wxflag_ptr
& WX_OPEN
) && *handle_ptr
!= INVALID_HANDLE_VALUE
)
332 MSVCRT_fdesc
[i
].wxflag
= *wxflag_ptr
;
333 MSVCRT_fdesc
[i
].handle
= *handle_ptr
;
337 MSVCRT_fdesc
[i
].wxflag
= 0;
338 MSVCRT_fdesc
[i
].handle
= INVALID_HANDLE_VALUE
;
340 wxflag_ptr
++; handle_ptr
++;
342 for (MSVCRT_fdstart
= 3; MSVCRT_fdstart
< MSVCRT_fdend
; MSVCRT_fdstart
++)
343 if (MSVCRT_fdesc
[MSVCRT_fdstart
].handle
== INVALID_HANDLE_VALUE
) break;
346 if (!(MSVCRT_fdesc
[0].wxflag
& WX_OPEN
) || MSVCRT_fdesc
[0].handle
== INVALID_HANDLE_VALUE
)
348 DuplicateHandle(GetCurrentProcess(), GetStdHandle(STD_INPUT_HANDLE
),
349 GetCurrentProcess(), &MSVCRT_fdesc
[0].handle
, 0, FALSE
,
350 DUPLICATE_SAME_ACCESS
);
351 MSVCRT_fdesc
[0].wxflag
= WX_OPEN
| WX_TEXT
;
353 if (!(MSVCRT_fdesc
[1].wxflag
& WX_OPEN
) || MSVCRT_fdesc
[1].handle
== INVALID_HANDLE_VALUE
)
355 DuplicateHandle(GetCurrentProcess(), GetStdHandle(STD_OUTPUT_HANDLE
),
356 GetCurrentProcess(), &MSVCRT_fdesc
[1].handle
, 0, FALSE
,
357 DUPLICATE_SAME_ACCESS
);
358 MSVCRT_fdesc
[1].wxflag
= WX_OPEN
| WX_TEXT
;
360 if (!(MSVCRT_fdesc
[2].wxflag
& WX_OPEN
) || MSVCRT_fdesc
[2].handle
== INVALID_HANDLE_VALUE
)
362 DuplicateHandle(GetCurrentProcess(), GetStdHandle(STD_ERROR_HANDLE
),
363 GetCurrentProcess(), &MSVCRT_fdesc
[2].handle
, 0, FALSE
,
364 DUPLICATE_SAME_ACCESS
);
365 MSVCRT_fdesc
[2].wxflag
= WX_OPEN
| WX_TEXT
;
368 TRACE(":handles (%p)(%p)(%p)\n",MSVCRT_fdesc
[0].handle
,
369 MSVCRT_fdesc
[1].handle
,MSVCRT_fdesc
[2].handle
);
371 memset(MSVCRT__iob
,0,3*sizeof(MSVCRT_FILE
));
372 for (i
= 0; i
< 3; i
++)
374 /* FILE structs for stdin/out/err are static and never deleted */
375 MSVCRT_fstreams
[i
] = &MSVCRT__iob
[i
];
376 MSVCRT__iob
[i
]._file
= i
;
377 MSVCRT__iob
[i
]._tmpfname
= NULL
;
378 MSVCRT__iob
[i
]._flag
= (i
== 0) ? MSVCRT__IOREAD
: MSVCRT__IOWRT
;
380 MSVCRT_stream_idx
= 3;
383 /* INTERNAL: Flush stdio file buffer */
384 static int msvcrt_flush_buffer(MSVCRT_FILE
* file
)
387 int cnt
=file
->_ptr
-file
->_base
;
388 if(cnt
>0 && _write(file
->_file
, file
->_base
, cnt
) != cnt
) {
389 file
->_flag
|= MSVCRT__IOERR
;
392 file
->_ptr
=file
->_base
;
393 file
->_cnt
=file
->_bufsiz
;
398 /* INTERNAL: Allocate stdio file buffer */
399 static void msvcrt_alloc_buffer(MSVCRT_FILE
* file
)
401 file
->_base
= MSVCRT_calloc(MSVCRT_BUFSIZ
,1);
403 file
->_bufsiz
= MSVCRT_BUFSIZ
;
404 file
->_flag
|= MSVCRT__IOMYBUF
;
406 file
->_base
= (char*)(&file
->_charbuf
);
408 file
->_bufsiz
= sizeof(file
->_charbuf
);
410 file
->_ptr
= file
->_base
;
414 /* INTERNAL: Convert integer to base32 string (0-9a-v), 0 becomes "" */
415 static void msvcrt_int_to_base32(int num
, char *str
)
430 *p
= (num
& 31) + '0';
432 *p
+= ('a' - '0' - 10);
437 /*********************************************************************
440 MSVCRT_FILE
*__p__iob(void)
442 return &MSVCRT__iob
[0];
445 /*********************************************************************
448 int _access(const char *filename
, int mode
)
450 DWORD attr
= GetFileAttributesA(filename
);
452 TRACE("(%s,%d) %ld\n",filename
,mode
,attr
);
454 if (!filename
|| attr
== INVALID_FILE_ATTRIBUTES
)
456 msvcrt_set_errno(GetLastError());
459 if ((attr
& FILE_ATTRIBUTE_READONLY
) && (mode
& MSVCRT_W_OK
))
461 msvcrt_set_errno(ERROR_ACCESS_DENIED
);
467 /*********************************************************************
468 * _waccess (MSVCRT.@)
470 int _waccess(const MSVCRT_wchar_t
*filename
, int mode
)
472 DWORD attr
= GetFileAttributesW(filename
);
474 TRACE("(%s,%d) %ld\n",debugstr_w(filename
),mode
,attr
);
476 if (!filename
|| attr
== INVALID_FILE_ATTRIBUTES
)
478 msvcrt_set_errno(GetLastError());
481 if ((attr
& FILE_ATTRIBUTE_READONLY
) && (mode
& MSVCRT_W_OK
))
483 msvcrt_set_errno(ERROR_ACCESS_DENIED
);
489 /*********************************************************************
492 int _chmod(const char *path
, int flags
)
494 DWORD oldFlags
= GetFileAttributesA(path
);
496 if (oldFlags
!= INVALID_FILE_ATTRIBUTES
)
498 DWORD newFlags
= (flags
& MSVCRT__S_IWRITE
)? oldFlags
& ~FILE_ATTRIBUTE_READONLY
:
499 oldFlags
| FILE_ATTRIBUTE_READONLY
;
501 if (newFlags
== oldFlags
|| SetFileAttributesA(path
, newFlags
))
504 msvcrt_set_errno(GetLastError());
508 /*********************************************************************
511 int _wchmod(const MSVCRT_wchar_t
*path
, int flags
)
513 DWORD oldFlags
= GetFileAttributesW(path
);
515 if (oldFlags
!= INVALID_FILE_ATTRIBUTES
)
517 DWORD newFlags
= (flags
& MSVCRT__S_IWRITE
)? oldFlags
& ~FILE_ATTRIBUTE_READONLY
:
518 oldFlags
| FILE_ATTRIBUTE_READONLY
;
520 if (newFlags
== oldFlags
|| SetFileAttributesW(path
, newFlags
))
523 msvcrt_set_errno(GetLastError());
527 /*********************************************************************
530 int _unlink(const char *path
)
532 TRACE("(%s)\n",path
);
533 if(DeleteFileA(path
))
535 TRACE("failed (%ld)\n",GetLastError());
536 msvcrt_set_errno(GetLastError());
540 /*********************************************************************
541 * _wunlink (MSVCRT.@)
543 int _wunlink(const MSVCRT_wchar_t
*path
)
545 TRACE("(%s)\n",debugstr_w(path
));
546 if(DeleteFileW(path
))
548 TRACE("failed (%ld)\n",GetLastError());
549 msvcrt_set_errno(GetLastError());
553 /* _flushall calls MSVCRT_fflush which calls _flushall */
554 int MSVCRT_fflush(MSVCRT_FILE
* file
);
556 /*********************************************************************
557 * _flushall (MSVCRT.@)
561 int i
, num_flushed
= 0;
564 for (i
= 3; i
< MSVCRT_stream_idx
; i
++)
565 if (MSVCRT_fstreams
[i
] && MSVCRT_fstreams
[i
]->_flag
)
568 /* FIXME: flush, do not commit */
569 if (_commit(i
) == -1)
570 if (MSVCRT_fstreams
[i
])
571 MSVCRT_fstreams
[i
]->_flag
|= MSVCRT__IOERR
;
573 if(MSVCRT_fstreams
[i
]->_flag
& MSVCRT__IOWRT
) {
574 MSVCRT_fflush(MSVCRT_fstreams
[i
]);
580 TRACE(":flushed (%d) handles\n",num_flushed
);
584 /*********************************************************************
587 int MSVCRT_fflush(MSVCRT_FILE
* file
)
593 int res
=msvcrt_flush_buffer(file
);
598 /*********************************************************************
607 hand
= msvcrt_fdtoh(fd
);
608 TRACE(":fd (%d) handle (%p)\n",fd
,hand
);
609 if (hand
== INVALID_HANDLE_VALUE
)
611 else if (!CloseHandle(hand
))
613 WARN(":failed-last error (%ld)\n",GetLastError());
614 msvcrt_set_errno(GetLastError());
627 /*********************************************************************
632 HANDLE hand
= msvcrt_fdtoh(fd
);
634 TRACE(":fd (%d) handle (%p)\n",fd
,hand
);
635 if (hand
== INVALID_HANDLE_VALUE
)
638 if (!FlushFileBuffers(hand
))
640 if (GetLastError() == ERROR_INVALID_HANDLE
)
642 /* FlushFileBuffers fails for console handles
643 * so we ignore this error.
647 TRACE(":failed-last error (%ld)\n",GetLastError());
648 msvcrt_set_errno(GetLastError());
655 /*********************************************************************
658 * MSDN isn't clear on this point, but the remarks for _pipe,
659 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_crt__pipe.asp
660 * indicate file descriptors duplicated with _dup and _dup2 are always
663 int _dup2(int od
, int nd
)
667 TRACE("(od=%d, nd=%d)\n", od
, nd
);
669 if (nd
< MSVCRT_MAX_FILES
&& msvcrt_is_valid_fd(od
))
673 if (DuplicateHandle(GetCurrentProcess(), MSVCRT_fdesc
[od
].handle
,
674 GetCurrentProcess(), &handle
, 0, TRUE
, DUPLICATE_SAME_ACCESS
))
676 int wxflag
= MSVCRT_fdesc
[od
].wxflag
& ~MSVCRT__O_NOINHERIT
;
678 if (msvcrt_is_valid_fd(nd
))
680 ret
= msvcrt_alloc_fd_from(handle
, wxflag
, nd
);
684 *MSVCRT__errno() = MSVCRT_EMFILE
;
688 /* _dup2 returns 0, not nd, on success */
695 msvcrt_set_errno(GetLastError());
700 *MSVCRT__errno() = MSVCRT_EBADF
;
707 /*********************************************************************
716 if (_dup2(od
, fd
) == 0)
724 /*********************************************************************
730 LONG hcurpos
,hendpos
;
731 HANDLE hand
= msvcrt_fdtoh(fd
);
733 TRACE(":fd (%d) handle (%p)\n",fd
,hand
);
735 if (hand
== INVALID_HANDLE_VALUE
)
738 if (MSVCRT_fdesc
[fd
].wxflag
& WX_ATEOF
) return TRUE
;
740 /* Otherwise we do it the hard way */
741 hcurpos
= hendpos
= 0;
742 curpos
= SetFilePointer(hand
, 0, &hcurpos
, FILE_CURRENT
);
743 endpos
= SetFilePointer(hand
, 0, &hendpos
, FILE_END
);
745 if (curpos
== endpos
&& hcurpos
== hendpos
)
747 /* FIXME: shouldn't WX_ATEOF be set here? */
751 SetFilePointer(hand
, curpos
, &hcurpos
, FILE_BEGIN
);
755 /*********************************************************************
756 * _fcloseall (MSVCRT.@)
758 int MSVCRT__fcloseall(void)
760 int num_closed
= 0, i
;
763 for (i
= 3; i
< MSVCRT_stream_idx
; i
++)
764 if (MSVCRT_fstreams
[i
] && MSVCRT_fstreams
[i
]->_flag
&&
765 MSVCRT_fclose(MSVCRT_fstreams
[i
]))
769 TRACE(":closed (%d) handles\n",num_closed
);
773 /* free everything on process exit */
774 void msvcrt_free_io(void)
777 /* The Win32 _fcloseall() function explicitly doesn't close stdin,
778 * stdout, and stderr (unlike GNU), so we need to fclose() them here
779 * or they won't get flushed.
781 MSVCRT_fclose(&MSVCRT__iob
[0]);
782 MSVCRT_fclose(&MSVCRT__iob
[1]);
783 MSVCRT_fclose(&MSVCRT__iob
[2]);
784 DeleteCriticalSection(&MSVCRT_file_cs
);
787 /*********************************************************************
788 * _lseeki64 (MSVCRT.@)
790 __int64
_lseeki64(int fd
, __int64 offset
, int whence
)
792 HANDLE hand
= msvcrt_fdtoh(fd
);
793 LARGE_INTEGER ofs
, ret
;
795 TRACE(":fd (%d) handle (%p)\n",fd
,hand
);
796 if (hand
== INVALID_HANDLE_VALUE
)
799 if (whence
< 0 || whence
> 2)
801 *MSVCRT__errno() = MSVCRT_EINVAL
;
805 TRACE(":fd (%d) to %s pos %s\n",
806 fd
,wine_dbgstr_longlong(ofs
.QuadPart
),
807 (whence
==SEEK_SET
)?"SEEK_SET":
808 (whence
==SEEK_CUR
)?"SEEK_CUR":
809 (whence
==SEEK_END
)?"SEEK_END":"UNKNOWN");
811 ofs
.QuadPart
= offset
;
812 if (SetFilePointerEx(hand
, ofs
, &ret
, whence
))
814 MSVCRT_fdesc
[fd
].wxflag
&= ~WX_ATEOF
;
815 /* FIXME: What if we seek _to_ EOF - is EOF set? */
819 TRACE(":error-last error (%ld)\n",GetLastError());
820 msvcrt_set_errno(GetLastError());
824 /*********************************************************************
827 LONG
_lseek(int fd
, LONG offset
, int whence
)
829 return _lseeki64(fd
, offset
, whence
);
832 /*********************************************************************
833 * _locking (MSVCRT.@)
835 * This is untested; the underlying LockFile doesn't work yet.
837 int _locking(int fd
, int mode
, LONG nbytes
)
841 HANDLE hand
= msvcrt_fdtoh(fd
);
843 TRACE(":fd (%d) handle (%p)\n",fd
,hand
);
844 if (hand
== INVALID_HANDLE_VALUE
)
847 if (mode
< 0 || mode
> 4)
849 *MSVCRT__errno() = MSVCRT_EINVAL
;
853 TRACE(":fd (%d) by 0x%08lx mode %s\n",
854 fd
,nbytes
,(mode
==MSVCRT__LK_UNLCK
)?"_LK_UNLCK":
855 (mode
==MSVCRT__LK_LOCK
)?"_LK_LOCK":
856 (mode
==MSVCRT__LK_NBLCK
)?"_LK_NBLCK":
857 (mode
==MSVCRT__LK_RLCK
)?"_LK_RLCK":
858 (mode
==MSVCRT__LK_NBRLCK
)?"_LK_NBRLCK":
861 if ((cur_locn
= SetFilePointer(hand
, 0L, NULL
, SEEK_CUR
)) == INVALID_SET_FILE_POINTER
)
863 FIXME ("Seek failed\n");
864 *MSVCRT__errno() = MSVCRT_EINVAL
; /* FIXME */
867 if (mode
== MSVCRT__LK_LOCK
|| mode
== MSVCRT__LK_RLCK
)
870 ret
= 1; /* just to satisfy gcc */
873 ret
= LockFile(hand
, cur_locn
, 0L, nbytes
, 0L);
878 else if (mode
== MSVCRT__LK_UNLCK
)
879 ret
= UnlockFile(hand
, cur_locn
, 0L, nbytes
, 0L);
881 ret
= LockFile(hand
, cur_locn
, 0L, nbytes
, 0L);
882 /* FIXME - what about error settings? */
886 /*********************************************************************
889 int MSVCRT_fseek(MSVCRT_FILE
* file
, long offset
, int whence
)
891 /* Flush output if needed */
892 if(file
->_flag
& MSVCRT__IOWRT
)
893 msvcrt_flush_buffer(file
);
895 if(whence
== SEEK_CUR
&& file
->_flag
& MSVCRT__IOREAD
) {
896 offset
-= file
->_cnt
;
898 /* Discard buffered input */
900 file
->_ptr
= file
->_base
;
901 /* Reset direction of i/o */
902 if(file
->_flag
& MSVCRT__IORW
) {
903 file
->_flag
&= ~(MSVCRT__IOREAD
|MSVCRT__IOWRT
);
905 return (_lseek(file
->_file
,offset
,whence
) == -1)?-1:0;
908 /*********************************************************************
911 int _chsize(int fd
, long size
)
917 TRACE("(fd=%d, size=%ld)\n", fd
, size
);
921 handle
= msvcrt_fdtoh(fd
);
922 if (handle
!= INVALID_HANDLE_VALUE
)
924 /* save the current file pointer */
925 cur
= _lseek(fd
, 0, SEEK_CUR
);
928 pos
= _lseek(fd
, size
, SEEK_SET
);
931 ret
= SetEndOfFile(handle
);
932 if (!ret
) msvcrt_set_errno(GetLastError());
935 /* restore the file pointer */
936 _lseek(fd
, cur
, SEEK_SET
);
944 /*********************************************************************
945 * clearerr (MSVCRT.@)
947 void MSVCRT_clearerr(MSVCRT_FILE
* file
)
949 TRACE(":file (%p) fd (%d)\n",file
,file
->_file
);
950 file
->_flag
&= ~(MSVCRT__IOERR
| MSVCRT__IOEOF
);
953 /*********************************************************************
956 void MSVCRT_rewind(MSVCRT_FILE
* file
)
958 TRACE(":file (%p) fd (%d)\n",file
,file
->_file
);
959 MSVCRT_fseek(file
, 0L, SEEK_SET
);
960 MSVCRT_clearerr(file
);
963 static int msvcrt_get_flags(const char* mode
, int *open_flags
, int* stream_flags
)
965 int plus
= strchr(mode
, '+') != NULL
;
970 *open_flags
= plus
? MSVCRT__O_RDWR
: MSVCRT__O_RDONLY
;
971 *stream_flags
= plus
? MSVCRT__IORW
: MSVCRT__IOREAD
;
974 *open_flags
= MSVCRT__O_CREAT
| MSVCRT__O_TRUNC
| (plus
? MSVCRT__O_RDWR
: MSVCRT__O_WRONLY
);
975 *stream_flags
= plus
? MSVCRT__IORW
: MSVCRT__IOWRT
;
978 *open_flags
= MSVCRT__O_CREAT
| MSVCRT__O_APPEND
| (plus
? MSVCRT__O_RDWR
: MSVCRT__O_WRONLY
);
979 *stream_flags
= plus
? MSVCRT__IORW
: MSVCRT__IOWRT
;
989 *open_flags
|= MSVCRT__O_BINARY
;
990 *open_flags
&= ~MSVCRT__O_TEXT
;
993 *open_flags
|= MSVCRT__O_TEXT
;
994 *open_flags
&= ~MSVCRT__O_BINARY
;
999 FIXME(":unknown flag %c not supported\n",mode
[-1]);
1004 /*********************************************************************
1005 * _fdopen (MSVCRT.@)
1007 MSVCRT_FILE
* MSVCRT__fdopen(int fd
, const char *mode
)
1009 int open_flags
, stream_flags
;
1012 if (msvcrt_get_flags(mode
, &open_flags
, &stream_flags
) == -1) return NULL
;
1015 if (!(file
= msvcrt_alloc_fp()))
1017 else if (msvcrt_init_fp(file
, fd
, stream_flags
) == -1)
1022 else TRACE(":fd (%d) mode (%s) FILE* (%p)\n",fd
,mode
,file
);
1028 /*********************************************************************
1029 * _wfdopen (MSVCRT.@)
1031 MSVCRT_FILE
* MSVCRT__wfdopen(int fd
, const MSVCRT_wchar_t
*mode
)
1033 unsigned mlen
= strlenW(mode
);
1034 char *modea
= MSVCRT_calloc(mlen
+ 1, 1);
1035 MSVCRT_FILE
* file
= NULL
;
1036 int open_flags
, stream_flags
;
1039 WideCharToMultiByte(CP_ACP
,0,mode
,mlen
,modea
,mlen
,NULL
,NULL
))
1041 if (msvcrt_get_flags(modea
, &open_flags
, &stream_flags
) == -1) return NULL
;
1043 if (!(file
= msvcrt_alloc_fp()))
1045 else if (msvcrt_init_fp(file
, fd
, stream_flags
) == -1)
1053 MSVCRT_rewind(file
); /* FIXME: is this needed ??? */
1054 TRACE(":fd (%d) mode (%s) FILE* (%p)\n",fd
,debugstr_w(mode
),file
);
1061 /*********************************************************************
1062 * _filelength (MSVCRT.@)
1064 LONG
_filelength(int fd
)
1066 LONG curPos
= _lseek(fd
, 0, SEEK_CUR
);
1069 LONG endPos
= _lseek(fd
, 0, SEEK_END
);
1072 if (endPos
!= curPos
)
1073 _lseek(fd
, curPos
, SEEK_SET
);
1080 /*********************************************************************
1081 * _filelengthi64 (MSVCRT.@)
1083 __int64
_filelengthi64(int fd
)
1085 __int64 curPos
= _lseeki64(fd
, 0, SEEK_CUR
);
1088 __int64 endPos
= _lseeki64(fd
, 0, SEEK_END
);
1091 if (endPos
!= curPos
)
1092 _lseeki64(fd
, curPos
, SEEK_SET
);
1099 /*********************************************************************
1100 * _fileno (MSVCRT.@)
1102 int MSVCRT__fileno(MSVCRT_FILE
* file
)
1104 TRACE(":FILE* (%p) fd (%d)\n",file
,file
->_file
);
1108 /*********************************************************************
1109 * _fstati64 (MSVCRT.@)
1111 int MSVCRT__fstati64(int fd
, struct MSVCRT__stati64
* buf
)
1114 BY_HANDLE_FILE_INFORMATION hfi
;
1115 HANDLE hand
= msvcrt_fdtoh(fd
);
1117 TRACE(":fd (%d) stat (%p)\n",fd
,buf
);
1118 if (hand
== INVALID_HANDLE_VALUE
)
1123 WARN(":failed-NULL buf\n");
1124 msvcrt_set_errno(ERROR_INVALID_PARAMETER
);
1128 memset(&hfi
, 0, sizeof(hfi
));
1129 memset(buf
, 0, sizeof(struct MSVCRT__stati64
));
1130 if (!GetFileInformationByHandle(hand
, &hfi
))
1132 WARN(":failed-last error (%ld)\n",GetLastError());
1133 msvcrt_set_errno(ERROR_INVALID_PARAMETER
);
1136 dw
= GetFileType(hand
);
1137 buf
->st_mode
= S_IREAD
;
1138 if (!(hfi
.dwFileAttributes
& FILE_ATTRIBUTE_READONLY
))
1139 buf
->st_mode
|= S_IWRITE
;
1140 /* interestingly, Windows never seems to set S_IFDIR */
1141 if (dw
== FILE_TYPE_CHAR
)
1142 buf
->st_mode
|= S_IFCHR
;
1143 else if (dw
== FILE_TYPE_PIPE
)
1144 buf
->st_mode
|= S_IFIFO
;
1146 buf
->st_mode
|= S_IFREG
;
1147 TRACE(":dwFileAttributes = 0x%lx, mode set to 0x%x\n",hfi
.dwFileAttributes
,
1149 buf
->st_nlink
= hfi
.nNumberOfLinks
;
1150 buf
->st_size
= ((__int64
)hfi
.nFileSizeHigh
<< 32) + hfi
.nFileSizeLow
;
1151 RtlTimeToSecondsSince1970((LARGE_INTEGER
*)&hfi
.ftLastAccessTime
, &dw
);
1153 RtlTimeToSecondsSince1970((LARGE_INTEGER
*)&hfi
.ftLastWriteTime
, &dw
);
1154 buf
->st_mtime
= buf
->st_ctime
= dw
;
1158 /*********************************************************************
1161 int MSVCRT__fstat(int fd
, struct MSVCRT__stat
* buf
)
1163 struct MSVCRT__stati64 bufi64
;
1165 ret
= MSVCRT__fstati64(fd
, &bufi64
);
1167 msvcrt_cp_from_stati64(&bufi64
, buf
);
1171 /*********************************************************************
1172 * _futime (MSVCRT.@)
1174 int _futime(int fd
, struct MSVCRT__utimbuf
*t
)
1176 HANDLE hand
= msvcrt_fdtoh(fd
);
1181 MSVCRT_time_t currTime
;
1182 MSVCRT_time(&currTime
);
1183 RtlSecondsSince1970ToTime(currTime
, (LARGE_INTEGER
*)&at
);
1184 memcpy(&wt
, &at
, sizeof(wt
));
1188 RtlSecondsSince1970ToTime(t
->actime
, (LARGE_INTEGER
*)&at
);
1189 if (t
->actime
== t
->modtime
)
1190 memcpy(&wt
, &at
, sizeof(wt
));
1192 RtlSecondsSince1970ToTime(t
->modtime
, (LARGE_INTEGER
*)&wt
);
1195 if (!SetFileTime(hand
, NULL
, &at
, &wt
))
1197 msvcrt_set_errno(GetLastError());
1203 /*********************************************************************
1204 * _get_osfhandle (MSVCRT.@)
1206 long _get_osfhandle(int fd
)
1208 HANDLE hand
= msvcrt_fdtoh(fd
);
1209 HANDLE newhand
= hand
;
1210 TRACE(":fd (%d) handle (%p)\n",fd
,hand
);
1212 if (hand
!= INVALID_HANDLE_VALUE
)
1214 /* FIXME: I'm not convinced that I should be copying the
1215 * handle here - it may be leaked if the app doesn't
1216 * close it (and the API docs don't say that it should)
1217 * Not duplicating it means that it can't be inherited
1218 * and so lcc's wedit doesn't cope when it passes it to
1219 * child processes. I've an idea that it should either
1220 * be copied by CreateProcess, or marked as inheritable
1221 * when initialised, or maybe both? JG 21-9-00.
1223 DuplicateHandle(GetCurrentProcess(),hand
,GetCurrentProcess(),
1224 &newhand
,0,TRUE
,DUPLICATE_SAME_ACCESS
);
1226 return (long)newhand
;
1229 /*********************************************************************
1230 * _isatty (MSVCRT.@)
1234 HANDLE hand
= msvcrt_fdtoh(fd
);
1236 TRACE(":fd (%d) handle (%p)\n",fd
,hand
);
1237 if (hand
== INVALID_HANDLE_VALUE
)
1240 return GetFileType(hand
) == FILE_TYPE_CHAR
? 1 : 0;
1243 /*********************************************************************
1244 * _mktemp (MSVCRT.@)
1246 char *_mktemp(char *pattern
)
1249 char *retVal
= pattern
;
1254 numX
= (*pattern
++ == 'X')? numX
+ 1 : 0;
1258 id
= GetCurrentProcessId();
1262 int tempNum
= id
/ 10;
1263 *pattern
-- = id
- (tempNum
* 10) + '0';
1269 if (GetFileAttributesA(retVal
) == INVALID_FILE_ATTRIBUTES
&&
1270 GetLastError() == ERROR_FILE_NOT_FOUND
)
1272 *pattern
= letter
++;
1273 } while(letter
!= '|');
1277 /*********************************************************************
1278 * _wmktemp (MSVCRT.@)
1280 MSVCRT_wchar_t
*_wmktemp(MSVCRT_wchar_t
*pattern
)
1283 MSVCRT_wchar_t
*retVal
= pattern
;
1285 MSVCRT_wchar_t letter
= 'a';
1288 numX
= (*pattern
++ == 'X')? numX
+ 1 : 0;
1292 id
= GetCurrentProcessId();
1296 int tempNum
= id
/ 10;
1297 *pattern
-- = id
- (tempNum
* 10) + '0';
1303 if (GetFileAttributesW(retVal
) == INVALID_FILE_ATTRIBUTES
&&
1304 GetLastError() == ERROR_FILE_NOT_FOUND
)
1306 *pattern
= letter
++;
1307 } while(letter
!= '|');
1311 static unsigned split_oflags(unsigned oflags
)
1314 unsigned unsupp
; /* until we support everything */
1316 if (oflags
& MSVCRT__O_APPEND
) wxflags
|= WX_APPEND
;
1317 if (oflags
& MSVCRT__O_BINARY
) {/* Nothing to do */}
1318 else if (oflags
& MSVCRT__O_TEXT
) wxflags
|= WX_TEXT
;
1319 else if (*__p__fmode() & MSVCRT__O_BINARY
) {/* Nothing to do */}
1320 else wxflags
|= WX_TEXT
; /* default to TEXT*/
1321 if (oflags
& MSVCRT__O_NOINHERIT
) wxflags
|= WX_DONTINHERIT
;
1323 if ((unsupp
= oflags
& ~(
1324 MSVCRT__O_BINARY
|MSVCRT__O_TEXT
|MSVCRT__O_APPEND
|
1325 MSVCRT__O_TRUNC
|MSVCRT__O_EXCL
|MSVCRT__O_CREAT
|
1326 MSVCRT__O_RDWR
|MSVCRT__O_WRONLY
|MSVCRT__O_TEMPORARY
|
1327 MSVCRT__O_NOINHERIT
|
1328 MSVCRT__O_SEQUENTIAL
|MSVCRT__O_RANDOM
|MSVCRT__O_SHORT_LIVED
1330 ERR(":unsupported oflags 0x%04x\n",unsupp
);
1335 /*********************************************************************
1338 int _pipe(int *pfds
, unsigned int psize
, int textmode
)
1341 SECURITY_ATTRIBUTES sa
;
1342 HANDLE readHandle
, writeHandle
;
1346 *MSVCRT__errno() = MSVCRT_EINVAL
;
1350 sa
.nLength
= sizeof(SECURITY_ATTRIBUTES
);
1351 sa
.bInheritHandle
= !(textmode
& MSVCRT__O_NOINHERIT
);
1352 sa
.lpSecurityDescriptor
= NULL
;
1353 if (CreatePipe(&readHandle
, &writeHandle
, &sa
, psize
))
1355 unsigned int wxflags
= split_oflags(textmode
);
1359 fd
= msvcrt_alloc_fd(readHandle
, wxflags
);
1363 fd
= msvcrt_alloc_fd(writeHandle
, wxflags
);
1372 CloseHandle(writeHandle
);
1373 *MSVCRT__errno() = MSVCRT_EMFILE
;
1378 CloseHandle(readHandle
);
1379 CloseHandle(writeHandle
);
1380 *MSVCRT__errno() = MSVCRT_EMFILE
;
1385 msvcrt_set_errno(GetLastError());
1390 /*********************************************************************
1393 int MSVCRT__sopen( const char *path
, int oflags
, int shflags
, ... )
1397 DWORD access
= 0, creation
= 0, attrib
;
1401 SECURITY_ATTRIBUTES sa
;
1404 TRACE(":file (%s) oflags: 0x%04x shflags: 0x%04x\n",
1405 path
, oflags
, shflags
);
1407 wxflag
= split_oflags(oflags
);
1408 switch (oflags
& (MSVCRT__O_RDONLY
| MSVCRT__O_WRONLY
| MSVCRT__O_RDWR
))
1410 case MSVCRT__O_RDONLY
: access
|= GENERIC_READ
; break;
1411 case MSVCRT__O_WRONLY
: access
|= GENERIC_WRITE
; break;
1412 case MSVCRT__O_RDWR
: access
|= GENERIC_WRITE
| GENERIC_READ
; break;
1415 if (oflags
& MSVCRT__O_CREAT
)
1417 va_start(ap
, shflags
);
1418 pmode
= va_arg(ap
, int);
1421 if(pmode
& ~(MSVCRT__S_IREAD
| MSVCRT__S_IWRITE
))
1422 FIXME(": pmode 0x%04x ignored\n", pmode
);
1424 WARN(": pmode 0x%04x ignored\n", pmode
);
1426 if (oflags
& MSVCRT__O_EXCL
)
1427 creation
= CREATE_NEW
;
1428 else if (oflags
& MSVCRT__O_TRUNC
)
1429 creation
= CREATE_ALWAYS
;
1431 creation
= OPEN_ALWAYS
;
1433 else /* no MSVCRT__O_CREAT */
1435 if (oflags
& MSVCRT__O_TRUNC
)
1436 creation
= TRUNCATE_EXISTING
;
1438 creation
= OPEN_EXISTING
;
1443 case MSVCRT__SH_DENYRW
:
1446 case MSVCRT__SH_DENYWR
:
1447 sharing
= FILE_SHARE_READ
;
1449 case MSVCRT__SH_DENYRD
:
1450 sharing
= FILE_SHARE_WRITE
;
1452 case MSVCRT__SH_DENYNO
:
1453 sharing
= FILE_SHARE_READ
| FILE_SHARE_WRITE
;
1456 ERR( "Unhandled shflags 0x%x\n", shflags
);
1459 attrib
= FILE_ATTRIBUTE_NORMAL
;
1461 if (oflags
& MSVCRT__O_TEMPORARY
)
1463 attrib
|= FILE_FLAG_DELETE_ON_CLOSE
;
1465 sharing
|= FILE_SHARE_DELETE
;
1468 sa
.nLength
= sizeof( SECURITY_ATTRIBUTES
);
1469 sa
.lpSecurityDescriptor
= NULL
;
1470 sa
.bInheritHandle
= (oflags
& MSVCRT__O_NOINHERIT
) ? FALSE
: TRUE
;
1472 hand
= CreateFileA(path
, access
, sharing
, &sa
, creation
, attrib
, 0);
1474 if (hand
== INVALID_HANDLE_VALUE
) {
1475 WARN(":failed-last error (%ld)\n",GetLastError());
1476 msvcrt_set_errno(GetLastError());
1480 fd
= msvcrt_alloc_fd(hand
, wxflag
);
1482 TRACE(":fd (%d) handle (%p)\n",fd
, hand
);
1486 /*********************************************************************
1487 * _wsopen (MSVCRT.@)
1489 int MSVCRT__wsopen( const MSVCRT_wchar_t
* path
, int oflags
, int shflags
, ... )
1491 const unsigned int len
= strlenW(path
);
1492 char *patha
= MSVCRT_calloc(len
+ 1,1);
1496 va_start(ap
, shflags
);
1497 pmode
= va_arg(ap
, int);
1500 if (patha
&& WideCharToMultiByte(CP_ACP
,0,path
,len
,patha
,len
,NULL
,NULL
))
1502 int retval
= MSVCRT__sopen(patha
,oflags
,shflags
,pmode
);
1507 msvcrt_set_errno(GetLastError());
1511 /*********************************************************************
1514 int _open( const char *path
, int flags
, ... )
1518 if (flags
& MSVCRT__O_CREAT
)
1521 va_start(ap
, flags
);
1522 pmode
= va_arg(ap
, int);
1524 return MSVCRT__sopen( path
, flags
, MSVCRT__SH_DENYNO
, pmode
);
1527 return MSVCRT__sopen( path
, flags
, MSVCRT__SH_DENYNO
);
1530 /*********************************************************************
1533 int _wopen(const MSVCRT_wchar_t
*path
,int flags
,...)
1535 const unsigned int len
= strlenW(path
);
1536 char *patha
= MSVCRT_calloc(len
+ 1,1);
1540 va_start(ap
, flags
);
1541 pmode
= va_arg(ap
, int);
1544 if (patha
&& WideCharToMultiByte(CP_ACP
,0,path
,len
,patha
,len
,NULL
,NULL
))
1546 int retval
= _open(patha
,flags
,pmode
);
1551 msvcrt_set_errno(GetLastError());
1555 /*********************************************************************
1558 int _creat(const char *path
, int flags
)
1560 int usedFlags
= (flags
& MSVCRT__O_TEXT
)| MSVCRT__O_CREAT
| MSVCRT__O_WRONLY
| MSVCRT__O_TRUNC
;
1561 return _open(path
, usedFlags
);
1564 /*********************************************************************
1565 * _wcreat (MSVCRT.@)
1567 int _wcreat(const MSVCRT_wchar_t
*path
, int flags
)
1569 int usedFlags
= (flags
& MSVCRT__O_TEXT
)| MSVCRT__O_CREAT
| MSVCRT__O_WRONLY
| MSVCRT__O_TRUNC
;
1570 return _wopen(path
, usedFlags
);
1573 /*********************************************************************
1574 * _open_osfhandle (MSVCRT.@)
1576 int _open_osfhandle(long handle
, int oflags
)
1580 /* MSVCRT__O_RDONLY (0) always matches, so set the read flag
1581 * MFC's CStdioFile clears O_RDONLY (0)! if it wants to write to the
1582 * file, so set the write flag. It also only sets MSVCRT__O_TEXT if it wants
1583 * text - it never sets MSVCRT__O_BINARY.
1585 /* FIXME: handle more flags */
1586 if (!(oflags
& (MSVCRT__O_BINARY
| MSVCRT__O_TEXT
)) && (*__p__fmode() & MSVCRT__O_BINARY
))
1587 oflags
|= MSVCRT__O_BINARY
;
1589 oflags
|= MSVCRT__O_TEXT
;
1591 fd
= msvcrt_alloc_fd((HANDLE
)handle
, split_oflags(oflags
));
1592 TRACE(":handle (%ld) fd (%d) flags 0x%08x\n", handle
, fd
, oflags
);
1596 /*********************************************************************
1601 int num_removed
= 0, i
;
1604 for (i
= 3; i
< MSVCRT_stream_idx
; i
++)
1605 if (MSVCRT_fstreams
[i
] && MSVCRT_fstreams
[i
]->_tmpfname
)
1607 MSVCRT_fclose(MSVCRT_fstreams
[i
]);
1613 TRACE(":removed (%d) temp files\n",num_removed
);
1617 /*********************************************************************
1618 * (internal) remove_cr
1620 * Remove all \r inplace.
1621 * return the number of \r removed
1623 static unsigned int remove_cr(char *buf
, unsigned int count
)
1627 for (i
= 0; i
< count
; i
++) if (buf
[i
] == '\r') break;
1628 for (j
= i
+ 1; j
< count
; j
++) if (buf
[j
] != '\r') buf
[i
++] = buf
[j
];
1632 /*********************************************************************
1635 int _read(int fd
, void *buf
, unsigned int count
)
1637 DWORD num_read
, all_read
= 0;
1638 char *bufstart
= buf
;
1639 HANDLE hand
= msvcrt_fdtoh(fd
);
1641 /* Don't trace small reads, it gets *very* annoying */
1643 TRACE(":fd (%d) handle (%p) buf (%p) len (%d)\n",fd
,hand
,buf
,count
);
1644 if (hand
== INVALID_HANDLE_VALUE
)
1647 /* Reading single bytes in O_TEXT mode makes things slow
1648 * So read big chunks, then remove the \r in memory and try reading
1649 * the rest until the request is satisfied or EOF is met
1651 while (all_read
< count
)
1653 if (ReadFile(hand
, bufstart
+all_read
, count
- all_read
, &num_read
, NULL
))
1655 if (num_read
!= (count
- all_read
))
1658 MSVCRT_fdesc
[fd
].wxflag
|= WX_ATEOF
;
1659 if (MSVCRT_fdesc
[fd
].wxflag
& WX_TEXT
)
1660 num_read
-= remove_cr(bufstart
+all_read
,num_read
);
1661 all_read
+= num_read
;
1663 TRACE("%s\n",debugstr_an(buf
,all_read
));
1666 if (MSVCRT_fdesc
[fd
].wxflag
& WX_TEXT
)
1668 num_read
-= remove_cr(bufstart
+all_read
,num_read
);
1670 all_read
+= num_read
;
1674 TRACE(":failed-last error (%ld)\n",GetLastError());
1680 TRACE("(%lu), %s\n",all_read
,debugstr_an(buf
, all_read
));
1684 /*********************************************************************
1687 int MSVCRT__getw(MSVCRT_FILE
* file
)
1690 switch (_read(file
->_file
, &i
, sizeof(int)))
1693 case 0: file
->_flag
|= MSVCRT__IOEOF
; break;
1694 default: file
->_flag
|= MSVCRT__IOERR
; break;
1699 /*********************************************************************
1700 * _setmode (MSVCRT.@)
1702 int _setmode(int fd
,int mode
)
1704 int ret
= MSVCRT_fdesc
[fd
].wxflag
& WX_TEXT
? MSVCRT__O_TEXT
: MSVCRT__O_BINARY
;
1705 if (mode
& (~(MSVCRT__O_TEXT
|MSVCRT__O_BINARY
)))
1706 FIXME("fd (%d) mode (0x%08x) unknown\n",fd
,mode
);
1707 if ((mode
& MSVCRT__O_TEXT
) == MSVCRT__O_TEXT
)
1708 MSVCRT_fdesc
[fd
].wxflag
|= WX_TEXT
;
1710 MSVCRT_fdesc
[fd
].wxflag
&= ~WX_TEXT
;
1714 /*********************************************************************
1715 * _stati64 (MSVCRT.@)
1717 int MSVCRT__stati64(const char* path
, struct MSVCRT__stati64
* buf
)
1720 WIN32_FILE_ATTRIBUTE_DATA hfi
;
1721 unsigned short mode
= ALL_S_IREAD
;
1724 TRACE(":file (%s) buf(%p)\n",path
,buf
);
1726 if (!GetFileAttributesExA(path
, GetFileExInfoStandard
, &hfi
))
1728 TRACE("failed (%ld)\n",GetLastError());
1729 msvcrt_set_errno(ERROR_FILE_NOT_FOUND
);
1733 memset(buf
,0,sizeof(struct MSVCRT__stati64
));
1735 /* FIXME: rdev isn't drive num, despite what the docs say-what is it?
1736 Bon 011120: This FIXME seems incorrect
1737 Also a letter as first char isn't enough to be classified
1740 if (isalpha(*path
)&& (*(path
+1)==':'))
1741 buf
->st_dev
= buf
->st_rdev
= toupper(*path
) - 'A'; /* drive num */
1743 buf
->st_dev
= buf
->st_rdev
= _getdrive() - 1;
1745 plen
= strlen(path
);
1747 /* Dir, or regular file? */
1748 if ((hfi
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
) ||
1749 (path
[plen
-1] == '\\'))
1750 mode
|= (MSVCRT__S_IFDIR
| ALL_S_IEXEC
);
1753 mode
|= MSVCRT__S_IFREG
;
1755 if (plen
> 6 && path
[plen
-4] == '.') /* shortest exe: "\x.exe" */
1757 unsigned int ext
= tolower(path
[plen
-1]) | (tolower(path
[plen
-2]) << 8) |
1758 (tolower(path
[plen
-3]) << 16);
1759 if (ext
== EXE
|| ext
== BAT
|| ext
== CMD
|| ext
== COM
)
1760 mode
|= ALL_S_IEXEC
;
1764 if (!(hfi
.dwFileAttributes
& FILE_ATTRIBUTE_READONLY
))
1765 mode
|= ALL_S_IWRITE
;
1767 buf
->st_mode
= mode
;
1769 buf
->st_size
= ((__int64
)hfi
.nFileSizeHigh
<< 32) + hfi
.nFileSizeLow
;
1770 RtlTimeToSecondsSince1970((LARGE_INTEGER
*)&hfi
.ftLastAccessTime
, &dw
);
1772 RtlTimeToSecondsSince1970((LARGE_INTEGER
*)&hfi
.ftLastWriteTime
, &dw
);
1773 buf
->st_mtime
= buf
->st_ctime
= dw
;
1774 TRACE("%d %d 0x%08lx%08lx %ld %ld %ld\n", buf
->st_mode
,buf
->st_nlink
,
1775 (long)(buf
->st_size
>> 32),(long)buf
->st_size
,
1776 buf
->st_atime
,buf
->st_mtime
, buf
->st_ctime
);
1780 /*********************************************************************
1783 int MSVCRT__stat(const char* path
, struct MSVCRT__stat
* buf
)
1785 struct MSVCRT__stati64 bufi64
;
1787 ret
= MSVCRT__stati64( path
, &bufi64
);
1789 msvcrt_cp_from_stati64(&bufi64
, buf
);
1793 /*********************************************************************
1794 * _wstati64 (MSVCRT.@)
1796 int MSVCRT__wstati64(const MSVCRT_wchar_t
* path
, struct MSVCRT__stati64
* buf
)
1799 WIN32_FILE_ATTRIBUTE_DATA hfi
;
1800 unsigned short mode
= ALL_S_IREAD
;
1803 TRACE(":file (%s) buf(%p)\n",debugstr_w(path
),buf
);
1805 if (!GetFileAttributesExW(path
, GetFileExInfoStandard
, &hfi
))
1807 TRACE("failed (%ld)\n",GetLastError());
1808 msvcrt_set_errno(ERROR_FILE_NOT_FOUND
);
1812 memset(buf
,0,sizeof(struct MSVCRT__stat
));
1814 /* FIXME: rdev isn't drive num, despite what the docs says-what is it? */
1815 if (MSVCRT_iswalpha(*path
))
1816 buf
->st_dev
= buf
->st_rdev
= toupperW(*path
- 'A'); /* drive num */
1818 buf
->st_dev
= buf
->st_rdev
= _getdrive() - 1;
1820 plen
= strlenW(path
);
1822 /* Dir, or regular file? */
1823 if ((hfi
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
) ||
1824 (path
[plen
-1] == '\\'))
1825 mode
|= (MSVCRT__S_IFDIR
| ALL_S_IEXEC
);
1828 mode
|= MSVCRT__S_IFREG
;
1830 if (plen
> 6 && path
[plen
-4] == '.') /* shortest exe: "\x.exe" */
1832 ULONGLONG ext
= tolowerW(path
[plen
-1]) | (tolowerW(path
[plen
-2]) << 16) |
1833 ((ULONGLONG
)tolowerW(path
[plen
-3]) << 32);
1834 if (ext
== WCEXE
|| ext
== WCBAT
|| ext
== WCCMD
|| ext
== WCCOM
)
1835 mode
|= ALL_S_IEXEC
;
1839 if (!(hfi
.dwFileAttributes
& FILE_ATTRIBUTE_READONLY
))
1840 mode
|= ALL_S_IWRITE
;
1842 buf
->st_mode
= mode
;
1844 buf
->st_size
= ((__int64
)hfi
.nFileSizeHigh
<< 32) + hfi
.nFileSizeLow
;
1845 RtlTimeToSecondsSince1970((LARGE_INTEGER
*)&hfi
.ftLastAccessTime
, &dw
);
1847 RtlTimeToSecondsSince1970((LARGE_INTEGER
*)&hfi
.ftLastWriteTime
, &dw
);
1848 buf
->st_mtime
= buf
->st_ctime
= dw
;
1849 TRACE("%d %d 0x%08lx%08lx %ld %ld %ld\n", buf
->st_mode
,buf
->st_nlink
,
1850 (long)(buf
->st_size
>> 32),(long)buf
->st_size
,
1851 buf
->st_atime
,buf
->st_mtime
, buf
->st_ctime
);
1855 /*********************************************************************
1858 int MSVCRT__wstat(const MSVCRT_wchar_t
* path
, struct MSVCRT__stat
* buf
)
1861 struct MSVCRT__stati64 bufi64
;
1863 ret
= MSVCRT__wstati64( path
, &bufi64
);
1864 if (!ret
) msvcrt_cp_from_stati64(&bufi64
, buf
);
1868 /*********************************************************************
1873 return _lseek(fd
, 0, SEEK_CUR
);
1876 /*********************************************************************
1877 * _telli64 (MSVCRT.@)
1879 __int64
_telli64(int fd
)
1881 return _lseeki64(fd
, 0, SEEK_CUR
);
1884 /*********************************************************************
1885 * _tempnam (MSVCRT.@)
1887 char *_tempnam(const char *dir
, const char *prefix
)
1889 char tmpbuf
[MAX_PATH
];
1891 TRACE("dir (%s) prefix (%s)\n",dir
,prefix
);
1892 if (GetTempFileNameA(dir
,prefix
,0,tmpbuf
))
1894 TRACE("got name (%s)\n",tmpbuf
);
1895 DeleteFileA(tmpbuf
);
1896 return _strdup(tmpbuf
);
1898 TRACE("failed (%ld)\n",GetLastError());
1902 /*********************************************************************
1903 * _wtempnam (MSVCRT.@)
1905 MSVCRT_wchar_t
*_wtempnam(const MSVCRT_wchar_t
*dir
, const MSVCRT_wchar_t
*prefix
)
1907 MSVCRT_wchar_t tmpbuf
[MAX_PATH
];
1909 TRACE("dir (%s) prefix (%s)\n",debugstr_w(dir
),debugstr_w(prefix
));
1910 if (GetTempFileNameW(dir
,prefix
,0,tmpbuf
))
1912 TRACE("got name (%s)\n",debugstr_w(tmpbuf
));
1913 DeleteFileW(tmpbuf
);
1914 return _wcsdup(tmpbuf
);
1916 TRACE("failed (%ld)\n",GetLastError());
1920 /*********************************************************************
1923 int _umask(int umask
)
1925 int old_umask
= MSVCRT_umask
;
1926 TRACE("(%d)\n",umask
);
1927 MSVCRT_umask
= umask
;
1931 /*********************************************************************
1934 int _utime(const char* path
, struct MSVCRT__utimbuf
*t
)
1936 int fd
= _open(path
, MSVCRT__O_WRONLY
| MSVCRT__O_BINARY
);
1940 int retVal
= _futime(fd
, t
);
1947 /*********************************************************************
1948 * _wutime (MSVCRT.@)
1950 int _wutime(const MSVCRT_wchar_t
* path
, struct MSVCRT__utimbuf
*t
)
1952 int fd
= _wopen(path
, MSVCRT__O_WRONLY
| MSVCRT__O_BINARY
);
1956 int retVal
= _futime(fd
, t
);
1963 /*********************************************************************
1966 int _write(int fd
, const void* buf
, unsigned int count
)
1969 HANDLE hand
= msvcrt_fdtoh(fd
);
1971 /* Don't trace small writes, it gets *very* annoying */
1974 TRACE(":fd (%d) handle (%d) buf (%p) len (%d)\n",fd
,hand
,buf
,count
);
1976 if (hand
== INVALID_HANDLE_VALUE
)
1978 *MSVCRT__errno() = MSVCRT_EBADF
;
1982 /* If appending, go to EOF */
1983 if (MSVCRT_fdesc
[fd
].wxflag
& WX_APPEND
)
1984 _lseek(fd
, 0, FILE_END
);
1986 if (!(MSVCRT_fdesc
[fd
].wxflag
& WX_TEXT
))
1988 if (WriteFile(hand
, buf
, count
, &num_written
, NULL
)
1989 && (num_written
== count
))
1991 TRACE("WriteFile (fd %d, hand %p) failed-last error (%ld)\n", fd
,
1992 hand
, GetLastError());
1993 *MSVCRT__errno() = MSVCRT_ENOSPC
;
1997 unsigned int i
, j
, nr_lf
;
1998 char *s
=(char*)buf
, *buf_start
=(char*)buf
, *p
;
1999 /* find number of \n ( without preceding \r ) */
2000 for ( nr_lf
=0,i
= 0; i
<count
; i
++)
2005 /*if ((i >1) && (s[i-1] == '\r')) nr_lf--; */
2010 if ((p
= MSVCRT_malloc(count
+ nr_lf
)))
2012 for(s
=(char*)buf
, i
=0, j
=0; i
<count
; i
++)
2017 /*if ((i >1) && (s[i-1] == '\r'))j--;*/
2024 FIXME("Malloc failed\n");
2032 if ((WriteFile(hand
, p
, count
+nr_lf
, &num_written
, NULL
) == 0 ) || (num_written
!= count
+nr_lf
))
2034 TRACE("WriteFile (fd %d, hand %p) failed-last error (%ld), num_written %ld\n",
2035 fd
, hand
, GetLastError(), num_written
);
2036 *MSVCRT__errno() = MSVCRT_ENOSPC
;
2039 return s
- buf_start
;
2051 /*********************************************************************
2054 int MSVCRT__putw(int val
, MSVCRT_FILE
* file
)
2057 len
= _write(file
->_file
, &val
, sizeof(val
));
2058 if (len
== sizeof(val
)) return val
;
2059 file
->_flag
|= MSVCRT__IOERR
;
2063 /*********************************************************************
2066 int MSVCRT_fclose(MSVCRT_FILE
* file
)
2071 if (file
->_tmpfname
)
2073 MSVCRT_free(file
->_tmpfname
);
2074 file
->_tmpfname
= NULL
;
2076 /* flush stdio buffers */
2077 if(file
->_flag
& MSVCRT__IOWRT
)
2078 MSVCRT_fflush(file
);
2079 if(file
->_flag
& MSVCRT__IOMYBUF
)
2080 MSVCRT_free(file
->_base
);
2082 r
=_close(file
->_file
);
2086 return ((r
==MSVCRT_EOF
) || (flag
& MSVCRT__IOERR
) ? MSVCRT_EOF
: 0);
2089 /*********************************************************************
2092 int MSVCRT_feof(MSVCRT_FILE
* file
)
2094 return file
->_flag
& MSVCRT__IOEOF
;
2097 /*********************************************************************
2100 int MSVCRT_ferror(MSVCRT_FILE
* file
)
2102 return file
->_flag
& MSVCRT__IOERR
;
2105 /*********************************************************************
2106 * _filbuf (MSVCRT.@)
2108 int MSVCRT__filbuf(MSVCRT_FILE
* file
)
2110 /* Allocate buffer if needed */
2111 if(file
->_bufsiz
== 0 && !(file
->_flag
& MSVCRT__IONBF
) ) {
2112 msvcrt_alloc_buffer(file
);
2114 if(!(file
->_flag
& MSVCRT__IOREAD
)) {
2115 if(file
->_flag
& MSVCRT__IORW
) {
2116 file
->_flag
|= MSVCRT__IOREAD
;
2121 if(file
->_flag
& MSVCRT__IONBF
) {
2124 if ((r
= _read(file
->_file
,&c
,1)) != 1) {
2125 file
->_flag
|= (r
== 0) ? MSVCRT__IOEOF
: MSVCRT__IOERR
;
2130 file
->_cnt
= _read(file
->_file
, file
->_base
, file
->_bufsiz
);
2132 file
->_flag
|= (file
->_cnt
== 0) ? MSVCRT__IOEOF
: MSVCRT__IOERR
;
2137 file
->_ptr
= file
->_base
+1;
2138 return *(unsigned char *)file
->_base
;
2142 /*********************************************************************
2145 int MSVCRT_fgetc(MSVCRT_FILE
* file
)
2149 return *(unsigned char *)file
->_ptr
++;
2151 return MSVCRT__filbuf(file
);
2155 /*********************************************************************
2156 * _fgetchar (MSVCRT.@)
2160 return MSVCRT_fgetc(MSVCRT_stdin
);
2163 /*********************************************************************
2166 char *MSVCRT_fgets(char *s
, int size
, MSVCRT_FILE
* file
)
2168 int cc
= MSVCRT_EOF
;
2169 char * buf_start
= s
;
2171 TRACE(":file(%p) fd (%d) str (%p) len (%d)\n",
2172 file
,file
->_file
,s
,size
);
2174 while ((size
>1) && (cc
= MSVCRT_fgetc(file
)) != MSVCRT_EOF
&& cc
!= '\n')
2179 if ((cc
== MSVCRT_EOF
) && (s
== buf_start
)) /* If nothing read, return 0*/
2181 TRACE(":nothing read\n");
2184 if ((cc
!= MSVCRT_EOF
) && (size
> 1))
2187 TRACE(":got %s\n", debugstr_a(buf_start
));
2191 /*********************************************************************
2194 * In MSVCRT__O_TEXT mode, multibyte characters are read from the file, dropping
2195 * the CR from CR/LF combinations
2197 MSVCRT_wint_t
MSVCRT_fgetwc(MSVCRT_FILE
* file
)
2201 if (!(MSVCRT_fdesc
[file
->_file
].wxflag
& WX_TEXT
))
2205 if ((r
= _read(file
->_file
, &wc
, sizeof(wc
))) != sizeof(wc
))
2207 file
->_flag
|= (r
== 0) ? MSVCRT__IOEOF
: MSVCRT__IOERR
;
2212 c
= MSVCRT_fgetc(file
);
2213 if ((*__p___mb_cur_max() > 1) && MSVCRT_isleadbyte(c
))
2215 FIXME("Treat Multibyte characters\n");
2217 if (c
== MSVCRT_EOF
)
2220 return (MSVCRT_wint_t
)c
;
2223 /*********************************************************************
2226 MSVCRT_wint_t
MSVCRT_getwc(MSVCRT_FILE
* file
)
2228 return MSVCRT_fgetwc(file
);
2231 /*********************************************************************
2232 * _fgetwchar (MSVCRT.@)
2234 MSVCRT_wint_t
_fgetwchar(void)
2236 return MSVCRT_fgetwc(MSVCRT_stdin
);
2239 /*********************************************************************
2240 * getwchar (MSVCRT.@)
2242 MSVCRT_wint_t
MSVCRT_getwchar(void)
2244 return _fgetwchar();
2247 /*********************************************************************
2250 MSVCRT_wchar_t
*MSVCRT_fgetws(MSVCRT_wchar_t
*s
, int size
, MSVCRT_FILE
* file
)
2252 int cc
= MSVCRT_WEOF
;
2253 MSVCRT_wchar_t
* buf_start
= s
;
2255 TRACE(":file(%p) fd (%d) str (%p) len (%d)\n",
2256 file
,file
->_file
,s
,size
);
2258 while ((size
>1) && (cc
= MSVCRT_fgetwc(file
)) != MSVCRT_WEOF
&& cc
!= '\n')
2263 if ((cc
== MSVCRT_WEOF
) && (s
== buf_start
)) /* If nothing read, return 0*/
2265 TRACE(":nothing read\n");
2268 if ((cc
!= MSVCRT_WEOF
) && (size
> 1))
2271 TRACE(":got %s\n", debugstr_w(buf_start
));
2275 /*********************************************************************
2278 MSVCRT_size_t
MSVCRT_fwrite(const void *ptr
, MSVCRT_size_t size
, MSVCRT_size_t nmemb
, MSVCRT_FILE
* file
)
2280 MSVCRT_size_t wrcnt
=size
* nmemb
;
2285 int pcnt
=(file
->_cnt
>wrcnt
)? wrcnt
: file
->_cnt
;
2286 memcpy(file
->_ptr
, ptr
, pcnt
);
2291 ptr
= (const char*)ptr
+ pcnt
;
2292 } else if(!(file
->_flag
& MSVCRT__IOWRT
)) {
2293 if(file
->_flag
& MSVCRT__IORW
) {
2294 file
->_flag
|= MSVCRT__IOWRT
;
2300 int res
=msvcrt_flush_buffer(file
);
2302 int pwritten
= _write(file
->_file
, ptr
, wrcnt
);
2305 file
->_flag
|= MSVCRT__IOERR
;
2308 written
+= pwritten
;
2311 return written
/ size
;
2314 /*********************************************************************
2317 MSVCRT_wint_t
MSVCRT_fputwc(MSVCRT_wint_t wc
, MSVCRT_FILE
* file
)
2319 MSVCRT_wchar_t mwc
=wc
;
2320 if (MSVCRT_fwrite( &mwc
, sizeof(mwc
), 1, file
) != 1)
2325 /*********************************************************************
2326 * _fputwchar (MSVCRT.@)
2328 MSVCRT_wint_t
_fputwchar(MSVCRT_wint_t wc
)
2330 return MSVCRT_fputwc(wc
, MSVCRT_stdout
);
2333 /*********************************************************************
2336 MSVCRT_FILE
* MSVCRT_fopen(const char *path
, const char *mode
)
2339 int open_flags
, stream_flags
, fd
;
2341 TRACE("(%s,%s)\n",path
,mode
);
2343 /* map mode string to open() flags. "man fopen" for possibilities. */
2344 if (msvcrt_get_flags(mode
, &open_flags
, &stream_flags
) == -1)
2348 fd
= _open(path
, open_flags
, MSVCRT__S_IREAD
| MSVCRT__S_IWRITE
);
2351 else if ((file
= msvcrt_alloc_fp()) && msvcrt_init_fp(file
, fd
, stream_flags
)
2353 TRACE(":fd (%d) mode (%s) FILE* (%p)\n",fd
,mode
,file
);
2360 TRACE(":got (%p)\n",file
);
2361 if (fd
>= 0 && !file
)
2367 /*********************************************************************
2368 * _wfopen (MSVCRT.@)
2370 MSVCRT_FILE
*MSVCRT__wfopen(const MSVCRT_wchar_t
*path
, const MSVCRT_wchar_t
*mode
)
2372 const unsigned int plen
= strlenW(path
), mlen
= strlenW(mode
);
2373 char *patha
= MSVCRT_calloc(plen
+ 1, 1);
2374 char *modea
= MSVCRT_calloc(mlen
+ 1, 1);
2376 TRACE("(%s,%s)\n",debugstr_w(path
),debugstr_w(mode
));
2378 if (patha
&& modea
&&
2379 WideCharToMultiByte(CP_ACP
,0,path
,plen
,patha
,plen
,NULL
,NULL
) &&
2380 WideCharToMultiByte(CP_ACP
,0,mode
,mlen
,modea
,mlen
,NULL
,NULL
))
2382 MSVCRT_FILE
*retval
= MSVCRT_fopen(patha
,modea
);
2388 msvcrt_set_errno(GetLastError());
2392 /*********************************************************************
2393 * _fsopen (MSVCRT.@)
2395 MSVCRT_FILE
* MSVCRT__fsopen(const char *path
, const char *mode
, int share
)
2397 FIXME(":(%s,%s,%d),ignoring share mode!\n",path
,mode
,share
);
2398 return MSVCRT_fopen(path
,mode
);
2401 /*********************************************************************
2402 * _wfsopen (MSVCRT.@)
2404 MSVCRT_FILE
* MSVCRT__wfsopen(const MSVCRT_wchar_t
*path
, const MSVCRT_wchar_t
*mode
, int share
)
2406 FIXME(":(%s,%s,%d),ignoring share mode!\n",
2407 debugstr_w(path
),debugstr_w(mode
),share
);
2408 return MSVCRT__wfopen(path
,mode
);
2411 /* MSVCRT_fputc calls MSVCRT__flsbuf which calls MSVCRT_fputc */
2412 int MSVCRT__flsbuf(int c
, MSVCRT_FILE
* file
);
2414 /*********************************************************************
2417 int MSVCRT_fputc(int c
, MSVCRT_FILE
* file
)
2424 int res
= msvcrt_flush_buffer(file
);
2425 return res
? res
: c
;
2430 return MSVCRT__flsbuf(c
, file
);
2434 /*********************************************************************
2435 * _flsbuf (MSVCRT.@)
2437 int MSVCRT__flsbuf(int c
, MSVCRT_FILE
* file
)
2439 /* Flush output buffer */
2440 if(file
->_bufsiz
== 0 && !(file
->_flag
& MSVCRT__IONBF
)) {
2441 msvcrt_alloc_buffer(file
);
2443 if(!(file
->_flag
& MSVCRT__IOWRT
)) {
2444 if(file
->_flag
& MSVCRT__IORW
) {
2445 file
->_flag
|= MSVCRT__IOWRT
;
2451 int res
=msvcrt_flush_buffer(file
);
2452 return res
?res
: MSVCRT_fputc(c
, file
);
2456 len
= _write(file
->_file
, &cc
, 1);
2457 if (len
== 1) return c
;
2458 file
->_flag
|= MSVCRT__IOERR
;
2463 /*********************************************************************
2464 * _fputchar (MSVCRT.@)
2466 int _fputchar(int c
)
2468 return MSVCRT_fputc(c
, MSVCRT_stdout
);
2471 /*********************************************************************
2474 MSVCRT_size_t
MSVCRT_fread(void *ptr
, MSVCRT_size_t size
, MSVCRT_size_t nmemb
, MSVCRT_FILE
* file
)
2475 { MSVCRT_size_t rcnt
=size
* nmemb
;
2476 MSVCRT_size_t read
=0;
2482 /* first buffered data */
2484 int pcnt
= (rcnt
>file
->_cnt
)? file
->_cnt
:rcnt
;
2485 memcpy(ptr
, file
->_ptr
, pcnt
);
2490 ptr
= (char*)ptr
+ pcnt
;
2491 } else if(!(file
->_flag
& MSVCRT__IOREAD
)) {
2492 if(file
->_flag
& MSVCRT__IORW
) {
2493 file
->_flag
|= MSVCRT__IOREAD
;
2499 pread
= _read(file
->_file
,ptr
, rcnt
);
2500 /* expose feof condition in the flags
2501 * MFC tests file->_flag for feof, and doesn't not call feof())
2504 file
->_flag
|= MSVCRT__IOEOF
;
2505 else if (pread
== -1)
2507 file
->_flag
|= MSVCRT__IOERR
;
2515 /*********************************************************************
2516 * freopen (MSVCRT.@)
2519 MSVCRT_FILE
* MSVCRT_freopen(const char *path
, const char *mode
,MSVCRT_FILE
* file
)
2521 int open_flags
, stream_flags
, fd
;
2523 TRACE(":path (%p) mode (%s) file (%p) fd (%d)\n",path
,mode
,file
,file
->_file
);
2526 if (!file
|| ((fd
= file
->_file
) < 0) || fd
> MSVCRT_fdend
)
2530 MSVCRT_fclose(file
);
2531 /* map mode string to open() flags. "man fopen" for possibilities. */
2532 if (msvcrt_get_flags(mode
, &open_flags
, &stream_flags
) == -1)
2536 fd
= _open(path
, open_flags
, MSVCRT__S_IREAD
| MSVCRT__S_IWRITE
);
2539 else if (msvcrt_init_fp(file
, fd
, stream_flags
) == -1)
2542 WARN(":failed-last error (%ld)\n",GetLastError());
2543 msvcrt_set_errno(GetLastError());
2552 /*********************************************************************
2553 * fsetpos (MSVCRT.@)
2555 int MSVCRT_fsetpos(MSVCRT_FILE
* file
, MSVCRT_fpos_t
*pos
)
2557 /* Note that all this has been lifted 'as is' from fseek */
2558 if(file
->_flag
& MSVCRT__IOWRT
)
2559 msvcrt_flush_buffer(file
);
2561 /* Discard buffered input */
2563 file
->_ptr
= file
->_base
;
2565 /* Reset direction of i/o */
2566 if(file
->_flag
& MSVCRT__IORW
) {
2567 file
->_flag
&= ~(MSVCRT__IOREAD
|MSVCRT__IOWRT
);
2570 return (_lseeki64(file
->_file
,*pos
,SEEK_SET
) == -1) ? -1 : 0;
2573 /*********************************************************************
2576 LONG
MSVCRT_ftell(MSVCRT_FILE
* file
)
2581 if( file
->_flag
& MSVCRT__IOWRT
) {
2582 off
= file
->_ptr
- file
->_base
;
2587 pos
= _tell(file
->_file
);
2588 if(pos
== -1) return pos
;
2592 /*********************************************************************
2593 * fgetpos (MSVCRT.@)
2595 int MSVCRT_fgetpos(MSVCRT_FILE
* file
, MSVCRT_fpos_t
*pos
)
2597 /* This code has been lifted form the MSVCRT_ftell function */
2600 *pos
= _lseeki64(file
->_file
,0,SEEK_CUR
);
2602 if (*pos
== -1) return -1;
2605 if( file
->_flag
& MSVCRT__IOWRT
) {
2606 off
= file
->_ptr
- file
->_base
;
2616 /*********************************************************************
2619 int MSVCRT_fputs(const char *s
, MSVCRT_FILE
* file
)
2621 size_t i
, len
= strlen(s
);
2622 if (!(MSVCRT_fdesc
[file
->_file
].wxflag
& WX_TEXT
))
2623 return MSVCRT_fwrite(s
,sizeof(*s
),len
,file
) == len
? 0 : MSVCRT_EOF
;
2624 for (i
=0; i
<len
; i
++)
2625 if (MSVCRT_fputc(s
[i
], file
) == MSVCRT_EOF
)
2630 /*********************************************************************
2633 int MSVCRT_fputws(const MSVCRT_wchar_t
*s
, MSVCRT_FILE
* file
)
2635 size_t i
, len
= strlenW(s
);
2636 if (!(MSVCRT_fdesc
[file
->_file
].wxflag
& WX_TEXT
))
2637 return MSVCRT_fwrite(s
,sizeof(*s
),len
,file
) == len
? 0 : MSVCRT_EOF
;
2638 for (i
=0; i
<len
; i
++)
2640 if ((s
[i
] == L
'\n') && (MSVCRT_fputc('\r', file
) == MSVCRT_EOF
))
2642 if (MSVCRT_fputwc(s
[i
], file
) == MSVCRT_WEOF
)
2648 /*********************************************************************
2649 * getchar (MSVCRT.@)
2651 int MSVCRT_getchar(void)
2653 return MSVCRT_fgetc(MSVCRT_stdin
);
2656 /*********************************************************************
2659 int MSVCRT_getc(MSVCRT_FILE
* file
)
2661 return MSVCRT_fgetc(file
);
2664 /*********************************************************************
2667 char *MSVCRT_gets(char *buf
)
2670 char * buf_start
= buf
;
2672 for(cc
= MSVCRT_fgetc(MSVCRT_stdin
); cc
!= MSVCRT_EOF
&& cc
!= '\n';
2673 cc
= MSVCRT_fgetc(MSVCRT_stdin
))
2674 if(cc
!= '\r') *buf
++ = (char)cc
;
2678 TRACE("got '%s'\n", buf_start
);
2682 /*********************************************************************
2685 MSVCRT_wchar_t
* MSVCRT__getws(MSVCRT_wchar_t
* buf
)
2688 MSVCRT_wchar_t
* ws
= buf
;
2690 for (cc
= MSVCRT_fgetwc(MSVCRT_stdin
); cc
!= MSVCRT_WEOF
&& cc
!= '\n';
2691 cc
= MSVCRT_fgetwc(MSVCRT_stdin
))
2694 *buf
++ = (MSVCRT_wchar_t
)cc
;
2698 TRACE("got '%s'\n", debugstr_w(ws
));
2702 /*********************************************************************
2705 int MSVCRT_putc(int c
, MSVCRT_FILE
* file
)
2707 return MSVCRT_fputc(c
, file
);
2710 /*********************************************************************
2711 * putchar (MSVCRT.@)
2713 int MSVCRT_putchar(int c
)
2715 return MSVCRT_fputc(c
, MSVCRT_stdout
);
2718 /*********************************************************************
2721 int MSVCRT_puts(const char *s
)
2723 size_t len
= strlen(s
);
2724 if (MSVCRT_fwrite(s
,sizeof(*s
),len
,MSVCRT_stdout
) != len
) return MSVCRT_EOF
;
2725 return MSVCRT_fwrite("\n",1,1,MSVCRT_stdout
) == 1 ? 0 : MSVCRT_EOF
;
2728 /*********************************************************************
2731 int _putws(const MSVCRT_wchar_t
*s
)
2733 static const MSVCRT_wchar_t nl
= '\n';
2734 size_t len
= strlenW(s
);
2735 if (MSVCRT_fwrite(s
,sizeof(*s
),len
,MSVCRT_stdout
) != len
) return MSVCRT_EOF
;
2736 return MSVCRT_fwrite(&nl
,sizeof(nl
),1,MSVCRT_stdout
) == 1 ? 0 : MSVCRT_EOF
;
2739 /*********************************************************************
2742 int MSVCRT_remove(const char *path
)
2744 TRACE("(%s)\n",path
);
2745 if (DeleteFileA(path
))
2747 TRACE(":failed (%ld)\n",GetLastError());
2748 msvcrt_set_errno(GetLastError());
2752 /*********************************************************************
2753 * _wremove (MSVCRT.@)
2755 int _wremove(const MSVCRT_wchar_t
*path
)
2757 TRACE("(%s)\n",debugstr_w(path
));
2758 if (DeleteFileW(path
))
2760 TRACE(":failed (%ld)\n",GetLastError());
2761 msvcrt_set_errno(GetLastError());
2765 /*********************************************************************
2768 int MSVCRT_rename(const char *oldpath
,const char *newpath
)
2770 TRACE(":from %s to %s\n",oldpath
,newpath
);
2771 if (MoveFileExA(oldpath
, newpath
, MOVEFILE_COPY_ALLOWED
))
2773 TRACE(":failed (%ld)\n",GetLastError());
2774 msvcrt_set_errno(GetLastError());
2778 /*********************************************************************
2779 * _wrename (MSVCRT.@)
2781 int _wrename(const MSVCRT_wchar_t
*oldpath
,const MSVCRT_wchar_t
*newpath
)
2783 TRACE(":from %s to %s\n",debugstr_w(oldpath
),debugstr_w(newpath
));
2784 if (MoveFileExW(oldpath
, newpath
, MOVEFILE_COPY_ALLOWED
))
2786 TRACE(":failed (%ld)\n",GetLastError());
2787 msvcrt_set_errno(GetLastError());
2791 /*********************************************************************
2792 * setvbuf (MSVCRT.@)
2794 int MSVCRT_setvbuf(MSVCRT_FILE
* file
, char *buf
, int mode
, MSVCRT_size_t size
)
2796 /* TODO: Check if file busy */
2798 MSVCRT_free(file
->_base
);
2802 if(mode
== MSVCRT__IOFBF
) {
2803 file
->_flag
&= ~MSVCRT__IONBF
;
2804 file
->_base
= file
->_ptr
= buf
;
2806 file
->_bufsiz
= size
;
2809 file
->_flag
|= MSVCRT__IONBF
;
2814 /*********************************************************************
2817 void MSVCRT_setbuf(MSVCRT_FILE
* file
, char *buf
)
2819 MSVCRT_setvbuf(file
, buf
, buf
? MSVCRT__IOFBF
: MSVCRT__IONBF
, MSVCRT_BUFSIZ
);
2822 /*********************************************************************
2825 char *MSVCRT_tmpnam(char *s
)
2833 msvcrt_int_to_base32(GetCurrentProcessId(), tmpstr
);
2834 p
= s
+ sprintf(s
, "\\s%s.", tmpstr
);
2835 for (count
= 0; count
< MSVCRT_TMP_MAX
; count
++)
2837 msvcrt_int_to_base32(unique
++, tmpstr
);
2839 if (GetFileAttributesA(s
) == INVALID_FILE_ATTRIBUTES
&&
2840 GetLastError() == ERROR_FILE_NOT_FOUND
)
2846 /*********************************************************************
2847 * tmpfile (MSVCRT.@)
2849 MSVCRT_FILE
* MSVCRT_tmpfile(void)
2851 char *filename
= MSVCRT_tmpnam(NULL
);
2853 MSVCRT_FILE
* file
= NULL
;
2856 fd
= _open(filename
, MSVCRT__O_CREAT
| MSVCRT__O_BINARY
| MSVCRT__O_RDWR
| MSVCRT__O_TEMPORARY
);
2857 if (fd
!= -1 && (file
= msvcrt_alloc_fp()))
2859 if (msvcrt_init_fp(file
, fd
, MSVCRT__O_RDWR
) == -1)
2864 else file
->_tmpfname
= _strdup(filename
);
2870 /*********************************************************************
2871 * vfprintf (MSVCRT.@)
2873 int MSVCRT_vfprintf(MSVCRT_FILE
* file
, const char *format
, va_list valist
)
2875 char buf
[2048], *mem
= buf
;
2876 int written
, resize
= sizeof(buf
), retval
;
2877 /* There are two conventions for vsnprintf failing:
2878 * Return -1 if we truncated, or
2879 * Return the number of bytes that would have been written
2880 * The code below handles both cases
2882 while ((written
= MSVCRT_vsnprintf(mem
, resize
, format
, valist
)) == -1 ||
2885 resize
= (written
== -1 ? resize
* 2 : written
+ 1);
2888 if (!(mem
= (char *)MSVCRT_malloc(resize
)))
2891 retval
= MSVCRT_fwrite(mem
, sizeof(*mem
), written
, file
);
2897 /*********************************************************************
2898 * vfwprintf (MSVCRT.@)
2900 * Is final char included in written (then resize is too big) or not
2901 * (then we must test for equality too)?
2903 int MSVCRT_vfwprintf(MSVCRT_FILE
* file
, const MSVCRT_wchar_t
*format
, va_list valist
)
2905 MSVCRT_wchar_t buf
[2048], *mem
= buf
;
2906 int written
, resize
= sizeof(buf
) / sizeof(MSVCRT_wchar_t
), retval
;
2907 /* See vfprintf comments */
2908 while ((written
= _vsnwprintf(mem
, resize
, format
, valist
)) == -1 ||
2911 resize
= (written
== -1 ? resize
* 2 : written
+ sizeof(MSVCRT_wchar_t
));
2914 if (!(mem
= (MSVCRT_wchar_t
*)MSVCRT_malloc(resize
*sizeof(*mem
))))
2917 retval
= MSVCRT_fwrite(mem
, sizeof(*mem
), written
, file
);
2923 /*********************************************************************
2924 * vprintf (MSVCRT.@)
2926 int MSVCRT_vprintf(const char *format
, va_list valist
)
2928 return MSVCRT_vfprintf(MSVCRT_stdout
,format
,valist
);
2931 /*********************************************************************
2932 * vwprintf (MSVCRT.@)
2934 int MSVCRT_vwprintf(const MSVCRT_wchar_t
*format
, va_list valist
)
2936 return MSVCRT_vfwprintf(MSVCRT_stdout
,format
,valist
);
2939 /*********************************************************************
2940 * fprintf (MSVCRT.@)
2942 int MSVCRT_fprintf(MSVCRT_FILE
* file
, const char *format
, ...)
2946 va_start(valist
, format
);
2947 res
= MSVCRT_vfprintf(file
, format
, valist
);
2952 /*********************************************************************
2953 * fwprintf (MSVCRT.@)
2955 int MSVCRT_fwprintf(MSVCRT_FILE
* file
, const MSVCRT_wchar_t
*format
, ...)
2959 va_start(valist
, format
);
2960 res
= MSVCRT_vfwprintf(file
, format
, valist
);
2965 /*********************************************************************
2968 int MSVCRT_printf(const char *format
, ...)
2972 va_start(valist
, format
);
2973 res
= MSVCRT_vfprintf(MSVCRT_stdout
, format
, valist
);
2978 /*********************************************************************
2981 int MSVCRT_ungetc(int c
, MSVCRT_FILE
* file
)
2983 if (c
== MSVCRT_EOF
)
2985 if(file
->_bufsiz
== 0 && !(file
->_flag
& MSVCRT__IONBF
)) {
2986 msvcrt_alloc_buffer(file
);
2989 if(file
->_ptr
>file
->_base
) {
2993 MSVCRT_clearerr(file
);
2999 /*********************************************************************
3000 * ungetwc (MSVCRT.@)
3002 MSVCRT_wint_t
MSVCRT_ungetwc(MSVCRT_wint_t wc
, MSVCRT_FILE
* file
)
3004 MSVCRT_wchar_t mwc
= wc
;
3005 char * pp
= (char *)&mwc
;
3007 for(i
=sizeof(MSVCRT_wchar_t
)-1;i
>=0;i
--) {
3008 if(pp
[i
] != MSVCRT_ungetc(pp
[i
],file
))
3014 /*********************************************************************
3015 * wprintf (MSVCRT.@)
3017 int MSVCRT_wprintf(const MSVCRT_wchar_t
*format
, ...)
3021 va_start(valist
, format
);
3022 res
= MSVCRT_vwprintf(format
, valist
);
3027 /*********************************************************************
3028 * __pioinfo (MSVCRT.@)
3029 * FIXME: see MSVCRT_MAX_FILES define.
3031 ioinfo
* MSVCRT___pioinfo
[] = { /* array of pointers to ioinfo arrays [64] */
3032 &MSVCRT_fdesc
[0 * 64], &MSVCRT_fdesc
[1 * 64], &MSVCRT_fdesc
[2 * 64],
3033 &MSVCRT_fdesc
[3 * 64], &MSVCRT_fdesc
[4 * 64], &MSVCRT_fdesc
[5 * 64],
3034 &MSVCRT_fdesc
[6 * 64], &MSVCRT_fdesc
[7 * 64], &MSVCRT_fdesc
[8 * 64],
3035 &MSVCRT_fdesc
[9 * 64], &MSVCRT_fdesc
[10 * 64], &MSVCRT_fdesc
[11 * 64],
3036 &MSVCRT_fdesc
[12 * 64], &MSVCRT_fdesc
[13 * 64], &MSVCRT_fdesc
[14 * 64],
3037 &MSVCRT_fdesc
[15 * 64], &MSVCRT_fdesc
[16 * 64], &MSVCRT_fdesc
[17 * 64],
3038 &MSVCRT_fdesc
[18 * 64], &MSVCRT_fdesc
[19 * 64], &MSVCRT_fdesc
[20 * 64],
3039 &MSVCRT_fdesc
[21 * 64], &MSVCRT_fdesc
[22 * 64], &MSVCRT_fdesc
[23 * 64],
3040 &MSVCRT_fdesc
[24 * 64], &MSVCRT_fdesc
[25 * 64], &MSVCRT_fdesc
[26 * 64],
3041 &MSVCRT_fdesc
[27 * 64], &MSVCRT_fdesc
[28 * 64], &MSVCRT_fdesc
[29 * 64],
3042 &MSVCRT_fdesc
[30 * 64], &MSVCRT_fdesc
[31 * 64]
3045 /*********************************************************************
3046 * __badioinfo (MSVCRT.@)
3048 ioinfo MSVCRT___badioinfo
= { INVALID_HANDLE_VALUE
, WX_TEXT
};