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