[perl 7711: EPOC] updates
[p5sagit/p5-mst-13.2.git] / win32 / win32.c
1 /* WIN32.C
2  *
3  * (c) 1995 Microsoft Corporation. All rights reserved. 
4  *              Developed by hip communications inc., http://info.hip.com/info/
5  * Portions (c) 1993 Intergraph Corporation. All rights reserved.
6  *
7  *    You may distribute under the terms of either the GNU General Public
8  *    License or the Artistic License, as specified in the README file.
9  */
10
11 #define WIN32_LEAN_AND_MEAN
12 #define WIN32IO_IS_STDIO
13 #include <tchar.h>
14 #ifdef __GNUC__
15 #define Win32_Winsock
16 #endif
17 #include <windows.h>
18 #ifndef __MINGW32__     /* GCC/Mingw32-2.95.2 forgot the WINAPI on CommandLineToArgvW() */
19 #  include <shellapi.h>
20 #else
21    LPWSTR* WINAPI CommandLineToArgvW(LPCWSTR lpCommandLine, int * pNumArgs);
22 #endif
23 #include <winnt.h>
24 #include <io.h>
25
26 /* #include "config.h" */
27
28 #define PERLIO_NOT_STDIO 0 
29 #if !defined(PERLIO_IS_STDIO) && !defined(USE_SFIO)
30 #define PerlIO FILE
31 #endif
32
33 #include <sys/stat.h>
34 #include "EXTERN.h"
35 #include "perl.h"
36
37 #define NO_XSLOCKS
38 #define PERL_NO_GET_CONTEXT
39 #include "XSUB.h"
40
41 #include "Win32iop.h"
42 #include <fcntl.h>
43 #ifndef __GNUC__
44 /* assert.h conflicts with #define of assert in perl.h */
45 #include <assert.h>
46 #endif
47 #include <string.h>
48 #include <stdarg.h>
49 #include <float.h>
50 #include <time.h>
51 #if defined(_MSC_VER) || defined(__MINGW32__)
52 #include <sys/utime.h>
53 #else
54 #include <utime.h>
55 #endif
56 #ifdef __GNUC__
57 /* Mingw32 defaults to globing command line 
58  * So we turn it off like this:
59  */
60 int _CRT_glob = 0;
61 #endif
62
63 #if defined(__MINGW32__)
64 /* Mingw32 is missing some prototypes */
65 FILE * _wfopen(LPCWSTR wszFileName, LPCWSTR wszMode);
66 FILE * _wfdopen(int nFd, LPCWSTR wszMode);
67 FILE * _freopen(LPCWSTR wszFileName, LPCWSTR wszMode, FILE * pOldStream);
68 int _flushall();
69 int _fcloseall();
70 #endif
71
72 #if defined(__BORLANDC__)
73 #  define _stat stat
74 #  define _utimbuf utimbuf
75 #endif
76
77 #define EXECF_EXEC 1
78 #define EXECF_SPAWN 2
79 #define EXECF_SPAWN_NOWAIT 3
80
81 #if defined(PERL_IMPLICIT_SYS)
82 #  undef win32_get_privlib
83 #  define win32_get_privlib g_win32_get_privlib
84 #  undef win32_get_sitelib
85 #  define win32_get_sitelib g_win32_get_sitelib
86 #  undef win32_get_vendorlib
87 #  define win32_get_vendorlib g_win32_get_vendorlib
88 #  undef do_spawn
89 #  define do_spawn g_do_spawn
90 #  undef getlogin
91 #  define getlogin g_getlogin
92 #endif
93
94 #if defined(PERL_OBJECT)
95 #  undef do_aspawn
96 #  define do_aspawn g_do_aspawn
97 #  undef Perl_do_exec
98 #  define Perl_do_exec g_do_exec
99 #endif
100
101 static void             get_shell(void);
102 static long             tokenize(const char *str, char **dest, char ***destv);
103         int             do_spawn2(char *cmd, int exectype);
104 static BOOL             has_shell_metachars(char *ptr);
105 static long             filetime_to_clock(PFILETIME ft);
106 static BOOL             filetime_from_time(PFILETIME ft, time_t t);
107 static char *           get_emd_part(SV **leading, char *trailing, ...);
108 static void             remove_dead_process(long deceased);
109 static long             find_pid(int pid);
110 static char *           qualified_path(const char *cmd);
111 static char *           win32_get_xlib(const char *pl, const char *xlib,
112                                        const char *libname);
113
114 #ifdef USE_ITHREADS
115 static void             remove_dead_pseudo_process(long child);
116 static long             find_pseudo_pid(int pid);
117 #endif
118
119 START_EXTERN_C
120 HANDLE  w32_perldll_handle = INVALID_HANDLE_VALUE;
121 char    w32_module_name[MAX_PATH+1];
122 END_EXTERN_C
123
124 static DWORD    w32_platform = (DWORD)-1;
125
126 #define ONE_K_BUFSIZE   1024
127
128 int 
129 IsWin95(void)
130 {
131     return (win32_os_id() == VER_PLATFORM_WIN32_WINDOWS);
132 }
133
134 int
135 IsWinNT(void)
136 {
137     return (win32_os_id() == VER_PLATFORM_WIN32_NT);
138 }
139
140 EXTERN_C void
141 set_w32_module_name(void)
142 {
143     char* ptr;
144     GetModuleFileName((HMODULE)((w32_perldll_handle == INVALID_HANDLE_VALUE)
145                                 ? GetModuleHandle(NULL)
146                                 : w32_perldll_handle),
147                       w32_module_name, sizeof(w32_module_name));
148
149     /* try to get full path to binary (which may be mangled when perl is
150      * run from a 16-bit app) */
151     /*PerlIO_printf(Perl_debug_log, "Before %s\n", w32_module_name);*/
152     (void)win32_longpath(w32_module_name);
153     /*PerlIO_printf(Perl_debug_log, "After  %s\n", w32_module_name);*/
154
155     /* normalize to forward slashes */
156     ptr = w32_module_name;
157     while (*ptr) {
158         if (*ptr == '\\')
159             *ptr = '/';
160         ++ptr;
161     }
162 }
163
164 /* *svp (if non-NULL) is expected to be POK (valid allocated SvPVX(*svp)) */
165 static char*
166 get_regstr_from(HKEY hkey, const char *valuename, SV **svp)
167 {
168     /* Retrieve a REG_SZ or REG_EXPAND_SZ from the registry */
169     HKEY handle;
170     DWORD type;
171     const char *subkey = "Software\\Perl";
172     char *str = Nullch;
173     long retval;
174
175     retval = RegOpenKeyEx(hkey, subkey, 0, KEY_READ, &handle);
176     if (retval == ERROR_SUCCESS) {
177         DWORD datalen;
178         retval = RegQueryValueEx(handle, valuename, 0, &type, NULL, &datalen);
179         if (retval == ERROR_SUCCESS
180             && (type == REG_SZ || type == REG_EXPAND_SZ))
181         {
182             dTHXo;
183             if (!*svp)
184                 *svp = sv_2mortal(newSVpvn("",0));
185             SvGROW(*svp, datalen);
186             retval = RegQueryValueEx(handle, valuename, 0, NULL,
187                                      (PBYTE)SvPVX(*svp), &datalen);
188             if (retval == ERROR_SUCCESS) {
189                 str = SvPVX(*svp);
190                 SvCUR_set(*svp,datalen-1);
191             }
192         }
193         RegCloseKey(handle);
194     }
195     return str;
196 }
197
198 /* *svp (if non-NULL) is expected to be POK (valid allocated SvPVX(*svp)) */
199 static char*
200 get_regstr(const char *valuename, SV **svp)
201 {
202     char *str = get_regstr_from(HKEY_CURRENT_USER, valuename, svp);
203     if (!str)
204         str = get_regstr_from(HKEY_LOCAL_MACHINE, valuename, svp);
205     return str;
206 }
207
208 /* *prev_pathp (if non-NULL) is expected to be POK (valid allocated SvPVX(sv)) */
209 static char *
210 get_emd_part(SV **prev_pathp, char *trailing_path, ...)
211 {
212     char base[10];
213     va_list ap;
214     char mod_name[MAX_PATH+1];
215     char *ptr;
216     char *optr;
217     char *strip;
218     int oldsize, newsize;
219     STRLEN baselen;
220
221     va_start(ap, trailing_path);
222     strip = va_arg(ap, char *);
223
224     sprintf(base, "%d.%d", (int)PERL_REVISION, (int)PERL_VERSION);
225     baselen = strlen(base);
226
227     if (!*w32_module_name) {
228         set_w32_module_name();
229     }
230     strcpy(mod_name, w32_module_name);
231     ptr = strrchr(mod_name, '/');
232     while (ptr && strip) {
233         /* look for directories to skip back */
234         optr = ptr;
235         *ptr = '\0';
236         ptr = strrchr(mod_name, '/');
237         /* avoid stripping component if there is no slash,
238          * or it doesn't match ... */
239         if (!ptr || stricmp(ptr+1, strip) != 0) {
240             /* ... but not if component matches m|5\.$patchlevel.*| */
241             if (!ptr || !(*strip == '5' && *(ptr+1) == '5'
242                           && strncmp(strip, base, baselen) == 0
243                           && strncmp(ptr+1, base, baselen) == 0))
244             {
245                 *optr = '/';
246                 ptr = optr;
247             }
248         }
249         strip = va_arg(ap, char *);
250     }
251     if (!ptr) {
252         ptr = mod_name;
253         *ptr++ = '.';
254         *ptr = '/';
255     }
256     va_end(ap);
257     strcpy(++ptr, trailing_path);
258
259     /* only add directory if it exists */
260     if (GetFileAttributes(mod_name) != (DWORD) -1) {
261         /* directory exists */
262         dTHXo;
263         if (!*prev_pathp)
264             *prev_pathp = sv_2mortal(newSVpvn("",0));
265         sv_catpvn(*prev_pathp, ";", 1);
266         sv_catpv(*prev_pathp, mod_name);
267         return SvPVX(*prev_pathp);
268     }
269
270     return Nullch;
271 }
272
273 char *
274 win32_get_privlib(const char *pl)
275 {
276     dTHXo;
277     char *stdlib = "lib";
278     char buffer[MAX_PATH+1];
279     SV *sv = Nullsv;
280
281     /* $stdlib = $HKCU{"lib-$]"} || $HKLM{"lib-$]"} || $HKCU{"lib"} || $HKLM{"lib"} || "";  */
282     sprintf(buffer, "%s-%s", stdlib, pl);
283     if (!get_regstr(buffer, &sv))
284         (void)get_regstr(stdlib, &sv);
285
286     /* $stdlib .= ";$EMD/../../lib" */
287     return get_emd_part(&sv, stdlib, ARCHNAME, "bin", Nullch);
288 }
289
290 static char *
291 win32_get_xlib(const char *pl, const char *xlib, const char *libname)
292 {
293     dTHXo;
294     char regstr[40];
295     char pathstr[MAX_PATH+1];
296     DWORD datalen;
297     int len, newsize;
298     SV *sv1 = Nullsv;
299     SV *sv2 = Nullsv;
300
301     /* $HKCU{"$xlib-$]"} || $HKLM{"$xlib-$]"} . ---; */
302     sprintf(regstr, "%s-%s", xlib, pl);
303     (void)get_regstr(regstr, &sv1);
304
305     /* $xlib .=
306      * ";$EMD/" . ((-d $EMD/../../../$]) ? "../../.." : "../.."). "/$libname/$]/lib";  */
307     sprintf(pathstr, "%s/%s/lib", libname, pl);
308     (void)get_emd_part(&sv1, pathstr, ARCHNAME, "bin", pl, Nullch);
309
310     /* $HKCU{$xlib} || $HKLM{$xlib} . ---; */
311     (void)get_regstr(xlib, &sv2);
312
313     /* $xlib .=
314      * ";$EMD/" . ((-d $EMD/../../../$]) ? "../../.." : "../.."). "/$libname/lib";  */
315     sprintf(pathstr, "%s/lib", libname);
316     (void)get_emd_part(&sv2, pathstr, ARCHNAME, "bin", pl, Nullch);
317
318     if (!sv1 && !sv2)
319         return Nullch;
320     if (!sv1)
321         return SvPVX(sv2);
322     if (!sv2)
323         return SvPVX(sv1);
324
325     sv_catpvn(sv1, ";", 1);
326     sv_catsv(sv1, sv2);
327
328     return SvPVX(sv1);
329 }
330
331 char *
332 win32_get_sitelib(const char *pl)
333 {
334     return win32_get_xlib(pl, "sitelib", "site");
335 }
336
337 #ifndef PERL_VENDORLIB_NAME
338 #  define PERL_VENDORLIB_NAME   "vendor"
339 #endif
340
341 char *
342 win32_get_vendorlib(const char *pl)
343 {
344     return win32_get_xlib(pl, "vendorlib", PERL_VENDORLIB_NAME);
345 }
346
347 static BOOL
348 has_shell_metachars(char *ptr)
349 {
350     int inquote = 0;
351     char quote = '\0';
352
353     /*
354      * Scan string looking for redirection (< or >) or pipe
355      * characters (|) that are not in a quoted string.
356      * Shell variable interpolation (%VAR%) can also happen inside strings.
357      */
358     while (*ptr) {
359         switch(*ptr) {
360         case '%':
361             return TRUE;
362         case '\'':
363         case '\"':
364             if (inquote) {
365                 if (quote == *ptr) {
366                     inquote = 0;
367                     quote = '\0';
368                 }
369             }
370             else {
371                 quote = *ptr;
372                 inquote++;
373             }
374             break;
375         case '>':
376         case '<':
377         case '|':
378             if (!inquote)
379                 return TRUE;
380         default:
381             break;
382         }
383         ++ptr;
384     }
385     return FALSE;
386 }
387
388 #if !defined(PERL_IMPLICIT_SYS)
389 /* since the current process environment is being updated in util.c
390  * the library functions will get the correct environment
391  */
392 PerlIO *
393 Perl_my_popen(pTHX_ char *cmd, char *mode)
394 {
395 #ifdef FIXCMD
396 #define fixcmd(x)   {                                   \
397                         char *pspace = strchr((x),' '); \
398                         if (pspace) {                   \
399                             char *p = (x);              \
400                             while (p < pspace) {        \
401                                 if (*p == '/')          \
402                                     *p = '\\';          \
403                                 p++;                    \
404                             }                           \
405                         }                               \
406                     }
407 #else
408 #define fixcmd(x)
409 #endif
410     fixcmd(cmd);
411     PERL_FLUSHALL_FOR_CHILD;
412     return win32_popen(cmd, mode);
413 }
414
415 long
416 Perl_my_pclose(pTHX_ PerlIO *fp)
417 {
418     return win32_pclose(fp);
419 }
420 #endif
421
422 DllExport unsigned long
423 win32_os_id(void)
424 {
425     static OSVERSIONINFO osver;
426
427     if (osver.dwPlatformId != w32_platform) {
428         memset(&osver, 0, sizeof(OSVERSIONINFO));
429         osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
430         GetVersionEx(&osver);
431         w32_platform = osver.dwPlatformId;
432     }
433     return (unsigned long)w32_platform;
434 }
435
436 DllExport int
437 win32_getpid(void)
438 {
439     int pid;
440 #ifdef USE_ITHREADS
441     dTHXo;
442     if (w32_pseudo_id)
443         return -((int)w32_pseudo_id);
444 #endif
445     pid = _getpid();
446     /* Windows 9x appears to always reports a pid for threads and processes
447      * that has the high bit set. So we treat the lower 31 bits as the
448      * "real" PID for Perl's purposes. */
449     if (IsWin95() && pid < 0)
450         pid = -pid;
451     return pid;
452 }
453
454 /* Tokenize a string.  Words are null-separated, and the list
455  * ends with a doubled null.  Any character (except null and
456  * including backslash) may be escaped by preceding it with a
457  * backslash (the backslash will be stripped).
458  * Returns number of words in result buffer.
459  */
460 static long
461 tokenize(const char *str, char **dest, char ***destv)
462 {
463     char *retstart = Nullch;
464     char **retvstart = 0;
465     int items = -1;
466     if (str) {
467         dTHXo;
468         int slen = strlen(str);
469         register char *ret;
470         register char **retv;
471         New(1307, ret, slen+2, char);
472         New(1308, retv, (slen+3)/2, char*);
473
474         retstart = ret;
475         retvstart = retv;
476         *retv = ret;
477         items = 0;
478         while (*str) {
479             *ret = *str++;
480             if (*ret == '\\' && *str)
481                 *ret = *str++;
482             else if (*ret == ' ') {
483                 while (*str == ' ')
484                     str++;
485                 if (ret == retstart)
486                     ret--;
487                 else {
488                     *ret = '\0';
489                     ++items;
490                     if (*str)
491                         *++retv = ret+1;
492                 }
493             }
494             else if (!*str)
495                 ++items;
496             ret++;
497         }
498         retvstart[items] = Nullch;
499         *ret++ = '\0';
500         *ret = '\0';
501     }
502     *dest = retstart;
503     *destv = retvstart;
504     return items;
505 }
506
507 static void
508 get_shell(void)
509 {
510     dTHXo;
511     if (!w32_perlshell_tokens) {
512         /* we don't use COMSPEC here for two reasons:
513          *  1. the same reason perl on UNIX doesn't use SHELL--rampant and
514          *     uncontrolled unportability of the ensuing scripts.
515          *  2. PERL5SHELL could be set to a shell that may not be fit for
516          *     interactive use (which is what most programs look in COMSPEC
517          *     for).
518          */
519         const char* defaultshell = (IsWinNT()
520                                     ? "cmd.exe /x/c" : "command.com /c");
521         const char *usershell = getenv("PERL5SHELL");
522         w32_perlshell_items = tokenize(usershell ? usershell : defaultshell,
523                                        &w32_perlshell_tokens,
524                                        &w32_perlshell_vec);
525     }
526 }
527
528 int
529 do_aspawn(void *vreally, void **vmark, void **vsp)
530 {
531     dTHXo;
532     SV *really = (SV*)vreally;
533     SV **mark = (SV**)vmark;
534     SV **sp = (SV**)vsp;
535     char **argv;
536     char *str;
537     int status;
538     int flag = P_WAIT;
539     int index = 0;
540
541     if (sp <= mark)
542         return -1;
543
544     get_shell();
545     New(1306, argv, (sp - mark) + w32_perlshell_items + 2, char*);
546
547     if (SvNIOKp(*(mark+1)) && !SvPOKp(*(mark+1))) {
548         ++mark;
549         flag = SvIVx(*mark);
550     }
551
552     while (++mark <= sp) {
553         if (*mark && (str = SvPV_nolen(*mark)))
554             argv[index++] = str;
555         else
556             argv[index++] = "";
557     }
558     argv[index++] = 0;
559    
560     status = win32_spawnvp(flag,
561                            (const char*)(really ? SvPV_nolen(really) : argv[0]),
562                            (const char* const*)argv);
563
564     if (status < 0 && (errno == ENOEXEC || errno == ENOENT)) {
565         /* possible shell-builtin, invoke with shell */
566         int sh_items;
567         sh_items = w32_perlshell_items;
568         while (--index >= 0)
569             argv[index+sh_items] = argv[index];
570         while (--sh_items >= 0)
571             argv[sh_items] = w32_perlshell_vec[sh_items];
572    
573         status = win32_spawnvp(flag,
574                                (const char*)(really ? SvPV_nolen(really) : argv[0]),
575                                (const char* const*)argv);
576     }
577
578     if (flag == P_NOWAIT) {
579         if (IsWin95())
580             PL_statusvalue = -1;        /* >16bits hint for pp_system() */
581     }
582     else {
583         if (status < 0) {
584             dTHR;
585             if (ckWARN(WARN_EXEC))
586                 Perl_warner(aTHX_ WARN_EXEC, "Can't spawn \"%s\": %s", argv[0], strerror(errno));
587             status = 255 * 256;
588         }
589         else
590             status *= 256;
591         PL_statusvalue = status;
592     }
593     Safefree(argv);
594     return (status);
595 }
596
597 int
598 do_spawn2(char *cmd, int exectype)
599 {
600     dTHXo;
601     char **a;
602     char *s;
603     char **argv;
604     int status = -1;
605     BOOL needToTry = TRUE;
606     char *cmd2;
607
608     /* Save an extra exec if possible. See if there are shell
609      * metacharacters in it */
610     if (!has_shell_metachars(cmd)) {
611         New(1301,argv, strlen(cmd) / 2 + 2, char*);
612         New(1302,cmd2, strlen(cmd) + 1, char);
613         strcpy(cmd2, cmd);
614         a = argv;
615         for (s = cmd2; *s;) {
616             while (*s && isSPACE(*s))
617                 s++;
618             if (*s)
619                 *(a++) = s;
620             while (*s && !isSPACE(*s))
621                 s++;
622             if (*s)
623                 *s++ = '\0';
624         }
625         *a = Nullch;
626         if (argv[0]) {
627             switch (exectype) {
628             case EXECF_SPAWN:
629                 status = win32_spawnvp(P_WAIT, argv[0],
630                                        (const char* const*)argv);
631                 break;
632             case EXECF_SPAWN_NOWAIT:
633                 status = win32_spawnvp(P_NOWAIT, argv[0],
634                                        (const char* const*)argv);
635                 break;
636             case EXECF_EXEC:
637                 status = win32_execvp(argv[0], (const char* const*)argv);
638                 break;
639             }
640             if (status != -1 || errno == 0)
641                 needToTry = FALSE;
642         }
643         Safefree(argv);
644         Safefree(cmd2);
645     }
646     if (needToTry) {
647         char **argv;
648         int i = -1;
649         get_shell();
650         New(1306, argv, w32_perlshell_items + 2, char*);
651         while (++i < w32_perlshell_items)
652             argv[i] = w32_perlshell_vec[i];
653         argv[i++] = cmd;
654         argv[i] = Nullch;
655         switch (exectype) {
656         case EXECF_SPAWN:
657             status = win32_spawnvp(P_WAIT, argv[0],
658                                    (const char* const*)argv);
659             break;
660         case EXECF_SPAWN_NOWAIT:
661             status = win32_spawnvp(P_NOWAIT, argv[0],
662                                    (const char* const*)argv);
663             break;
664         case EXECF_EXEC:
665             status = win32_execvp(argv[0], (const char* const*)argv);
666             break;
667         }
668         cmd = argv[0];
669         Safefree(argv);
670     }
671     if (exectype == EXECF_SPAWN_NOWAIT) {
672         if (IsWin95())
673             PL_statusvalue = -1;        /* >16bits hint for pp_system() */
674     }
675     else {
676         if (status < 0) {
677             dTHR;
678             if (ckWARN(WARN_EXEC))
679                 Perl_warner(aTHX_ WARN_EXEC, "Can't %s \"%s\": %s",
680                      (exectype == EXECF_EXEC ? "exec" : "spawn"),
681                      cmd, strerror(errno));
682             status = 255 * 256;
683         }
684         else
685             status *= 256;
686         PL_statusvalue = status;
687     }
688     return (status);
689 }
690
691 int
692 do_spawn(char *cmd)
693 {
694     return do_spawn2(cmd, EXECF_SPAWN);
695 }
696
697 int
698 do_spawn_nowait(char *cmd)
699 {
700     return do_spawn2(cmd, EXECF_SPAWN_NOWAIT);
701 }
702
703 bool
704 Perl_do_exec(pTHX_ char *cmd)
705 {
706     do_spawn2(cmd, EXECF_EXEC);
707     return FALSE;
708 }
709
710 /* The idea here is to read all the directory names into a string table
711  * (separated by nulls) and when one of the other dir functions is called
712  * return the pointer to the current file name.
713  */
714 DllExport DIR *
715 win32_opendir(char *filename)
716 {
717     dTHXo;
718     DIR                 *dirp;
719     long                len;
720     long                idx;
721     char                scanname[MAX_PATH+3];
722     struct stat         sbuf;
723     WIN32_FIND_DATAA    aFindData;
724     WIN32_FIND_DATAW    wFindData;
725     HANDLE              fh;
726     char                buffer[MAX_PATH*2];
727     WCHAR               wbuffer[MAX_PATH+1];
728     char*               ptr;
729
730     len = strlen(filename);
731     if (len > MAX_PATH)
732         return NULL;
733
734     /* check to see if filename is a directory */
735     if (win32_stat(filename, &sbuf) < 0 || !S_ISDIR(sbuf.st_mode))
736         return NULL;
737
738     /* Get us a DIR structure */
739     Newz(1303, dirp, 1, DIR);
740
741     /* Create the search pattern */
742     strcpy(scanname, filename);
743
744     /* bare drive name means look in cwd for drive */
745     if (len == 2 && isALPHA(scanname[0]) && scanname[1] == ':') {
746         scanname[len++] = '.';
747         scanname[len++] = '/';
748     }
749     else if (scanname[len-1] != '/' && scanname[len-1] != '\\') {
750         scanname[len++] = '/';
751     }
752     scanname[len++] = '*';
753     scanname[len] = '\0';
754
755     /* do the FindFirstFile call */
756     if (USING_WIDE()) {
757         A2WHELPER(scanname, wbuffer, sizeof(wbuffer));
758         fh = FindFirstFileW(PerlDir_mapW(wbuffer), &wFindData);
759     }
760     else {
761         fh = FindFirstFileA(PerlDir_mapA(scanname), &aFindData);
762     }
763     dirp->handle = fh;
764     if (fh == INVALID_HANDLE_VALUE) {
765         DWORD err = GetLastError();
766         /* FindFirstFile() fails on empty drives! */
767         switch (err) {
768         case ERROR_FILE_NOT_FOUND:
769             return dirp;
770         case ERROR_NO_MORE_FILES:
771         case ERROR_PATH_NOT_FOUND:
772             errno = ENOENT;
773             break;
774         case ERROR_NOT_ENOUGH_MEMORY:
775             errno = ENOMEM;
776             break;
777         default:
778             errno = EINVAL;
779             break;
780         }
781         Safefree(dirp);
782         return NULL;
783     }
784
785     /* now allocate the first part of the string table for
786      * the filenames that we find.
787      */
788     if (USING_WIDE()) {
789         W2AHELPER(wFindData.cFileName, buffer, sizeof(buffer));
790         ptr = buffer;
791     }
792     else {
793         ptr = aFindData.cFileName;
794     }
795     idx = strlen(ptr)+1;
796     if (idx < 256)
797         dirp->size = 128;
798     else
799         dirp->size = idx;
800     New(1304, dirp->start, dirp->size, char);
801     strcpy(dirp->start, ptr);
802     dirp->nfiles++;
803     dirp->end = dirp->curr = dirp->start;
804     dirp->end += idx;
805     return dirp;
806 }
807
808
809 /* Readdir just returns the current string pointer and bumps the
810  * string pointer to the nDllExport entry.
811  */
812 DllExport struct direct *
813 win32_readdir(DIR *dirp)
814 {
815     long         len;
816
817     if (dirp->curr) {
818         /* first set up the structure to return */
819         len = strlen(dirp->curr);
820         strcpy(dirp->dirstr.d_name, dirp->curr);
821         dirp->dirstr.d_namlen = len;
822
823         /* Fake an inode */
824         dirp->dirstr.d_ino = dirp->curr - dirp->start;
825
826         /* Now set up for the next call to readdir */
827         dirp->curr += len + 1;
828         if (dirp->curr >= dirp->end) {
829             dTHXo;
830             char*               ptr;
831             BOOL                res;
832             WIN32_FIND_DATAW    wFindData;
833             WIN32_FIND_DATAA    aFindData;
834             char                buffer[MAX_PATH*2];
835
836             /* finding the next file that matches the wildcard
837              * (which should be all of them in this directory!).
838              */
839             if (USING_WIDE()) {
840                 res = FindNextFileW(dirp->handle, &wFindData);
841                 if (res) {
842                     W2AHELPER(wFindData.cFileName, buffer, sizeof(buffer));
843                     ptr = buffer;
844                 }
845             }
846             else {
847                 res = FindNextFileA(dirp->handle, &aFindData);
848                 if (res)
849                     ptr = aFindData.cFileName;
850             }
851             if (res) {
852                 long endpos = dirp->end - dirp->start;
853                 long newsize = endpos + strlen(ptr) + 1;
854                 /* bump the string table size by enough for the
855                  * new name and it's null terminator */
856                 while (newsize > dirp->size) {
857                     long curpos = dirp->curr - dirp->start;
858                     dirp->size *= 2;
859                     Renew(dirp->start, dirp->size, char);
860                     dirp->curr = dirp->start + curpos;
861                 }
862                 strcpy(dirp->start + endpos, ptr);
863                 dirp->end = dirp->start + newsize;
864                 dirp->nfiles++;
865             }
866             else
867                 dirp->curr = NULL;
868         }
869         return &(dirp->dirstr);
870     } 
871     else
872         return NULL;
873 }
874
875 /* Telldir returns the current string pointer position */
876 DllExport long
877 win32_telldir(DIR *dirp)
878 {
879     return (dirp->curr - dirp->start);
880 }
881
882
883 /* Seekdir moves the string pointer to a previously saved position
884  * (returned by telldir).
885  */
886 DllExport void
887 win32_seekdir(DIR *dirp, long loc)
888 {
889     dirp->curr = dirp->start + loc;
890 }
891
892 /* Rewinddir resets the string pointer to the start */
893 DllExport void
894 win32_rewinddir(DIR *dirp)
895 {
896     dirp->curr = dirp->start;
897 }
898
899 /* free the memory allocated by opendir */
900 DllExport int
901 win32_closedir(DIR *dirp)
902 {
903     dTHXo;
904     if (dirp->handle != INVALID_HANDLE_VALUE)
905         FindClose(dirp->handle);
906     Safefree(dirp->start);
907     Safefree(dirp);
908     return 1;
909 }
910
911
912 /*
913  * various stubs
914  */
915
916
917 /* Ownership
918  *
919  * Just pretend that everyone is a superuser. NT will let us know if
920  * we don\'t really have permission to do something.
921  */
922
923 #define ROOT_UID    ((uid_t)0)
924 #define ROOT_GID    ((gid_t)0)
925
926 uid_t
927 getuid(void)
928 {
929     return ROOT_UID;
930 }
931
932 uid_t
933 geteuid(void)
934 {
935     return ROOT_UID;
936 }
937
938 gid_t
939 getgid(void)
940 {
941     return ROOT_GID;
942 }
943
944 gid_t
945 getegid(void)
946 {
947     return ROOT_GID;
948 }
949
950 int
951 setuid(uid_t auid)
952
953     return (auid == ROOT_UID ? 0 : -1);
954 }
955
956 int
957 setgid(gid_t agid)
958 {
959     return (agid == ROOT_GID ? 0 : -1);
960 }
961
962 char *
963 getlogin(void)
964 {
965     dTHXo;
966     char *buf = w32_getlogin_buffer;
967     DWORD size = sizeof(w32_getlogin_buffer);
968     if (GetUserName(buf,&size))
969         return buf;
970     return (char*)NULL;
971 }
972
973 int
974 chown(const char *path, uid_t owner, gid_t group)
975 {
976     /* XXX noop */
977     return 0;
978 }
979
980 /*
981  * XXX this needs strengthening  (for PerlIO)
982  *   -- BKS, 11-11-200
983 */
984 int mkstemp(const char *path)
985 {
986     dTHX;
987     char buf[MAX_PATH+1];
988     int i = 0, fd = -1;
989
990 retry:
991     if (i++ > 10) { /* give up */
992         errno = ENOENT;
993         return -1;
994     }
995     if (!GetTempFileNameA((LPCSTR)path, "plr", 1, buf)) {
996         errno = ENOENT;
997         return -1;
998     }
999     fd = PerlLIO_open3(buf, O_CREAT|O_RDWR|O_EXCL, 0600);
1000     if (fd == -1)
1001         goto retry;
1002     return fd;
1003 }
1004
1005 static long
1006 find_pid(int pid)
1007 {
1008     dTHXo;
1009     long child = w32_num_children;
1010     while (--child >= 0) {
1011         if (w32_child_pids[child] == pid)
1012             return child;
1013     }
1014     return -1;
1015 }
1016
1017 static void
1018 remove_dead_process(long child)
1019 {
1020     if (child >= 0) {
1021         dTHXo;
1022         CloseHandle(w32_child_handles[child]);
1023         Move(&w32_child_handles[child+1], &w32_child_handles[child],
1024              (w32_num_children-child-1), HANDLE);
1025         Move(&w32_child_pids[child+1], &w32_child_pids[child],
1026              (w32_num_children-child-1), DWORD);
1027         w32_num_children--;
1028     }
1029 }
1030
1031 #ifdef USE_ITHREADS
1032 static long
1033 find_pseudo_pid(int pid)
1034 {
1035     dTHXo;
1036     long child = w32_num_pseudo_children;
1037     while (--child >= 0) {
1038         if (w32_pseudo_child_pids[child] == pid)
1039             return child;
1040     }
1041     return -1;
1042 }
1043
1044 static void
1045 remove_dead_pseudo_process(long child)
1046 {
1047     if (child >= 0) {
1048         dTHXo;
1049         CloseHandle(w32_pseudo_child_handles[child]);
1050         Move(&w32_pseudo_child_handles[child+1], &w32_pseudo_child_handles[child],
1051              (w32_num_pseudo_children-child-1), HANDLE);
1052         Move(&w32_pseudo_child_pids[child+1], &w32_pseudo_child_pids[child],
1053              (w32_num_pseudo_children-child-1), DWORD);
1054         w32_num_pseudo_children--;
1055     }
1056 }
1057 #endif
1058
1059 DllExport int
1060 win32_kill(int pid, int sig)
1061 {
1062     dTHXo;
1063     HANDLE hProcess;
1064     long child;
1065 #ifdef USE_ITHREADS
1066     if (pid < 0) {
1067         /* it is a pseudo-forked child */
1068         child = find_pseudo_pid(-pid);
1069         if (child >= 0) {
1070             if (!sig)
1071                 return 0;
1072             hProcess = w32_pseudo_child_handles[child];
1073             if (TerminateThread(hProcess, sig)) {
1074                 remove_dead_pseudo_process(child);
1075                 return 0;
1076             }
1077         }
1078         else if (IsWin95()) {
1079             pid = -pid;
1080             goto alien_process;
1081         }
1082     }
1083     else
1084 #endif
1085     {
1086         child = find_pid(pid);
1087         if (child >= 0) {
1088             if (!sig)
1089                 return 0;
1090             hProcess = w32_child_handles[child];
1091             if (TerminateProcess(hProcess, sig)) {
1092                 remove_dead_process(child);
1093                 return 0;
1094             }
1095         }
1096         else {
1097 alien_process:
1098             hProcess = OpenProcess(PROCESS_ALL_ACCESS, TRUE,
1099                                    (IsWin95() ? -pid : pid));
1100             if (hProcess) {
1101                 if (!sig)
1102                     return 0;
1103                 if (TerminateProcess(hProcess, sig)) {
1104                     CloseHandle(hProcess);
1105                     return 0;
1106                 }
1107             }
1108         }
1109     }
1110     errno = EINVAL;
1111     return -1;
1112 }
1113
1114 /*
1115  * File system stuff
1116  */
1117
1118 DllExport unsigned int
1119 win32_sleep(unsigned int t)
1120 {
1121     Sleep(t*1000);
1122     return 0;
1123 }
1124
1125 DllExport int
1126 win32_stat(const char *path, struct stat *sbuf)
1127 {
1128     dTHXo;
1129     char        buffer[MAX_PATH+1]; 
1130     int         l = strlen(path);
1131     int         res;
1132     WCHAR       wbuffer[MAX_PATH+1];
1133     WCHAR*      pwbuffer;
1134     HANDLE      handle;
1135     int         nlink = 1;
1136
1137     if (l > 1) {
1138         switch(path[l - 1]) {
1139         /* FindFirstFile() and stat() are buggy with a trailing
1140          * backslash, so change it to a forward slash :-( */
1141         case '\\':
1142             strncpy(buffer, path, l-1);
1143             buffer[l - 1] = '/';
1144             buffer[l] = '\0';
1145             path = buffer;
1146             break;
1147         /* FindFirstFile() is buggy with "x:", so add a dot :-( */
1148         case ':':
1149             if (l == 2 && isALPHA(path[0])) {
1150                 buffer[0] = path[0];
1151                 buffer[1] = ':';
1152                 buffer[2] = '.';
1153                 buffer[3] = '\0';
1154                 l = 3;
1155                 path = buffer;
1156             }
1157             break;
1158         }
1159     }
1160
1161     /* We *must* open & close the file once; otherwise file attribute changes */
1162     /* might not yet have propagated to "other" hard links of the same file.  */
1163     /* This also gives us an opportunity to determine the number of links.    */
1164     if (USING_WIDE()) {
1165         A2WHELPER(path, wbuffer, sizeof(wbuffer));
1166         pwbuffer = PerlDir_mapW(wbuffer);
1167         handle = CreateFileW(pwbuffer, 0, 0, NULL, OPEN_EXISTING, 0, NULL);
1168     }
1169     else {
1170         path = PerlDir_mapA(path);
1171         l = strlen(path);
1172         handle = CreateFileA(path, 0, 0, NULL, OPEN_EXISTING, 0, NULL);
1173     }
1174     if (handle != INVALID_HANDLE_VALUE) {
1175         BY_HANDLE_FILE_INFORMATION bhi;
1176         if (GetFileInformationByHandle(handle, &bhi))
1177             nlink = bhi.nNumberOfLinks;
1178         CloseHandle(handle);
1179     }
1180
1181     /* pwbuffer or path will be mapped correctly above */
1182     if (USING_WIDE()) {
1183         res = _wstat(pwbuffer, (struct _stat *)sbuf);
1184     }
1185     else {
1186         res = stat(path, sbuf);
1187     }
1188     sbuf->st_nlink = nlink;
1189
1190     if (res < 0) {
1191         /* CRT is buggy on sharenames, so make sure it really isn't.
1192          * XXX using GetFileAttributesEx() will enable us to set
1193          * sbuf->st_*time (but note that's not available on the
1194          * Windows of 1995) */
1195         DWORD r;
1196         if (USING_WIDE()) {
1197             r = GetFileAttributesW(pwbuffer);
1198         }
1199         else {
1200             r = GetFileAttributesA(path);
1201         }
1202         if (r != 0xffffffff && (r & FILE_ATTRIBUTE_DIRECTORY)) {
1203             /* sbuf may still contain old garbage since stat() failed */
1204             Zero(sbuf, 1, struct stat);
1205             sbuf->st_mode = S_IFDIR | S_IREAD;
1206             errno = 0;
1207             if (!(r & FILE_ATTRIBUTE_READONLY))
1208                 sbuf->st_mode |= S_IWRITE | S_IEXEC;
1209             return 0;
1210         }
1211     }
1212     else {
1213         if (l == 3 && isALPHA(path[0]) && path[1] == ':'
1214             && (path[2] == '\\' || path[2] == '/'))
1215         {
1216             /* The drive can be inaccessible, some _stat()s are buggy */
1217             if (USING_WIDE()
1218                 ? !GetVolumeInformationW(pwbuffer,NULL,0,NULL,NULL,NULL,NULL,0)
1219                 : !GetVolumeInformationA(path,NULL,0,NULL,NULL,NULL,NULL,0)) {
1220                 errno = ENOENT;
1221                 return -1;
1222             }
1223         }
1224 #ifdef __BORLANDC__
1225         if (S_ISDIR(sbuf->st_mode))
1226             sbuf->st_mode |= S_IWRITE | S_IEXEC;
1227         else if (S_ISREG(sbuf->st_mode)) {
1228             int perms;
1229             if (l >= 4 && path[l-4] == '.') {
1230                 const char *e = path + l - 3;
1231                 if (strnicmp(e,"exe",3)
1232                     && strnicmp(e,"bat",3)
1233                     && strnicmp(e,"com",3)
1234                     && (IsWin95() || strnicmp(e,"cmd",3)))
1235                     sbuf->st_mode &= ~S_IEXEC;
1236                 else
1237                     sbuf->st_mode |= S_IEXEC;
1238             }
1239             else
1240                 sbuf->st_mode &= ~S_IEXEC;
1241             /* Propagate permissions to _group_ and _others_ */
1242             perms = sbuf->st_mode & (S_IREAD|S_IWRITE|S_IEXEC);
1243             sbuf->st_mode |= (perms>>3) | (perms>>6);
1244         }
1245 #endif
1246     }
1247     return res;
1248 }
1249
1250 /* Find the longname of a given path.  path is destructively modified.
1251  * It should have space for at least MAX_PATH characters. */
1252 DllExport char *
1253 win32_longpath(char *path)
1254 {
1255     WIN32_FIND_DATA fdata;
1256     HANDLE fhand;
1257     char tmpbuf[MAX_PATH+1];
1258     char *tmpstart = tmpbuf;
1259     char *start = path;
1260     char sep;
1261     if (!path)
1262         return Nullch;
1263
1264     /* drive prefix */
1265     if (isALPHA(path[0]) && path[1] == ':' &&
1266         (path[2] == '/' || path[2] == '\\'))
1267     {
1268         start = path + 2;
1269         *tmpstart++ = path[0];
1270         *tmpstart++ = ':';
1271     }
1272     /* UNC prefix */
1273     else if ((path[0] == '/' || path[0] == '\\') &&
1274              (path[1] == '/' || path[1] == '\\'))
1275     {
1276         start = path + 2;
1277         *tmpstart++ = path[0];
1278         *tmpstart++ = path[1];
1279         /* copy machine name */
1280         while (*start && *start != '/' && *start != '\\')
1281             *tmpstart++ = *start++;
1282         if (*start) {
1283             *tmpstart++ = *start;
1284             start++;
1285             /* copy share name */
1286             while (*start && *start != '/' && *start != '\\')
1287                 *tmpstart++ = *start++;
1288         }
1289     }
1290     sep = *start++;
1291     if (sep == '/' || sep == '\\')
1292         *tmpstart++ = sep;
1293     *tmpstart = '\0';
1294     while (sep) {
1295         /* walk up to slash */
1296         while (*start && *start != '/' && *start != '\\')
1297             ++start;
1298
1299         /* discard doubled slashes */
1300         while (*start && (start[1] == '/' || start[1] == '\\'))
1301             ++start;
1302         sep = *start;
1303
1304         /* stop and find full name of component */
1305         *start = '\0';
1306         fhand = FindFirstFile(path,&fdata);
1307         if (fhand != INVALID_HANDLE_VALUE) {
1308             strcpy(tmpstart, fdata.cFileName);
1309             tmpstart += strlen(fdata.cFileName);
1310             if (sep)
1311                 *tmpstart++ = sep;
1312             *tmpstart = '\0';
1313             *start++ = sep;
1314             FindClose(fhand);
1315         }
1316         else {
1317             /* failed a step, just return without side effects */
1318             /*PerlIO_printf(Perl_debug_log, "Failed to find %s\n", path);*/
1319             *start = sep;
1320             return Nullch;
1321         }
1322     }
1323     strcpy(path,tmpbuf);
1324     return path;
1325 }
1326
1327 #ifndef USE_WIN32_RTL_ENV
1328
1329 DllExport char *
1330 win32_getenv(const char *name)
1331 {
1332     dTHXo;
1333     WCHAR wBuffer[MAX_PATH+1];
1334     DWORD needlen;
1335     SV *curitem = Nullsv;
1336
1337     if (USING_WIDE()) {
1338         A2WHELPER(name, wBuffer, sizeof(wBuffer));
1339         needlen = GetEnvironmentVariableW(wBuffer, NULL, 0);
1340     }
1341     else
1342         needlen = GetEnvironmentVariableA(name,NULL,0);
1343     if (needlen != 0) {
1344         curitem = sv_2mortal(newSVpvn("", 0));
1345         if (USING_WIDE()) {
1346             SV *acuritem;
1347             do {
1348                 SvGROW(curitem, (needlen+1)*sizeof(WCHAR));
1349                 needlen = GetEnvironmentVariableW(wBuffer,
1350                                                   (WCHAR*)SvPVX(curitem),
1351                                                   needlen);
1352             } while (needlen >= SvLEN(curitem)/sizeof(WCHAR));
1353             SvCUR_set(curitem, (needlen*sizeof(WCHAR))+1);
1354             acuritem = sv_2mortal(newSVsv(curitem));
1355             W2AHELPER((WCHAR*)SvPVX(acuritem), SvPVX(curitem), SvCUR(curitem));
1356         }
1357         else {
1358             do {
1359                 SvGROW(curitem, needlen+1);
1360                 needlen = GetEnvironmentVariableA(name,SvPVX(curitem),
1361                                                   needlen);
1362             } while (needlen >= SvLEN(curitem));
1363             SvCUR_set(curitem, needlen);
1364         }
1365     }
1366     else {
1367         /* allow any environment variables that begin with 'PERL'
1368            to be stored in the registry */
1369         if (strncmp(name, "PERL", 4) == 0)
1370             (void)get_regstr(name, &curitem);
1371     }
1372     if (curitem && SvCUR(curitem))
1373         return SvPVX(curitem);
1374
1375     return Nullch;
1376 }
1377
1378 DllExport int
1379 win32_putenv(const char *name)
1380 {
1381     dTHXo;
1382     char* curitem;
1383     char* val;
1384     WCHAR* wCuritem;
1385     WCHAR* wVal;
1386     int length, relval = -1;
1387
1388     if (name) {
1389         if (USING_WIDE()) {
1390             length = strlen(name)+1;
1391             New(1309,wCuritem,length,WCHAR);
1392             A2WHELPER(name, wCuritem, length*sizeof(WCHAR));
1393             wVal = wcschr(wCuritem, '=');
1394             if (wVal) {
1395                 *wVal++ = '\0';
1396                 if (SetEnvironmentVariableW(wCuritem, *wVal ? wVal : NULL))
1397                     relval = 0;
1398             }
1399             Safefree(wCuritem);
1400         }
1401         else {
1402             New(1309,curitem,strlen(name)+1,char);
1403             strcpy(curitem, name);
1404             val = strchr(curitem, '=');
1405             if (val) {
1406                 /* The sane way to deal with the environment.
1407                  * Has these advantages over putenv() & co.:
1408                  *  * enables us to store a truly empty value in the
1409                  *    environment (like in UNIX).
1410                  *  * we don't have to deal with RTL globals, bugs and leaks.
1411                  *  * Much faster.
1412                  * Why you may want to enable USE_WIN32_RTL_ENV:
1413                  *  * environ[] and RTL functions will not reflect changes,
1414                  *    which might be an issue if extensions want to access
1415                  *    the env. via RTL.  This cuts both ways, since RTL will
1416                  *    not see changes made by extensions that call the Win32
1417                  *    functions directly, either.
1418                  * GSAR 97-06-07
1419                  */
1420                 *val++ = '\0';
1421                 if (SetEnvironmentVariableA(curitem, *val ? val : NULL))
1422                     relval = 0;
1423             }
1424             Safefree(curitem);
1425         }
1426     }
1427     return relval;
1428 }
1429
1430 #endif
1431
1432 static long
1433 filetime_to_clock(PFILETIME ft)
1434 {
1435     __int64 qw = ft->dwHighDateTime;
1436     qw <<= 32;
1437     qw |= ft->dwLowDateTime;
1438     qw /= 10000;  /* File time ticks at 0.1uS, clock at 1mS */
1439     return (long) qw;
1440 }
1441
1442 DllExport int
1443 win32_times(struct tms *timebuf)
1444 {
1445     FILETIME user;
1446     FILETIME kernel;
1447     FILETIME dummy;
1448     if (GetProcessTimes(GetCurrentProcess(), &dummy, &dummy, 
1449                         &kernel,&user)) {
1450         timebuf->tms_utime = filetime_to_clock(&user);
1451         timebuf->tms_stime = filetime_to_clock(&kernel);
1452         timebuf->tms_cutime = 0;
1453         timebuf->tms_cstime = 0;
1454         
1455     } else { 
1456         /* That failed - e.g. Win95 fallback to clock() */
1457         clock_t t = clock();
1458         timebuf->tms_utime = t;
1459         timebuf->tms_stime = 0;
1460         timebuf->tms_cutime = 0;
1461         timebuf->tms_cstime = 0;
1462     }
1463     return 0;
1464 }
1465
1466 /* fix utime() so it works on directories in NT */
1467 static BOOL
1468 filetime_from_time(PFILETIME pFileTime, time_t Time)
1469 {
1470     struct tm *pTM = localtime(&Time);
1471     SYSTEMTIME SystemTime;
1472     FILETIME LocalTime;
1473
1474     if (pTM == NULL)
1475         return FALSE;
1476
1477     SystemTime.wYear   = pTM->tm_year + 1900;
1478     SystemTime.wMonth  = pTM->tm_mon + 1;
1479     SystemTime.wDay    = pTM->tm_mday;
1480     SystemTime.wHour   = pTM->tm_hour;
1481     SystemTime.wMinute = pTM->tm_min;
1482     SystemTime.wSecond = pTM->tm_sec;
1483     SystemTime.wMilliseconds = 0;
1484
1485     return SystemTimeToFileTime(&SystemTime, &LocalTime) &&
1486            LocalFileTimeToFileTime(&LocalTime, pFileTime);
1487 }
1488
1489 DllExport int
1490 win32_unlink(const char *filename)
1491 {
1492     dTHXo;
1493     int ret;
1494     DWORD attrs;
1495
1496     if (USING_WIDE()) {
1497         WCHAR wBuffer[MAX_PATH+1];
1498         WCHAR* pwBuffer;
1499
1500         A2WHELPER(filename, wBuffer, sizeof(wBuffer));
1501         pwBuffer = PerlDir_mapW(wBuffer);
1502         attrs = GetFileAttributesW(pwBuffer);
1503         if (attrs == 0xFFFFFFFF)
1504             goto fail;
1505         if (attrs & FILE_ATTRIBUTE_READONLY) {
1506             (void)SetFileAttributesW(pwBuffer, attrs & ~FILE_ATTRIBUTE_READONLY);
1507             ret = _wunlink(pwBuffer);
1508             if (ret == -1)
1509                 (void)SetFileAttributesW(pwBuffer, attrs);
1510         }
1511         else
1512             ret = _wunlink(pwBuffer);
1513     }
1514     else {
1515         filename = PerlDir_mapA(filename);
1516         attrs = GetFileAttributesA(filename);
1517         if (attrs == 0xFFFFFFFF)
1518             goto fail;
1519         if (attrs & FILE_ATTRIBUTE_READONLY) {
1520             (void)SetFileAttributesA(filename, attrs & ~FILE_ATTRIBUTE_READONLY);
1521             ret = unlink(filename);
1522             if (ret == -1)
1523                 (void)SetFileAttributesA(filename, attrs);
1524         }
1525         else
1526             ret = unlink(filename);
1527     }
1528     return ret;
1529 fail:
1530     errno = ENOENT;
1531     return -1;
1532 }
1533
1534 DllExport int
1535 win32_utime(const char *filename, struct utimbuf *times)
1536 {
1537     dTHXo;
1538     HANDLE handle;
1539     FILETIME ftCreate;
1540     FILETIME ftAccess;
1541     FILETIME ftWrite;
1542     struct utimbuf TimeBuffer;
1543     WCHAR wbuffer[MAX_PATH+1];
1544     WCHAR* pwbuffer;
1545
1546     int rc;
1547     if (USING_WIDE()) {
1548         A2WHELPER(filename, wbuffer, sizeof(wbuffer));
1549         pwbuffer = PerlDir_mapW(wbuffer);
1550         rc = _wutime(pwbuffer, (struct _utimbuf*)times);
1551     }
1552     else {
1553         filename = PerlDir_mapA(filename);
1554         rc = utime(filename, times);
1555     }
1556     /* EACCES: path specifies directory or readonly file */
1557     if (rc == 0 || errno != EACCES /* || !IsWinNT() */)
1558         return rc;
1559
1560     if (times == NULL) {
1561         times = &TimeBuffer;
1562         time(&times->actime);
1563         times->modtime = times->actime;
1564     }
1565
1566     /* This will (and should) still fail on readonly files */
1567     if (USING_WIDE()) {
1568         handle = CreateFileW(pwbuffer, GENERIC_READ | GENERIC_WRITE,
1569                             FILE_SHARE_READ | FILE_SHARE_DELETE, NULL,
1570                             OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
1571     }
1572     else {
1573         handle = CreateFileA(filename, GENERIC_READ | GENERIC_WRITE,
1574                             FILE_SHARE_READ | FILE_SHARE_DELETE, NULL,
1575                             OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
1576     }
1577     if (handle == INVALID_HANDLE_VALUE)
1578         return rc;
1579
1580     if (GetFileTime(handle, &ftCreate, &ftAccess, &ftWrite) &&
1581         filetime_from_time(&ftAccess, times->actime) &&
1582         filetime_from_time(&ftWrite, times->modtime) &&
1583         SetFileTime(handle, &ftCreate, &ftAccess, &ftWrite))
1584     {
1585         rc = 0;
1586     }
1587
1588     CloseHandle(handle);
1589     return rc;
1590 }
1591
1592 DllExport int
1593 win32_uname(struct utsname *name)
1594 {
1595     struct hostent *hep;
1596     STRLEN nodemax = sizeof(name->nodename)-1;
1597     OSVERSIONINFO osver;
1598
1599     memset(&osver, 0, sizeof(OSVERSIONINFO));
1600     osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
1601     if (GetVersionEx(&osver)) {
1602         /* sysname */
1603         switch (osver.dwPlatformId) {
1604         case VER_PLATFORM_WIN32_WINDOWS:
1605             strcpy(name->sysname, "Windows");
1606             break;
1607         case VER_PLATFORM_WIN32_NT:
1608             strcpy(name->sysname, "Windows NT");
1609             break;
1610         case VER_PLATFORM_WIN32s:
1611             strcpy(name->sysname, "Win32s");
1612             break;
1613         default:
1614             strcpy(name->sysname, "Win32 Unknown");
1615             break;
1616         }
1617
1618         /* release */
1619         sprintf(name->release, "%d.%d",
1620                 osver.dwMajorVersion, osver.dwMinorVersion);
1621
1622         /* version */
1623         sprintf(name->version, "Build %d",
1624                 osver.dwPlatformId == VER_PLATFORM_WIN32_NT
1625                 ? osver.dwBuildNumber : (osver.dwBuildNumber & 0xffff));
1626         if (osver.szCSDVersion[0]) {
1627             char *buf = name->version + strlen(name->version);
1628             sprintf(buf, " (%s)", osver.szCSDVersion);
1629         }
1630     }
1631     else {
1632         *name->sysname = '\0';
1633         *name->version = '\0';
1634         *name->release = '\0';
1635     }
1636
1637     /* nodename */
1638     hep = win32_gethostbyname("localhost");
1639     if (hep) {
1640         STRLEN len = strlen(hep->h_name);
1641         if (len <= nodemax) {
1642             strcpy(name->nodename, hep->h_name);
1643         }
1644         else {
1645             strncpy(name->nodename, hep->h_name, nodemax);
1646             name->nodename[nodemax] = '\0';
1647         }
1648     }
1649     else {
1650         DWORD sz = nodemax;
1651         if (!GetComputerName(name->nodename, &sz))
1652             *name->nodename = '\0';
1653     }
1654
1655     /* machine (architecture) */
1656     {
1657         SYSTEM_INFO info;
1658         char *arch;
1659         GetSystemInfo(&info);
1660
1661 #if (defined(__BORLANDC__)&&(__BORLANDC__<=0x520)) || defined(__MINGW32__)
1662         switch (info.u.s.wProcessorArchitecture) {
1663 #else
1664         switch (info.wProcessorArchitecture) {
1665 #endif
1666         case PROCESSOR_ARCHITECTURE_INTEL:
1667             arch = "x86"; break;
1668         case PROCESSOR_ARCHITECTURE_MIPS:
1669             arch = "mips"; break;
1670         case PROCESSOR_ARCHITECTURE_ALPHA:
1671             arch = "alpha"; break;
1672         case PROCESSOR_ARCHITECTURE_PPC:
1673             arch = "ppc"; break;
1674         default:
1675             arch = "unknown"; break;
1676         }
1677         strcpy(name->machine, arch);
1678     }
1679     return 0;
1680 }
1681
1682 DllExport int
1683 win32_waitpid(int pid, int *status, int flags)
1684 {
1685     dTHXo;
1686     DWORD timeout = (flags & WNOHANG) ? 0 : INFINITE;
1687     int retval = -1;
1688     long child;
1689     if (pid == -1)                              /* XXX threadid == 1 ? */
1690         return win32_wait(status);
1691 #ifdef USE_ITHREADS
1692     else if (pid < 0) {
1693         child = find_pseudo_pid(-pid);
1694         if (child >= 0) {
1695             HANDLE hThread = w32_pseudo_child_handles[child];
1696             DWORD waitcode = WaitForSingleObject(hThread, timeout);
1697             if (waitcode == WAIT_TIMEOUT) {
1698                 return 0;
1699             }
1700             else if (waitcode != WAIT_FAILED) {
1701                 if (GetExitCodeThread(hThread, &waitcode)) {
1702                     *status = (int)((waitcode & 0xff) << 8);
1703                     retval = (int)w32_pseudo_child_pids[child];
1704                     remove_dead_pseudo_process(child);
1705                     return -retval;
1706                 }
1707             }
1708             else
1709                 errno = ECHILD;
1710         }
1711         else if (IsWin95()) {
1712             pid = -pid;
1713             goto alien_process;
1714         }
1715     }
1716 #endif
1717     else {
1718         HANDLE hProcess;
1719         DWORD waitcode;
1720         child = find_pid(pid);
1721         if (child >= 0) {
1722             hProcess = w32_child_handles[child];
1723             waitcode = WaitForSingleObject(hProcess, timeout);
1724             if (waitcode == WAIT_TIMEOUT) {
1725                 return 0;
1726             }
1727             else if (waitcode != WAIT_FAILED) {
1728                 if (GetExitCodeProcess(hProcess, &waitcode)) {
1729                     *status = (int)((waitcode & 0xff) << 8);
1730                     retval = (int)w32_child_pids[child];
1731                     remove_dead_process(child);
1732                     return retval;
1733                 }
1734             }
1735             else
1736                 errno = ECHILD;
1737         }
1738         else {
1739 alien_process:
1740             hProcess = OpenProcess(PROCESS_ALL_ACCESS, TRUE,
1741                                    (IsWin95() ? -pid : pid));
1742             if (hProcess) {
1743                 waitcode = WaitForSingleObject(hProcess, timeout);
1744                 if (waitcode == WAIT_TIMEOUT) {
1745                     return 0;
1746                 }
1747                 else if (waitcode != WAIT_FAILED) {
1748                     if (GetExitCodeProcess(hProcess, &waitcode)) {
1749                         *status = (int)((waitcode & 0xff) << 8);
1750                         CloseHandle(hProcess);
1751                         return pid;
1752                     }
1753                 }
1754                 CloseHandle(hProcess);
1755             }
1756             else
1757                 errno = ECHILD;
1758         }
1759     }
1760     return retval >= 0 ? pid : retval;                
1761 }
1762
1763 DllExport int
1764 win32_wait(int *status)
1765 {
1766     /* XXX this wait emulation only knows about processes
1767      * spawned via win32_spawnvp(P_NOWAIT, ...).
1768      */
1769     dTHXo;
1770     int i, retval;
1771     DWORD exitcode, waitcode;
1772
1773 #ifdef USE_ITHREADS
1774     if (w32_num_pseudo_children) {
1775         waitcode = WaitForMultipleObjects(w32_num_pseudo_children,
1776                                           w32_pseudo_child_handles,
1777                                           FALSE,
1778                                           INFINITE);
1779         if (waitcode != WAIT_FAILED) {
1780             if (waitcode >= WAIT_ABANDONED_0
1781                 && waitcode < WAIT_ABANDONED_0 + w32_num_pseudo_children)
1782                 i = waitcode - WAIT_ABANDONED_0;
1783             else
1784                 i = waitcode - WAIT_OBJECT_0;
1785             if (GetExitCodeThread(w32_pseudo_child_handles[i], &exitcode)) {
1786                 *status = (int)((exitcode & 0xff) << 8);
1787                 retval = (int)w32_pseudo_child_pids[i];
1788                 remove_dead_pseudo_process(i);
1789                 return -retval;
1790             }
1791         }
1792     }
1793 #endif
1794
1795     if (!w32_num_children) {
1796         errno = ECHILD;
1797         return -1;
1798     }
1799
1800     /* if a child exists, wait for it to die */
1801     waitcode = WaitForMultipleObjects(w32_num_children,
1802                                       w32_child_handles,
1803                                       FALSE,
1804                                       INFINITE);
1805     if (waitcode != WAIT_FAILED) {
1806         if (waitcode >= WAIT_ABANDONED_0
1807             && waitcode < WAIT_ABANDONED_0 + w32_num_children)
1808             i = waitcode - WAIT_ABANDONED_0;
1809         else
1810             i = waitcode - WAIT_OBJECT_0;
1811         if (GetExitCodeProcess(w32_child_handles[i], &exitcode) ) {
1812             *status = (int)((exitcode & 0xff) << 8);
1813             retval = (int)w32_child_pids[i];
1814             remove_dead_process(i);
1815             return retval;
1816         }
1817     }
1818
1819 FAILED:
1820     errno = GetLastError();
1821     return -1;
1822 }
1823
1824 #ifndef PERL_OBJECT
1825
1826 static UINT timerid = 0;
1827
1828 static VOID CALLBACK TimerProc(HWND win, UINT msg, UINT id, DWORD time)
1829 {
1830     dTHXo;
1831     KillTimer(NULL,timerid);
1832     timerid=0;  
1833     CALL_FPTR(PL_sighandlerp)(14);
1834 }
1835 #endif  /* !PERL_OBJECT */
1836
1837 DllExport unsigned int
1838 win32_alarm(unsigned int sec)
1839 {
1840 #ifndef PERL_OBJECT
1841     /* 
1842      * the 'obvious' implentation is SetTimer() with a callback
1843      * which does whatever receiving SIGALRM would do 
1844      * we cannot use SIGALRM even via raise() as it is not 
1845      * one of the supported codes in <signal.h>
1846      *
1847      * Snag is unless something is looking at the message queue
1848      * nothing happens :-(
1849      */ 
1850     dTHXo;
1851     if (sec)
1852      {
1853       timerid = SetTimer(NULL,timerid,sec*1000,(TIMERPROC)TimerProc);
1854       if (!timerid)
1855        Perl_croak_nocontext("Cannot set timer");
1856      } 
1857     else
1858      {
1859       if (timerid)
1860        {
1861         KillTimer(NULL,timerid);
1862         timerid=0;  
1863        }
1864      }
1865 #endif  /* !PERL_OBJECT */
1866     return 0;
1867 }
1868
1869 #ifdef HAVE_DES_FCRYPT
1870 extern char *   des_fcrypt(const char *txt, const char *salt, char *cbuf);
1871 #endif
1872
1873 DllExport char *
1874 win32_crypt(const char *txt, const char *salt)
1875 {
1876     dTHXo;
1877 #ifdef HAVE_DES_FCRYPT
1878     dTHR;
1879     return des_fcrypt(txt, salt, w32_crypt_buffer);
1880 #else
1881     Perl_croak(aTHX_ "The crypt() function is unimplemented due to excessive paranoia.");
1882     return Nullch;
1883 #endif
1884 }
1885
1886 #ifdef USE_FIXED_OSFHANDLE
1887
1888 #define FOPEN                   0x01    /* file handle open */
1889 #define FNOINHERIT              0x10    /* file handle opened O_NOINHERIT */
1890 #define FAPPEND                 0x20    /* file handle opened O_APPEND */
1891 #define FDEV                    0x40    /* file handle refers to device */
1892 #define FTEXT                   0x80    /* file handle is in text mode */
1893
1894 /***
1895 *int my_open_osfhandle(long osfhandle, int flags) - open C Runtime file handle
1896 *
1897 *Purpose:
1898 *       This function allocates a free C Runtime file handle and associates
1899 *       it with the Win32 HANDLE specified by the first parameter. This is a
1900 *       temperary fix for WIN95's brain damage GetFileType() error on socket
1901 *       we just bypass that call for socket
1902 *
1903 *       This works with MSVC++ 4.0+ or GCC/Mingw32
1904 *
1905 *Entry:
1906 *       long osfhandle - Win32 HANDLE to associate with C Runtime file handle.
1907 *       int flags      - flags to associate with C Runtime file handle.
1908 *
1909 *Exit:
1910 *       returns index of entry in fh, if successful
1911 *       return -1, if no free entry is found
1912 *
1913 *Exceptions:
1914 *
1915 *******************************************************************************/
1916
1917 /*
1918  * we fake up some parts of the CRT that aren't exported by MSVCRT.dll
1919  * this lets sockets work on Win9X with GCC and should fix the problems
1920  * with perl95.exe
1921  *      -- BKS, 1-23-2000
1922 */
1923
1924 /* create an ioinfo entry, kill its handle, and steal the entry */
1925
1926 static int
1927 _alloc_osfhnd(void)
1928 {
1929     HANDLE hF = CreateFile("NUL", 0, 0, NULL, OPEN_ALWAYS, 0, NULL);
1930     int fh = _open_osfhandle((long)hF, 0);
1931     CloseHandle(hF);
1932     if (fh == -1)
1933         return fh;
1934     EnterCriticalSection(&(_pioinfo(fh)->lock));
1935     return fh;
1936 }
1937
1938 static int
1939 my_open_osfhandle(long osfhandle, int flags)
1940 {
1941     int fh;
1942     char fileflags;             /* _osfile flags */
1943
1944     /* copy relevant flags from second parameter */
1945     fileflags = FDEV;
1946
1947     if (flags & O_APPEND)
1948         fileflags |= FAPPEND;
1949
1950     if (flags & O_TEXT)
1951         fileflags |= FTEXT;
1952
1953     if (flags & O_NOINHERIT)
1954         fileflags |= FNOINHERIT;
1955
1956     /* attempt to allocate a C Runtime file handle */
1957     if ((fh = _alloc_osfhnd()) == -1) {
1958         errno = EMFILE;         /* too many open files */
1959         _doserrno = 0L;         /* not an OS error */
1960         return -1;              /* return error to caller */
1961     }
1962
1963     /* the file is open. now, set the info in _osfhnd array */
1964     _set_osfhnd(fh, osfhandle);
1965
1966     fileflags |= FOPEN;         /* mark as open */
1967
1968     _osfile(fh) = fileflags;    /* set osfile entry */
1969     LeaveCriticalSection(&_pioinfo(fh)->lock);
1970
1971     return fh;                  /* return handle */
1972 }
1973
1974 #endif  /* USE_FIXED_OSFHANDLE */
1975
1976 /* simulate flock by locking a range on the file */
1977
1978 #define LK_ERR(f,i)     ((f) ? (i = 0) : (errno = GetLastError()))
1979 #define LK_LEN          0xffff0000
1980
1981 DllExport int
1982 win32_flock(int fd, int oper)
1983 {
1984     OVERLAPPED o;
1985     int i = -1;
1986     HANDLE fh;
1987
1988     if (!IsWinNT()) {
1989         dTHXo;
1990         Perl_croak_nocontext("flock() unimplemented on this platform");
1991         return -1;
1992     }
1993     fh = (HANDLE)_get_osfhandle(fd);
1994     memset(&o, 0, sizeof(o));
1995
1996     switch(oper) {
1997     case LOCK_SH:               /* shared lock */
1998         LK_ERR(LockFileEx(fh, 0, 0, LK_LEN, 0, &o),i);
1999         break;
2000     case LOCK_EX:               /* exclusive lock */
2001         LK_ERR(LockFileEx(fh, LOCKFILE_EXCLUSIVE_LOCK, 0, LK_LEN, 0, &o),i);
2002         break;
2003     case LOCK_SH|LOCK_NB:       /* non-blocking shared lock */
2004         LK_ERR(LockFileEx(fh, LOCKFILE_FAIL_IMMEDIATELY, 0, LK_LEN, 0, &o),i);
2005         break;
2006     case LOCK_EX|LOCK_NB:       /* non-blocking exclusive lock */
2007         LK_ERR(LockFileEx(fh,
2008                        LOCKFILE_EXCLUSIVE_LOCK|LOCKFILE_FAIL_IMMEDIATELY,
2009                        0, LK_LEN, 0, &o),i);
2010         break;
2011     case LOCK_UN:               /* unlock lock */
2012         LK_ERR(UnlockFileEx(fh, 0, LK_LEN, 0, &o),i);
2013         break;
2014     default:                    /* unknown */
2015         errno = EINVAL;
2016         break;
2017     }
2018     return i;
2019 }
2020
2021 #undef LK_ERR
2022 #undef LK_LEN
2023
2024 /*
2025  *  redirected io subsystem for all XS modules
2026  *
2027  */
2028
2029 DllExport int *
2030 win32_errno(void)
2031 {
2032     return (&errno);
2033 }
2034
2035 DllExport char ***
2036 win32_environ(void)
2037 {
2038     return (&(_environ));
2039 }
2040
2041 /* the rest are the remapped stdio routines */
2042 DllExport FILE *
2043 win32_stderr(void)
2044 {
2045     return (stderr);
2046 }
2047
2048 DllExport FILE *
2049 win32_stdin(void)
2050 {
2051     return (stdin);
2052 }
2053
2054 DllExport FILE *
2055 win32_stdout()
2056 {
2057     return (stdout);
2058 }
2059
2060 DllExport int
2061 win32_ferror(FILE *fp)
2062 {
2063     return (ferror(fp));
2064 }
2065
2066
2067 DllExport int
2068 win32_feof(FILE *fp)
2069 {
2070     return (feof(fp));
2071 }
2072
2073 /*
2074  * Since the errors returned by the socket error function 
2075  * WSAGetLastError() are not known by the library routine strerror
2076  * we have to roll our own.
2077  */
2078
2079 DllExport char *
2080 win32_strerror(int e) 
2081 {
2082 #ifndef __BORLANDC__            /* Borland intolerance */
2083     extern int sys_nerr;
2084 #endif
2085     DWORD source = 0;
2086
2087     if (e < 0 || e > sys_nerr) {
2088         dTHXo;
2089         if (e < 0)
2090             e = GetLastError();
2091
2092         if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, &source, e, 0,
2093                           w32_strerror_buffer,
2094                           sizeof(w32_strerror_buffer), NULL) == 0) 
2095             strcpy(w32_strerror_buffer, "Unknown Error");
2096
2097         return w32_strerror_buffer;
2098     }
2099     return strerror(e);
2100 }
2101
2102 DllExport void
2103 win32_str_os_error(void *sv, DWORD dwErr)
2104 {
2105     DWORD dwLen;
2106     char *sMsg;
2107     dwLen = FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER
2108                           |FORMAT_MESSAGE_IGNORE_INSERTS
2109                           |FORMAT_MESSAGE_FROM_SYSTEM, NULL,
2110                            dwErr, 0, (char *)&sMsg, 1, NULL);
2111     /* strip trailing whitespace and period */
2112     if (0 < dwLen) {
2113         do {
2114             --dwLen;    /* dwLen doesn't include trailing null */
2115         } while (0 < dwLen && isSPACE(sMsg[dwLen]));
2116         if ('.' != sMsg[dwLen])
2117             dwLen++;
2118         sMsg[dwLen] = '\0';
2119     }
2120     if (0 == dwLen) {
2121         sMsg = (char*)LocalAlloc(0, 64/**sizeof(TCHAR)*/);
2122         if (sMsg)
2123             dwLen = sprintf(sMsg,
2124                             "Unknown error #0x%lX (lookup 0x%lX)",
2125                             dwErr, GetLastError());
2126     }
2127     if (sMsg) {
2128         dTHXo;
2129         sv_setpvn((SV*)sv, sMsg, dwLen);
2130         LocalFree(sMsg);
2131     }
2132 }
2133
2134 DllExport int
2135 win32_fprintf(FILE *fp, const char *format, ...)
2136 {
2137     va_list marker;
2138     va_start(marker, format);     /* Initialize variable arguments. */
2139
2140     return (vfprintf(fp, format, marker));
2141 }
2142
2143 DllExport int
2144 win32_printf(const char *format, ...)
2145 {
2146     va_list marker;
2147     va_start(marker, format);     /* Initialize variable arguments. */
2148
2149     return (vprintf(format, marker));
2150 }
2151
2152 DllExport int
2153 win32_vfprintf(FILE *fp, const char *format, va_list args)
2154 {
2155     return (vfprintf(fp, format, args));
2156 }
2157
2158 DllExport int
2159 win32_vprintf(const char *format, va_list args)
2160 {
2161     return (vprintf(format, args));
2162 }
2163
2164 DllExport size_t
2165 win32_fread(void *buf, size_t size, size_t count, FILE *fp)
2166 {
2167     return fread(buf, size, count, fp);
2168 }
2169
2170 DllExport size_t
2171 win32_fwrite(const void *buf, size_t size, size_t count, FILE *fp)
2172 {
2173     return fwrite(buf, size, count, fp);
2174 }
2175
2176 #define MODE_SIZE 10
2177
2178 DllExport FILE *
2179 win32_fopen(const char *filename, const char *mode)
2180 {
2181     dTHXo;
2182     WCHAR wMode[MODE_SIZE], wBuffer[MAX_PATH+1];
2183     FILE *f;
2184     
2185     if (!*filename)
2186         return NULL;
2187
2188     if (stricmp(filename, "/dev/null")==0)
2189         filename = "NUL";
2190
2191     if (USING_WIDE()) {
2192         A2WHELPER(mode, wMode, sizeof(wMode));
2193         A2WHELPER(filename, wBuffer, sizeof(wBuffer));
2194         f = _wfopen(PerlDir_mapW(wBuffer), wMode);
2195     }
2196     else
2197         f = fopen(PerlDir_mapA(filename), mode);
2198     /* avoid buffering headaches for child processes */
2199     if (f && *mode == 'a')
2200         win32_fseek(f, 0, SEEK_END);
2201     return f;
2202 }
2203
2204 #ifndef USE_SOCKETS_AS_HANDLES
2205 #undef fdopen
2206 #define fdopen my_fdopen
2207 #endif
2208
2209 DllExport FILE *
2210 win32_fdopen(int handle, const char *mode)
2211 {
2212     dTHXo;
2213     WCHAR wMode[MODE_SIZE];
2214     FILE *f;
2215     if (USING_WIDE()) {
2216         A2WHELPER(mode, wMode, sizeof(wMode));
2217         f = _wfdopen(handle, wMode);
2218     }
2219     else
2220         f = fdopen(handle, (char *) mode);
2221     /* avoid buffering headaches for child processes */
2222     if (f && *mode == 'a')
2223         win32_fseek(f, 0, SEEK_END);
2224     return f;
2225 }
2226
2227 DllExport FILE *
2228 win32_freopen(const char *path, const char *mode, FILE *stream)
2229 {
2230     dTHXo;
2231     WCHAR wMode[MODE_SIZE], wBuffer[MAX_PATH+1];
2232     if (stricmp(path, "/dev/null")==0)
2233         path = "NUL";
2234
2235     if (USING_WIDE()) {
2236         A2WHELPER(mode, wMode, sizeof(wMode));
2237         A2WHELPER(path, wBuffer, sizeof(wBuffer));
2238         return _wfreopen(PerlDir_mapW(wBuffer), wMode, stream);
2239     }
2240     return freopen(PerlDir_mapA(path), mode, stream);
2241 }
2242
2243 DllExport int
2244 win32_fclose(FILE *pf)
2245 {
2246     return my_fclose(pf);       /* defined in win32sck.c */
2247 }
2248
2249 DllExport int
2250 win32_fputs(const char *s,FILE *pf)
2251 {
2252     return fputs(s, pf);
2253 }
2254
2255 DllExport int
2256 win32_fputc(int c,FILE *pf)
2257 {
2258     return fputc(c,pf);
2259 }
2260
2261 DllExport int
2262 win32_ungetc(int c,FILE *pf)
2263 {
2264     return ungetc(c,pf);
2265 }
2266
2267 DllExport int
2268 win32_getc(FILE *pf)
2269 {
2270     return getc(pf);
2271 }
2272
2273 DllExport int
2274 win32_fileno(FILE *pf)
2275 {
2276     return fileno(pf);
2277 }
2278
2279 DllExport void
2280 win32_clearerr(FILE *pf)
2281 {
2282     clearerr(pf);
2283     return;
2284 }
2285
2286 DllExport int
2287 win32_fflush(FILE *pf)
2288 {
2289     return fflush(pf);
2290 }
2291
2292 DllExport long
2293 win32_ftell(FILE *pf)
2294 {
2295     return ftell(pf);
2296 }
2297
2298 DllExport int
2299 win32_fseek(FILE *pf,long offset,int origin)
2300 {
2301     return fseek(pf, offset, origin);
2302 }
2303
2304 DllExport int
2305 win32_fgetpos(FILE *pf,fpos_t *p)
2306 {
2307     return fgetpos(pf, p);
2308 }
2309
2310 DllExport int
2311 win32_fsetpos(FILE *pf,const fpos_t *p)
2312 {
2313     return fsetpos(pf, p);
2314 }
2315
2316 DllExport void
2317 win32_rewind(FILE *pf)
2318 {
2319     rewind(pf);
2320     return;
2321 }
2322
2323 DllExport FILE*
2324 win32_tmpfile(void)
2325 {
2326     return tmpfile();
2327 }
2328
2329 DllExport void
2330 win32_abort(void)
2331 {
2332     abort();
2333     return;
2334 }
2335
2336 DllExport int
2337 win32_fstat(int fd,struct stat *sbufptr)
2338 {
2339 #ifdef __BORLANDC__
2340     /* A file designated by filehandle is not shown as accessible
2341      * for write operations, probably because it is opened for reading.
2342      * --Vadim Konovalov
2343      */ 
2344     int rc = fstat(fd,sbufptr);
2345     BY_HANDLE_FILE_INFORMATION bhfi;
2346     if (GetFileInformationByHandle((HANDLE)_get_osfhandle(fd), &bhfi)) {
2347         sbufptr->st_mode &= 0xFE00;
2348         if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)
2349             sbufptr->st_mode |= (S_IREAD + (S_IREAD >> 3) + (S_IREAD >> 6));
2350         else
2351             sbufptr->st_mode |= ((S_IREAD|S_IWRITE) + ((S_IREAD|S_IWRITE) >> 3)
2352               + ((S_IREAD|S_IWRITE) >> 6));
2353     }
2354     return rc;
2355 #else
2356     return fstat(fd,sbufptr);
2357 #endif
2358 }
2359
2360 DllExport int
2361 win32_pipe(int *pfd, unsigned int size, int mode)
2362 {
2363     return _pipe(pfd, size, mode);
2364 }
2365
2366 /*
2367  * a popen() clone that respects PERL5SHELL
2368  *
2369  * changed to return PerlIO* rather than FILE * by BKS, 11-11-2000
2370  */
2371
2372 DllExport PerlIO*
2373 win32_popen(const char *command, const char *mode)
2374 {
2375 #ifdef USE_RTL_POPEN
2376     return _popen(command, mode);
2377 #else
2378     int p[2];
2379     int parent, child;
2380     int stdfd, oldfd;
2381     int ourmode;
2382     int childpid;
2383
2384     /* establish which ends read and write */
2385     if (strchr(mode,'w')) {
2386         stdfd = 0;              /* stdin */
2387         parent = 1;
2388         child = 0;
2389     }
2390     else if (strchr(mode,'r')) {
2391         stdfd = 1;              /* stdout */
2392         parent = 0;
2393         child = 1;
2394     }
2395     else
2396         return NULL;
2397
2398     /* set the correct mode */
2399     if (strchr(mode,'b'))
2400         ourmode = O_BINARY;
2401     else if (strchr(mode,'t'))
2402         ourmode = O_TEXT;
2403     else
2404         ourmode = _fmode & (O_TEXT | O_BINARY);
2405
2406     /* the child doesn't inherit handles */
2407     ourmode |= O_NOINHERIT;
2408
2409     if (win32_pipe( p, 512, ourmode) == -1)
2410         return NULL;
2411
2412     /* save current stdfd */
2413     if ((oldfd = win32_dup(stdfd)) == -1)
2414         goto cleanup;
2415
2416     /* make stdfd go to child end of pipe (implicitly closes stdfd) */
2417     /* stdfd will be inherited by the child */
2418     if (win32_dup2(p[child], stdfd) == -1)
2419         goto cleanup;
2420
2421     /* close the child end in parent */
2422     win32_close(p[child]);
2423
2424     /* start the child */
2425     {
2426         dTHXo;
2427         if ((childpid = do_spawn_nowait((char*)command)) == -1)
2428             goto cleanup;
2429
2430         /* revert stdfd to whatever it was before */
2431         if (win32_dup2(oldfd, stdfd) == -1)
2432             goto cleanup;
2433
2434         /* close saved handle */
2435         win32_close(oldfd);
2436
2437         LOCK_FDPID_MUTEX;
2438         sv_setiv(*av_fetch(w32_fdpid, p[parent], TRUE), childpid);
2439         UNLOCK_FDPID_MUTEX;
2440
2441         /* set process id so that it can be returned by perl's open() */
2442         PL_forkprocess = childpid;
2443     }
2444
2445     /* we have an fd, return a file stream */
2446 #ifdef USE_PERLIO
2447     return (PerlIO_fdopen(p[parent], (char *)mode));
2448 #else
2449     return (fdopen(p[parent], (char *)mode));
2450 #endif
2451
2452 cleanup:
2453     /* we don't need to check for errors here */
2454     win32_close(p[0]);
2455     win32_close(p[1]);
2456     if (oldfd != -1) {
2457         win32_dup2(oldfd, stdfd);
2458         win32_close(oldfd);
2459     }
2460     return (NULL);
2461
2462 #endif /* USE_RTL_POPEN */
2463 }
2464
2465 /*
2466  * pclose() clone
2467  */
2468
2469 DllExport int
2470 win32_pclose(PerlIO *pf)
2471 {
2472 #ifdef USE_RTL_POPEN
2473     return _pclose(pf);
2474 #else
2475     dTHXo;
2476     int childpid, status;
2477     SV *sv;
2478
2479     LOCK_FDPID_MUTEX;
2480     sv = *av_fetch(w32_fdpid, PerlIO_fileno(pf), TRUE);
2481
2482     if (SvIOK(sv))
2483         childpid = SvIVX(sv);
2484     else
2485         childpid = 0;
2486
2487     if (!childpid) {
2488         errno = EBADF;
2489         return -1;
2490     }
2491
2492 #ifdef USE_PERLIO
2493     PerlIO_close(pf);
2494 #else
2495     fclose(pf);
2496 #endif
2497     SvIVX(sv) = 0;
2498     UNLOCK_FDPID_MUTEX;
2499
2500     if (win32_waitpid(childpid, &status, 0) == -1)
2501         return -1;
2502
2503     return status;
2504
2505 #endif /* USE_RTL_POPEN */
2506 }
2507
2508 static BOOL WINAPI
2509 Nt4CreateHardLinkW(
2510     LPCWSTR lpFileName,
2511     LPCWSTR lpExistingFileName,
2512     LPSECURITY_ATTRIBUTES lpSecurityAttributes)
2513 {
2514     HANDLE handle;
2515     WCHAR wFullName[MAX_PATH+1];
2516     LPVOID lpContext = NULL;
2517     WIN32_STREAM_ID StreamId;
2518     DWORD dwSize = (char*)&StreamId.cStreamName - (char*)&StreamId;
2519     DWORD dwWritten;
2520     DWORD dwLen;
2521     BOOL bSuccess;
2522
2523     BOOL (__stdcall *pfnBackupWrite)(HANDLE, LPBYTE, DWORD, LPDWORD,
2524                                      BOOL, BOOL, LPVOID*) =
2525         (BOOL (__stdcall *)(HANDLE, LPBYTE, DWORD, LPDWORD,
2526                             BOOL, BOOL, LPVOID*))
2527         GetProcAddress(GetModuleHandle("kernel32.dll"), "BackupWrite");
2528     if (pfnBackupWrite == NULL)
2529         return 0;
2530
2531     dwLen = GetFullPathNameW(lpFileName, MAX_PATH, wFullName, NULL);
2532     if (dwLen == 0)
2533         return 0;
2534     dwLen = (dwLen+1)*sizeof(WCHAR);
2535
2536     handle = CreateFileW(lpExistingFileName, FILE_WRITE_ATTRIBUTES,
2537                          FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
2538                          NULL, OPEN_EXISTING, 0, NULL);
2539     if (handle == INVALID_HANDLE_VALUE)
2540         return 0;
2541
2542     StreamId.dwStreamId = BACKUP_LINK;
2543     StreamId.dwStreamAttributes = 0;
2544     StreamId.dwStreamNameSize = 0;
2545 #if defined(__BORLANDC__) || defined(__MINGW32__)
2546     StreamId.Size.u.HighPart = 0;
2547     StreamId.Size.u.LowPart = dwLen;
2548 #else
2549     StreamId.Size.HighPart = 0;
2550     StreamId.Size.LowPart = dwLen;
2551 #endif
2552
2553     bSuccess = pfnBackupWrite(handle, (LPBYTE)&StreamId, dwSize, &dwWritten,
2554                               FALSE, FALSE, &lpContext);
2555     if (bSuccess) {
2556         bSuccess = pfnBackupWrite(handle, (LPBYTE)wFullName, dwLen, &dwWritten,
2557                                   FALSE, FALSE, &lpContext);
2558         pfnBackupWrite(handle, NULL, 0, &dwWritten, TRUE, FALSE, &lpContext);
2559     }
2560
2561     CloseHandle(handle);
2562     return bSuccess;
2563 }
2564
2565 DllExport int
2566 win32_link(const char *oldname, const char *newname)
2567 {
2568     dTHXo;
2569     BOOL (__stdcall *pfnCreateHardLinkW)(LPCWSTR,LPCWSTR,LPSECURITY_ATTRIBUTES);
2570     WCHAR wOldName[MAX_PATH+1];
2571     WCHAR wNewName[MAX_PATH+1];
2572
2573     if (IsWin95())
2574         Perl_croak(aTHX_ PL_no_func, "link");
2575
2576     pfnCreateHardLinkW =
2577         (BOOL (__stdcall *)(LPCWSTR, LPCWSTR, LPSECURITY_ATTRIBUTES))
2578         GetProcAddress(GetModuleHandle("kernel32.dll"), "CreateHardLinkW");
2579     if (pfnCreateHardLinkW == NULL)
2580         pfnCreateHardLinkW = Nt4CreateHardLinkW;
2581
2582     if ((A2WHELPER(oldname, wOldName, sizeof(wOldName))) &&
2583         (A2WHELPER(newname, wNewName, sizeof(wNewName))) &&
2584         (wcscpy(wOldName, PerlDir_mapW(wOldName)),
2585         pfnCreateHardLinkW(PerlDir_mapW(wNewName), wOldName, NULL)))
2586     {
2587         return 0;
2588     }
2589     errno = (GetLastError() == ERROR_FILE_NOT_FOUND) ? ENOENT : EINVAL;
2590     return -1;
2591 }
2592
2593 DllExport int
2594 win32_rename(const char *oname, const char *newname)
2595 {
2596     WCHAR wOldName[MAX_PATH+1];
2597     WCHAR wNewName[MAX_PATH+1];
2598     char szOldName[MAX_PATH+1];
2599     char szNewName[MAX_PATH+1];
2600     BOOL bResult;
2601     dTHXo;
2602
2603     /* XXX despite what the documentation says about MoveFileEx(),
2604      * it doesn't work under Windows95!
2605      */
2606     if (IsWinNT()) {
2607         DWORD dwFlags = MOVEFILE_COPY_ALLOWED;
2608         if (USING_WIDE()) {
2609             A2WHELPER(oname, wOldName, sizeof(wOldName));
2610             A2WHELPER(newname, wNewName, sizeof(wNewName));
2611             if (wcsicmp(wNewName, wOldName))
2612                 dwFlags |= MOVEFILE_REPLACE_EXISTING;
2613             wcscpy(wOldName, PerlDir_mapW(wOldName));
2614             bResult = MoveFileExW(wOldName,PerlDir_mapW(wNewName), dwFlags);
2615         }
2616         else {
2617             if (stricmp(newname, oname))
2618                 dwFlags |= MOVEFILE_REPLACE_EXISTING;
2619             strcpy(szOldName, PerlDir_mapA(oname));
2620             bResult = MoveFileExA(szOldName,PerlDir_mapA(newname), dwFlags);
2621         }
2622         if (!bResult) {
2623             DWORD err = GetLastError();
2624             switch (err) {
2625             case ERROR_BAD_NET_NAME:
2626             case ERROR_BAD_NETPATH:
2627             case ERROR_BAD_PATHNAME:
2628             case ERROR_FILE_NOT_FOUND:
2629             case ERROR_FILENAME_EXCED_RANGE:
2630             case ERROR_INVALID_DRIVE:
2631             case ERROR_NO_MORE_FILES:
2632             case ERROR_PATH_NOT_FOUND:
2633                 errno = ENOENT;
2634                 break;
2635             default:
2636                 errno = EACCES;
2637                 break;
2638             }
2639             return -1;
2640         }
2641         return 0;
2642     }
2643     else {
2644         int retval = 0;
2645         char szTmpName[MAX_PATH+1];
2646         char dname[MAX_PATH+1];
2647         char *endname = Nullch;
2648         STRLEN tmplen = 0;
2649         DWORD from_attr, to_attr;
2650
2651         strcpy(szOldName, PerlDir_mapA(oname));
2652         strcpy(szNewName, PerlDir_mapA(newname));
2653
2654         /* if oname doesn't exist, do nothing */
2655         from_attr = GetFileAttributes(szOldName);
2656         if (from_attr == 0xFFFFFFFF) {
2657             errno = ENOENT;
2658             return -1;
2659         }
2660
2661         /* if newname exists, rename it to a temporary name so that we
2662          * don't delete it in case oname happens to be the same file
2663          * (but perhaps accessed via a different path)
2664          */
2665         to_attr = GetFileAttributes(szNewName);
2666         if (to_attr != 0xFFFFFFFF) {
2667             /* if newname is a directory, we fail
2668              * XXX could overcome this with yet more convoluted logic */
2669             if (to_attr & FILE_ATTRIBUTE_DIRECTORY) {
2670                 errno = EACCES;
2671                 return -1;
2672             }
2673             tmplen = strlen(szNewName);
2674             strcpy(szTmpName,szNewName);
2675             endname = szTmpName+tmplen;
2676             for (; endname > szTmpName ; --endname) {
2677                 if (*endname == '/' || *endname == '\\') {
2678                     *endname = '\0';
2679                     break;
2680                 }
2681             }
2682             if (endname > szTmpName)
2683                 endname = strcpy(dname,szTmpName);
2684             else
2685                 endname = ".";
2686
2687             /* get a temporary filename in same directory
2688              * XXX is this really the best we can do? */
2689             if (!GetTempFileName((LPCTSTR)endname, "plr", 0, szTmpName)) {
2690                 errno = ENOENT;
2691                 return -1;
2692             }
2693             DeleteFile(szTmpName);
2694
2695             retval = rename(szNewName, szTmpName);
2696             if (retval != 0) {
2697                 errno = EACCES;
2698                 return retval;
2699             }
2700         }
2701
2702         /* rename oname to newname */
2703         retval = rename(szOldName, szNewName);
2704
2705         /* if we created a temporary file before ... */
2706         if (endname != Nullch) {
2707             /* ...and rename succeeded, delete temporary file/directory */
2708             if (retval == 0)
2709                 DeleteFile(szTmpName);
2710             /* else restore it to what it was */
2711             else
2712                 (void)rename(szTmpName, szNewName);
2713         }
2714         return retval;
2715     }
2716 }
2717
2718 DllExport int
2719 win32_setmode(int fd, int mode)
2720 {
2721     return setmode(fd, mode);
2722 }
2723
2724 DllExport long
2725 win32_lseek(int fd, long offset, int origin)
2726 {
2727     return lseek(fd, offset, origin);
2728 }
2729
2730 DllExport long
2731 win32_tell(int fd)
2732 {
2733     return tell(fd);
2734 }
2735
2736 DllExport int
2737 win32_open(const char *path, int flag, ...)
2738 {
2739     dTHXo;
2740     va_list ap;
2741     int pmode;
2742     WCHAR wBuffer[MAX_PATH+1];
2743
2744     va_start(ap, flag);
2745     pmode = va_arg(ap, int);
2746     va_end(ap);
2747
2748     if (stricmp(path, "/dev/null")==0)
2749         path = "NUL";
2750
2751     if (USING_WIDE()) {
2752         A2WHELPER(path, wBuffer, sizeof(wBuffer));
2753         return _wopen(PerlDir_mapW(wBuffer), flag, pmode);
2754     }
2755     return open(PerlDir_mapA(path), flag, pmode);
2756 }
2757
2758 /* close() that understands socket */
2759 extern int my_close(int);       /* in win32sck.c */
2760
2761 DllExport int
2762 win32_close(int fd)
2763 {
2764     return my_close(fd);
2765 }
2766
2767 DllExport int
2768 win32_eof(int fd)
2769 {
2770     return eof(fd);
2771 }
2772
2773 DllExport int
2774 win32_dup(int fd)
2775 {
2776     return dup(fd);
2777 }
2778
2779 DllExport int
2780 win32_dup2(int fd1,int fd2)
2781 {
2782     return dup2(fd1,fd2);
2783 }
2784
2785 #ifdef PERL_MSVCRT_READFIX
2786
2787 #define LF              10      /* line feed */
2788 #define CR              13      /* carriage return */
2789 #define CTRLZ           26      /* ctrl-z means eof for text */
2790 #define FOPEN           0x01    /* file handle open */
2791 #define FEOFLAG         0x02    /* end of file has been encountered */
2792 #define FCRLF           0x04    /* CR-LF across read buffer (in text mode) */
2793 #define FPIPE           0x08    /* file handle refers to a pipe */
2794 #define FAPPEND         0x20    /* file handle opened O_APPEND */
2795 #define FDEV            0x40    /* file handle refers to device */
2796 #define FTEXT           0x80    /* file handle is in text mode */
2797 #define MAX_DESCRIPTOR_COUNT    (64*32) /* this is the maximun that MSVCRT can handle */
2798
2799 int __cdecl
2800 _fixed_read(int fh, void *buf, unsigned cnt)
2801 {
2802     int bytes_read;                 /* number of bytes read */
2803     char *buffer;                   /* buffer to read to */
2804     int os_read;                    /* bytes read on OS call */
2805     char *p, *q;                    /* pointers into buffer */
2806     char peekchr;                   /* peek-ahead character */
2807     ULONG filepos;                  /* file position after seek */
2808     ULONG dosretval;                /* o.s. return value */
2809
2810     /* validate handle */
2811     if (((unsigned)fh >= (unsigned)MAX_DESCRIPTOR_COUNT) ||
2812          !(_osfile(fh) & FOPEN))
2813     {
2814         /* out of range -- return error */
2815         errno = EBADF;
2816         _doserrno = 0;  /* not o.s. error */
2817         return -1;
2818     }
2819
2820     /*
2821      * If lockinitflag is FALSE, assume fd is device
2822      * lockinitflag is set to TRUE by open.
2823      */
2824     if (_pioinfo(fh)->lockinitflag)
2825         EnterCriticalSection(&(_pioinfo(fh)->lock));  /* lock file */
2826
2827     bytes_read = 0;                 /* nothing read yet */
2828     buffer = (char*)buf;
2829
2830     if (cnt == 0 || (_osfile(fh) & FEOFLAG)) {
2831         /* nothing to read or at EOF, so return 0 read */
2832         goto functionexit;
2833     }
2834
2835     if ((_osfile(fh) & (FPIPE|FDEV)) && _pipech(fh) != LF) {
2836         /* a pipe/device and pipe lookahead non-empty: read the lookahead
2837          * char */
2838         *buffer++ = _pipech(fh);
2839         ++bytes_read;
2840         --cnt;
2841         _pipech(fh) = LF;           /* mark as empty */
2842     }
2843
2844     /* read the data */
2845
2846     if (!ReadFile((HANDLE)_osfhnd(fh), buffer, cnt, (LPDWORD)&os_read, NULL))
2847     {
2848         /* ReadFile has reported an error. recognize two special cases.
2849          *
2850          *      1. map ERROR_ACCESS_DENIED to EBADF
2851          *
2852          *      2. just return 0 if ERROR_BROKEN_PIPE has occurred. it
2853          *         means the handle is a read-handle on a pipe for which
2854          *         all write-handles have been closed and all data has been
2855          *         read. */
2856
2857         if ((dosretval = GetLastError()) == ERROR_ACCESS_DENIED) {
2858             /* wrong read/write mode should return EBADF, not EACCES */
2859             errno = EBADF;
2860             _doserrno = dosretval;
2861             bytes_read = -1;
2862             goto functionexit;
2863         }
2864         else if (dosretval == ERROR_BROKEN_PIPE) {
2865             bytes_read = 0;
2866             goto functionexit;
2867         }
2868         else {
2869             bytes_read = -1;
2870             goto functionexit;
2871         }
2872     }
2873
2874     bytes_read += os_read;          /* update bytes read */
2875
2876     if (_osfile(fh) & FTEXT) {
2877         /* now must translate CR-LFs to LFs in the buffer */
2878
2879         /* set CRLF flag to indicate LF at beginning of buffer */
2880         /* if ((os_read != 0) && (*(char *)buf == LF))   */
2881         /*    _osfile(fh) |= FCRLF;                      */
2882         /* else                                          */
2883         /*    _osfile(fh) &= ~FCRLF;                     */
2884
2885         _osfile(fh) &= ~FCRLF;
2886
2887         /* convert chars in the buffer: p is src, q is dest */
2888         p = q = (char*)buf;
2889         while (p < (char *)buf + bytes_read) {
2890             if (*p == CTRLZ) {
2891                 /* if fh is not a device, set ctrl-z flag */
2892                 if (!(_osfile(fh) & FDEV))
2893                     _osfile(fh) |= FEOFLAG;
2894                 break;              /* stop translating */
2895             }
2896             else if (*p != CR)
2897                 *q++ = *p++;
2898             else {
2899                 /* *p is CR, so must check next char for LF */
2900                 if (p < (char *)buf + bytes_read - 1) {
2901                     if (*(p+1) == LF) {
2902                         p += 2;
2903                         *q++ = LF;  /* convert CR-LF to LF */
2904                     }
2905                     else
2906                         *q++ = *p++;    /* store char normally */
2907                 }
2908                 else {
2909                     /* This is the hard part.  We found a CR at end of
2910                        buffer.  We must peek ahead to see if next char
2911                        is an LF. */
2912                     ++p;
2913
2914                     dosretval = 0;
2915                     if (!ReadFile((HANDLE)_osfhnd(fh), &peekchr, 1,
2916                                     (LPDWORD)&os_read, NULL))
2917                         dosretval = GetLastError();
2918
2919                     if (dosretval != 0 || os_read == 0) {
2920                         /* couldn't read ahead, store CR */
2921                         *q++ = CR;
2922                     }
2923                     else {
2924                         /* peekchr now has the extra character -- we now
2925                            have several possibilities:
2926                            1. disk file and char is not LF; just seek back
2927                               and copy CR
2928                            2. disk file and char is LF; store LF, don't seek back
2929                            3. pipe/device and char is LF; store LF.
2930                            4. pipe/device and char isn't LF, store CR and
2931                               put char in pipe lookahead buffer. */
2932                         if (_osfile(fh) & (FDEV|FPIPE)) {
2933                             /* non-seekable device */
2934                             if (peekchr == LF)
2935                                 *q++ = LF;
2936                             else {
2937                                 *q++ = CR;
2938                                 _pipech(fh) = peekchr;
2939                             }
2940                         }
2941                         else {
2942                             /* disk file */
2943                             if (peekchr == LF) {
2944                                 /* nothing read yet; must make some
2945                                    progress */
2946                                 *q++ = LF;
2947                                 /* turn on this flag for tell routine */
2948                                 _osfile(fh) |= FCRLF;
2949                             }
2950                             else {
2951                                 HANDLE osHandle;        /* o.s. handle value */
2952                                 /* seek back */
2953                                 if ((osHandle = (HANDLE)_get_osfhandle(fh)) != (HANDLE)-1)
2954                                 {
2955                                     if ((filepos = SetFilePointer(osHandle, -1, NULL, FILE_CURRENT)) == -1)
2956                                         dosretval = GetLastError();
2957                                 }
2958                                 if (peekchr != LF)
2959                                     *q++ = CR;
2960                             }
2961                         }
2962                     }
2963                 }
2964             }
2965         }
2966
2967         /* we now change bytes_read to reflect the true number of chars
2968            in the buffer */
2969         bytes_read = q - (char *)buf;
2970     }
2971
2972 functionexit:   
2973     if (_pioinfo(fh)->lockinitflag)
2974         LeaveCriticalSection(&(_pioinfo(fh)->lock));    /* unlock file */
2975
2976     return bytes_read;
2977 }
2978
2979 #endif  /* PERL_MSVCRT_READFIX */
2980
2981 DllExport int
2982 win32_read(int fd, void *buf, unsigned int cnt)
2983 {
2984 #ifdef PERL_MSVCRT_READFIX
2985     return _fixed_read(fd, buf, cnt);
2986 #else
2987     return read(fd, buf, cnt);
2988 #endif
2989 }
2990
2991 DllExport int
2992 win32_write(int fd, const void *buf, unsigned int cnt)
2993 {
2994     return write(fd, buf, cnt);
2995 }
2996
2997 DllExport int
2998 win32_mkdir(const char *dir, int mode)
2999 {
3000     dTHXo;
3001     if (USING_WIDE()) {
3002         WCHAR wBuffer[MAX_PATH+1];
3003         A2WHELPER(dir, wBuffer, sizeof(wBuffer));
3004         return _wmkdir(PerlDir_mapW(wBuffer));
3005     }
3006     return mkdir(PerlDir_mapA(dir)); /* just ignore mode */
3007 }
3008
3009 DllExport int
3010 win32_rmdir(const char *dir)
3011 {
3012     dTHXo;
3013     if (USING_WIDE()) {
3014         WCHAR wBuffer[MAX_PATH+1];
3015         A2WHELPER(dir, wBuffer, sizeof(wBuffer));
3016         return _wrmdir(PerlDir_mapW(wBuffer));
3017     }
3018     return rmdir(PerlDir_mapA(dir));
3019 }
3020
3021 DllExport int
3022 win32_chdir(const char *dir)
3023 {
3024     dTHXo;
3025     if (USING_WIDE()) {
3026         WCHAR wBuffer[MAX_PATH+1];
3027         A2WHELPER(dir, wBuffer, sizeof(wBuffer));
3028         return _wchdir(wBuffer);
3029     }
3030     return chdir(dir);
3031 }
3032
3033 DllExport  int
3034 win32_access(const char *path, int mode)
3035 {
3036     dTHXo;
3037     if (USING_WIDE()) {
3038         WCHAR wBuffer[MAX_PATH+1];
3039         A2WHELPER(path, wBuffer, sizeof(wBuffer));
3040         return _waccess(PerlDir_mapW(wBuffer), mode);
3041     }
3042     return access(PerlDir_mapA(path), mode);
3043 }
3044
3045 DllExport  int
3046 win32_chmod(const char *path, int mode)
3047 {
3048     dTHXo;
3049     if (USING_WIDE()) {
3050         WCHAR wBuffer[MAX_PATH+1];
3051         A2WHELPER(path, wBuffer, sizeof(wBuffer));
3052         return _wchmod(PerlDir_mapW(wBuffer), mode);
3053     }
3054     return chmod(PerlDir_mapA(path), mode);
3055 }
3056
3057
3058 static char *
3059 create_command_line(const char* command, const char * const *args)
3060 {
3061     dTHXo;
3062     int index;
3063     char *cmd, *ptr, *arg;
3064     STRLEN len = strlen(command) + 1;
3065
3066     for (index = 0; (ptr = (char*)args[index]) != NULL; ++index)
3067         len += strlen(ptr) + 1;
3068
3069     New(1310, cmd, len, char);
3070     ptr = cmd;
3071     strcpy(ptr, command);
3072
3073     for (index = 0; (arg = (char*)args[index]) != NULL; ++index) {
3074         ptr += strlen(ptr);
3075         *ptr++ = ' ';
3076         strcpy(ptr, arg);
3077     }
3078
3079     return cmd;
3080 }
3081
3082 static char *
3083 qualified_path(const char *cmd)
3084 {
3085     dTHXo;
3086     char *pathstr;
3087     char *fullcmd, *curfullcmd;
3088     STRLEN cmdlen = 0;
3089     int has_slash = 0;
3090
3091     if (!cmd)
3092         return Nullch;
3093     fullcmd = (char*)cmd;
3094     while (*fullcmd) {
3095         if (*fullcmd == '/' || *fullcmd == '\\')
3096             has_slash++;
3097         fullcmd++;
3098         cmdlen++;
3099     }
3100
3101     /* look in PATH */
3102     pathstr = win32_getenv("PATH");
3103     New(0, fullcmd, MAX_PATH+1, char);
3104     curfullcmd = fullcmd;
3105
3106     while (1) {
3107         DWORD res;
3108
3109         /* start by appending the name to the current prefix */
3110         strcpy(curfullcmd, cmd);
3111         curfullcmd += cmdlen;
3112
3113         /* if it doesn't end with '.', or has no extension, try adding
3114          * a trailing .exe first */
3115         if (cmd[cmdlen-1] != '.'
3116             && (cmdlen < 4 || cmd[cmdlen-4] != '.'))
3117         {
3118             strcpy(curfullcmd, ".exe");
3119             res = GetFileAttributes(fullcmd);
3120             if (res != 0xFFFFFFFF && !(res & FILE_ATTRIBUTE_DIRECTORY))
3121                 return fullcmd;
3122             *curfullcmd = '\0';
3123         }
3124
3125         /* that failed, try the bare name */
3126         res = GetFileAttributes(fullcmd);
3127         if (res != 0xFFFFFFFF && !(res & FILE_ATTRIBUTE_DIRECTORY))
3128             return fullcmd;
3129
3130         /* quit if no other path exists, or if cmd already has path */
3131         if (!pathstr || !*pathstr || has_slash)
3132             break;
3133
3134         /* skip leading semis */
3135         while (*pathstr == ';')
3136             pathstr++;
3137
3138         /* build a new prefix from scratch */
3139         curfullcmd = fullcmd;
3140         while (*pathstr && *pathstr != ';') {
3141             if (*pathstr == '"') {      /* foo;"baz;etc";bar */
3142                 pathstr++;              /* skip initial '"' */
3143                 while (*pathstr && *pathstr != '"') {
3144                     if (curfullcmd-fullcmd < MAX_PATH-cmdlen-5)
3145                         *curfullcmd++ = *pathstr;
3146                     pathstr++;
3147                 }
3148                 if (*pathstr)
3149                     pathstr++;          /* skip trailing '"' */
3150             }
3151             else {
3152                 if (curfullcmd-fullcmd < MAX_PATH-cmdlen-5)
3153                     *curfullcmd++ = *pathstr;
3154                 pathstr++;
3155             }
3156         }
3157         if (*pathstr)
3158             pathstr++;                  /* skip trailing semi */
3159         if (curfullcmd > fullcmd        /* append a dir separator */
3160             && curfullcmd[-1] != '/' && curfullcmd[-1] != '\\')
3161         {
3162             *curfullcmd++ = '\\';
3163         }
3164     }
3165 GIVE_UP:
3166     Safefree(fullcmd);
3167     return Nullch;
3168 }
3169
3170 /* The following are just place holders.
3171  * Some hosts may provide and environment that the OS is
3172  * not tracking, therefore, these host must provide that
3173  * environment and the current directory to CreateProcess
3174  */
3175
3176 void*
3177 get_childenv(void)
3178 {
3179     return NULL;
3180 }
3181
3182 void
3183 free_childenv(void* d)
3184 {
3185 }
3186
3187 char*
3188 get_childdir(void)
3189 {
3190     dTHXo;
3191     char* ptr;
3192     char szfilename[(MAX_PATH+1)*2];
3193     if (USING_WIDE()) {
3194         WCHAR wfilename[MAX_PATH+1];
3195         GetCurrentDirectoryW(MAX_PATH+1, wfilename);
3196         W2AHELPER(wfilename, szfilename, sizeof(szfilename));
3197     }
3198     else {
3199         GetCurrentDirectoryA(MAX_PATH+1, szfilename);
3200     }
3201
3202     New(0, ptr, strlen(szfilename)+1, char);
3203     strcpy(ptr, szfilename);
3204     return ptr;
3205 }
3206
3207 void
3208 free_childdir(char* d)
3209 {
3210     dTHXo;
3211     Safefree(d);
3212 }
3213
3214
3215 /* XXX this needs to be made more compatible with the spawnvp()
3216  * provided by the various RTLs.  In particular, searching for
3217  * *.{com,bat,cmd} files (as done by the RTLs) is unimplemented.
3218  * This doesn't significantly affect perl itself, because we
3219  * always invoke things using PERL5SHELL if a direct attempt to
3220  * spawn the executable fails.
3221  * 
3222  * XXX splitting and rejoining the commandline between do_aspawn()
3223  * and win32_spawnvp() could also be avoided.
3224  */
3225
3226 DllExport int
3227 win32_spawnvp(int mode, const char *cmdname, const char *const *argv)
3228 {
3229 #ifdef USE_RTL_SPAWNVP
3230     return spawnvp(mode, cmdname, (char * const *)argv);
3231 #else
3232     dTHXo;
3233     int ret;
3234     void* env;
3235     char* dir;
3236     child_IO_table tbl;
3237     STARTUPINFO StartupInfo;
3238     PROCESS_INFORMATION ProcessInformation;
3239     DWORD create = 0;
3240
3241     char *cmd = create_command_line(cmdname, strcmp(cmdname, argv[0]) == 0
3242                                              ? &argv[1] : argv);
3243     char *fullcmd = Nullch;
3244
3245     env = PerlEnv_get_childenv();
3246     dir = PerlEnv_get_childdir();
3247
3248     switch(mode) {
3249     case P_NOWAIT:      /* asynch + remember result */
3250         if (w32_num_children >= MAXIMUM_WAIT_OBJECTS) {
3251             errno = EAGAIN;
3252             ret = -1;
3253             goto RETVAL;
3254         }
3255         /* FALL THROUGH */
3256     case P_WAIT:        /* synchronous execution */
3257         break;
3258     default:            /* invalid mode */
3259         errno = EINVAL;
3260         ret = -1;
3261         goto RETVAL;
3262     }
3263     memset(&StartupInfo,0,sizeof(StartupInfo));
3264     StartupInfo.cb = sizeof(StartupInfo);
3265     memset(&tbl,0,sizeof(tbl));
3266     PerlEnv_get_child_IO(&tbl);
3267     StartupInfo.dwFlags         = tbl.dwFlags;
3268     StartupInfo.dwX             = tbl.dwX; 
3269     StartupInfo.dwY             = tbl.dwY; 
3270     StartupInfo.dwXSize         = tbl.dwXSize; 
3271     StartupInfo.dwYSize         = tbl.dwYSize; 
3272     StartupInfo.dwXCountChars   = tbl.dwXCountChars; 
3273     StartupInfo.dwYCountChars   = tbl.dwYCountChars; 
3274     StartupInfo.dwFillAttribute = tbl.dwFillAttribute; 
3275     StartupInfo.wShowWindow     = tbl.wShowWindow; 
3276     StartupInfo.hStdInput       = tbl.childStdIn;
3277     StartupInfo.hStdOutput      = tbl.childStdOut;
3278     StartupInfo.hStdError       = tbl.childStdErr;
3279     if (StartupInfo.hStdInput != INVALID_HANDLE_VALUE &&
3280         StartupInfo.hStdOutput != INVALID_HANDLE_VALUE &&
3281         StartupInfo.hStdError != INVALID_HANDLE_VALUE)
3282     {
3283         StartupInfo.dwFlags |= STARTF_USESTDHANDLES;
3284     }
3285     else {
3286         create |= CREATE_NEW_CONSOLE;
3287     }
3288
3289 RETRY:
3290     if (!CreateProcess(cmdname,         /* search PATH to find executable */
3291                        cmd,             /* executable, and its arguments */
3292                        NULL,            /* process attributes */
3293                        NULL,            /* thread attributes */
3294                        TRUE,            /* inherit handles */
3295                        create,          /* creation flags */
3296                        (LPVOID)env,     /* inherit environment */
3297                        dir,             /* inherit cwd */
3298                        &StartupInfo,
3299                        &ProcessInformation))
3300     {
3301         /* initial NULL argument to CreateProcess() does a PATH
3302          * search, but it always first looks in the directory
3303          * where the current process was started, which behavior
3304          * is undesirable for backward compatibility.  So we
3305          * jump through our own hoops by picking out the path
3306          * we really want it to use. */
3307         if (!fullcmd) {
3308             fullcmd = qualified_path(cmdname);
3309             if (fullcmd) {
3310                 cmdname = fullcmd;
3311                 goto RETRY;
3312             }
3313         }
3314         errno = ENOENT;
3315         ret = -1;
3316         goto RETVAL;
3317     }
3318
3319     if (mode == P_NOWAIT) {
3320         /* asynchronous spawn -- store handle, return PID */
3321         ret = (int)ProcessInformation.dwProcessId;
3322         if (IsWin95() && ret < 0)
3323             ret = -ret;
3324
3325         w32_child_handles[w32_num_children] = ProcessInformation.hProcess;
3326         w32_child_pids[w32_num_children] = (DWORD)ret;
3327         ++w32_num_children;
3328     }
3329     else  {
3330         DWORD status;
3331         WaitForSingleObject(ProcessInformation.hProcess, INFINITE);
3332         GetExitCodeProcess(ProcessInformation.hProcess, &status);
3333         ret = (int)status;
3334         CloseHandle(ProcessInformation.hProcess);
3335     }
3336
3337     CloseHandle(ProcessInformation.hThread);
3338
3339 RETVAL:
3340     PerlEnv_free_childenv(env);
3341     PerlEnv_free_childdir(dir);
3342     Safefree(cmd);
3343     Safefree(fullcmd);
3344     return ret;
3345 #endif
3346 }
3347
3348 DllExport int
3349 win32_execv(const char *cmdname, const char *const *argv)
3350 {
3351 #ifdef USE_ITHREADS
3352     dTHXo;
3353     /* if this is a pseudo-forked child, we just want to spawn
3354      * the new program, and return */
3355     if (w32_pseudo_id)
3356         return spawnv(P_WAIT, cmdname, (char *const *)argv);
3357 #endif
3358     return execv(cmdname, (char *const *)argv);
3359 }
3360
3361 DllExport int
3362 win32_execvp(const char *cmdname, const char *const *argv)
3363 {
3364 #ifdef USE_ITHREADS
3365     dTHXo;
3366     /* if this is a pseudo-forked child, we just want to spawn
3367      * the new program, and return */
3368     if (w32_pseudo_id)
3369         return win32_spawnvp(P_WAIT, cmdname, (char *const *)argv);
3370 #endif
3371     return execvp(cmdname, (char *const *)argv);
3372 }
3373
3374 DllExport void
3375 win32_perror(const char *str)
3376 {
3377     perror(str);
3378 }
3379
3380 DllExport void
3381 win32_setbuf(FILE *pf, char *buf)
3382 {
3383     setbuf(pf, buf);
3384 }
3385
3386 DllExport int
3387 win32_setvbuf(FILE *pf, char *buf, int type, size_t size)
3388 {
3389     return setvbuf(pf, buf, type, size);
3390 }
3391
3392 DllExport int
3393 win32_flushall(void)
3394 {
3395     return flushall();
3396 }
3397
3398 DllExport int
3399 win32_fcloseall(void)
3400 {
3401     return fcloseall();
3402 }
3403
3404 DllExport char*
3405 win32_fgets(char *s, int n, FILE *pf)
3406 {
3407     return fgets(s, n, pf);
3408 }
3409
3410 DllExport char*
3411 win32_gets(char *s)
3412 {
3413     return gets(s);
3414 }
3415
3416 DllExport int
3417 win32_fgetc(FILE *pf)
3418 {
3419     return fgetc(pf);
3420 }
3421
3422 DllExport int
3423 win32_putc(int c, FILE *pf)
3424 {
3425     return putc(c,pf);
3426 }
3427
3428 DllExport int
3429 win32_puts(const char *s)
3430 {
3431     return puts(s);
3432 }
3433
3434 DllExport int
3435 win32_getchar(void)
3436 {
3437     return getchar();
3438 }
3439
3440 DllExport int
3441 win32_putchar(int c)
3442 {
3443     return putchar(c);
3444 }
3445
3446 #ifdef MYMALLOC
3447
3448 #ifndef USE_PERL_SBRK
3449
3450 static char *committed = NULL;
3451 static char *base      = NULL;
3452 static char *reserved  = NULL;
3453 static char *brk       = NULL;
3454 static DWORD pagesize  = 0;
3455 static DWORD allocsize = 0;
3456
3457 void *
3458 sbrk(int need)
3459 {
3460  void *result;
3461  if (!pagesize)
3462   {SYSTEM_INFO info;
3463    GetSystemInfo(&info);
3464    /* Pretend page size is larger so we don't perpetually
3465     * call the OS to commit just one page ...
3466     */
3467    pagesize = info.dwPageSize << 3;
3468    allocsize = info.dwAllocationGranularity;
3469   }
3470  /* This scheme fails eventually if request for contiguous
3471   * block is denied so reserve big blocks - this is only 
3472   * address space not memory ...
3473   */
3474  if (brk+need >= reserved)
3475   {
3476    DWORD size = 64*1024*1024;
3477    char *addr;
3478    if (committed && reserved && committed < reserved)
3479     {
3480      /* Commit last of previous chunk cannot span allocations */
3481      addr = (char *) VirtualAlloc(committed,reserved-committed,MEM_COMMIT,PAGE_READWRITE);
3482      if (addr)
3483       committed = reserved;
3484     }
3485    /* Reserve some (more) space 
3486     * Note this is a little sneaky, 1st call passes NULL as reserved
3487     * so lets system choose where we start, subsequent calls pass
3488     * the old end address so ask for a contiguous block
3489     */
3490    addr  = (char *) VirtualAlloc(reserved,size,MEM_RESERVE,PAGE_NOACCESS);
3491    if (addr)
3492     {
3493      reserved = addr+size;
3494      if (!base)
3495       base = addr;
3496      if (!committed)
3497       committed = base;
3498      if (!brk)
3499       brk = committed;
3500     }
3501    else
3502     {
3503      return (void *) -1;
3504     }
3505   }
3506  result = brk;
3507  brk += need;
3508  if (brk > committed)
3509   {
3510    DWORD size = ((brk-committed + pagesize -1)/pagesize) * pagesize;
3511    char *addr = (char *) VirtualAlloc(committed,size,MEM_COMMIT,PAGE_READWRITE);
3512    if (addr)
3513     {
3514      committed += size;
3515     }
3516    else
3517     return (void *) -1;
3518   }
3519  return result;
3520 }
3521
3522 #endif
3523 #endif
3524
3525 DllExport void*
3526 win32_malloc(size_t size)
3527 {
3528     return malloc(size);
3529 }
3530
3531 DllExport void*
3532 win32_calloc(size_t numitems, size_t size)
3533 {
3534     return calloc(numitems,size);
3535 }
3536
3537 DllExport void*
3538 win32_realloc(void *block, size_t size)
3539 {
3540     return realloc(block,size);
3541 }
3542
3543 DllExport void
3544 win32_free(void *block)
3545 {
3546     free(block);
3547 }
3548
3549
3550 int
3551 win32_open_osfhandle(long handle, int flags)
3552 {
3553 #ifdef USE_FIXED_OSFHANDLE
3554     if (IsWin95())
3555         return my_open_osfhandle(handle, flags);
3556 #endif
3557     return _open_osfhandle(handle, flags);
3558 }
3559
3560 long
3561 win32_get_osfhandle(int fd)
3562 {
3563     return _get_osfhandle(fd);
3564 }
3565
3566 DllExport void*
3567 win32_dynaload(const char* filename)
3568 {
3569     dTHXo;
3570     HMODULE hModule;
3571     char buf[MAX_PATH+1];
3572     char *first;
3573
3574     /* LoadLibrary() doesn't recognize forward slashes correctly,
3575      * so turn 'em back. */
3576     first = strchr(filename, '/');
3577     if (first) {
3578         STRLEN len = strlen(filename);
3579         if (len <= MAX_PATH) {
3580             strcpy(buf, filename);
3581             filename = &buf[first - filename];
3582             while (*filename) {
3583                 if (*filename == '/')
3584                     *(char*)filename = '\\';
3585                 ++filename;
3586             }
3587             filename = buf;
3588         }
3589     }
3590     if (USING_WIDE()) {
3591         WCHAR wfilename[MAX_PATH+1];
3592         A2WHELPER(filename, wfilename, sizeof(wfilename));
3593         hModule = LoadLibraryExW(PerlDir_mapW(wfilename), NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
3594     }
3595     else {
3596         hModule = LoadLibraryExA(PerlDir_mapA(filename), NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
3597     }
3598     return hModule;
3599 }
3600
3601 /*
3602  * Extras.
3603  */
3604
3605 static
3606 XS(w32_GetCwd)
3607 {
3608     dXSARGS;
3609     /* Make the host for current directory */
3610     char* ptr = PerlEnv_get_childdir();
3611     /* 
3612      * If ptr != Nullch 
3613      *   then it worked, set PV valid, 
3614      *   else return 'undef' 
3615      */
3616     if (ptr) {
3617         SV *sv = sv_newmortal();
3618         sv_setpv(sv, ptr);
3619         PerlEnv_free_childdir(ptr);
3620
3621         EXTEND(SP,1);
3622         SvPOK_on(sv);
3623         ST(0) = sv;
3624         XSRETURN(1);
3625     }
3626     XSRETURN_UNDEF;
3627 }
3628
3629 static
3630 XS(w32_SetCwd)
3631 {
3632     dXSARGS;
3633     if (items != 1)
3634         Perl_croak(aTHX_ "usage: Win32::SetCurrentDirectory($cwd)");
3635     if (!PerlDir_chdir(SvPV_nolen(ST(0))))
3636         XSRETURN_YES;
3637
3638     XSRETURN_NO;
3639 }
3640
3641 static
3642 XS(w32_GetNextAvailDrive)
3643 {
3644     dXSARGS;
3645     char ix = 'C';
3646     char root[] = "_:\\";
3647
3648     EXTEND(SP,1);
3649     while (ix <= 'Z') {
3650         root[0] = ix++;
3651         if (GetDriveType(root) == 1) {
3652             root[2] = '\0';
3653             XSRETURN_PV(root);
3654         }
3655     }
3656     XSRETURN_UNDEF;
3657 }
3658
3659 static
3660 XS(w32_GetLastError)
3661 {
3662     dXSARGS;
3663     EXTEND(SP,1);
3664     XSRETURN_IV(GetLastError());
3665 }
3666
3667 static
3668 XS(w32_SetLastError)
3669 {
3670     dXSARGS;
3671     if (items != 1)
3672         Perl_croak(aTHX_ "usage: Win32::SetLastError($error)");
3673     SetLastError(SvIV(ST(0)));
3674     XSRETURN_EMPTY;
3675 }
3676
3677 static
3678 XS(w32_LoginName)
3679 {
3680     dXSARGS;
3681     char *name = w32_getlogin_buffer;
3682     DWORD size = sizeof(w32_getlogin_buffer);
3683     EXTEND(SP,1);
3684     if (GetUserName(name,&size)) {
3685         /* size includes NULL */
3686         ST(0) = sv_2mortal(newSVpvn(name,size-1));
3687         XSRETURN(1);
3688     }
3689     XSRETURN_UNDEF;
3690 }
3691
3692 static
3693 XS(w32_NodeName)
3694 {
3695     dXSARGS;
3696     char name[MAX_COMPUTERNAME_LENGTH+1];
3697     DWORD size = sizeof(name);
3698     EXTEND(SP,1);
3699     if (GetComputerName(name,&size)) {
3700         /* size does NOT include NULL :-( */
3701         ST(0) = sv_2mortal(newSVpvn(name,size));
3702         XSRETURN(1);
3703     }
3704     XSRETURN_UNDEF;
3705 }
3706
3707
3708 static
3709 XS(w32_DomainName)
3710 {
3711     dXSARGS;
3712     HINSTANCE hNetApi32 = LoadLibrary("netapi32.dll");
3713     DWORD (__stdcall *pfnNetApiBufferFree)(LPVOID Buffer);
3714     DWORD (__stdcall *pfnNetWkstaGetInfo)(LPWSTR servername, DWORD level,
3715                                           void *bufptr);
3716
3717     if (hNetApi32) {
3718         pfnNetApiBufferFree = (DWORD (__stdcall *)(void *))
3719             GetProcAddress(hNetApi32, "NetApiBufferFree");
3720         pfnNetWkstaGetInfo = (DWORD (__stdcall *)(LPWSTR, DWORD, void *))
3721             GetProcAddress(hNetApi32, "NetWkstaGetInfo");
3722     }
3723     EXTEND(SP,1);
3724     if (hNetApi32 && pfnNetWkstaGetInfo && pfnNetApiBufferFree) {
3725         /* this way is more reliable, in case user has a local account. */
3726         char dname[256];
3727         DWORD dnamelen = sizeof(dname);
3728         struct {
3729             DWORD   wki100_platform_id;
3730             LPWSTR  wki100_computername;
3731             LPWSTR  wki100_langroup;
3732             DWORD   wki100_ver_major;
3733             DWORD   wki100_ver_minor;
3734         } *pwi;
3735         /* NERR_Success *is* 0*/
3736         if (0 == pfnNetWkstaGetInfo(NULL, 100, &pwi)) {
3737             if (pwi->wki100_langroup && *(pwi->wki100_langroup)) {
3738                 WideCharToMultiByte(CP_ACP, NULL, pwi->wki100_langroup,
3739                                     -1, (LPSTR)dname, dnamelen, NULL, NULL);
3740             }
3741             else {
3742                 WideCharToMultiByte(CP_ACP, NULL, pwi->wki100_computername,
3743                                     -1, (LPSTR)dname, dnamelen, NULL, NULL);
3744             }
3745             pfnNetApiBufferFree(pwi);
3746             FreeLibrary(hNetApi32);
3747             XSRETURN_PV(dname);
3748         }
3749         FreeLibrary(hNetApi32);
3750     }
3751     else {
3752         /* Win95 doesn't have NetWksta*(), so do it the old way */
3753         char name[256];
3754         DWORD size = sizeof(name);
3755         if (hNetApi32)
3756             FreeLibrary(hNetApi32);
3757         if (GetUserName(name,&size)) {
3758             char sid[ONE_K_BUFSIZE];
3759             DWORD sidlen = sizeof(sid);
3760             char dname[256];
3761             DWORD dnamelen = sizeof(dname);
3762             SID_NAME_USE snu;
3763             if (LookupAccountName(NULL, name, (PSID)&sid, &sidlen,
3764                                   dname, &dnamelen, &snu)) {
3765                 XSRETURN_PV(dname);             /* all that for this */
3766             }
3767         }
3768     }
3769     XSRETURN_UNDEF;
3770 }
3771
3772 static
3773 XS(w32_FsType)
3774 {
3775     dXSARGS;
3776     char fsname[256];
3777     DWORD flags, filecomplen;
3778     if (GetVolumeInformation(NULL, NULL, 0, NULL, &filecomplen,
3779                          &flags, fsname, sizeof(fsname))) {
3780         if (GIMME_V == G_ARRAY) {
3781             XPUSHs(sv_2mortal(newSVpvn(fsname,strlen(fsname))));
3782             XPUSHs(sv_2mortal(newSViv(flags)));
3783             XPUSHs(sv_2mortal(newSViv(filecomplen)));
3784             PUTBACK;
3785             return;
3786         }
3787         EXTEND(SP,1);
3788         XSRETURN_PV(fsname);
3789     }
3790     XSRETURN_EMPTY;
3791 }
3792
3793 static
3794 XS(w32_GetOSVersion)
3795 {
3796     dXSARGS;
3797     OSVERSIONINFOA osver;
3798
3799     if (USING_WIDE()) {
3800         OSVERSIONINFOW osverw;
3801         char szCSDVersion[sizeof(osverw.szCSDVersion)];
3802         osverw.dwOSVersionInfoSize = sizeof(OSVERSIONINFOW);
3803         if (!GetVersionExW(&osverw)) {
3804             XSRETURN_EMPTY;
3805         }
3806         W2AHELPER(osverw.szCSDVersion, szCSDVersion, sizeof(szCSDVersion));
3807         XPUSHs(newSVpvn(szCSDVersion, strlen(szCSDVersion)));
3808         osver.dwMajorVersion = osverw.dwMajorVersion;
3809         osver.dwMinorVersion = osverw.dwMinorVersion;
3810         osver.dwBuildNumber = osverw.dwBuildNumber;
3811         osver.dwPlatformId = osverw.dwPlatformId;
3812     }
3813     else {
3814         osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFOA);
3815         if (!GetVersionExA(&osver)) {
3816             XSRETURN_EMPTY;
3817         }
3818         XPUSHs(newSVpvn(osver.szCSDVersion, strlen(osver.szCSDVersion)));
3819     }
3820     XPUSHs(newSViv(osver.dwMajorVersion));
3821     XPUSHs(newSViv(osver.dwMinorVersion));
3822     XPUSHs(newSViv(osver.dwBuildNumber));
3823     XPUSHs(newSViv(osver.dwPlatformId));
3824     PUTBACK;
3825 }
3826
3827 static
3828 XS(w32_IsWinNT)
3829 {
3830     dXSARGS;
3831     EXTEND(SP,1);
3832     XSRETURN_IV(IsWinNT());
3833 }
3834
3835 static
3836 XS(w32_IsWin95)
3837 {
3838     dXSARGS;
3839     EXTEND(SP,1);
3840     XSRETURN_IV(IsWin95());
3841 }
3842
3843 static
3844 XS(w32_FormatMessage)
3845 {
3846     dXSARGS;
3847     DWORD source = 0;
3848     char msgbuf[ONE_K_BUFSIZE];
3849
3850     if (items != 1)
3851         Perl_croak(aTHX_ "usage: Win32::FormatMessage($errno)");
3852
3853     if (USING_WIDE()) {
3854         WCHAR wmsgbuf[ONE_K_BUFSIZE];
3855         if (FormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM,
3856                           &source, SvIV(ST(0)), 0,
3857                           wmsgbuf, ONE_K_BUFSIZE-1, NULL))
3858         {
3859             W2AHELPER(wmsgbuf, msgbuf, sizeof(msgbuf));
3860             XSRETURN_PV(msgbuf);
3861         }
3862     }
3863     else {
3864         if (FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM,
3865                           &source, SvIV(ST(0)), 0,
3866                           msgbuf, sizeof(msgbuf)-1, NULL))
3867             XSRETURN_PV(msgbuf);
3868     }
3869
3870     XSRETURN_UNDEF;
3871 }
3872
3873 static
3874 XS(w32_Spawn)
3875 {
3876     dXSARGS;
3877     char *cmd, *args;
3878     PROCESS_INFORMATION stProcInfo;
3879     STARTUPINFO stStartInfo;
3880     BOOL bSuccess = FALSE;
3881
3882     if (items != 3)
3883         Perl_croak(aTHX_ "usage: Win32::Spawn($cmdName, $args, $PID)");
3884
3885     cmd = SvPV_nolen(ST(0));
3886     args = SvPV_nolen(ST(1));
3887
3888     memset(&stStartInfo, 0, sizeof(stStartInfo));   /* Clear the block */
3889     stStartInfo.cb = sizeof(stStartInfo);           /* Set the structure size */
3890     stStartInfo.dwFlags = STARTF_USESHOWWINDOW;     /* Enable wShowWindow control */
3891     stStartInfo.wShowWindow = SW_SHOWMINNOACTIVE;   /* Start min (normal) */
3892
3893     if (CreateProcess(
3894                 cmd,                    /* Image path */
3895                 args,                   /* Arguments for command line */
3896                 NULL,                   /* Default process security */
3897                 NULL,                   /* Default thread security */
3898                 FALSE,                  /* Must be TRUE to use std handles */
3899                 NORMAL_PRIORITY_CLASS,  /* No special scheduling */
3900                 NULL,                   /* Inherit our environment block */
3901                 NULL,                   /* Inherit our currrent directory */
3902                 &stStartInfo,           /* -> Startup info */
3903                 &stProcInfo))           /* <- Process info (if OK) */
3904     {
3905         int pid = (int)stProcInfo.dwProcessId;
3906         if (IsWin95() && pid < 0)
3907             pid = -pid;
3908         sv_setiv(ST(2), pid);
3909         CloseHandle(stProcInfo.hThread);/* library source code does this. */
3910         bSuccess = TRUE;
3911     }
3912     XSRETURN_IV(bSuccess);
3913 }
3914
3915 static
3916 XS(w32_GetTickCount)
3917 {
3918     dXSARGS;
3919     DWORD msec = GetTickCount();
3920     EXTEND(SP,1);
3921     if ((IV)msec > 0)
3922         XSRETURN_IV(msec);
3923     XSRETURN_NV(msec);
3924 }
3925
3926 static
3927 XS(w32_GetShortPathName)
3928 {
3929     dXSARGS;
3930     SV *shortpath;
3931     DWORD len;
3932
3933     if (items != 1)
3934         Perl_croak(aTHX_ "usage: Win32::GetShortPathName($longPathName)");
3935
3936     shortpath = sv_mortalcopy(ST(0));
3937     SvUPGRADE(shortpath, SVt_PV);
3938     if (!SvPVX(shortpath) || !SvLEN(shortpath))
3939         XSRETURN_UNDEF;
3940
3941     /* src == target is allowed */
3942     do {
3943         len = GetShortPathName(SvPVX(shortpath),
3944                                SvPVX(shortpath),
3945                                SvLEN(shortpath));
3946     } while (len >= SvLEN(shortpath) && sv_grow(shortpath,len+1));
3947     if (len) {
3948         SvCUR_set(shortpath,len);
3949         ST(0) = shortpath;
3950         XSRETURN(1);
3951     }
3952     XSRETURN_UNDEF;
3953 }
3954
3955 static
3956 XS(w32_GetFullPathName)
3957 {
3958     dXSARGS;
3959     SV *filename;
3960     SV *fullpath;
3961     char *filepart;
3962     DWORD len;
3963
3964     if (items != 1)
3965         Perl_croak(aTHX_ "usage: Win32::GetFullPathName($filename)");
3966
3967     filename = ST(0);
3968     fullpath = sv_mortalcopy(filename);
3969     SvUPGRADE(fullpath, SVt_PV);
3970     if (!SvPVX(fullpath) || !SvLEN(fullpath))
3971         XSRETURN_UNDEF;
3972
3973     do {
3974         len = GetFullPathName(SvPVX(filename),
3975                               SvLEN(fullpath),
3976                               SvPVX(fullpath),
3977                               &filepart);
3978     } while (len >= SvLEN(fullpath) && sv_grow(fullpath,len+1));
3979     if (len) {
3980         if (GIMME_V == G_ARRAY) {
3981             EXTEND(SP,1);
3982             XST_mPV(1,filepart);
3983             len = filepart - SvPVX(fullpath);
3984             items = 2;
3985         }
3986         SvCUR_set(fullpath,len);
3987         ST(0) = fullpath;
3988         XSRETURN(items);
3989     }
3990     XSRETURN_EMPTY;
3991 }
3992
3993 static
3994 XS(w32_GetLongPathName)
3995 {
3996     dXSARGS;
3997     SV *path;
3998     char tmpbuf[MAX_PATH+1];
3999     char *pathstr;
4000     STRLEN len;
4001
4002     if (items != 1)
4003         Perl_croak(aTHX_ "usage: Win32::GetLongPathName($pathname)");
4004
4005     path = ST(0);
4006     pathstr = SvPV(path,len);
4007     strcpy(tmpbuf, pathstr);
4008     pathstr = win32_longpath(tmpbuf);
4009     if (pathstr) {
4010         ST(0) = sv_2mortal(newSVpvn(pathstr, strlen(pathstr)));
4011         XSRETURN(1);
4012     }
4013     XSRETURN_EMPTY;
4014 }
4015
4016 static
4017 XS(w32_Sleep)
4018 {
4019     dXSARGS;
4020     if (items != 1)
4021         Perl_croak(aTHX_ "usage: Win32::Sleep($milliseconds)");
4022     Sleep(SvIV(ST(0)));
4023     XSRETURN_YES;
4024 }
4025
4026 static
4027 XS(w32_CopyFile)
4028 {
4029     dXSARGS;
4030     BOOL bResult;
4031     if (items != 3)
4032         Perl_croak(aTHX_ "usage: Win32::CopyFile($from, $to, $overwrite)");
4033     if (USING_WIDE()) {
4034         WCHAR wSourceFile[MAX_PATH+1];
4035         WCHAR wDestFile[MAX_PATH+1];
4036         A2WHELPER(SvPV_nolen(ST(0)), wSourceFile, sizeof(wSourceFile));
4037         wcscpy(wSourceFile, PerlDir_mapW(wSourceFile));
4038         A2WHELPER(SvPV_nolen(ST(1)), wDestFile, sizeof(wDestFile));
4039         bResult = CopyFileW(wSourceFile, PerlDir_mapW(wDestFile), !SvTRUE(ST(2)));
4040     }
4041     else {
4042         char szSourceFile[MAX_PATH+1];
4043         strcpy(szSourceFile, PerlDir_mapA(SvPV_nolen(ST(0))));
4044         bResult = CopyFileA(szSourceFile, PerlDir_mapA(SvPV_nolen(ST(1))), !SvTRUE(ST(2)));
4045     }
4046
4047     if (bResult)
4048         XSRETURN_YES;
4049     XSRETURN_NO;
4050 }
4051
4052 void
4053 Perl_init_os_extras(void)
4054 {
4055     dTHXo;
4056     char *file = __FILE__;
4057     dXSUB_SYS;
4058
4059     /* these names are Activeware compatible */
4060     newXS("Win32::GetCwd", w32_GetCwd, file);
4061     newXS("Win32::SetCwd", w32_SetCwd, file);
4062     newXS("Win32::GetNextAvailDrive", w32_GetNextAvailDrive, file);
4063     newXS("Win32::GetLastError", w32_GetLastError, file);
4064     newXS("Win32::SetLastError", w32_SetLastError, file);
4065     newXS("Win32::LoginName", w32_LoginName, file);
4066     newXS("Win32::NodeName", w32_NodeName, file);
4067     newXS("Win32::DomainName", w32_DomainName, file);
4068     newXS("Win32::FsType", w32_FsType, file);
4069     newXS("Win32::GetOSVersion", w32_GetOSVersion, file);
4070     newXS("Win32::IsWinNT", w32_IsWinNT, file);
4071     newXS("Win32::IsWin95", w32_IsWin95, file);
4072     newXS("Win32::FormatMessage", w32_FormatMessage, file);
4073     newXS("Win32::Spawn", w32_Spawn, file);
4074     newXS("Win32::GetTickCount", w32_GetTickCount, file);
4075     newXS("Win32::GetShortPathName", w32_GetShortPathName, file);
4076     newXS("Win32::GetFullPathName", w32_GetFullPathName, file);
4077     newXS("Win32::GetLongPathName", w32_GetLongPathName, file);
4078     newXS("Win32::CopyFile", w32_CopyFile, file);
4079     newXS("Win32::Sleep", w32_Sleep, file);
4080
4081     /* XXX Bloat Alert! The following Activeware preloads really
4082      * ought to be part of Win32::Sys::*, so they're not included
4083      * here.
4084      */
4085     /* LookupAccountName
4086      * LookupAccountSID
4087      * InitiateSystemShutdown
4088      * AbortSystemShutdown
4089      * ExpandEnvrironmentStrings
4090      */
4091 }
4092
4093 void
4094 Perl_win32_init(int *argcp, char ***argvp)
4095 {
4096     /* Disable floating point errors, Perl will trap the ones we
4097      * care about.  VC++ RTL defaults to switching these off
4098      * already, but the Borland RTL doesn't.  Since we don't
4099      * want to be at the vendor's whim on the default, we set
4100      * it explicitly here.
4101      */
4102 #if !defined(_ALPHA_) && !defined(__GNUC__)
4103     _control87(MCW_EM, MCW_EM);
4104 #endif
4105     MALLOC_INIT;
4106 }
4107
4108 void
4109 win32_get_child_IO(child_IO_table* ptbl)
4110 {
4111     ptbl->childStdIn    = GetStdHandle(STD_INPUT_HANDLE);
4112     ptbl->childStdOut   = GetStdHandle(STD_OUTPUT_HANDLE);
4113     ptbl->childStdErr   = GetStdHandle(STD_ERROR_HANDLE);
4114 }
4115
4116 #ifdef HAVE_INTERP_INTERN
4117
4118 #  ifdef PERL_OBJECT
4119 #    undef Perl_sys_intern_init
4120 #    define Perl_sys_intern_init CPerlObj::Perl_sys_intern_init
4121 #    undef Perl_sys_intern_dup
4122 #    define Perl_sys_intern_dup CPerlObj::Perl_sys_intern_dup
4123 #    undef Perl_sys_intern_clear
4124 #    define Perl_sys_intern_clear CPerlObj::Perl_sys_intern_clear
4125 #    define pPerl this
4126 #  endif
4127
4128 void
4129 Perl_sys_intern_init(pTHX)
4130 {
4131     w32_perlshell_tokens        = Nullch;
4132     w32_perlshell_vec           = (char**)NULL;
4133     w32_perlshell_items         = 0;
4134     w32_fdpid                   = newAV();
4135     New(1313, w32_children, 1, child_tab);
4136     w32_num_children            = 0;
4137 #  ifdef USE_ITHREADS
4138     w32_pseudo_id               = 0;
4139     New(1313, w32_pseudo_children, 1, child_tab);
4140     w32_num_pseudo_children     = 0;
4141 #  endif
4142     w32_init_socktype           = 0;
4143 }
4144
4145 void
4146 Perl_sys_intern_clear(pTHX)
4147 {
4148     Safefree(w32_perlshell_tokens);
4149     Safefree(w32_perlshell_vec);
4150     /* NOTE: w32_fdpid is freed by sv_clean_all() */
4151     Safefree(w32_children);
4152 #  ifdef USE_ITHREADS
4153     Safefree(w32_pseudo_children);
4154 #  endif
4155 }
4156
4157 #  ifdef USE_ITHREADS
4158
4159 void
4160 Perl_sys_intern_dup(pTHX_ struct interp_intern *src, struct interp_intern *dst)
4161 {
4162     dst->perlshell_tokens       = Nullch;
4163     dst->perlshell_vec          = (char**)NULL;
4164     dst->perlshell_items        = 0;
4165     dst->fdpid                  = newAV();
4166     Newz(1313, dst->children, 1, child_tab);
4167     dst->pseudo_id              = 0;
4168     Newz(1313, dst->pseudo_children, 1, child_tab);
4169     dst->thr_intern.Winit_socktype = 0;
4170 }
4171 #  endif /* USE_ITHREADS */
4172 #endif /* HAVE_INTERP_INTERN */
4173
4174 #ifdef PERL_OBJECT
4175 #  undef this
4176 #  define this pPerl
4177 #endif
4178
4179 static void
4180 win32_free_argvw(pTHXo_ void *ptr)
4181 {
4182     char** argv = (char**)ptr;
4183     while(*argv) {
4184         Safefree(*argv);
4185         *argv++ = Nullch;
4186     }
4187 }
4188
4189 void
4190 win32_argv2utf8(int argc, char** argv)
4191 {
4192     dTHXo;
4193     char* psz;
4194     int length, wargc;
4195     LPWSTR* lpwStr = CommandLineToArgvW(GetCommandLineW(), &wargc);
4196     if (lpwStr && argc) {
4197         while (argc--) {
4198             length = WideCharToMultiByte(CP_UTF8, 0, lpwStr[--wargc], -1, NULL, 0, NULL, NULL);
4199             Newz(0, psz, length, char);
4200             WideCharToMultiByte(CP_UTF8, 0, lpwStr[wargc], -1, psz, length, NULL, NULL);
4201             argv[argc] = psz;
4202         }
4203         call_atexit(win32_free_argvw, argv);
4204     }
4205     GlobalFree((HGLOBAL)lpwStr);
4206 }
4207