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