MINGW32 and EGCS 1.1.2 support
[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
19 #ifndef __MINGW32__
20 #include <lmcons.h>
21 #include <lmerr.h>
22 /* ugliness to work around a buggy struct definition in lmwksta.h */
23 #undef LPTSTR
24 #define LPTSTR LPWSTR
25 #include <lmwksta.h>
26 #undef LPTSTR
27 #define LPTSTR LPSTR
28 #include <lmapibuf.h>
29 #endif /* __MINGW32__ */
30
31 /* #include "config.h" */
32
33 #define PERLIO_NOT_STDIO 0 
34 #if !defined(PERLIO_IS_STDIO) && !defined(USE_SFIO)
35 #define PerlIO FILE
36 #endif
37
38 #include <sys/stat.h>
39 #include "EXTERN.h"
40 #include "perl.h"
41
42 #define NO_XSLOCKS
43 #include "XSUB.h"
44
45 #include "Win32iop.h"
46 #include <fcntl.h>
47 #ifndef __GNUC__
48 /* assert.h conflicts with #define of assert in perl.h */
49 #include <assert.h>
50 #endif
51 #include <string.h>
52 #include <stdarg.h>
53 #include <float.h>
54 #include <time.h>
55 #if defined(_MSC_VER) || defined(__MINGW32__)
56 #include <sys/utime.h>
57 #else
58 #include <utime.h>
59 #endif
60
61 #ifdef __GNUC__
62 /* Mingw32 defaults to globing command line 
63  * So we turn it off like this:
64  */
65 int _CRT_glob = 0;
66 #endif
67
68 #define EXECF_EXEC 1
69 #define EXECF_SPAWN 2
70 #define EXECF_SPAWN_NOWAIT 3
71
72 #if defined(PERL_OBJECT)
73 #undef win32_get_privlib
74 #define win32_get_privlib g_win32_get_privlib
75 #undef win32_get_sitelib
76 #define win32_get_sitelib g_win32_get_sitelib
77 #undef do_aspawn
78 #define do_aspawn g_do_aspawn
79 #undef do_spawn
80 #define do_spawn g_do_spawn
81 #undef Perl_do_exec
82 #define Perl_do_exec g_do_exec
83 #undef getlogin
84 #define getlogin g_getlogin
85 #endif
86
87 static void             get_shell(void);
88 static long             tokenize(char *str, char **dest, char ***destv);
89         int             do_spawn2(pTHX_ char *cmd, int exectype);
90 static BOOL             has_shell_metachars(char *ptr);
91 static long             filetime_to_clock(PFILETIME ft);
92 static BOOL             filetime_from_time(PFILETIME ft, time_t t);
93 static char *           get_emd_part(char **leading, char *trailing, ...);
94 static void             remove_dead_process(long deceased);
95 static long             find_pid(int pid);
96 static char *           qualified_path(const char *cmd);
97
98 HANDLE  w32_perldll_handle = INVALID_HANDLE_VALUE;
99 char    w32_module_name[MAX_PATH+1];
100 static DWORD    w32_platform = (DWORD)-1;
101
102 #ifdef USE_THREADS
103 #  ifdef USE_DECLSPEC_THREAD
104 __declspec(thread) char strerror_buffer[512];
105 __declspec(thread) char getlogin_buffer[128];
106 __declspec(thread) char w32_perllib_root[MAX_PATH+1];
107 #    ifdef HAVE_DES_FCRYPT
108 __declspec(thread) char crypt_buffer[30];
109 #    endif
110 #  else
111 #    define strerror_buffer     (thr->i.Wstrerror_buffer)
112 #    define getlogin_buffer     (thr->i.Wgetlogin_buffer)
113 #    define w32_perllib_root    (thr->i.Ww32_perllib_root)
114 #    define crypt_buffer        (thr->i.Wcrypt_buffer)
115 #  endif
116 #else
117 static char     strerror_buffer[512];
118 static char     getlogin_buffer[128];
119 static char     w32_perllib_root[MAX_PATH+1];
120 #  ifdef HAVE_DES_FCRYPT
121 static char     crypt_buffer[30];
122 #  endif
123 #endif
124
125 int 
126 IsWin95(void)
127 {
128     return (win32_os_id() == VER_PLATFORM_WIN32_WINDOWS);
129 }
130
131 int
132 IsWinNT(void)
133 {
134     return (win32_os_id() == VER_PLATFORM_WIN32_NT);
135 }
136
137 /* *ptr is expected to point to valid allocated space (can't be NULL) */
138 char*
139 GetRegStrFromKey(HKEY hkey, const char *lpszValueName, char** ptr, DWORD* lpDataLen)
140 {
141     /* Retrieve a REG_SZ or REG_EXPAND_SZ from the registry */
142     HKEY handle;
143     DWORD type;
144     const char *subkey = "Software\\Perl";
145     char *str = Nullch;
146     long retval;
147
148     retval = RegOpenKeyEx(hkey, subkey, 0, KEY_READ, &handle);
149     if (retval == ERROR_SUCCESS) {
150         retval = RegQueryValueEx(handle, lpszValueName, 0, &type, NULL, lpDataLen);
151         if (retval == ERROR_SUCCESS && type == REG_SZ) {
152             dPERLOBJ;
153             Renew(*ptr, *lpDataLen, char);
154             retval = RegQueryValueEx(handle, lpszValueName, 0, NULL,
155                                      (PBYTE)*ptr, lpDataLen);
156             if (retval == ERROR_SUCCESS)
157                 str = *ptr;
158         }
159         RegCloseKey(handle);
160     }
161     return str;
162 }
163
164 /* *ptr is expected to point to valid allocated space (can't be NULL) */
165 char*
166 GetRegStr(const char *lpszValueName, char** ptr, DWORD* lpDataLen)
167 {
168     char *str = GetRegStrFromKey(HKEY_CURRENT_USER, lpszValueName, ptr, lpDataLen);
169     if (!str)
170         str = GetRegStrFromKey(HKEY_LOCAL_MACHINE, lpszValueName, ptr, lpDataLen);
171     return str;
172 }
173
174 /* *prev_path is expected to point to valid allocated space (can't be NULL) */
175 static char *
176 get_emd_part(char **prev_path, char *trailing_path, ...)
177 {
178     char base[10];
179     va_list ap;
180     char mod_name[MAX_PATH+1];
181     char *ptr;
182     char *optr;
183     char *strip;
184     int oldsize, newsize;
185
186     va_start(ap, trailing_path);
187     strip = va_arg(ap, char *);
188
189     sprintf(base, "%5.3f",
190             (double)PERL_REVISION + ((double)PERL_VERSION / (double)1000));
191
192     if (!*w32_module_name) {
193         GetModuleFileName((HMODULE)((w32_perldll_handle == INVALID_HANDLE_VALUE)
194                                     ? GetModuleHandle(NULL)
195                                     : w32_perldll_handle),
196                           w32_module_name, sizeof(w32_module_name));
197
198         /* try to get full path to binary (which may be mangled when perl is
199          * run from a 16-bit app) */
200         /*PerlIO_printf(PerlIO_stderr(), "Before %s\n", w32_module_name);*/
201         (void)win32_longpath(w32_module_name);
202         /*PerlIO_printf(PerlIO_stderr(), "After  %s\n", w32_module_name);*/
203
204         /* normalize to forward slashes */
205         ptr = w32_module_name;
206         while (*ptr) {
207             if (*ptr == '\\')
208                 *ptr = '/';
209             ++ptr;
210         }
211     }
212     strcpy(mod_name, w32_module_name);
213     ptr = strrchr(mod_name, '/');
214     while (ptr && strip) {
215         /* look for directories to skip back */
216         optr = ptr;
217         *ptr = '\0';
218         ptr = strrchr(mod_name, '/');
219         /* avoid stripping component if there is no slash,
220          * or it doesn't match ... */
221         if (!ptr || stricmp(ptr+1, strip) != 0) {
222             /* ... but not if component matches 5.00X* */
223             if (!ptr || !(*strip == '5' && *(ptr+1) == '5'
224                           && strncmp(strip, base, 5) == 0
225                           && strncmp(ptr+1, base, 5) == 0))
226             {
227                 *optr = '/';
228                 ptr = optr;
229             }
230         }
231         strip = va_arg(ap, char *);
232     }
233     if (!ptr) {
234         ptr = mod_name;
235         *ptr++ = '.';
236         *ptr = '/';
237     }
238     va_end(ap);
239     strcpy(++ptr, trailing_path);
240
241     /* only add directory if it exists */
242     if (GetFileAttributes(mod_name) != (DWORD) -1) {
243         /* directory exists */
244         dPERLOBJ;
245         newsize = strlen(mod_name) + 1;
246         oldsize = strlen(*prev_path) + 1;
247         newsize += oldsize;                     /* includes plus 1 for ';' */
248         Renew(*prev_path, newsize, char);
249         (*prev_path)[oldsize-1] = ';';
250         strcpy(&(*prev_path)[oldsize], mod_name);
251         return *prev_path;
252     }
253
254     return Nullch;
255 }
256
257 char *
258 win32_get_privlib(pTHX_ char *pl)
259 {
260     char *stdlib = "lib";
261     char buffer[MAX_PATH+1];
262     char **path;
263     DWORD datalen;
264     dPERLOBJ;
265     SV *sv = sv_2mortal(newSVpvn("",127));
266
267     /* $stdlib = $HKCU{"lib-$]"} || $HKLM{"lib-$]"} || $HKCU{"lib"} || $HKLM{"lib"} || "";  */
268     sprintf(buffer, "%s-%s", stdlib, pl);
269     path = &SvPVX(sv);
270     if (!GetRegStr(buffer, path, &datalen))
271         (void)GetRegStr(stdlib, path, &datalen);
272
273     /* $stdlib .= ";$EMD/../../lib" */
274     (void)get_emd_part(path, stdlib, ARCHNAME, "bin", Nullch);
275     SvCUR_set(sv, strlen(*path));
276     SvLEN_set(sv, SvCUR(sv)+1);
277     return SvPVX(sv);
278 }
279
280 char *
281 win32_get_sitelib(pTHX_ char *pl)
282 {
283     char *sitelib = "sitelib";
284     char regstr[40];
285     char pathstr[MAX_PATH+1];
286     DWORD datalen;
287     char **path1, *str1 = Nullch;
288     char **path2, *str2 = Nullch;
289     int len, newsize;
290     dPERLOBJ;
291     SV *sv1 = sv_2mortal(newSVpvn("",127));
292     SV *sv2 = sv_2mortal(newSVpvn("",127));
293
294     /* $HKCU{"sitelib-$]"} || $HKLM{"sitelib-$]"} . ---; */
295     sprintf(regstr, "%s-%s", sitelib, pl);
296     path1 = &SvPVX(sv1);
297     (void)GetRegStr(regstr, path1, &datalen);
298
299     /* $sitelib .=
300      * ";$EMD/" . ((-d $EMD/../../../$]) ? "../../.." : "../.."). "/site/$]/lib";  */
301     sprintf(pathstr, "site/%s/lib", pl);
302     str1 = get_emd_part(path1, pathstr, ARCHNAME, "bin", pl, Nullch);
303     if (!str1 && strlen(pl) == 7) {
304         /* pl may have been SUBVERSION-specific; try again without
305          * SUBVERSION */
306         sprintf(pathstr, "site/%.5s/lib", pl);
307         str1 = get_emd_part(path1, pathstr, ARCHNAME, "bin", pl, Nullch);
308     }
309
310     /* $HKCU{'sitelib'} || $HKLM{'sitelib'} . ---; */
311     path2 = &SvPVX(sv2);
312     (void)GetRegStr(sitelib, path2, &datalen);
313
314     /* $sitelib .=
315      * ";$EMD/" . ((-d $EMD/../../../$]) ? "../../.." : "../.."). "/site/lib";  */
316     str2 = get_emd_part(path2, "site/lib", ARCHNAME, "bin", pl, Nullch);
317
318     SvCUR_set(sv1, strlen(*path1));
319     SvLEN_set(sv1, SvCUR(sv1)+1);
320     SvCUR_set(sv2, strlen(*path2));
321     SvLEN_set(sv2, SvCUR(sv2)+1);
322
323     if (!str1)
324         return *path2;
325     if (!str2)
326         return *path1;
327
328     sv_catpvn(sv1, ";", 1);
329     sv_catsv(sv1, sv2);
330
331     return SvPVX(sv1);
332 }
333
334
335 static BOOL
336 has_shell_metachars(char *ptr)
337 {
338     int inquote = 0;
339     char quote = '\0';
340
341     /*
342      * Scan string looking for redirection (< or >) or pipe
343      * characters (|) that are not in a quoted string.
344      * Shell variable interpolation (%VAR%) can also happen inside strings.
345      */
346     while (*ptr) {
347         switch(*ptr) {
348         case '%':
349             return TRUE;
350         case '\'':
351         case '\"':
352             if (inquote) {
353                 if (quote == *ptr) {
354                     inquote = 0;
355                     quote = '\0';
356                 }
357             }
358             else {
359                 quote = *ptr;
360                 inquote++;
361             }
362             break;
363         case '>':
364         case '<':
365         case '|':
366             if (!inquote)
367                 return TRUE;
368         default:
369             break;
370         }
371         ++ptr;
372     }
373     return FALSE;
374 }
375
376 #if !defined(PERL_OBJECT)
377 /* since the current process environment is being updated in util.c
378  * the library functions will get the correct environment
379  */
380 PerlIO *
381 Perl_my_popen(pTHX_ char *cmd, char *mode)
382 {
383 #ifdef FIXCMD
384 #define fixcmd(x)       {                                       \
385                             char *pspace = strchr((x),' ');     \
386                             if (pspace) {                       \
387                                 char *p = (x);                  \
388                                 while (p < pspace) {            \
389                                     if (*p == '/')              \
390                                         *p = '\\';              \
391                                     p++;                        \
392                                 }                               \
393                             }                                   \
394                         }
395 #else
396 #define fixcmd(x)
397 #endif
398     fixcmd(cmd);
399     PERL_FLUSHALL_FOR_CHILD;
400     return win32_popen(cmd, mode);
401 }
402
403 long
404 Perl_my_pclose(pTHX_ PerlIO *fp)
405 {
406     return win32_pclose(fp);
407 }
408 #endif
409
410 DllExport unsigned long
411 win32_os_id(void)
412 {
413     static OSVERSIONINFO osver;
414
415     if (osver.dwPlatformId != w32_platform) {
416         memset(&osver, 0, sizeof(OSVERSIONINFO));
417         osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
418         GetVersionEx(&osver);
419         w32_platform = osver.dwPlatformId;
420     }
421     return (unsigned long)w32_platform;
422 }
423
424 /* Tokenize a string.  Words are null-separated, and the list
425  * ends with a doubled null.  Any character (except null and
426  * including backslash) may be escaped by preceding it with a
427  * backslash (the backslash will be stripped).
428  * Returns number of words in result buffer.
429  */
430 static long
431 tokenize(char *str, char **dest, char ***destv)
432 {
433     char *retstart = Nullch;
434     char **retvstart = 0;
435     int items = -1;
436     if (str) {
437         dPERLOBJ;
438         int slen = strlen(str);
439         register char *ret;
440         register char **retv;
441         New(1307, ret, slen+2, char);
442         New(1308, retv, (slen+3)/2, char*);
443
444         retstart = ret;
445         retvstart = retv;
446         *retv = ret;
447         items = 0;
448         while (*str) {
449             *ret = *str++;
450             if (*ret == '\\' && *str)
451                 *ret = *str++;
452             else if (*ret == ' ') {
453                 while (*str == ' ')
454                     str++;
455                 if (ret == retstart)
456                     ret--;
457                 else {
458                     *ret = '\0';
459                     ++items;
460                     if (*str)
461                         *++retv = ret+1;
462                 }
463             }
464             else if (!*str)
465                 ++items;
466             ret++;
467         }
468         retvstart[items] = Nullch;
469         *ret++ = '\0';
470         *ret = '\0';
471     }
472     *dest = retstart;
473     *destv = retvstart;
474     return items;
475 }
476
477 static void
478 get_shell(void)
479 {
480     dPERLOBJ;
481     if (!w32_perlshell_tokens) {
482         /* we don't use COMSPEC here for two reasons:
483          *  1. the same reason perl on UNIX doesn't use SHELL--rampant and
484          *     uncontrolled unportability of the ensuing scripts.
485          *  2. PERL5SHELL could be set to a shell that may not be fit for
486          *     interactive use (which is what most programs look in COMSPEC
487          *     for).
488          */
489         char* defaultshell = (IsWinNT() ? "cmd.exe /x/c" : "command.com /c");
490         char *usershell = getenv("PERL5SHELL");
491         w32_perlshell_items = tokenize(usershell ? usershell : defaultshell,
492                                        &w32_perlshell_tokens,
493                                        &w32_perlshell_vec);
494     }
495 }
496
497 int
498 do_aspawn(pTHX_ void *vreally, void **vmark, void **vsp)
499 {
500     SV *really = (SV*)vreally;
501     SV **mark = (SV**)vmark;
502     SV **sp = (SV**)vsp;
503     char **argv;
504     char *str;
505     int status;
506     int flag = P_WAIT;
507     int index = 0;
508     dPERLOBJ;
509
510     if (sp <= mark)
511         return -1;
512
513     get_shell();
514     New(1306, argv, (sp - mark) + w32_perlshell_items + 2, char*);
515
516     if (SvNIOKp(*(mark+1)) && !SvPOKp(*(mark+1))) {
517         ++mark;
518         flag = SvIVx(*mark);
519     }
520
521     while (++mark <= sp) {
522         if (*mark && (str = SvPV_nolen(*mark)))
523             argv[index++] = str;
524         else
525             argv[index++] = "";
526     }
527     argv[index++] = 0;
528    
529     status = win32_spawnvp(flag,
530                            (const char*)(really ? SvPV_nolen(really) : argv[0]),
531                            (const char* const*)argv);
532
533     if (status < 0 && (errno == ENOEXEC || errno == ENOENT)) {
534         /* possible shell-builtin, invoke with shell */
535         int sh_items;
536         sh_items = w32_perlshell_items;
537         while (--index >= 0)
538             argv[index+sh_items] = argv[index];
539         while (--sh_items >= 0)
540             argv[sh_items] = w32_perlshell_vec[sh_items];
541    
542         status = win32_spawnvp(flag,
543                                (const char*)(really ? SvPV_nolen(really) : argv[0]),
544                                (const char* const*)argv);
545     }
546
547     if (flag != P_NOWAIT) {
548         if (status < 0) {
549             if (PL_dowarn)
550                 Perl_warn(aTHX_ "Can't spawn \"%s\": %s", argv[0], strerror(errno));
551             status = 255 * 256;
552         }
553         else
554             status *= 256;
555         PL_statusvalue = status;
556     }
557     Safefree(argv);
558     return (status);
559 }
560
561 int
562 do_spawn2(pTHX_ char *cmd, int exectype)
563 {
564     char **a;
565     char *s;
566     char **argv;
567     int status = -1;
568     BOOL needToTry = TRUE;
569     char *cmd2;
570     dPERLOBJ;
571
572     /* Save an extra exec if possible. See if there are shell
573      * metacharacters in it */
574     if (!has_shell_metachars(cmd)) {
575         New(1301,argv, strlen(cmd) / 2 + 2, char*);
576         New(1302,cmd2, strlen(cmd) + 1, char);
577         strcpy(cmd2, cmd);
578         a = argv;
579         for (s = cmd2; *s;) {
580             while (*s && isSPACE(*s))
581                 s++;
582             if (*s)
583                 *(a++) = s;
584             while (*s && !isSPACE(*s))
585                 s++;
586             if (*s)
587                 *s++ = '\0';
588         }
589         *a = Nullch;
590         if (argv[0]) {
591             switch (exectype) {
592             case EXECF_SPAWN:
593                 status = win32_spawnvp(P_WAIT, argv[0],
594                                        (const char* const*)argv);
595                 break;
596             case EXECF_SPAWN_NOWAIT:
597                 status = win32_spawnvp(P_NOWAIT, argv[0],
598                                        (const char* const*)argv);
599                 break;
600             case EXECF_EXEC:
601                 status = win32_execvp(argv[0], (const char* const*)argv);
602                 break;
603             }
604             if (status != -1 || errno == 0)
605                 needToTry = FALSE;
606         }
607         Safefree(argv);
608         Safefree(cmd2);
609     }
610     if (needToTry) {
611         char **argv;
612         int i = -1;
613         get_shell();
614         New(1306, argv, w32_perlshell_items + 2, char*);
615         while (++i < w32_perlshell_items)
616             argv[i] = w32_perlshell_vec[i];
617         argv[i++] = cmd;
618         argv[i] = Nullch;
619         switch (exectype) {
620         case EXECF_SPAWN:
621             status = win32_spawnvp(P_WAIT, argv[0],
622                                    (const char* const*)argv);
623             break;
624         case EXECF_SPAWN_NOWAIT:
625             status = win32_spawnvp(P_NOWAIT, argv[0],
626                                    (const char* const*)argv);
627             break;
628         case EXECF_EXEC:
629             status = win32_execvp(argv[0], (const char* const*)argv);
630             break;
631         }
632         cmd = argv[0];
633         Safefree(argv);
634     }
635     if (exectype != EXECF_SPAWN_NOWAIT) {
636         if (status < 0) {
637             if (PL_dowarn)
638                 Perl_warn(aTHX_ "Can't %s \"%s\": %s",
639                      (exectype == EXECF_EXEC ? "exec" : "spawn"),
640                      cmd, strerror(errno));
641             status = 255 * 256;
642         }
643         else
644             status *= 256;
645         PL_statusvalue = status;
646     }
647     return (status);
648 }
649
650 int
651 do_spawn(pTHX_ char *cmd)
652 {
653     return do_spawn2(aTHX_ cmd, EXECF_SPAWN);
654 }
655
656 int
657 do_spawn_nowait(pTHX_ char *cmd)
658 {
659     return do_spawn2(aTHX_ cmd, EXECF_SPAWN_NOWAIT);
660 }
661
662 bool
663 Perl_do_exec(pTHX_ char *cmd)
664 {
665     do_spawn2(aTHX_ cmd, EXECF_EXEC);
666     return FALSE;
667 }
668
669 /* The idea here is to read all the directory names into a string table
670  * (separated by nulls) and when one of the other dir functions is called
671  * return the pointer to the current file name.
672  */
673 DIR *
674 win32_opendir(char *filename)
675 {
676     dTHX;
677     DIR                 *p;
678     long                len;
679     long                idx;
680     char                scanname[MAX_PATH+3];
681     struct stat         sbuf;
682     WIN32_FIND_DATAA    aFindData;
683     WIN32_FIND_DATAW    wFindData;
684     HANDLE              fh;
685     char                buffer[MAX_PATH*2];
686     WCHAR               wbuffer[MAX_PATH];
687     char*               ptr;            
688     dPERLOBJ;
689
690     len = strlen(filename);
691     if (len > MAX_PATH)
692         return NULL;
693
694     /* check to see if filename is a directory */
695     if (win32_stat(filename, &sbuf) < 0 || !S_ISDIR(sbuf.st_mode))
696         return NULL;
697
698     /* Get us a DIR structure */
699     Newz(1303, p, 1, DIR);
700     if (p == NULL)
701         return NULL;
702
703     /* Create the search pattern */
704     strcpy(scanname, filename);
705
706     /* bare drive name means look in cwd for drive */
707     if (len == 2 && isALPHA(scanname[0]) && scanname[1] == ':') {
708         scanname[len++] = '.';
709         scanname[len++] = '/';
710     }
711     else if (scanname[len-1] != '/' && scanname[len-1] != '\\') {
712         scanname[len++] = '/';
713     }
714     scanname[len++] = '*';
715     scanname[len] = '\0';
716
717     /* do the FindFirstFile call */
718     if (USING_WIDE()) {
719         A2WHELPER(scanname, wbuffer, sizeof(wbuffer));
720         fh = FindFirstFileW(wbuffer, &wFindData);
721     }
722     else {
723         fh = FindFirstFileA(scanname, &aFindData);
724     }
725     if (fh == INVALID_HANDLE_VALUE) {
726         /* FindFirstFile() fails on empty drives! */
727         if (GetLastError() == ERROR_FILE_NOT_FOUND)
728             return p;
729         Safefree( p);
730         return NULL;
731     }
732
733     /* now allocate the first part of the string table for
734      * the filenames that we find.
735      */
736     if (USING_WIDE()) {
737         W2AHELPER(wFindData.cFileName, buffer, sizeof(buffer));
738         ptr = buffer;
739     }
740     else {
741         ptr = aFindData.cFileName;
742     }
743     idx = strlen(ptr)+1;
744     New(1304, p->start, idx, char);
745     if (p->start == NULL)
746         Perl_croak_nocontext("opendir: malloc failed!\n");
747     strcpy(p->start, ptr);
748     p->nfiles++;
749
750     /* loop finding all the files that match the wildcard
751      * (which should be all of them in this directory!).
752      * the variable idx should point one past the null terminator
753      * of the previous string found.
754      */
755     while (USING_WIDE()
756             ? FindNextFileW(fh, &wFindData)
757             : FindNextFileA(fh, &aFindData)) {
758         if (USING_WIDE()) {
759         W2AHELPER(wFindData.cFileName, buffer, sizeof(buffer));
760         }
761         /* ptr is set above to the correct area */
762         len = strlen(ptr);
763         /* bump the string table size by enough for the
764          * new name and it's null terminator
765          */
766         Renew(p->start, idx+len+1, char);
767         if (p->start == NULL)
768             Perl_croak_nocontext("opendir: malloc failed!\n");
769         strcpy(&p->start[idx], ptr);
770         p->nfiles++;
771         idx += len+1;
772     }
773     FindClose(fh);
774     p->size = idx;
775     p->curr = p->start;
776     return p;
777 }
778
779
780 /* Readdir just returns the current string pointer and bumps the
781  * string pointer to the nDllExport entry.
782  */
783 struct direct *
784 win32_readdir(DIR *dirp)
785 {
786     int         len;
787     static int  dummy = 0;
788
789     if (dirp->curr) {
790         /* first set up the structure to return */
791         len = strlen(dirp->curr);
792         strcpy(dirp->dirstr.d_name, dirp->curr);
793         dirp->dirstr.d_namlen = len;
794
795         /* Fake an inode */
796         dirp->dirstr.d_ino = dummy++;
797
798         /* Now set up for the nDllExport call to readdir */
799         dirp->curr += len + 1;
800         if (dirp->curr >= (dirp->start + dirp->size)) {
801             dirp->curr = NULL;
802         }
803
804         return &(dirp->dirstr);
805     } 
806     else
807         return NULL;
808 }
809
810 /* Telldir returns the current string pointer position */
811 long
812 win32_telldir(DIR *dirp)
813 {
814     return (long) dirp->curr;
815 }
816
817
818 /* Seekdir moves the string pointer to a previously saved position
819  *(Saved by telldir).
820  */
821 void
822 win32_seekdir(DIR *dirp, long loc)
823 {
824     dirp->curr = (char *)loc;
825 }
826
827 /* Rewinddir resets the string pointer to the start */
828 void
829 win32_rewinddir(DIR *dirp)
830 {
831     dirp->curr = dirp->start;
832 }
833
834 /* free the memory allocated by opendir */
835 int
836 win32_closedir(DIR *dirp)
837 {
838     dPERLOBJ;
839     Safefree(dirp->start);
840     Safefree(dirp);
841     return 1;
842 }
843
844
845 /*
846  * various stubs
847  */
848
849
850 /* Ownership
851  *
852  * Just pretend that everyone is a superuser. NT will let us know if
853  * we don\'t really have permission to do something.
854  */
855
856 #define ROOT_UID    ((uid_t)0)
857 #define ROOT_GID    ((gid_t)0)
858
859 uid_t
860 getuid(void)
861 {
862     return ROOT_UID;
863 }
864
865 uid_t
866 geteuid(void)
867 {
868     return ROOT_UID;
869 }
870
871 gid_t
872 getgid(void)
873 {
874     return ROOT_GID;
875 }
876
877 gid_t
878 getegid(void)
879 {
880     return ROOT_GID;
881 }
882
883 int
884 setuid(uid_t auid)
885
886     return (auid == ROOT_UID ? 0 : -1);
887 }
888
889 int
890 setgid(gid_t agid)
891 {
892     return (agid == ROOT_GID ? 0 : -1);
893 }
894
895 char *
896 getlogin(void)
897 {
898     dTHX;
899     char *buf = getlogin_buffer;
900     DWORD size = sizeof(getlogin_buffer);
901     if (GetUserName(buf,&size))
902         return buf;
903     return (char*)NULL;
904 }
905
906 int
907 chown(const char *path, uid_t owner, gid_t group)
908 {
909     /* XXX noop */
910     return 0;
911 }
912
913 static long
914 find_pid(int pid)
915 {
916     long child;
917     dPERLOBJ;
918     for (child = 0 ; child < w32_num_children ; ++child) {
919         if (w32_child_pids[child] == pid)
920             return child;
921     }
922     return -1;
923 }
924
925 static void
926 remove_dead_process(long child)
927 {
928     if (child >= 0) {
929         dPERLOBJ;
930         CloseHandle(w32_child_handles[child]);
931         Copy(&w32_child_handles[child+1], &w32_child_handles[child],
932              (w32_num_children-child-1), HANDLE);
933         Copy(&w32_child_pids[child+1], &w32_child_pids[child],
934              (w32_num_children-child-1), DWORD);
935         w32_num_children--;
936     }
937 }
938
939 DllExport int
940 win32_kill(int pid, int sig)
941 {
942     HANDLE hProcess;
943     hProcess = OpenProcess(PROCESS_ALL_ACCESS, TRUE, pid);
944     if (hProcess && TerminateProcess(hProcess, sig))
945         CloseHandle(hProcess);
946     else {
947         errno = EINVAL;
948         return -1;
949     }
950     return 0;
951 }
952
953 /*
954  * File system stuff
955  */
956
957 DllExport unsigned int
958 win32_sleep(unsigned int t)
959 {
960     Sleep(t*1000);
961     return 0;
962 }
963
964 DllExport int
965 win32_stat(const char *path, struct stat *buffer)
966 {
967     char        t[MAX_PATH+1]; 
968     int         l = strlen(path);
969     int         res;
970     WCHAR       wbuffer[MAX_PATH];
971
972     if (l > 1) {
973         switch(path[l - 1]) {
974         /* FindFirstFile() and stat() are buggy with a trailing
975          * backslash, so change it to a forward slash :-( */
976         case '\\':
977             strncpy(t, path, l-1);
978             t[l - 1] = '/';
979             t[l] = '\0';
980             path = t;
981             break;
982         /* FindFirstFile() is buggy with "x:", so add a dot :-( */
983         case ':':
984             if (l == 2 && isALPHA(path[0])) {
985                 t[0] = path[0]; t[1] = ':'; t[2] = '.'; t[3] = '\0';
986                 l = 3;
987                 path = t;
988             }
989             break;
990         }
991     }
992     dPERLOBJ;
993     if (USING_WIDE()) {
994         dTHX;
995         A2WHELPER(path, wbuffer, sizeof(wbuffer));
996         res = _wstat(wbuffer, (struct _stat *)buffer);
997     }
998     else {
999         res = stat(path, buffer);
1000     }
1001     if (res < 0) {
1002         /* CRT is buggy on sharenames, so make sure it really isn't.
1003          * XXX using GetFileAttributesEx() will enable us to set
1004          * buffer->st_*time (but note that's not available on the
1005          * Windows of 1995) */
1006         DWORD r;
1007         if (USING_WIDE()) {
1008             r = GetFileAttributesW(wbuffer);
1009         }
1010         else {
1011             r = GetFileAttributesA(path);
1012         }
1013         if (r != 0xffffffff && (r & FILE_ATTRIBUTE_DIRECTORY)) {
1014             /* buffer may still contain old garbage since stat() failed */
1015             Zero(buffer, 1, struct stat);
1016             buffer->st_mode = S_IFDIR | S_IREAD;
1017             errno = 0;
1018             if (!(r & FILE_ATTRIBUTE_READONLY))
1019                 buffer->st_mode |= S_IWRITE | S_IEXEC;
1020             return 0;
1021         }
1022     }
1023     else {
1024         if (l == 3 && isALPHA(path[0]) && path[1] == ':'
1025             && (path[2] == '\\' || path[2] == '/'))
1026         {
1027             /* The drive can be inaccessible, some _stat()s are buggy */
1028             if (USING_WIDE()
1029                 ? !GetVolumeInformationW(wbuffer,NULL,0,NULL,NULL,NULL,NULL,0)
1030                 : !GetVolumeInformationA(path,NULL,0,NULL,NULL,NULL,NULL,0)) {
1031                 errno = ENOENT;
1032                 return -1;
1033             }
1034         }
1035 #ifdef __BORLANDC__
1036         if (S_ISDIR(buffer->st_mode))
1037             buffer->st_mode |= S_IWRITE | S_IEXEC;
1038         else if (S_ISREG(buffer->st_mode)) {
1039             if (l >= 4 && path[l-4] == '.') {
1040                 const char *e = path + l - 3;
1041                 if (strnicmp(e,"exe",3)
1042                     && strnicmp(e,"bat",3)
1043                     && strnicmp(e,"com",3)
1044                     && (IsWin95() || strnicmp(e,"cmd",3)))
1045                     buffer->st_mode &= ~S_IEXEC;
1046                 else
1047                     buffer->st_mode |= S_IEXEC;
1048             }
1049             else
1050                 buffer->st_mode &= ~S_IEXEC;
1051         }
1052 #endif
1053     }
1054     return res;
1055 }
1056
1057 /* Find the longname of a given path.  path is destructively modified.
1058  * It should have space for at least MAX_PATH characters. */
1059 DllExport char *
1060 win32_longpath(char *path)
1061 {
1062     WIN32_FIND_DATA fdata;
1063     HANDLE fhand;
1064     char tmpbuf[MAX_PATH+1];
1065     char *tmpstart = tmpbuf;
1066     char *start = path;
1067     char sep;
1068     if (!path)
1069         return Nullch;
1070
1071     /* drive prefix */
1072     if (isALPHA(path[0]) && path[1] == ':' &&
1073         (path[2] == '/' || path[2] == '\\'))
1074     {
1075         start = path + 2;
1076         *tmpstart++ = path[0];
1077         *tmpstart++ = ':';
1078     }
1079     /* UNC prefix */
1080     else if ((path[0] == '/' || path[0] == '\\') &&
1081              (path[1] == '/' || path[1] == '\\'))
1082     {
1083         start = path + 2;
1084         *tmpstart++ = path[0];
1085         *tmpstart++ = path[1];
1086         /* copy machine name */
1087         while (*start && *start != '/' && *start != '\\')
1088             *tmpstart++ = *start++;
1089         if (*start) {
1090             *tmpstart++ = *start;
1091             start++;
1092             /* copy share name */
1093             while (*start && *start != '/' && *start != '\\')
1094                 *tmpstart++ = *start++;
1095         }
1096     }
1097     sep = *start++;
1098     if (sep == '/' || sep == '\\')
1099         *tmpstart++ = sep;
1100     *tmpstart = '\0';
1101     while (sep) {
1102         /* walk up to slash */
1103         while (*start && *start != '/' && *start != '\\')
1104             ++start;
1105
1106         /* discard doubled slashes */
1107         while (*start && (start[1] == '/' || start[1] == '\\'))
1108             ++start;
1109         sep = *start;
1110
1111         /* stop and find full name of component */
1112         *start = '\0';
1113         fhand = FindFirstFile(path,&fdata);
1114         if (fhand != INVALID_HANDLE_VALUE) {
1115             strcpy(tmpstart, fdata.cFileName);
1116             tmpstart += strlen(fdata.cFileName);
1117             if (sep)
1118                 *tmpstart++ = sep;
1119             *tmpstart = '\0';
1120             *start++ = sep;
1121             FindClose(fhand);
1122         }
1123         else {
1124             /* failed a step, just return without side effects */
1125             /*PerlIO_printf(PerlIO_stderr(), "Failed to find %s\n", path);*/
1126             *start = sep;
1127             return Nullch;
1128         }
1129     }
1130     strcpy(path,tmpbuf);
1131     return path;
1132 }
1133
1134 #ifndef USE_WIN32_RTL_ENV
1135
1136 DllExport char *
1137 win32_getenv(const char *name)
1138 {
1139     dTHX;
1140     dPERLOBJ;
1141     static char *curitem = Nullch;      /* XXX threadead */
1142     static WCHAR *wCuritem = (WCHAR*)Nullch;    /* XXX threadead */
1143     static DWORD curlen = 0, wCurlen = 0;/* XXX threadead */
1144     WCHAR wBuffer[MAX_PATH];
1145     DWORD needlen;
1146
1147     if (USING_WIDE()) {
1148         if (!wCuritem) {
1149             wCurlen = 512;
1150             New(1306,wCuritem,wCurlen,WCHAR);
1151         }
1152     }
1153     if (!curitem) {
1154         curlen = 512;
1155         New(1305,curitem,curlen,char);
1156     }
1157
1158     if (USING_WIDE()) {
1159         A2WHELPER(name, wBuffer, sizeof(wBuffer));
1160         needlen = GetEnvironmentVariableW(wBuffer,wCuritem,wCurlen);
1161     }
1162     else
1163         needlen = GetEnvironmentVariableA(name,curitem,curlen);
1164     if (needlen != 0) {
1165         if (USING_WIDE()) {
1166             while (needlen > wCurlen) {
1167                 Renew(wCuritem,needlen,WCHAR);
1168                 wCurlen = needlen;
1169                 needlen = GetEnvironmentVariableW(wBuffer,wCuritem,wCurlen);
1170             }
1171             if (needlen > curlen) {
1172                 Renew(curitem,needlen,char);
1173                 curlen = needlen;
1174             }
1175             W2AHELPER(wCuritem, curitem, curlen);
1176         }
1177         else {
1178             while (needlen > curlen) {
1179                 Renew(curitem,needlen,char);
1180                 curlen = needlen;
1181                 needlen = GetEnvironmentVariableA(name,curitem,curlen);
1182             }
1183         }
1184     }
1185     else {
1186         /* allow any environment variables that begin with 'PERL'
1187            to be stored in the registry */
1188         if (curitem)
1189             *curitem = '\0';
1190
1191         if (strncmp(name, "PERL", 4) == 0) {
1192             if (curitem) {
1193                 Safefree(curitem);
1194                 curitem = Nullch;
1195                 curlen = 0;
1196             }
1197             curitem = GetRegStr(name, &curitem, &curlen);
1198         }
1199     }
1200     if (curitem && *curitem == '\0')
1201         return Nullch;
1202
1203     return curitem;
1204 }
1205
1206 DllExport int
1207 win32_putenv(const char *name)
1208 {
1209     char* curitem;
1210     char* val;
1211     WCHAR* wCuritem;
1212     WCHAR* wVal;
1213     int length, relval = -1;
1214     dPERLOBJ;
1215     if (name) {
1216         if (USING_WIDE()) {
1217             dTHX;
1218             length = strlen(name)+1;
1219             New(1309,wCuritem,length,WCHAR);
1220             A2WHELPER(name, wCuritem, length*2);
1221             wVal = wcschr(wCuritem, '=');
1222             if(wVal) {
1223                 *wVal++ = '\0';
1224                 if(SetEnvironmentVariableW(wCuritem, *wVal ? wVal : NULL))
1225                     relval = 0;
1226             }
1227             Safefree(wCuritem);
1228         }
1229         else {
1230             New(1309,curitem,strlen(name)+1,char);
1231             strcpy(curitem, name);
1232             val = strchr(curitem, '=');
1233             if(val) {
1234                 /* The sane way to deal with the environment.
1235                  * Has these advantages over putenv() & co.:
1236                  *  * enables us to store a truly empty value in the
1237                  *    environment (like in UNIX).
1238                  *  * we don't have to deal with RTL globals, bugs and leaks.
1239                  *  * Much faster.
1240                  * Why you may want to enable USE_WIN32_RTL_ENV:
1241                  *  * environ[] and RTL functions will not reflect changes,
1242                  *    which might be an issue if extensions want to access
1243                  *    the env. via RTL.  This cuts both ways, since RTL will
1244                  *    not see changes made by extensions that call the Win32
1245                  *    functions directly, either.
1246                  * GSAR 97-06-07
1247                  */
1248                 *val++ = '\0';
1249                 if(SetEnvironmentVariableA(curitem, *val ? val : NULL))
1250                     relval = 0;
1251             }
1252             Safefree(curitem);
1253         }
1254     }
1255     return relval;
1256 }
1257
1258 #endif
1259
1260 static long
1261 filetime_to_clock(PFILETIME ft)
1262 {
1263  __int64 qw = ft->dwHighDateTime;
1264  qw <<= 32;
1265  qw |= ft->dwLowDateTime;
1266  qw /= 10000;  /* File time ticks at 0.1uS, clock at 1mS */
1267  return (long) qw;
1268 }
1269
1270 DllExport int
1271 win32_times(struct tms *timebuf)
1272 {
1273     FILETIME user;
1274     FILETIME kernel;
1275     FILETIME dummy;
1276     if (GetProcessTimes(GetCurrentProcess(), &dummy, &dummy, 
1277                         &kernel,&user)) {
1278         timebuf->tms_utime = filetime_to_clock(&user);
1279         timebuf->tms_stime = filetime_to_clock(&kernel);
1280         timebuf->tms_cutime = 0;
1281         timebuf->tms_cstime = 0;
1282         
1283     } else { 
1284         /* That failed - e.g. Win95 fallback to clock() */
1285         clock_t t = clock();
1286         timebuf->tms_utime = t;
1287         timebuf->tms_stime = 0;
1288         timebuf->tms_cutime = 0;
1289         timebuf->tms_cstime = 0;
1290     }
1291     return 0;
1292 }
1293
1294 /* fix utime() so it works on directories in NT
1295  * thanks to Jan Dubois <jan.dubois@ibm.net>
1296  */
1297 static BOOL
1298 filetime_from_time(PFILETIME pFileTime, time_t Time)
1299 {
1300     struct tm *pTM = gmtime(&Time);
1301     SYSTEMTIME SystemTime;
1302
1303     if (pTM == NULL)
1304         return FALSE;
1305
1306     SystemTime.wYear   = pTM->tm_year + 1900;
1307     SystemTime.wMonth  = pTM->tm_mon + 1;
1308     SystemTime.wDay    = pTM->tm_mday;
1309     SystemTime.wHour   = pTM->tm_hour;
1310     SystemTime.wMinute = pTM->tm_min;
1311     SystemTime.wSecond = pTM->tm_sec;
1312     SystemTime.wMilliseconds = 0;
1313
1314     return SystemTimeToFileTime(&SystemTime, pFileTime);
1315 }
1316
1317 DllExport int
1318 win32_utime(const char *filename, struct utimbuf *times)
1319 {
1320     HANDLE handle;
1321     FILETIME ftCreate;
1322     FILETIME ftAccess;
1323     FILETIME ftWrite;
1324     struct utimbuf TimeBuffer;
1325     WCHAR wbuffer[MAX_PATH];
1326     dPERLOBJ;
1327
1328     int rc;
1329     if (USING_WIDE()) {
1330         dTHX;
1331         A2WHELPER(filename, wbuffer, sizeof(wbuffer));
1332         rc = _wutime(wbuffer, (struct _utimbuf*)times);
1333     }
1334     else {
1335         rc = utime(filename, times);
1336     }
1337     /* EACCES: path specifies directory or readonly file */
1338     if (rc == 0 || errno != EACCES /* || !IsWinNT() */)
1339         return rc;
1340
1341     if (times == NULL) {
1342         times = &TimeBuffer;
1343         time(&times->actime);
1344         times->modtime = times->actime;
1345     }
1346
1347     /* This will (and should) still fail on readonly files */
1348     if (USING_WIDE()) {
1349         handle = CreateFileW(wbuffer, GENERIC_READ | GENERIC_WRITE,
1350                             FILE_SHARE_READ | FILE_SHARE_DELETE, NULL,
1351                             OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
1352     }
1353     else {
1354         handle = CreateFileA(filename, GENERIC_READ | GENERIC_WRITE,
1355                             FILE_SHARE_READ | FILE_SHARE_DELETE, NULL,
1356                             OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
1357     }
1358     if (handle == INVALID_HANDLE_VALUE)
1359         return rc;
1360
1361     if (GetFileTime(handle, &ftCreate, &ftAccess, &ftWrite) &&
1362         filetime_from_time(&ftAccess, times->actime) &&
1363         filetime_from_time(&ftWrite, times->modtime) &&
1364         SetFileTime(handle, &ftCreate, &ftAccess, &ftWrite))
1365     {
1366         rc = 0;
1367     }
1368
1369     CloseHandle(handle);
1370     return rc;
1371 }
1372
1373 DllExport int
1374 win32_uname(struct utsname *name)
1375 {
1376     struct hostent *hep;
1377     STRLEN nodemax = sizeof(name->nodename)-1;
1378     OSVERSIONINFO osver;
1379
1380     memset(&osver, 0, sizeof(OSVERSIONINFO));
1381     osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
1382     if (GetVersionEx(&osver)) {
1383         /* sysname */
1384         switch (osver.dwPlatformId) {
1385         case VER_PLATFORM_WIN32_WINDOWS:
1386             strcpy(name->sysname, "Windows");
1387             break;
1388         case VER_PLATFORM_WIN32_NT:
1389             strcpy(name->sysname, "Windows NT");
1390             break;
1391         case VER_PLATFORM_WIN32s:
1392             strcpy(name->sysname, "Win32s");
1393             break;
1394         default:
1395             strcpy(name->sysname, "Win32 Unknown");
1396             break;
1397         }
1398
1399         /* release */
1400         sprintf(name->release, "%d.%d",
1401                 osver.dwMajorVersion, osver.dwMinorVersion);
1402
1403         /* version */
1404         sprintf(name->version, "Build %d",
1405                 osver.dwPlatformId == VER_PLATFORM_WIN32_NT
1406                 ? osver.dwBuildNumber : (osver.dwBuildNumber & 0xffff));
1407         if (osver.szCSDVersion[0]) {
1408             char *buf = name->version + strlen(name->version);
1409             sprintf(buf, " (%s)", osver.szCSDVersion);
1410         }
1411     }
1412     else {
1413         *name->sysname = '\0';
1414         *name->version = '\0';
1415         *name->release = '\0';
1416     }
1417
1418     /* nodename */
1419     hep = win32_gethostbyname("localhost");
1420     if (hep) {
1421         STRLEN len = strlen(hep->h_name);
1422         if (len <= nodemax) {
1423             strcpy(name->nodename, hep->h_name);
1424         }
1425         else {
1426             strncpy(name->nodename, hep->h_name, nodemax);
1427             name->nodename[nodemax] = '\0';
1428         }
1429     }
1430     else {
1431         DWORD sz = nodemax;
1432         if (!GetComputerName(name->nodename, &sz))
1433             *name->nodename = '\0';
1434     }
1435
1436     /* machine (architecture) */
1437     {
1438         SYSTEM_INFO info;
1439         char *arch;
1440         GetSystemInfo(&info);
1441
1442 #if defined(__BORLANDC__) || defined(__MINGW32__)
1443         switch (info.u.s.wProcessorArchitecture) {
1444 #else
1445         switch (info.wProcessorArchitecture) {
1446 #endif
1447         case PROCESSOR_ARCHITECTURE_INTEL:
1448             arch = "x86"; break;
1449         case PROCESSOR_ARCHITECTURE_MIPS:
1450             arch = "mips"; break;
1451         case PROCESSOR_ARCHITECTURE_ALPHA:
1452             arch = "alpha"; break;
1453         case PROCESSOR_ARCHITECTURE_PPC:
1454             arch = "ppc"; break;
1455         default:
1456             arch = "unknown"; break;
1457         }
1458         strcpy(name->machine, arch);
1459     }
1460     return 0;
1461 }
1462
1463 DllExport int
1464 win32_waitpid(int pid, int *status, int flags)
1465 {
1466     dPERLOBJ;
1467     int retval = -1;
1468     if (pid == -1) 
1469         return win32_wait(status);
1470     else {
1471         long child = find_pid(pid);
1472         if (child >= 0) {
1473             HANDLE hProcess = w32_child_handles[child];
1474             DWORD waitcode = WaitForSingleObject(hProcess, INFINITE);
1475             if (waitcode != WAIT_FAILED) {
1476                 if (GetExitCodeProcess(hProcess, &waitcode)) {
1477                     *status = (int)((waitcode & 0xff) << 8);
1478                     retval = (int)w32_child_pids[child];
1479                     remove_dead_process(child);
1480                     return retval;
1481                 }
1482             }
1483             else
1484                 errno = ECHILD;
1485         }
1486         else {
1487             retval = cwait(status, pid, WAIT_CHILD);
1488             /* cwait() returns "correctly" on Borland */
1489 #ifndef __BORLANDC__
1490             if (status)
1491                 *status *= 256;
1492 #endif
1493         }
1494     }
1495     return retval >= 0 ? pid : retval;                
1496 }
1497
1498 DllExport int
1499 win32_wait(int *status)
1500 {
1501     /* XXX this wait emulation only knows about processes
1502      * spawned via win32_spawnvp(P_NOWAIT, ...).
1503      */
1504     int i, retval;
1505     DWORD exitcode, waitcode;
1506     dPERLOBJ;
1507
1508     if (!w32_num_children) {
1509         errno = ECHILD;
1510         return -1;
1511     }
1512
1513     /* if a child exists, wait for it to die */
1514     waitcode = WaitForMultipleObjects(w32_num_children,
1515                                       w32_child_handles,
1516                                       FALSE,
1517                                       INFINITE);
1518     if (waitcode != WAIT_FAILED) {
1519         if (waitcode >= WAIT_ABANDONED_0
1520             && waitcode < WAIT_ABANDONED_0 + w32_num_children)
1521             i = waitcode - WAIT_ABANDONED_0;
1522         else
1523             i = waitcode - WAIT_OBJECT_0;
1524         if (GetExitCodeProcess(w32_child_handles[i], &exitcode) ) {
1525             *status = (int)((exitcode & 0xff) << 8);
1526             retval = (int)w32_child_pids[i];
1527             remove_dead_process(i);
1528             return retval;
1529         }
1530     }
1531
1532 FAILED:
1533     errno = GetLastError();
1534     return -1;
1535 }
1536
1537 static UINT timerid = 0;
1538
1539 static VOID CALLBACK TimerProc(HWND win, UINT msg, UINT id, DWORD time)
1540 {
1541     dPERLOBJ;
1542     KillTimer(NULL,timerid);
1543     timerid=0;  
1544     sighandler(14);
1545 }
1546
1547 DllExport unsigned int
1548 win32_alarm(unsigned int sec)
1549 {
1550     /* 
1551      * the 'obvious' implentation is SetTimer() with a callback
1552      * which does whatever receiving SIGALRM would do 
1553      * we cannot use SIGALRM even via raise() as it is not 
1554      * one of the supported codes in <signal.h>
1555      *
1556      * Snag is unless something is looking at the message queue
1557      * nothing happens :-(
1558      */ 
1559     dPERLOBJ;
1560     if (sec)
1561      {
1562       timerid = SetTimer(NULL,timerid,sec*1000,(TIMERPROC)TimerProc);
1563       if (!timerid)
1564        Perl_croak_nocontext("Cannot set timer");
1565      } 
1566     else
1567      {
1568       if (timerid)
1569        {
1570         KillTimer(NULL,timerid);
1571         timerid=0;  
1572        }
1573      }
1574     return 0;
1575 }
1576
1577 #if defined(HAVE_DES_FCRYPT) || defined(PERL_OBJECT)
1578 #ifdef HAVE_DES_FCRYPT
1579 extern char *   des_fcrypt(const char *txt, const char *salt, char *cbuf);
1580 #endif
1581
1582 DllExport char *
1583 win32_crypt(const char *txt, const char *salt)
1584 {
1585 #ifdef HAVE_DES_FCRYPT
1586     dTHR;
1587     dPERLOBJ;
1588     return des_fcrypt(txt, salt, crypt_buffer);
1589 #else
1590     die("The crypt() function is unimplemented due to excessive paranoia.");
1591     return Nullch;
1592 #endif
1593 }
1594 #endif
1595
1596 #ifdef USE_FIXED_OSFHANDLE
1597
1598 EXTERN_C int __cdecl _alloc_osfhnd(void);
1599 EXTERN_C int __cdecl _set_osfhnd(int fh, long value);
1600 EXTERN_C void __cdecl _lock_fhandle(int);
1601 EXTERN_C void __cdecl _unlock_fhandle(int);
1602 EXTERN_C void __cdecl _unlock(int);
1603
1604 #if     (_MSC_VER >= 1000)
1605 typedef struct  {
1606     long osfhnd;    /* underlying OS file HANDLE */
1607     char osfile;    /* attributes of file (e.g., open in text mode?) */
1608     char pipech;    /* one char buffer for handles opened on pipes */
1609 #if defined (_MT) && !defined (DLL_FOR_WIN32S)
1610     int lockinitflag;
1611     CRITICAL_SECTION lock;
1612 #endif  /* defined (_MT) && !defined (DLL_FOR_WIN32S) */
1613 }       ioinfo;
1614
1615 EXTERN_C ioinfo * __pioinfo[];
1616
1617 #define IOINFO_L2E                      5
1618 #define IOINFO_ARRAY_ELTS       (1 << IOINFO_L2E)
1619 #define _pioinfo(i)     (__pioinfo[i >> IOINFO_L2E] + (i & (IOINFO_ARRAY_ELTS - 1)))
1620 #define _osfile(i)      (_pioinfo(i)->osfile)
1621
1622 #else   /* (_MSC_VER >= 1000) */
1623 extern char _osfile[];
1624 #endif  /* (_MSC_VER >= 1000) */
1625
1626 #define FOPEN                   0x01    /* file handle open */
1627 #define FAPPEND                 0x20    /* file handle opened O_APPEND */
1628 #define FDEV                    0x40    /* file handle refers to device */
1629 #define FTEXT                   0x80    /* file handle is in text mode */
1630
1631 #define _STREAM_LOCKS   26              /* Table of stream locks */
1632 #define _LAST_STREAM_LOCK  (_STREAM_LOCKS+_NSTREAM_-1)  /* Last stream lock */
1633 #define _FH_LOCKS          (_LAST_STREAM_LOCK+1)        /* Table of fh locks */
1634
1635 /***
1636 *int my_open_osfhandle(long osfhandle, int flags) - open C Runtime file handle
1637 *
1638 *Purpose:
1639 *       This function allocates a free C Runtime file handle and associates
1640 *       it with the Win32 HANDLE specified by the first parameter. This is a
1641 *               temperary fix for WIN95's brain damage GetFileType() error on socket
1642 *               we just bypass that call for socket
1643 *
1644 *Entry:
1645 *       long osfhandle - Win32 HANDLE to associate with C Runtime file handle.
1646 *       int flags      - flags to associate with C Runtime file handle.
1647 *
1648 *Exit:
1649 *       returns index of entry in fh, if successful
1650 *       return -1, if no free entry is found
1651 *
1652 *Exceptions:
1653 *
1654 *******************************************************************************/
1655
1656 static int
1657 my_open_osfhandle(long osfhandle, int flags)
1658 {
1659     int fh;
1660     char fileflags;             /* _osfile flags */
1661
1662     /* copy relevant flags from second parameter */
1663     fileflags = FDEV;
1664
1665     if (flags & O_APPEND)
1666         fileflags |= FAPPEND;
1667
1668     if (flags & O_TEXT)
1669         fileflags |= FTEXT;
1670
1671     /* attempt to allocate a C Runtime file handle */
1672     if ((fh = _alloc_osfhnd()) == -1) {
1673         errno = EMFILE;         /* too many open files */
1674         _doserrno = 0L;         /* not an OS error */
1675         return -1;              /* return error to caller */
1676     }
1677
1678     /* the file is open. now, set the info in _osfhnd array */
1679     _set_osfhnd(fh, osfhandle);
1680
1681     fileflags |= FOPEN;         /* mark as open */
1682
1683 #if (_MSC_VER >= 1000)
1684     _osfile(fh) = fileflags;    /* set osfile entry */
1685     _unlock_fhandle(fh);
1686 #else
1687     _osfile[fh] = fileflags;    /* set osfile entry */
1688     _unlock(fh+_FH_LOCKS);              /* unlock handle */
1689 #endif
1690
1691     return fh;                  /* return handle */
1692 }
1693
1694 #define _open_osfhandle my_open_osfhandle
1695 #endif  /* USE_FIXED_OSFHANDLE */
1696
1697 /* simulate flock by locking a range on the file */
1698
1699 #define LK_ERR(f,i)     ((f) ? (i = 0) : (errno = GetLastError()))
1700 #define LK_LEN          0xffff0000
1701
1702 DllExport int
1703 win32_flock(int fd, int oper)
1704 {
1705     OVERLAPPED o;
1706     int i = -1;
1707     HANDLE fh;
1708
1709     if (!IsWinNT()) {
1710         dPERLOBJ;
1711         Perl_croak_nocontext("flock() unimplemented on this platform");
1712         return -1;
1713     }
1714     fh = (HANDLE)_get_osfhandle(fd);
1715     memset(&o, 0, sizeof(o));
1716
1717     switch(oper) {
1718     case LOCK_SH:               /* shared lock */
1719         LK_ERR(LockFileEx(fh, 0, 0, LK_LEN, 0, &o),i);
1720         break;
1721     case LOCK_EX:               /* exclusive lock */
1722         LK_ERR(LockFileEx(fh, LOCKFILE_EXCLUSIVE_LOCK, 0, LK_LEN, 0, &o),i);
1723         break;
1724     case LOCK_SH|LOCK_NB:       /* non-blocking shared lock */
1725         LK_ERR(LockFileEx(fh, LOCKFILE_FAIL_IMMEDIATELY, 0, LK_LEN, 0, &o),i);
1726         break;
1727     case LOCK_EX|LOCK_NB:       /* non-blocking exclusive lock */
1728         LK_ERR(LockFileEx(fh,
1729                        LOCKFILE_EXCLUSIVE_LOCK|LOCKFILE_FAIL_IMMEDIATELY,
1730                        0, LK_LEN, 0, &o),i);
1731         break;
1732     case LOCK_UN:               /* unlock lock */
1733         LK_ERR(UnlockFileEx(fh, 0, LK_LEN, 0, &o),i);
1734         break;
1735     default:                    /* unknown */
1736         errno = EINVAL;
1737         break;
1738     }
1739     return i;
1740 }
1741
1742 #undef LK_ERR
1743 #undef LK_LEN
1744
1745 /*
1746  *  redirected io subsystem for all XS modules
1747  *
1748  */
1749
1750 DllExport int *
1751 win32_errno(void)
1752 {
1753     return (&errno);
1754 }
1755
1756 DllExport char ***
1757 win32_environ(void)
1758 {
1759     return (&(_environ));
1760 }
1761
1762 /* the rest are the remapped stdio routines */
1763 DllExport FILE *
1764 win32_stderr(void)
1765 {
1766     return (stderr);
1767 }
1768
1769 DllExport FILE *
1770 win32_stdin(void)
1771 {
1772     return (stdin);
1773 }
1774
1775 DllExport FILE *
1776 win32_stdout()
1777 {
1778     return (stdout);
1779 }
1780
1781 DllExport int
1782 win32_ferror(FILE *fp)
1783 {
1784     return (ferror(fp));
1785 }
1786
1787
1788 DllExport int
1789 win32_feof(FILE *fp)
1790 {
1791     return (feof(fp));
1792 }
1793
1794 /*
1795  * Since the errors returned by the socket error function 
1796  * WSAGetLastError() are not known by the library routine strerror
1797  * we have to roll our own.
1798  */
1799
1800 DllExport char *
1801 win32_strerror(int e) 
1802 {
1803 #ifndef __BORLANDC__            /* Borland intolerance */
1804     extern int sys_nerr;
1805 #endif
1806     DWORD source = 0;
1807
1808     if (e < 0 || e > sys_nerr) {
1809         dTHX;
1810         if (e < 0)
1811             e = GetLastError();
1812
1813         if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, &source, e, 0,
1814                          strerror_buffer, sizeof(strerror_buffer), NULL) == 0) 
1815             strcpy(strerror_buffer, "Unknown Error");
1816
1817         return strerror_buffer;
1818     }
1819     return strerror(e);
1820 }
1821
1822 DllExport void
1823 win32_str_os_error(pTHX_ void *sv, DWORD dwErr)
1824 {
1825     DWORD dwLen;
1826     char *sMsg;
1827     dwLen = FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER
1828                           |FORMAT_MESSAGE_IGNORE_INSERTS
1829                           |FORMAT_MESSAGE_FROM_SYSTEM, NULL,
1830                            dwErr, 0, (char *)&sMsg, 1, NULL);
1831     if (0 < dwLen) {
1832         while (0 < dwLen  &&  isSPACE(sMsg[--dwLen]))
1833             ;
1834         if ('.' != sMsg[dwLen])
1835             dwLen++;
1836         sMsg[dwLen]= '\0';
1837     }
1838     if (0 == dwLen) {
1839         sMsg = (char*)LocalAlloc(0, 64/**sizeof(TCHAR)*/);
1840         if (sMsg)
1841             dwLen = sprintf(sMsg,
1842                             "Unknown error #0x%lX (lookup 0x%lX)",
1843                             dwErr, GetLastError());
1844     }
1845     if (sMsg) {
1846         dPERLOBJ;
1847         sv_setpvn((SV*)sv, sMsg, dwLen);
1848         LocalFree(sMsg);
1849     }
1850 }
1851
1852
1853 DllExport int
1854 win32_fprintf(FILE *fp, const char *format, ...)
1855 {
1856     va_list marker;
1857     va_start(marker, format);     /* Initialize variable arguments. */
1858
1859     return (vfprintf(fp, format, marker));
1860 }
1861
1862 DllExport int
1863 win32_printf(const char *format, ...)
1864 {
1865     va_list marker;
1866     va_start(marker, format);     /* Initialize variable arguments. */
1867
1868     return (vprintf(format, marker));
1869 }
1870
1871 DllExport int
1872 win32_vfprintf(FILE *fp, const char *format, va_list args)
1873 {
1874     return (vfprintf(fp, format, args));
1875 }
1876
1877 DllExport int
1878 win32_vprintf(const char *format, va_list args)
1879 {
1880     return (vprintf(format, args));
1881 }
1882
1883 DllExport size_t
1884 win32_fread(void *buf, size_t size, size_t count, FILE *fp)
1885 {
1886     return fread(buf, size, count, fp);
1887 }
1888
1889 DllExport size_t
1890 win32_fwrite(const void *buf, size_t size, size_t count, FILE *fp)
1891 {
1892     return fwrite(buf, size, count, fp);
1893 }
1894
1895 #define MODE_SIZE 10
1896
1897 DllExport FILE *
1898 win32_fopen(const char *filename, const char *mode)
1899 {
1900     WCHAR wMode[MODE_SIZE], wBuffer[MAX_PATH];
1901     if (stricmp(filename, "/dev/null")==0)
1902         filename = "NUL";
1903
1904     dPERLOBJ;
1905     if (USING_WIDE()) {
1906         dTHX;
1907         A2WHELPER(mode, wMode, sizeof(wMode));
1908         A2WHELPER(filename, wBuffer, sizeof(wBuffer));
1909         return _wfopen(wBuffer, wMode);
1910     }
1911     return fopen(filename, mode);
1912 }
1913
1914 #ifndef USE_SOCKETS_AS_HANDLES
1915 #undef fdopen
1916 #define fdopen my_fdopen
1917 #endif
1918
1919 DllExport FILE *
1920 win32_fdopen(int handle, const char *mode)
1921 {
1922     WCHAR wMode[MODE_SIZE];
1923     dPERLOBJ;
1924     if (USING_WIDE()) {
1925         dTHX;
1926         A2WHELPER(mode, wMode, sizeof(wMode));
1927         return _wfdopen(handle, wMode);
1928     }
1929     return fdopen(handle, (char *) mode);
1930 }
1931
1932 DllExport FILE *
1933 win32_freopen(const char *path, const char *mode, FILE *stream)
1934 {
1935     WCHAR wMode[MODE_SIZE], wBuffer[MAX_PATH];
1936     dPERLOBJ;
1937     if (stricmp(path, "/dev/null")==0)
1938         path = "NUL";
1939
1940     if (USING_WIDE()) {
1941         dTHX;
1942         A2WHELPER(mode, wMode, sizeof(wMode));
1943         A2WHELPER(path, wBuffer, sizeof(wBuffer));
1944         return _wfreopen(wBuffer, wMode, stream);
1945     }
1946     return freopen(path, mode, stream);
1947 }
1948
1949 DllExport int
1950 win32_fclose(FILE *pf)
1951 {
1952     return my_fclose(pf);       /* defined in win32sck.c */
1953 }
1954
1955 DllExport int
1956 win32_fputs(const char *s,FILE *pf)
1957 {
1958     return fputs(s, pf);
1959 }
1960
1961 DllExport int
1962 win32_fputc(int c,FILE *pf)
1963 {
1964     return fputc(c,pf);
1965 }
1966
1967 DllExport int
1968 win32_ungetc(int c,FILE *pf)
1969 {
1970     return ungetc(c,pf);
1971 }
1972
1973 DllExport int
1974 win32_getc(FILE *pf)
1975 {
1976     return getc(pf);
1977 }
1978
1979 DllExport int
1980 win32_fileno(FILE *pf)
1981 {
1982     return fileno(pf);
1983 }
1984
1985 DllExport void
1986 win32_clearerr(FILE *pf)
1987 {
1988     clearerr(pf);
1989     return;
1990 }
1991
1992 DllExport int
1993 win32_fflush(FILE *pf)
1994 {
1995     return fflush(pf);
1996 }
1997
1998 DllExport long
1999 win32_ftell(FILE *pf)
2000 {
2001     return ftell(pf);
2002 }
2003
2004 DllExport int
2005 win32_fseek(FILE *pf,long offset,int origin)
2006 {
2007     return fseek(pf, offset, origin);
2008 }
2009
2010 DllExport int
2011 win32_fgetpos(FILE *pf,fpos_t *p)
2012 {
2013     return fgetpos(pf, p);
2014 }
2015
2016 DllExport int
2017 win32_fsetpos(FILE *pf,const fpos_t *p)
2018 {
2019     return fsetpos(pf, p);
2020 }
2021
2022 DllExport void
2023 win32_rewind(FILE *pf)
2024 {
2025     rewind(pf);
2026     return;
2027 }
2028
2029 DllExport FILE*
2030 win32_tmpfile(void)
2031 {
2032     return tmpfile();
2033 }
2034
2035 DllExport void
2036 win32_abort(void)
2037 {
2038     abort();
2039     return;
2040 }
2041
2042 DllExport int
2043 win32_fstat(int fd,struct stat *sbufptr)
2044 {
2045     return fstat(fd,sbufptr);
2046 }
2047
2048 DllExport int
2049 win32_pipe(int *pfd, unsigned int size, int mode)
2050 {
2051     return _pipe(pfd, size, mode);
2052 }
2053
2054 /*
2055  * a popen() clone that respects PERL5SHELL
2056  */
2057
2058 DllExport FILE*
2059 win32_popen(const char *command, const char *mode)
2060 {
2061 #ifdef USE_RTL_POPEN
2062     return _popen(command, mode);
2063 #else
2064     int p[2];
2065     int parent, child;
2066     int stdfd, oldfd;
2067     int ourmode;
2068     int childpid;
2069
2070     /* establish which ends read and write */
2071     if (strchr(mode,'w')) {
2072         stdfd = 0;              /* stdin */
2073         parent = 1;
2074         child = 0;
2075     }
2076     else if (strchr(mode,'r')) {
2077         stdfd = 1;              /* stdout */
2078         parent = 0;
2079         child = 1;
2080     }
2081     else
2082         return NULL;
2083
2084     /* set the correct mode */
2085     if (strchr(mode,'b'))
2086         ourmode = O_BINARY;
2087     else if (strchr(mode,'t'))
2088         ourmode = O_TEXT;
2089     else
2090         ourmode = _fmode & (O_TEXT | O_BINARY);
2091
2092     /* the child doesn't inherit handles */
2093     ourmode |= O_NOINHERIT;
2094
2095     if (win32_pipe( p, 512, ourmode) == -1)
2096         return NULL;
2097
2098     /* save current stdfd */
2099     if ((oldfd = win32_dup(stdfd)) == -1)
2100         goto cleanup;
2101
2102     /* make stdfd go to child end of pipe (implicitly closes stdfd) */
2103     /* stdfd will be inherited by the child */
2104     if (win32_dup2(p[child], stdfd) == -1)
2105         goto cleanup;
2106
2107     /* close the child end in parent */
2108     win32_close(p[child]);
2109
2110     /* start the child */
2111     {
2112         dTHX;
2113         dPERLOBJ;
2114         if ((childpid = do_spawn_nowait(aTHX_ (char*)command)) == -1)
2115             goto cleanup;
2116
2117         /* revert stdfd to whatever it was before */
2118         if (win32_dup2(oldfd, stdfd) == -1)
2119             goto cleanup;
2120
2121         /* close saved handle */
2122         win32_close(oldfd);
2123
2124         sv_setiv(*av_fetch(w32_fdpid, p[parent], TRUE), childpid);
2125     }
2126
2127     /* we have an fd, return a file stream */
2128     return (win32_fdopen(p[parent], (char *)mode));
2129
2130 cleanup:
2131     /* we don't need to check for errors here */
2132     win32_close(p[0]);
2133     win32_close(p[1]);
2134     if (oldfd != -1) {
2135         win32_dup2(oldfd, stdfd);
2136         win32_close(oldfd);
2137     }
2138     return (NULL);
2139
2140 #endif /* USE_RTL_POPEN */
2141 }
2142
2143 /*
2144  * pclose() clone
2145  */
2146
2147 DllExport int
2148 win32_pclose(FILE *pf)
2149 {
2150 #ifdef USE_RTL_POPEN
2151     return _pclose(pf);
2152 #else
2153     dTHX;
2154     dPERLOBJ;
2155     int childpid, status;
2156     SV *sv;
2157
2158     sv = *av_fetch(w32_fdpid, win32_fileno(pf), TRUE);
2159     if (SvIOK(sv))
2160         childpid = SvIVX(sv);
2161     else
2162         childpid = 0;
2163
2164     if (!childpid) {
2165         errno = EBADF;
2166         return -1;
2167     }
2168
2169     win32_fclose(pf);
2170     SvIVX(sv) = 0;
2171
2172     if (win32_waitpid(childpid, &status, 0) == -1)
2173         return -1;
2174
2175     return status;
2176
2177 #endif /* USE_RTL_POPEN */
2178 }
2179
2180 DllExport int
2181 win32_rename(const char *oname, const char *newname)
2182 {
2183     WCHAR wOldName[MAX_PATH];
2184     WCHAR wNewName[MAX_PATH];
2185     BOOL bResult;
2186     /* XXX despite what the documentation says about MoveFileEx(),
2187      * it doesn't work under Windows95!
2188      */
2189     if (IsWinNT()) {
2190         dPERLOBJ;
2191         if (USING_WIDE()) {
2192             dTHX;
2193             A2WHELPER(oname, wOldName, sizeof(wOldName));
2194             A2WHELPER(newname, wNewName, sizeof(wNewName));
2195             bResult = MoveFileExW(wOldName,wNewName,
2196                         MOVEFILE_COPY_ALLOWED|MOVEFILE_REPLACE_EXISTING);
2197         }
2198         else {
2199             bResult = MoveFileExA(oname,newname,
2200                         MOVEFILE_COPY_ALLOWED|MOVEFILE_REPLACE_EXISTING);
2201         }
2202         if (!bResult) {
2203             DWORD err = GetLastError();
2204             switch (err) {
2205             case ERROR_BAD_NET_NAME:
2206             case ERROR_BAD_NETPATH:
2207             case ERROR_BAD_PATHNAME:
2208             case ERROR_FILE_NOT_FOUND:
2209             case ERROR_FILENAME_EXCED_RANGE:
2210             case ERROR_INVALID_DRIVE:
2211             case ERROR_NO_MORE_FILES:
2212             case ERROR_PATH_NOT_FOUND:
2213                 errno = ENOENT;
2214                 break;
2215             default:
2216                 errno = EACCES;
2217                 break;
2218             }
2219             return -1;
2220         }
2221         return 0;
2222     }
2223     else {
2224         int retval = 0;
2225         char tmpname[MAX_PATH+1];
2226         char dname[MAX_PATH+1];
2227         char *endname = Nullch;
2228         STRLEN tmplen = 0;
2229         DWORD from_attr, to_attr;
2230
2231         /* if oname doesn't exist, do nothing */
2232         from_attr = GetFileAttributes(oname);
2233         if (from_attr == 0xFFFFFFFF) {
2234             errno = ENOENT;
2235             return -1;
2236         }
2237
2238         /* if newname exists, rename it to a temporary name so that we
2239          * don't delete it in case oname happens to be the same file
2240          * (but perhaps accessed via a different path)
2241          */
2242         to_attr = GetFileAttributes(newname);
2243         if (to_attr != 0xFFFFFFFF) {
2244             /* if newname is a directory, we fail
2245              * XXX could overcome this with yet more convoluted logic */
2246             if (to_attr & FILE_ATTRIBUTE_DIRECTORY) {
2247                 errno = EACCES;
2248                 return -1;
2249             }
2250             tmplen = strlen(newname);
2251             strcpy(tmpname,newname);
2252             endname = tmpname+tmplen;
2253             for (; endname > tmpname ; --endname) {
2254                 if (*endname == '/' || *endname == '\\') {
2255                     *endname = '\0';
2256                     break;
2257                 }
2258             }
2259             if (endname > tmpname)
2260                 endname = strcpy(dname,tmpname);
2261             else
2262                 endname = ".";
2263
2264             /* get a temporary filename in same directory
2265              * XXX is this really the best we can do? */
2266             if (!GetTempFileName((LPCTSTR)endname, "plr", 0, tmpname)) {
2267                 errno = ENOENT;
2268                 return -1;
2269             }
2270             DeleteFile(tmpname);
2271
2272             retval = rename(newname, tmpname);
2273             if (retval != 0) {
2274                 errno = EACCES;
2275                 return retval;
2276             }
2277         }
2278
2279         /* rename oname to newname */
2280         retval = rename(oname, newname);
2281
2282         /* if we created a temporary file before ... */
2283         if (endname != Nullch) {
2284             /* ...and rename succeeded, delete temporary file/directory */
2285             if (retval == 0)
2286                 DeleteFile(tmpname);
2287             /* else restore it to what it was */
2288             else
2289                 (void)rename(tmpname, newname);
2290         }
2291         return retval;
2292     }
2293 }
2294
2295 DllExport int
2296 win32_setmode(int fd, int mode)
2297 {
2298     return setmode(fd, mode);
2299 }
2300
2301 DllExport long
2302 win32_lseek(int fd, long offset, int origin)
2303 {
2304     return lseek(fd, offset, origin);
2305 }
2306
2307 DllExport long
2308 win32_tell(int fd)
2309 {
2310     return tell(fd);
2311 }
2312
2313 DllExport int
2314 win32_open(const char *path, int flag, ...)
2315 {
2316     va_list ap;
2317     int pmode;
2318     WCHAR wBuffer[MAX_PATH];
2319     dPERLOBJ;
2320
2321     va_start(ap, flag);
2322     pmode = va_arg(ap, int);
2323     va_end(ap);
2324
2325     if (stricmp(path, "/dev/null")==0)
2326         path = "NUL";
2327
2328     if (USING_WIDE()) {
2329         dTHX;
2330         A2WHELPER(path, wBuffer, sizeof(wBuffer));
2331         return _wopen(wBuffer, flag, pmode);
2332     }
2333     return open(path,flag,pmode);
2334 }
2335
2336 DllExport int
2337 win32_close(int fd)
2338 {
2339     return close(fd);
2340 }
2341
2342 DllExport int
2343 win32_eof(int fd)
2344 {
2345     return eof(fd);
2346 }
2347
2348 DllExport int
2349 win32_dup(int fd)
2350 {
2351     return dup(fd);
2352 }
2353
2354 DllExport int
2355 win32_dup2(int fd1,int fd2)
2356 {
2357     return dup2(fd1,fd2);
2358 }
2359
2360 DllExport int
2361 win32_read(int fd, void *buf, unsigned int cnt)
2362 {
2363     return read(fd, buf, cnt);
2364 }
2365
2366 DllExport int
2367 win32_write(int fd, const void *buf, unsigned int cnt)
2368 {
2369     return write(fd, buf, cnt);
2370 }
2371
2372 DllExport int
2373 win32_mkdir(const char *dir, int mode)
2374 {
2375     return mkdir(dir); /* just ignore mode */
2376 }
2377
2378 DllExport int
2379 win32_rmdir(const char *dir)
2380 {
2381     return rmdir(dir);
2382 }
2383
2384 DllExport int
2385 win32_chdir(const char *dir)
2386 {
2387     return chdir(dir);
2388 }
2389
2390 static char *
2391 create_command_line(const char* command, const char * const *args)
2392 {
2393     int index;
2394     char *cmd, *ptr, *arg;
2395     STRLEN len = strlen(command) + 1;
2396     dPERLOBJ;
2397
2398     for (index = 0; (ptr = (char*)args[index]) != NULL; ++index)
2399         len += strlen(ptr) + 1;
2400
2401     New(1310, cmd, len, char);
2402     ptr = cmd;
2403     strcpy(ptr, command);
2404
2405     for (index = 0; (arg = (char*)args[index]) != NULL; ++index) {
2406         ptr += strlen(ptr);
2407         *ptr++ = ' ';
2408         strcpy(ptr, arg);
2409     }
2410
2411     return cmd;
2412 }
2413
2414 static char *
2415 qualified_path(const char *cmd)
2416 {
2417     char *pathstr;
2418     char *fullcmd, *curfullcmd;
2419     STRLEN cmdlen = 0;
2420     int has_slash = 0;
2421     dPERLOBJ;
2422
2423     if (!cmd)
2424         return Nullch;
2425     fullcmd = (char*)cmd;
2426     while (*fullcmd) {
2427         if (*fullcmd == '/' || *fullcmd == '\\')
2428             has_slash++;
2429         fullcmd++;
2430         cmdlen++;
2431     }
2432
2433     /* look in PATH */
2434     pathstr = win32_getenv("PATH");
2435     New(0, fullcmd, MAX_PATH+1, char);
2436     curfullcmd = fullcmd;
2437
2438     while (1) {
2439         DWORD res;
2440
2441         /* start by appending the name to the current prefix */
2442         strcpy(curfullcmd, cmd);
2443         curfullcmd += cmdlen;
2444
2445         /* if it doesn't end with '.', or has no extension, try adding
2446          * a trailing .exe first */
2447         if (cmd[cmdlen-1] != '.'
2448             && (cmdlen < 4 || cmd[cmdlen-4] != '.'))
2449         {
2450             strcpy(curfullcmd, ".exe");
2451             res = GetFileAttributes(fullcmd);
2452             if (res != 0xFFFFFFFF && !(res & FILE_ATTRIBUTE_DIRECTORY))
2453                 return fullcmd;
2454             *curfullcmd = '\0';
2455         }
2456
2457         /* that failed, try the bare name */
2458         res = GetFileAttributes(fullcmd);
2459         if (res != 0xFFFFFFFF && !(res & FILE_ATTRIBUTE_DIRECTORY))
2460             return fullcmd;
2461
2462         /* quit if no other path exists, or if cmd already has path */
2463         if (!pathstr || !*pathstr || has_slash)
2464             break;
2465
2466         /* skip leading semis */
2467         while (*pathstr == ';')
2468             pathstr++;
2469
2470         /* build a new prefix from scratch */
2471         curfullcmd = fullcmd;
2472         while (*pathstr && *pathstr != ';') {
2473             if (*pathstr == '"') {      /* foo;"baz;etc";bar */
2474                 pathstr++;              /* skip initial '"' */
2475                 while (*pathstr && *pathstr != '"') {
2476                     if (curfullcmd-fullcmd < MAX_PATH-cmdlen-5)
2477                         *curfullcmd++ = *pathstr;
2478                     pathstr++;
2479                 }
2480                 if (*pathstr)
2481                     pathstr++;          /* skip trailing '"' */
2482             }
2483             else {
2484                 if (curfullcmd-fullcmd < MAX_PATH-cmdlen-5)
2485                     *curfullcmd++ = *pathstr;
2486                 pathstr++;
2487             }
2488         }
2489         if (*pathstr)
2490             pathstr++;                  /* skip trailing semi */
2491         if (curfullcmd > fullcmd        /* append a dir separator */
2492             && curfullcmd[-1] != '/' && curfullcmd[-1] != '\\')
2493         {
2494             *curfullcmd++ = '\\';
2495         }
2496     }
2497 GIVE_UP:
2498     Safefree(fullcmd);
2499     return Nullch;
2500 }
2501
2502 /* XXX this needs to be made more compatible with the spawnvp()
2503  * provided by the various RTLs.  In particular, searching for
2504  * *.{com,bat,cmd} files (as done by the RTLs) is unimplemented.
2505  * This doesn't significantly affect perl itself, because we
2506  * always invoke things using PERL5SHELL if a direct attempt to
2507  * spawn the executable fails.
2508  * 
2509  * XXX splitting and rejoining the commandline between do_aspawn()
2510  * and win32_spawnvp() could also be avoided.
2511  */
2512
2513 DllExport int
2514 win32_spawnvp(int mode, const char *cmdname, const char *const *argv)
2515 {
2516 #ifdef USE_RTL_SPAWNVP
2517     return spawnvp(mode, cmdname, (char * const *)argv);
2518 #else
2519     DWORD ret;
2520     STARTUPINFO StartupInfo;
2521     PROCESS_INFORMATION ProcessInformation;
2522     DWORD create = 0;
2523     dPERLOBJ;
2524
2525     char *cmd = create_command_line(cmdname, strcmp(cmdname, argv[0]) == 0
2526                                              ? &argv[1] : argv);
2527     char *fullcmd = Nullch;
2528
2529     switch(mode) {
2530     case P_NOWAIT:      /* asynch + remember result */
2531         if (w32_num_children >= MAXIMUM_WAIT_OBJECTS) {
2532             errno = EAGAIN;
2533             ret = -1;
2534             goto RETVAL;
2535         }
2536         /* FALL THROUGH */
2537     case P_WAIT:        /* synchronous execution */
2538         break;
2539     default:            /* invalid mode */
2540         errno = EINVAL;
2541         ret = -1;
2542         goto RETVAL;
2543     }
2544     memset(&StartupInfo,0,sizeof(StartupInfo));
2545     StartupInfo.cb = sizeof(StartupInfo);
2546     StartupInfo.hStdInput  = GetStdHandle(STD_INPUT_HANDLE);
2547     StartupInfo.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE);
2548     StartupInfo.hStdError  = GetStdHandle(STD_ERROR_HANDLE);
2549     if (StartupInfo.hStdInput != INVALID_HANDLE_VALUE &&
2550         StartupInfo.hStdOutput != INVALID_HANDLE_VALUE &&
2551         StartupInfo.hStdError != INVALID_HANDLE_VALUE)
2552     {
2553         StartupInfo.dwFlags |= STARTF_USESTDHANDLES;
2554     }
2555     else {
2556         create |= CREATE_NEW_CONSOLE;
2557     }
2558
2559 #ifndef DEBUGGING
2560     StartupInfo.dwFlags |= STARTF_USESHOWWINDOW;
2561     StartupInfo.wShowWindow = SW_HIDE;
2562 #endif
2563
2564 RETRY:
2565     if (!CreateProcess(cmdname,         /* search PATH to find executable */
2566                        cmd,             /* executable, and its arguments */
2567                        NULL,            /* process attributes */
2568                        NULL,            /* thread attributes */
2569                        TRUE,            /* inherit handles */
2570                        create,          /* creation flags */
2571                        NULL,            /* inherit environment */
2572                        NULL,            /* inherit cwd */
2573                        &StartupInfo,
2574                        &ProcessInformation))
2575     {
2576         /* initial NULL argument to CreateProcess() does a PATH
2577          * search, but it always first looks in the directory
2578          * where the current process was started, which behavior
2579          * is undesirable for backward compatibility.  So we
2580          * jump through our own hoops by picking out the path
2581          * we really want it to use. */
2582         if (!fullcmd) {
2583             fullcmd = qualified_path(cmdname);
2584             if (fullcmd) {
2585                 cmdname = fullcmd;
2586                 goto RETRY;
2587             }
2588         }
2589         errno = ENOENT;
2590         ret = -1;
2591         goto RETVAL;
2592     }
2593
2594     if (mode == P_NOWAIT) {
2595         /* asynchronous spawn -- store handle, return PID */
2596         w32_child_handles[w32_num_children] = ProcessInformation.hProcess;
2597         ret = w32_child_pids[w32_num_children] = ProcessInformation.dwProcessId;
2598         ++w32_num_children;
2599     }
2600     else  {
2601         WaitForSingleObject(ProcessInformation.hProcess, INFINITE);
2602         GetExitCodeProcess(ProcessInformation.hProcess, &ret);
2603         CloseHandle(ProcessInformation.hProcess);
2604     }
2605
2606     CloseHandle(ProcessInformation.hThread);
2607 RETVAL:
2608     Safefree(cmd);
2609     Safefree(fullcmd);
2610     return (int)ret;
2611 #endif
2612 }
2613
2614 DllExport int
2615 win32_execv(const char *cmdname, const char *const *argv)
2616 {
2617     return execv(cmdname, (char *const *)argv);
2618 }
2619
2620 DllExport int
2621 win32_execvp(const char *cmdname, const char *const *argv)
2622 {
2623     return execvp(cmdname, (char *const *)argv);
2624 }
2625
2626 DllExport void
2627 win32_perror(const char *str)
2628 {
2629     perror(str);
2630 }
2631
2632 DllExport void
2633 win32_setbuf(FILE *pf, char *buf)
2634 {
2635     setbuf(pf, buf);
2636 }
2637
2638 DllExport int
2639 win32_setvbuf(FILE *pf, char *buf, int type, size_t size)
2640 {
2641     return setvbuf(pf, buf, type, size);
2642 }
2643
2644 DllExport int
2645 win32_flushall(void)
2646 {
2647     return flushall();
2648 }
2649
2650 DllExport int
2651 win32_fcloseall(void)
2652 {
2653     return fcloseall();
2654 }
2655
2656 DllExport char*
2657 win32_fgets(char *s, int n, FILE *pf)
2658 {
2659     return fgets(s, n, pf);
2660 }
2661
2662 DllExport char*
2663 win32_gets(char *s)
2664 {
2665     return gets(s);
2666 }
2667
2668 DllExport int
2669 win32_fgetc(FILE *pf)
2670 {
2671     return fgetc(pf);
2672 }
2673
2674 DllExport int
2675 win32_putc(int c, FILE *pf)
2676 {
2677     return putc(c,pf);
2678 }
2679
2680 DllExport int
2681 win32_puts(const char *s)
2682 {
2683     return puts(s);
2684 }
2685
2686 DllExport int
2687 win32_getchar(void)
2688 {
2689     return getchar();
2690 }
2691
2692 DllExport int
2693 win32_putchar(int c)
2694 {
2695     return putchar(c);
2696 }
2697
2698 #ifdef MYMALLOC
2699
2700 #ifndef USE_PERL_SBRK
2701
2702 static char *committed = NULL;
2703 static char *base      = NULL;
2704 static char *reserved  = NULL;
2705 static char *brk       = NULL;
2706 static DWORD pagesize  = 0;
2707 static DWORD allocsize = 0;
2708
2709 void *
2710 sbrk(int need)
2711 {
2712  void *result;
2713  if (!pagesize)
2714   {SYSTEM_INFO info;
2715    GetSystemInfo(&info);
2716    /* Pretend page size is larger so we don't perpetually
2717     * call the OS to commit just one page ...
2718     */
2719    pagesize = info.dwPageSize << 3;
2720    allocsize = info.dwAllocationGranularity;
2721   }
2722  /* This scheme fails eventually if request for contiguous
2723   * block is denied so reserve big blocks - this is only 
2724   * address space not memory ...
2725   */
2726  if (brk+need >= reserved)
2727   {
2728    DWORD size = 64*1024*1024;
2729    char *addr;
2730    if (committed && reserved && committed < reserved)
2731     {
2732      /* Commit last of previous chunk cannot span allocations */
2733      addr = (char *) VirtualAlloc(committed,reserved-committed,MEM_COMMIT,PAGE_READWRITE);
2734      if (addr)
2735       committed = reserved;
2736     }
2737    /* Reserve some (more) space 
2738     * Note this is a little sneaky, 1st call passes NULL as reserved
2739     * so lets system choose where we start, subsequent calls pass
2740     * the old end address so ask for a contiguous block
2741     */
2742    addr  = (char *) VirtualAlloc(reserved,size,MEM_RESERVE,PAGE_NOACCESS);
2743    if (addr)
2744     {
2745      reserved = addr+size;
2746      if (!base)
2747       base = addr;
2748      if (!committed)
2749       committed = base;
2750      if (!brk)
2751       brk = committed;
2752     }
2753    else
2754     {
2755      return (void *) -1;
2756     }
2757   }
2758  result = brk;
2759  brk += need;
2760  if (brk > committed)
2761   {
2762    DWORD size = ((brk-committed + pagesize -1)/pagesize) * pagesize;
2763    char *addr = (char *) VirtualAlloc(committed,size,MEM_COMMIT,PAGE_READWRITE);
2764    if (addr)
2765     {
2766      committed += size;
2767     }
2768    else
2769     return (void *) -1;
2770   }
2771  return result;
2772 }
2773
2774 #endif
2775 #endif
2776
2777 DllExport void*
2778 win32_malloc(size_t size)
2779 {
2780     return malloc(size);
2781 }
2782
2783 DllExport void*
2784 win32_calloc(size_t numitems, size_t size)
2785 {
2786     return calloc(numitems,size);
2787 }
2788
2789 DllExport void*
2790 win32_realloc(void *block, size_t size)
2791 {
2792     return realloc(block,size);
2793 }
2794
2795 DllExport void
2796 win32_free(void *block)
2797 {
2798     free(block);
2799 }
2800
2801
2802 int
2803 win32_open_osfhandle(long handle, int flags)
2804 {
2805     return _open_osfhandle(handle, flags);
2806 }
2807
2808 long
2809 win32_get_osfhandle(int fd)
2810 {
2811     return _get_osfhandle(fd);
2812 }
2813
2814 DllExport void*
2815 win32_dynaload(aTHX_ const char*filename)
2816 {
2817     HMODULE hModule;
2818     dPERLOBJ;
2819     if (USING_WIDE()) {
2820         WCHAR wfilename[MAX_PATH];
2821         A2WHELPER(filename, wfilename, sizeof(wfilename));
2822         hModule = LoadLibraryExW(wfilename, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
2823     }
2824     else {
2825         hModule = LoadLibraryExA(filename, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
2826     }
2827     return hModule;
2828 }
2829
2830 DllExport int
2831 win32_add_host(char *nameId, void *data)
2832 {
2833     /*
2834      * This must be called before the script is parsed,
2835      * therefore no locking of threads is needed
2836      */
2837     dTHX;
2838     dPERLOBJ;
2839     struct host_link *link;
2840     New(1314, link, 1, struct host_link);
2841     link->host_data = data;
2842     link->nameId = nameId;
2843     link->next = w32_host_link;
2844     w32_host_link = link;
2845     return 1;
2846 }
2847
2848 DllExport void *
2849 win32_get_host_data(char *nameId)
2850 {
2851     dTHX;
2852     dPERLOBJ;
2853     struct host_link *link = w32_host_link;
2854     while(link) {
2855         if(strEQ(link->nameId, nameId))
2856             return link->host_data;
2857         link = link->next;
2858     }
2859     return Nullch;
2860 }
2861
2862 /*
2863  * Extras.
2864  */
2865
2866 static
2867 XS(w32_GetCwd)
2868 {
2869     dXSARGS;
2870     SV *sv = sv_newmortal();
2871     /* Make one call with zero size - return value is required size */
2872     DWORD len = GetCurrentDirectory((DWORD)0,NULL);
2873     SvUPGRADE(sv,SVt_PV);
2874     SvGROW(sv,len);
2875     SvCUR(sv) = GetCurrentDirectory((DWORD) SvLEN(sv), SvPVX(sv));
2876     /* 
2877      * If result != 0 
2878      *   then it worked, set PV valid, 
2879      *   else leave it 'undef' 
2880      */
2881     EXTEND(SP,1);
2882     if (SvCUR(sv)) {
2883         SvPOK_on(sv);
2884         ST(0) = sv;
2885         XSRETURN(1);
2886     }
2887     XSRETURN_UNDEF;
2888 }
2889
2890 static
2891 XS(w32_SetCwd)
2892 {
2893     dXSARGS;
2894     if (items != 1)
2895         Perl_croak(aTHX_ "usage: Win32::SetCurrentDirectory($cwd)");
2896     if (SetCurrentDirectory(SvPV_nolen(ST(0))))
2897         XSRETURN_YES;
2898
2899     XSRETURN_NO;
2900 }
2901
2902 static
2903 XS(w32_GetNextAvailDrive)
2904 {
2905     dXSARGS;
2906     char ix = 'C';
2907     char root[] = "_:\\";
2908
2909     EXTEND(SP,1);
2910     while (ix <= 'Z') {
2911         root[0] = ix++;
2912         if (GetDriveType(root) == 1) {
2913             root[2] = '\0';
2914             XSRETURN_PV(root);
2915         }
2916     }
2917     XSRETURN_UNDEF;
2918 }
2919
2920 static
2921 XS(w32_GetLastError)
2922 {
2923     dXSARGS;
2924     EXTEND(SP,1);
2925     XSRETURN_IV(GetLastError());
2926 }
2927
2928 static
2929 XS(w32_SetLastError)
2930 {
2931     dXSARGS;
2932     if (items != 1)
2933         Perl_croak(aTHX_ "usage: Win32::SetLastError($error)");
2934     SetLastError(SvIV(ST(0)));
2935     XSRETURN_EMPTY;
2936 }
2937
2938 static
2939 XS(w32_LoginName)
2940 {
2941     dXSARGS;
2942     char *name = getlogin_buffer;
2943     DWORD size = sizeof(getlogin_buffer);
2944     EXTEND(SP,1);
2945     if (GetUserName(name,&size)) {
2946         /* size includes NULL */
2947         ST(0) = sv_2mortal(newSVpvn(name,size-1));
2948         XSRETURN(1);
2949     }
2950     XSRETURN_UNDEF;
2951 }
2952
2953 static
2954 XS(w32_NodeName)
2955 {
2956     dXSARGS;
2957     char name[MAX_COMPUTERNAME_LENGTH+1];
2958     DWORD size = sizeof(name);
2959     EXTEND(SP,1);
2960     if (GetComputerName(name,&size)) {
2961         /* size does NOT include NULL :-( */
2962         ST(0) = sv_2mortal(newSVpvn(name,size));
2963         XSRETURN(1);
2964     }
2965     XSRETURN_UNDEF;
2966 }
2967
2968
2969 static
2970 XS(w32_DomainName)
2971 {
2972     dXSARGS;
2973 #ifndef HAS_NETWKSTAGETINFO
2974     /* mingw32 (and Win95) don't have NetWksta*(), so do it the old way */
2975     char name[256];
2976     DWORD size = sizeof(name);
2977     EXTEND(SP,1);
2978     if (GetUserName(name,&size)) {
2979         char sid[1024];
2980         DWORD sidlen = sizeof(sid);
2981         char dname[256];
2982         DWORD dnamelen = sizeof(dname);
2983         SID_NAME_USE snu;
2984         if (LookupAccountName(NULL, name, (PSID)&sid, &sidlen,
2985                               dname, &dnamelen, &snu)) {
2986             XSRETURN_PV(dname);         /* all that for this */
2987         }
2988     }
2989 #else
2990     /* this way is more reliable, in case user has a local account.
2991      * XXX need dynamic binding of netapi32.dll symbols or this will fail on
2992      * Win95. Probably makes more sense to move it into libwin32. */
2993     char dname[256];
2994     DWORD dnamelen = sizeof(dname);
2995     PWKSTA_INFO_100 pwi;
2996     EXTEND(SP,1);
2997     if (NERR_Success == NetWkstaGetInfo(NULL, 100, (LPBYTE*)&pwi)) {
2998         if (pwi->wki100_langroup && *(pwi->wki100_langroup)) {
2999             WideCharToMultiByte(CP_ACP, NULL, pwi->wki100_langroup,
3000                                 -1, (LPSTR)dname, dnamelen, NULL, NULL);
3001         }
3002         else {
3003             WideCharToMultiByte(CP_ACP, NULL, pwi->wki100_computername,
3004                                 -1, (LPSTR)dname, dnamelen, NULL, NULL);
3005         }
3006         NetApiBufferFree(pwi);
3007         XSRETURN_PV(dname);
3008     }
3009 #endif
3010     XSRETURN_UNDEF;
3011 }
3012
3013 static
3014 XS(w32_FsType)
3015 {
3016     dXSARGS;
3017     char fsname[256];
3018     DWORD flags, filecomplen;
3019     if (GetVolumeInformation(NULL, NULL, 0, NULL, &filecomplen,
3020                          &flags, fsname, sizeof(fsname))) {
3021         if (GIMME_V == G_ARRAY) {
3022             XPUSHs(sv_2mortal(newSVpvn(fsname,strlen(fsname))));
3023             XPUSHs(sv_2mortal(newSViv(flags)));
3024             XPUSHs(sv_2mortal(newSViv(filecomplen)));
3025             PUTBACK;
3026             return;
3027         }
3028         EXTEND(SP,1);
3029         XSRETURN_PV(fsname);
3030     }
3031     XSRETURN_EMPTY;
3032 }
3033
3034 static
3035 XS(w32_GetOSVersion)
3036 {
3037     dXSARGS;
3038     OSVERSIONINFO osver;
3039
3040     osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
3041     if (GetVersionEx(&osver)) {
3042         XPUSHs(newSVpvn(osver.szCSDVersion, strlen(osver.szCSDVersion)));
3043         XPUSHs(newSViv(osver.dwMajorVersion));
3044         XPUSHs(newSViv(osver.dwMinorVersion));
3045         XPUSHs(newSViv(osver.dwBuildNumber));
3046         XPUSHs(newSViv(osver.dwPlatformId));
3047         PUTBACK;
3048         return;
3049     }
3050     XSRETURN_EMPTY;
3051 }
3052
3053 static
3054 XS(w32_IsWinNT)
3055 {
3056     dXSARGS;
3057     EXTEND(SP,1);
3058     XSRETURN_IV(IsWinNT());
3059 }
3060
3061 static
3062 XS(w32_IsWin95)
3063 {
3064     dXSARGS;
3065     EXTEND(SP,1);
3066     XSRETURN_IV(IsWin95());
3067 }
3068
3069 static
3070 XS(w32_FormatMessage)
3071 {
3072     dXSARGS;
3073     DWORD source = 0;
3074     char msgbuf[1024];
3075
3076     if (items != 1)
3077         Perl_croak(aTHX_ "usage: Win32::FormatMessage($errno)");
3078
3079     if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM,
3080                       &source, SvIV(ST(0)), 0,
3081                       msgbuf, sizeof(msgbuf)-1, NULL))
3082         XSRETURN_PV(msgbuf);
3083
3084     XSRETURN_UNDEF;
3085 }
3086
3087 static
3088 XS(w32_Spawn)
3089 {
3090     dXSARGS;
3091     char *cmd, *args;
3092     PROCESS_INFORMATION stProcInfo;
3093     STARTUPINFO stStartInfo;
3094     BOOL bSuccess = FALSE;
3095
3096     if (items != 3)
3097         Perl_croak(aTHX_ "usage: Win32::Spawn($cmdName, $args, $PID)");
3098
3099     cmd = SvPV_nolen(ST(0));
3100     args = SvPV_nolen(ST(1));
3101
3102     memset(&stStartInfo, 0, sizeof(stStartInfo));   /* Clear the block */
3103     stStartInfo.cb = sizeof(stStartInfo);           /* Set the structure size */
3104     stStartInfo.dwFlags = STARTF_USESHOWWINDOW;     /* Enable wShowWindow control */
3105     stStartInfo.wShowWindow = SW_SHOWMINNOACTIVE;   /* Start min (normal) */
3106
3107     if (CreateProcess(
3108                 cmd,                    /* Image path */
3109                 args,                   /* Arguments for command line */
3110                 NULL,                   /* Default process security */
3111                 NULL,                   /* Default thread security */
3112                 FALSE,                  /* Must be TRUE to use std handles */
3113                 NORMAL_PRIORITY_CLASS,  /* No special scheduling */
3114                 NULL,                   /* Inherit our environment block */
3115                 NULL,                   /* Inherit our currrent directory */
3116                 &stStartInfo,           /* -> Startup info */
3117                 &stProcInfo))           /* <- Process info (if OK) */
3118     {
3119         CloseHandle(stProcInfo.hThread);/* library source code does this. */
3120         sv_setiv(ST(2), stProcInfo.dwProcessId);
3121         bSuccess = TRUE;
3122     }
3123     XSRETURN_IV(bSuccess);
3124 }
3125
3126 static
3127 XS(w32_GetTickCount)
3128 {
3129     dXSARGS;
3130     DWORD msec = GetTickCount();
3131     EXTEND(SP,1);
3132     if ((IV)msec > 0)
3133         XSRETURN_IV(msec);
3134     XSRETURN_NV(msec);
3135 }
3136
3137 static
3138 XS(w32_GetShortPathName)
3139 {
3140     dXSARGS;
3141     SV *shortpath;
3142     DWORD len;
3143
3144     if (items != 1)
3145         Perl_croak(aTHX_ "usage: Win32::GetShortPathName($longPathName)");
3146
3147     shortpath = sv_mortalcopy(ST(0));
3148     SvUPGRADE(shortpath, SVt_PV);
3149     /* src == target is allowed */
3150     do {
3151         len = GetShortPathName(SvPVX(shortpath),
3152                                SvPVX(shortpath),
3153                                SvLEN(shortpath));
3154     } while (len >= SvLEN(shortpath) && sv_grow(shortpath,len+1));
3155     if (len) {
3156         SvCUR_set(shortpath,len);
3157         ST(0) = shortpath;
3158         XSRETURN(1);
3159     }
3160     XSRETURN_UNDEF;
3161 }
3162
3163 static
3164 XS(w32_GetFullPathName)
3165 {
3166     dXSARGS;
3167     SV *filename;
3168     SV *fullpath;
3169     char *filepart;
3170     DWORD len;
3171
3172     if (items != 1)
3173         Perl_croak(aTHX_ "usage: Win32::GetFullPathName($filename)");
3174
3175     filename = ST(0);
3176     fullpath = sv_mortalcopy(filename);
3177     SvUPGRADE(fullpath, SVt_PV);
3178     do {
3179         len = GetFullPathName(SvPVX(filename),
3180                               SvLEN(fullpath),
3181                               SvPVX(fullpath),
3182                               &filepart);
3183     } while (len >= SvLEN(fullpath) && sv_grow(fullpath,len+1));
3184     if (len) {
3185         if (GIMME_V == G_ARRAY) {
3186             EXTEND(SP,1);
3187             XST_mPV(1,filepart);
3188             len = filepart - SvPVX(fullpath);
3189             items = 2;
3190         }
3191         SvCUR_set(fullpath,len);
3192         ST(0) = fullpath;
3193         XSRETURN(items);
3194     }
3195     XSRETURN_EMPTY;
3196 }
3197
3198 static
3199 XS(w32_GetLongPathName)
3200 {
3201     dXSARGS;
3202     SV *path;
3203     char tmpbuf[MAX_PATH+1];
3204     char *pathstr;
3205     STRLEN len;
3206
3207     if (items != 1)
3208         Perl_croak(aTHX_ "usage: Win32::GetLongPathName($pathname)");
3209
3210     path = ST(0);
3211     pathstr = SvPV(path,len);
3212     strcpy(tmpbuf, pathstr);
3213     pathstr = win32_longpath(tmpbuf);
3214     if (pathstr) {
3215         ST(0) = sv_2mortal(newSVpvn(pathstr, strlen(pathstr)));
3216         XSRETURN(1);
3217     }
3218     XSRETURN_EMPTY;
3219 }
3220
3221 static
3222 XS(w32_Sleep)
3223 {
3224     dXSARGS;
3225     if (items != 1)
3226         Perl_croak(aTHX_ "usage: Win32::Sleep($milliseconds)");
3227     Sleep(SvIV(ST(0)));
3228     XSRETURN_YES;
3229 }
3230
3231 static
3232 XS(w32_CopyFile)
3233 {
3234     dXSARGS;
3235     if (items != 3)
3236         Perl_croak(aTHX_ "usage: Win32::CopyFile($from, $to, $overwrite)");
3237     if (CopyFile(SvPV_nolen(ST(0)), SvPV_nolen(ST(1)), !SvTRUE(ST(2))))
3238         XSRETURN_YES;
3239     XSRETURN_NO;
3240 }
3241
3242 void
3243 Perl_init_os_extras(pTHX)
3244 {
3245     char *file = __FILE__;
3246     dXSUB_SYS;
3247     dPERLOBJ;
3248
3249     w32_perlshell_tokens = Nullch;
3250     w32_perlshell_items = -1;
3251     w32_fdpid = newAV();                /* XXX needs to be in Perl_win32_init()? */
3252     New(1313, w32_children, 1, child_tab);
3253     w32_num_children = 0;
3254
3255     /* these names are Activeware compatible */
3256     newXS("Win32::GetCwd", w32_GetCwd, file);
3257     newXS("Win32::SetCwd", w32_SetCwd, file);
3258     newXS("Win32::GetNextAvailDrive", w32_GetNextAvailDrive, file);
3259     newXS("Win32::GetLastError", w32_GetLastError, file);
3260     newXS("Win32::SetLastError", w32_SetLastError, file);
3261     newXS("Win32::LoginName", w32_LoginName, file);
3262     newXS("Win32::NodeName", w32_NodeName, file);
3263     newXS("Win32::DomainName", w32_DomainName, file);
3264     newXS("Win32::FsType", w32_FsType, file);
3265     newXS("Win32::GetOSVersion", w32_GetOSVersion, file);
3266     newXS("Win32::IsWinNT", w32_IsWinNT, file);
3267     newXS("Win32::IsWin95", w32_IsWin95, file);
3268     newXS("Win32::FormatMessage", w32_FormatMessage, file);
3269     newXS("Win32::Spawn", w32_Spawn, file);
3270     newXS("Win32::GetTickCount", w32_GetTickCount, file);
3271     newXS("Win32::GetShortPathName", w32_GetShortPathName, file);
3272     newXS("Win32::GetFullPathName", w32_GetFullPathName, file);
3273     newXS("Win32::GetLongPathName", w32_GetLongPathName, file);
3274     newXS("Win32::CopyFile", w32_CopyFile, file);
3275     newXS("Win32::Sleep", w32_Sleep, file);
3276
3277     /* XXX Bloat Alert! The following Activeware preloads really
3278      * ought to be part of Win32::Sys::*, so they're not included
3279      * here.
3280      */
3281     /* LookupAccountName
3282      * LookupAccountSID
3283      * InitiateSystemShutdown
3284      * AbortSystemShutdown
3285      * ExpandEnvrironmentStrings
3286      */
3287 }
3288
3289 void
3290 Perl_win32_init(int *argcp, char ***argvp)
3291 {
3292     /* Disable floating point errors, Perl will trap the ones we
3293      * care about.  VC++ RTL defaults to switching these off
3294      * already, but the Borland RTL doesn't.  Since we don't
3295      * want to be at the vendor's whim on the default, we set
3296      * it explicitly here.
3297      */
3298 #if !defined(_ALPHA_) && !defined(__GNUC__)
3299     _control87(MCW_EM, MCW_EM);
3300 #endif
3301     MALLOC_INIT;
3302 }
3303
3304 #ifdef USE_BINMODE_SCRIPTS
3305
3306 void
3307 win32_strip_return(SV *sv)
3308 {
3309  char *s = SvPVX(sv);
3310  char *e = s+SvCUR(sv);
3311  char *d = s;
3312  while (s < e)
3313   {
3314    if (*s == '\r' && s[1] == '\n')
3315     {
3316      *d++ = '\n';
3317      s += 2;
3318     }
3319    else 
3320     {
3321      *d++ = *s++;
3322     }   
3323   }
3324  SvCUR_set(sv,d-SvPVX(sv)); 
3325 }
3326
3327 #endif
3328