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