adapted suggested tests for addition to testsuite
[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         /* set process id so that it can be returned by perl's open() */
2127         PL_forkprocess = childpid;
2128     }
2129
2130     /* we have an fd, return a file stream */
2131     return (win32_fdopen(p[parent], (char *)mode));
2132
2133 cleanup:
2134     /* we don't need to check for errors here */
2135     win32_close(p[0]);
2136     win32_close(p[1]);
2137     if (oldfd != -1) {
2138         win32_dup2(oldfd, stdfd);
2139         win32_close(oldfd);
2140     }
2141     return (NULL);
2142
2143 #endif /* USE_RTL_POPEN */
2144 }
2145
2146 /*
2147  * pclose() clone
2148  */
2149
2150 DllExport int
2151 win32_pclose(FILE *pf)
2152 {
2153 #ifdef USE_RTL_POPEN
2154     return _pclose(pf);
2155 #else
2156     dTHX;
2157     dPERLOBJ;
2158     int childpid, status;
2159     SV *sv;
2160
2161     sv = *av_fetch(w32_fdpid, win32_fileno(pf), TRUE);
2162     if (SvIOK(sv))
2163         childpid = SvIVX(sv);
2164     else
2165         childpid = 0;
2166
2167     if (!childpid) {
2168         errno = EBADF;
2169         return -1;
2170     }
2171
2172     win32_fclose(pf);
2173     SvIVX(sv) = 0;
2174
2175     if (win32_waitpid(childpid, &status, 0) == -1)
2176         return -1;
2177
2178     return status;
2179
2180 #endif /* USE_RTL_POPEN */
2181 }
2182
2183 DllExport int
2184 win32_rename(const char *oname, const char *newname)
2185 {
2186     WCHAR wOldName[MAX_PATH];
2187     WCHAR wNewName[MAX_PATH];
2188     BOOL bResult;
2189     /* XXX despite what the documentation says about MoveFileEx(),
2190      * it doesn't work under Windows95!
2191      */
2192     if (IsWinNT()) {
2193         dPERLOBJ;
2194         if (USING_WIDE()) {
2195             dTHX;
2196             A2WHELPER(oname, wOldName, sizeof(wOldName));
2197             A2WHELPER(newname, wNewName, sizeof(wNewName));
2198             bResult = MoveFileExW(wOldName,wNewName,
2199                         MOVEFILE_COPY_ALLOWED|MOVEFILE_REPLACE_EXISTING);
2200         }
2201         else {
2202             bResult = MoveFileExA(oname,newname,
2203                         MOVEFILE_COPY_ALLOWED|MOVEFILE_REPLACE_EXISTING);
2204         }
2205         if (!bResult) {
2206             DWORD err = GetLastError();
2207             switch (err) {
2208             case ERROR_BAD_NET_NAME:
2209             case ERROR_BAD_NETPATH:
2210             case ERROR_BAD_PATHNAME:
2211             case ERROR_FILE_NOT_FOUND:
2212             case ERROR_FILENAME_EXCED_RANGE:
2213             case ERROR_INVALID_DRIVE:
2214             case ERROR_NO_MORE_FILES:
2215             case ERROR_PATH_NOT_FOUND:
2216                 errno = ENOENT;
2217                 break;
2218             default:
2219                 errno = EACCES;
2220                 break;
2221             }
2222             return -1;
2223         }
2224         return 0;
2225     }
2226     else {
2227         int retval = 0;
2228         char tmpname[MAX_PATH+1];
2229         char dname[MAX_PATH+1];
2230         char *endname = Nullch;
2231         STRLEN tmplen = 0;
2232         DWORD from_attr, to_attr;
2233
2234         /* if oname doesn't exist, do nothing */
2235         from_attr = GetFileAttributes(oname);
2236         if (from_attr == 0xFFFFFFFF) {
2237             errno = ENOENT;
2238             return -1;
2239         }
2240
2241         /* if newname exists, rename it to a temporary name so that we
2242          * don't delete it in case oname happens to be the same file
2243          * (but perhaps accessed via a different path)
2244          */
2245         to_attr = GetFileAttributes(newname);
2246         if (to_attr != 0xFFFFFFFF) {
2247             /* if newname is a directory, we fail
2248              * XXX could overcome this with yet more convoluted logic */
2249             if (to_attr & FILE_ATTRIBUTE_DIRECTORY) {
2250                 errno = EACCES;
2251                 return -1;
2252             }
2253             tmplen = strlen(newname);
2254             strcpy(tmpname,newname);
2255             endname = tmpname+tmplen;
2256             for (; endname > tmpname ; --endname) {
2257                 if (*endname == '/' || *endname == '\\') {
2258                     *endname = '\0';
2259                     break;
2260                 }
2261             }
2262             if (endname > tmpname)
2263                 endname = strcpy(dname,tmpname);
2264             else
2265                 endname = ".";
2266
2267             /* get a temporary filename in same directory
2268              * XXX is this really the best we can do? */
2269             if (!GetTempFileName((LPCTSTR)endname, "plr", 0, tmpname)) {
2270                 errno = ENOENT;
2271                 return -1;
2272             }
2273             DeleteFile(tmpname);
2274
2275             retval = rename(newname, tmpname);
2276             if (retval != 0) {
2277                 errno = EACCES;
2278                 return retval;
2279             }
2280         }
2281
2282         /* rename oname to newname */
2283         retval = rename(oname, newname);
2284
2285         /* if we created a temporary file before ... */
2286         if (endname != Nullch) {
2287             /* ...and rename succeeded, delete temporary file/directory */
2288             if (retval == 0)
2289                 DeleteFile(tmpname);
2290             /* else restore it to what it was */
2291             else
2292                 (void)rename(tmpname, newname);
2293         }
2294         return retval;
2295     }
2296 }
2297
2298 DllExport int
2299 win32_setmode(int fd, int mode)
2300 {
2301     return setmode(fd, mode);
2302 }
2303
2304 DllExport long
2305 win32_lseek(int fd, long offset, int origin)
2306 {
2307     return lseek(fd, offset, origin);
2308 }
2309
2310 DllExport long
2311 win32_tell(int fd)
2312 {
2313     return tell(fd);
2314 }
2315
2316 DllExport int
2317 win32_open(const char *path, int flag, ...)
2318 {
2319     va_list ap;
2320     int pmode;
2321     WCHAR wBuffer[MAX_PATH];
2322     dPERLOBJ;
2323
2324     va_start(ap, flag);
2325     pmode = va_arg(ap, int);
2326     va_end(ap);
2327
2328     if (stricmp(path, "/dev/null")==0)
2329         path = "NUL";
2330
2331     if (USING_WIDE()) {
2332         dTHX;
2333         A2WHELPER(path, wBuffer, sizeof(wBuffer));
2334         return _wopen(wBuffer, flag, pmode);
2335     }
2336     return open(path,flag,pmode);
2337 }
2338
2339 DllExport int
2340 win32_close(int fd)
2341 {
2342     return close(fd);
2343 }
2344
2345 DllExport int
2346 win32_eof(int fd)
2347 {
2348     return eof(fd);
2349 }
2350
2351 DllExport int
2352 win32_dup(int fd)
2353 {
2354     return dup(fd);
2355 }
2356
2357 DllExport int
2358 win32_dup2(int fd1,int fd2)
2359 {
2360     return dup2(fd1,fd2);
2361 }
2362
2363 DllExport int
2364 win32_read(int fd, void *buf, unsigned int cnt)
2365 {
2366     return read(fd, buf, cnt);
2367 }
2368
2369 DllExport int
2370 win32_write(int fd, const void *buf, unsigned int cnt)
2371 {
2372     return write(fd, buf, cnt);
2373 }
2374
2375 DllExport int
2376 win32_mkdir(const char *dir, int mode)
2377 {
2378     return mkdir(dir); /* just ignore mode */
2379 }
2380
2381 DllExport int
2382 win32_rmdir(const char *dir)
2383 {
2384     return rmdir(dir);
2385 }
2386
2387 DllExport int
2388 win32_chdir(const char *dir)
2389 {
2390     return chdir(dir);
2391 }
2392
2393 static char *
2394 create_command_line(const char* command, const char * const *args)
2395 {
2396     int index;
2397     char *cmd, *ptr, *arg;
2398     STRLEN len = strlen(command) + 1;
2399     dPERLOBJ;
2400
2401     for (index = 0; (ptr = (char*)args[index]) != NULL; ++index)
2402         len += strlen(ptr) + 1;
2403
2404     New(1310, cmd, len, char);
2405     ptr = cmd;
2406     strcpy(ptr, command);
2407
2408     for (index = 0; (arg = (char*)args[index]) != NULL; ++index) {
2409         ptr += strlen(ptr);
2410         *ptr++ = ' ';
2411         strcpy(ptr, arg);
2412     }
2413
2414     return cmd;
2415 }
2416
2417 static char *
2418 qualified_path(const char *cmd)
2419 {
2420     char *pathstr;
2421     char *fullcmd, *curfullcmd;
2422     STRLEN cmdlen = 0;
2423     int has_slash = 0;
2424     dPERLOBJ;
2425
2426     if (!cmd)
2427         return Nullch;
2428     fullcmd = (char*)cmd;
2429     while (*fullcmd) {
2430         if (*fullcmd == '/' || *fullcmd == '\\')
2431             has_slash++;
2432         fullcmd++;
2433         cmdlen++;
2434     }
2435
2436     /* look in PATH */
2437     pathstr = win32_getenv("PATH");
2438     New(0, fullcmd, MAX_PATH+1, char);
2439     curfullcmd = fullcmd;
2440
2441     while (1) {
2442         DWORD res;
2443
2444         /* start by appending the name to the current prefix */
2445         strcpy(curfullcmd, cmd);
2446         curfullcmd += cmdlen;
2447
2448         /* if it doesn't end with '.', or has no extension, try adding
2449          * a trailing .exe first */
2450         if (cmd[cmdlen-1] != '.'
2451             && (cmdlen < 4 || cmd[cmdlen-4] != '.'))
2452         {
2453             strcpy(curfullcmd, ".exe");
2454             res = GetFileAttributes(fullcmd);
2455             if (res != 0xFFFFFFFF && !(res & FILE_ATTRIBUTE_DIRECTORY))
2456                 return fullcmd;
2457             *curfullcmd = '\0';
2458         }
2459
2460         /* that failed, try the bare name */
2461         res = GetFileAttributes(fullcmd);
2462         if (res != 0xFFFFFFFF && !(res & FILE_ATTRIBUTE_DIRECTORY))
2463             return fullcmd;
2464
2465         /* quit if no other path exists, or if cmd already has path */
2466         if (!pathstr || !*pathstr || has_slash)
2467             break;
2468
2469         /* skip leading semis */
2470         while (*pathstr == ';')
2471             pathstr++;
2472
2473         /* build a new prefix from scratch */
2474         curfullcmd = fullcmd;
2475         while (*pathstr && *pathstr != ';') {
2476             if (*pathstr == '"') {      /* foo;"baz;etc";bar */
2477                 pathstr++;              /* skip initial '"' */
2478                 while (*pathstr && *pathstr != '"') {
2479                     if (curfullcmd-fullcmd < MAX_PATH-cmdlen-5)
2480                         *curfullcmd++ = *pathstr;
2481                     pathstr++;
2482                 }
2483                 if (*pathstr)
2484                     pathstr++;          /* skip trailing '"' */
2485             }
2486             else {
2487                 if (curfullcmd-fullcmd < MAX_PATH-cmdlen-5)
2488                     *curfullcmd++ = *pathstr;
2489                 pathstr++;
2490             }
2491         }
2492         if (*pathstr)
2493             pathstr++;                  /* skip trailing semi */
2494         if (curfullcmd > fullcmd        /* append a dir separator */
2495             && curfullcmd[-1] != '/' && curfullcmd[-1] != '\\')
2496         {
2497             *curfullcmd++ = '\\';
2498         }
2499     }
2500 GIVE_UP:
2501     Safefree(fullcmd);
2502     return Nullch;
2503 }
2504
2505 /* XXX this needs to be made more compatible with the spawnvp()
2506  * provided by the various RTLs.  In particular, searching for
2507  * *.{com,bat,cmd} files (as done by the RTLs) is unimplemented.
2508  * This doesn't significantly affect perl itself, because we
2509  * always invoke things using PERL5SHELL if a direct attempt to
2510  * spawn the executable fails.
2511  * 
2512  * XXX splitting and rejoining the commandline between do_aspawn()
2513  * and win32_spawnvp() could also be avoided.
2514  */
2515
2516 DllExport int
2517 win32_spawnvp(int mode, const char *cmdname, const char *const *argv)
2518 {
2519 #ifdef USE_RTL_SPAWNVP
2520     return spawnvp(mode, cmdname, (char * const *)argv);
2521 #else
2522     DWORD ret;
2523     STARTUPINFO StartupInfo;
2524     PROCESS_INFORMATION ProcessInformation;
2525     DWORD create = 0;
2526     dPERLOBJ;
2527
2528     char *cmd = create_command_line(cmdname, strcmp(cmdname, argv[0]) == 0
2529                                              ? &argv[1] : argv);
2530     char *fullcmd = Nullch;
2531
2532     switch(mode) {
2533     case P_NOWAIT:      /* asynch + remember result */
2534         if (w32_num_children >= MAXIMUM_WAIT_OBJECTS) {
2535             errno = EAGAIN;
2536             ret = -1;
2537             goto RETVAL;
2538         }
2539         /* FALL THROUGH */
2540     case P_WAIT:        /* synchronous execution */
2541         break;
2542     default:            /* invalid mode */
2543         errno = EINVAL;
2544         ret = -1;
2545         goto RETVAL;
2546     }
2547     memset(&StartupInfo,0,sizeof(StartupInfo));
2548     StartupInfo.cb = sizeof(StartupInfo);
2549     StartupInfo.hStdInput  = GetStdHandle(STD_INPUT_HANDLE);
2550     StartupInfo.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE);
2551     StartupInfo.hStdError  = GetStdHandle(STD_ERROR_HANDLE);
2552     if (StartupInfo.hStdInput != INVALID_HANDLE_VALUE &&
2553         StartupInfo.hStdOutput != INVALID_HANDLE_VALUE &&
2554         StartupInfo.hStdError != INVALID_HANDLE_VALUE)
2555     {
2556         StartupInfo.dwFlags |= STARTF_USESTDHANDLES;
2557     }
2558     else {
2559         create |= CREATE_NEW_CONSOLE;
2560     }
2561
2562 #ifndef DEBUGGING
2563     StartupInfo.dwFlags |= STARTF_USESHOWWINDOW;
2564     StartupInfo.wShowWindow = SW_HIDE;
2565 #endif
2566
2567 RETRY:
2568     if (!CreateProcess(cmdname,         /* search PATH to find executable */
2569                        cmd,             /* executable, and its arguments */
2570                        NULL,            /* process attributes */
2571                        NULL,            /* thread attributes */
2572                        TRUE,            /* inherit handles */
2573                        create,          /* creation flags */
2574                        NULL,            /* inherit environment */
2575                        NULL,            /* inherit cwd */
2576                        &StartupInfo,
2577                        &ProcessInformation))
2578     {
2579         /* initial NULL argument to CreateProcess() does a PATH
2580          * search, but it always first looks in the directory
2581          * where the current process was started, which behavior
2582          * is undesirable for backward compatibility.  So we
2583          * jump through our own hoops by picking out the path
2584          * we really want it to use. */
2585         if (!fullcmd) {
2586             fullcmd = qualified_path(cmdname);
2587             if (fullcmd) {
2588                 cmdname = fullcmd;
2589                 goto RETRY;
2590             }
2591         }
2592         errno = ENOENT;
2593         ret = -1;
2594         goto RETVAL;
2595     }
2596
2597     if (mode == P_NOWAIT) {
2598         /* asynchronous spawn -- store handle, return PID */
2599         w32_child_handles[w32_num_children] = ProcessInformation.hProcess;
2600         ret = w32_child_pids[w32_num_children] = ProcessInformation.dwProcessId;
2601         ++w32_num_children;
2602     }
2603     else  {
2604         WaitForSingleObject(ProcessInformation.hProcess, INFINITE);
2605         GetExitCodeProcess(ProcessInformation.hProcess, &ret);
2606         CloseHandle(ProcessInformation.hProcess);
2607     }
2608
2609     CloseHandle(ProcessInformation.hThread);
2610 RETVAL:
2611     Safefree(cmd);
2612     Safefree(fullcmd);
2613     return (int)ret;
2614 #endif
2615 }
2616
2617 DllExport int
2618 win32_execv(const char *cmdname, const char *const *argv)
2619 {
2620     return execv(cmdname, (char *const *)argv);
2621 }
2622
2623 DllExport int
2624 win32_execvp(const char *cmdname, const char *const *argv)
2625 {
2626     return execvp(cmdname, (char *const *)argv);
2627 }
2628
2629 DllExport void
2630 win32_perror(const char *str)
2631 {
2632     perror(str);
2633 }
2634
2635 DllExport void
2636 win32_setbuf(FILE *pf, char *buf)
2637 {
2638     setbuf(pf, buf);
2639 }
2640
2641 DllExport int
2642 win32_setvbuf(FILE *pf, char *buf, int type, size_t size)
2643 {
2644     return setvbuf(pf, buf, type, size);
2645 }
2646
2647 DllExport int
2648 win32_flushall(void)
2649 {
2650     return flushall();
2651 }
2652
2653 DllExport int
2654 win32_fcloseall(void)
2655 {
2656     return fcloseall();
2657 }
2658
2659 DllExport char*
2660 win32_fgets(char *s, int n, FILE *pf)
2661 {
2662     return fgets(s, n, pf);
2663 }
2664
2665 DllExport char*
2666 win32_gets(char *s)
2667 {
2668     return gets(s);
2669 }
2670
2671 DllExport int
2672 win32_fgetc(FILE *pf)
2673 {
2674     return fgetc(pf);
2675 }
2676
2677 DllExport int
2678 win32_putc(int c, FILE *pf)
2679 {
2680     return putc(c,pf);
2681 }
2682
2683 DllExport int
2684 win32_puts(const char *s)
2685 {
2686     return puts(s);
2687 }
2688
2689 DllExport int
2690 win32_getchar(void)
2691 {
2692     return getchar();
2693 }
2694
2695 DllExport int
2696 win32_putchar(int c)
2697 {
2698     return putchar(c);
2699 }
2700
2701 #ifdef MYMALLOC
2702
2703 #ifndef USE_PERL_SBRK
2704
2705 static char *committed = NULL;
2706 static char *base      = NULL;
2707 static char *reserved  = NULL;
2708 static char *brk       = NULL;
2709 static DWORD pagesize  = 0;
2710 static DWORD allocsize = 0;
2711
2712 void *
2713 sbrk(int need)
2714 {
2715  void *result;
2716  if (!pagesize)
2717   {SYSTEM_INFO info;
2718    GetSystemInfo(&info);
2719    /* Pretend page size is larger so we don't perpetually
2720     * call the OS to commit just one page ...
2721     */
2722    pagesize = info.dwPageSize << 3;
2723    allocsize = info.dwAllocationGranularity;
2724   }
2725  /* This scheme fails eventually if request for contiguous
2726   * block is denied so reserve big blocks - this is only 
2727   * address space not memory ...
2728   */
2729  if (brk+need >= reserved)
2730   {
2731    DWORD size = 64*1024*1024;
2732    char *addr;
2733    if (committed && reserved && committed < reserved)
2734     {
2735      /* Commit last of previous chunk cannot span allocations */
2736      addr = (char *) VirtualAlloc(committed,reserved-committed,MEM_COMMIT,PAGE_READWRITE);
2737      if (addr)
2738       committed = reserved;
2739     }
2740    /* Reserve some (more) space 
2741     * Note this is a little sneaky, 1st call passes NULL as reserved
2742     * so lets system choose where we start, subsequent calls pass
2743     * the old end address so ask for a contiguous block
2744     */
2745    addr  = (char *) VirtualAlloc(reserved,size,MEM_RESERVE,PAGE_NOACCESS);
2746    if (addr)
2747     {
2748      reserved = addr+size;
2749      if (!base)
2750       base = addr;
2751      if (!committed)
2752       committed = base;
2753      if (!brk)
2754       brk = committed;
2755     }
2756    else
2757     {
2758      return (void *) -1;
2759     }
2760   }
2761  result = brk;
2762  brk += need;
2763  if (brk > committed)
2764   {
2765    DWORD size = ((brk-committed + pagesize -1)/pagesize) * pagesize;
2766    char *addr = (char *) VirtualAlloc(committed,size,MEM_COMMIT,PAGE_READWRITE);
2767    if (addr)
2768     {
2769      committed += size;
2770     }
2771    else
2772     return (void *) -1;
2773   }
2774  return result;
2775 }
2776
2777 #endif
2778 #endif
2779
2780 DllExport void*
2781 win32_malloc(size_t size)
2782 {
2783     return malloc(size);
2784 }
2785
2786 DllExport void*
2787 win32_calloc(size_t numitems, size_t size)
2788 {
2789     return calloc(numitems,size);
2790 }
2791
2792 DllExport void*
2793 win32_realloc(void *block, size_t size)
2794 {
2795     return realloc(block,size);
2796 }
2797
2798 DllExport void
2799 win32_free(void *block)
2800 {
2801     free(block);
2802 }
2803
2804
2805 int
2806 win32_open_osfhandle(long handle, int flags)
2807 {
2808     return _open_osfhandle(handle, flags);
2809 }
2810
2811 long
2812 win32_get_osfhandle(int fd)
2813 {
2814     return _get_osfhandle(fd);
2815 }
2816
2817 DllExport void*
2818 win32_dynaload(aTHX_ const char*filename)
2819 {
2820     HMODULE hModule;
2821     dPERLOBJ;
2822     if (USING_WIDE()) {
2823         WCHAR wfilename[MAX_PATH];
2824         A2WHELPER(filename, wfilename, sizeof(wfilename));
2825         hModule = LoadLibraryExW(wfilename, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
2826     }
2827     else {
2828         hModule = LoadLibraryExA(filename, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
2829     }
2830     return hModule;
2831 }
2832
2833 DllExport int
2834 win32_add_host(char *nameId, void *data)
2835 {
2836     /*
2837      * This must be called before the script is parsed,
2838      * therefore no locking of threads is needed
2839      */
2840     dTHX;
2841     dPERLOBJ;
2842     struct host_link *link;
2843     New(1314, link, 1, struct host_link);
2844     link->host_data = data;
2845     link->nameId = nameId;
2846     link->next = w32_host_link;
2847     w32_host_link = link;
2848     return 1;
2849 }
2850
2851 DllExport void *
2852 win32_get_host_data(char *nameId)
2853 {
2854     dTHX;
2855     dPERLOBJ;
2856     struct host_link *link = w32_host_link;
2857     while(link) {
2858         if(strEQ(link->nameId, nameId))
2859             return link->host_data;
2860         link = link->next;
2861     }
2862     return Nullch;
2863 }
2864
2865 /*
2866  * Extras.
2867  */
2868
2869 static
2870 XS(w32_GetCwd)
2871 {
2872     dXSARGS;
2873     SV *sv = sv_newmortal();
2874     /* Make one call with zero size - return value is required size */
2875     DWORD len = GetCurrentDirectory((DWORD)0,NULL);
2876     SvUPGRADE(sv,SVt_PV);
2877     SvGROW(sv,len);
2878     SvCUR(sv) = GetCurrentDirectory((DWORD) SvLEN(sv), SvPVX(sv));
2879     /* 
2880      * If result != 0 
2881      *   then it worked, set PV valid, 
2882      *   else leave it 'undef' 
2883      */
2884     EXTEND(SP,1);
2885     if (SvCUR(sv)) {
2886         SvPOK_on(sv);
2887         ST(0) = sv;
2888         XSRETURN(1);
2889     }
2890     XSRETURN_UNDEF;
2891 }
2892
2893 static
2894 XS(w32_SetCwd)
2895 {
2896     dXSARGS;
2897     if (items != 1)
2898         Perl_croak(aTHX_ "usage: Win32::SetCurrentDirectory($cwd)");
2899     if (SetCurrentDirectory(SvPV_nolen(ST(0))))
2900         XSRETURN_YES;
2901
2902     XSRETURN_NO;
2903 }
2904
2905 static
2906 XS(w32_GetNextAvailDrive)
2907 {
2908     dXSARGS;
2909     char ix = 'C';
2910     char root[] = "_:\\";
2911
2912     EXTEND(SP,1);
2913     while (ix <= 'Z') {
2914         root[0] = ix++;
2915         if (GetDriveType(root) == 1) {
2916             root[2] = '\0';
2917             XSRETURN_PV(root);
2918         }
2919     }
2920     XSRETURN_UNDEF;
2921 }
2922
2923 static
2924 XS(w32_GetLastError)
2925 {
2926     dXSARGS;
2927     EXTEND(SP,1);
2928     XSRETURN_IV(GetLastError());
2929 }
2930
2931 static
2932 XS(w32_SetLastError)
2933 {
2934     dXSARGS;
2935     if (items != 1)
2936         Perl_croak(aTHX_ "usage: Win32::SetLastError($error)");
2937     SetLastError(SvIV(ST(0)));
2938     XSRETURN_EMPTY;
2939 }
2940
2941 static
2942 XS(w32_LoginName)
2943 {
2944     dXSARGS;
2945     char *name = getlogin_buffer;
2946     DWORD size = sizeof(getlogin_buffer);
2947     EXTEND(SP,1);
2948     if (GetUserName(name,&size)) {
2949         /* size includes NULL */
2950         ST(0) = sv_2mortal(newSVpvn(name,size-1));
2951         XSRETURN(1);
2952     }
2953     XSRETURN_UNDEF;
2954 }
2955
2956 static
2957 XS(w32_NodeName)
2958 {
2959     dXSARGS;
2960     char name[MAX_COMPUTERNAME_LENGTH+1];
2961     DWORD size = sizeof(name);
2962     EXTEND(SP,1);
2963     if (GetComputerName(name,&size)) {
2964         /* size does NOT include NULL :-( */
2965         ST(0) = sv_2mortal(newSVpvn(name,size));
2966         XSRETURN(1);
2967     }
2968     XSRETURN_UNDEF;
2969 }
2970
2971
2972 static
2973 XS(w32_DomainName)
2974 {
2975     dXSARGS;
2976 #ifndef HAS_NETWKSTAGETINFO
2977     /* mingw32 (and Win95) don't have NetWksta*(), so do it the old way */
2978     char name[256];
2979     DWORD size = sizeof(name);
2980     EXTEND(SP,1);
2981     if (GetUserName(name,&size)) {
2982         char sid[1024];
2983         DWORD sidlen = sizeof(sid);
2984         char dname[256];
2985         DWORD dnamelen = sizeof(dname);
2986         SID_NAME_USE snu;
2987         if (LookupAccountName(NULL, name, (PSID)&sid, &sidlen,
2988                               dname, &dnamelen, &snu)) {
2989             XSRETURN_PV(dname);         /* all that for this */
2990         }
2991     }
2992 #else
2993     /* this way is more reliable, in case user has a local account.
2994      * XXX need dynamic binding of netapi32.dll symbols or this will fail on
2995      * Win95. Probably makes more sense to move it into libwin32. */
2996     char dname[256];
2997     DWORD dnamelen = sizeof(dname);
2998     PWKSTA_INFO_100 pwi;
2999     EXTEND(SP,1);
3000     if (NERR_Success == NetWkstaGetInfo(NULL, 100, (LPBYTE*)&pwi)) {
3001         if (pwi->wki100_langroup && *(pwi->wki100_langroup)) {
3002             WideCharToMultiByte(CP_ACP, NULL, pwi->wki100_langroup,
3003                                 -1, (LPSTR)dname, dnamelen, NULL, NULL);
3004         }
3005         else {
3006             WideCharToMultiByte(CP_ACP, NULL, pwi->wki100_computername,
3007                                 -1, (LPSTR)dname, dnamelen, NULL, NULL);
3008         }
3009         NetApiBufferFree(pwi);
3010         XSRETURN_PV(dname);
3011     }
3012 #endif
3013     XSRETURN_UNDEF;
3014 }
3015
3016 static
3017 XS(w32_FsType)
3018 {
3019     dXSARGS;
3020     char fsname[256];
3021     DWORD flags, filecomplen;
3022     if (GetVolumeInformation(NULL, NULL, 0, NULL, &filecomplen,
3023                          &flags, fsname, sizeof(fsname))) {
3024         if (GIMME_V == G_ARRAY) {
3025             XPUSHs(sv_2mortal(newSVpvn(fsname,strlen(fsname))));
3026             XPUSHs(sv_2mortal(newSViv(flags)));
3027             XPUSHs(sv_2mortal(newSViv(filecomplen)));
3028             PUTBACK;
3029             return;
3030         }
3031         EXTEND(SP,1);
3032         XSRETURN_PV(fsname);
3033     }
3034     XSRETURN_EMPTY;
3035 }
3036
3037 static
3038 XS(w32_GetOSVersion)
3039 {
3040     dXSARGS;
3041     OSVERSIONINFO osver;
3042
3043     osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
3044     if (GetVersionEx(&osver)) {
3045         XPUSHs(newSVpvn(osver.szCSDVersion, strlen(osver.szCSDVersion)));
3046         XPUSHs(newSViv(osver.dwMajorVersion));
3047         XPUSHs(newSViv(osver.dwMinorVersion));
3048         XPUSHs(newSViv(osver.dwBuildNumber));
3049         XPUSHs(newSViv(osver.dwPlatformId));
3050         PUTBACK;
3051         return;
3052     }
3053     XSRETURN_EMPTY;
3054 }
3055
3056 static
3057 XS(w32_IsWinNT)
3058 {
3059     dXSARGS;
3060     EXTEND(SP,1);
3061     XSRETURN_IV(IsWinNT());
3062 }
3063
3064 static
3065 XS(w32_IsWin95)
3066 {
3067     dXSARGS;
3068     EXTEND(SP,1);
3069     XSRETURN_IV(IsWin95());
3070 }
3071
3072 static
3073 XS(w32_FormatMessage)
3074 {
3075     dXSARGS;
3076     DWORD source = 0;
3077     char msgbuf[1024];
3078
3079     if (items != 1)
3080         Perl_croak(aTHX_ "usage: Win32::FormatMessage($errno)");
3081
3082     if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM,
3083                       &source, SvIV(ST(0)), 0,
3084                       msgbuf, sizeof(msgbuf)-1, NULL))
3085         XSRETURN_PV(msgbuf);
3086
3087     XSRETURN_UNDEF;
3088 }
3089
3090 static
3091 XS(w32_Spawn)
3092 {
3093     dXSARGS;
3094     char *cmd, *args;
3095     PROCESS_INFORMATION stProcInfo;
3096     STARTUPINFO stStartInfo;
3097     BOOL bSuccess = FALSE;
3098
3099     if (items != 3)
3100         Perl_croak(aTHX_ "usage: Win32::Spawn($cmdName, $args, $PID)");
3101
3102     cmd = SvPV_nolen(ST(0));
3103     args = SvPV_nolen(ST(1));
3104
3105     memset(&stStartInfo, 0, sizeof(stStartInfo));   /* Clear the block */
3106     stStartInfo.cb = sizeof(stStartInfo);           /* Set the structure size */
3107     stStartInfo.dwFlags = STARTF_USESHOWWINDOW;     /* Enable wShowWindow control */
3108     stStartInfo.wShowWindow = SW_SHOWMINNOACTIVE;   /* Start min (normal) */
3109
3110     if (CreateProcess(
3111                 cmd,                    /* Image path */
3112                 args,                   /* Arguments for command line */
3113                 NULL,                   /* Default process security */
3114                 NULL,                   /* Default thread security */
3115                 FALSE,                  /* Must be TRUE to use std handles */
3116                 NORMAL_PRIORITY_CLASS,  /* No special scheduling */
3117                 NULL,                   /* Inherit our environment block */
3118                 NULL,                   /* Inherit our currrent directory */
3119                 &stStartInfo,           /* -> Startup info */
3120                 &stProcInfo))           /* <- Process info (if OK) */
3121     {
3122         CloseHandle(stProcInfo.hThread);/* library source code does this. */
3123         sv_setiv(ST(2), stProcInfo.dwProcessId);
3124         bSuccess = TRUE;
3125     }
3126     XSRETURN_IV(bSuccess);
3127 }
3128
3129 static
3130 XS(w32_GetTickCount)
3131 {
3132     dXSARGS;
3133     DWORD msec = GetTickCount();
3134     EXTEND(SP,1);
3135     if ((IV)msec > 0)
3136         XSRETURN_IV(msec);
3137     XSRETURN_NV(msec);
3138 }
3139
3140 static
3141 XS(w32_GetShortPathName)
3142 {
3143     dXSARGS;
3144     SV *shortpath;
3145     DWORD len;
3146
3147     if (items != 1)
3148         Perl_croak(aTHX_ "usage: Win32::GetShortPathName($longPathName)");
3149
3150     shortpath = sv_mortalcopy(ST(0));
3151     SvUPGRADE(shortpath, SVt_PV);
3152     /* src == target is allowed */
3153     do {
3154         len = GetShortPathName(SvPVX(shortpath),
3155                                SvPVX(shortpath),
3156                                SvLEN(shortpath));
3157     } while (len >= SvLEN(shortpath) && sv_grow(shortpath,len+1));
3158     if (len) {
3159         SvCUR_set(shortpath,len);
3160         ST(0) = shortpath;
3161         XSRETURN(1);
3162     }
3163     XSRETURN_UNDEF;
3164 }
3165
3166 static
3167 XS(w32_GetFullPathName)
3168 {
3169     dXSARGS;
3170     SV *filename;
3171     SV *fullpath;
3172     char *filepart;
3173     DWORD len;
3174
3175     if (items != 1)
3176         Perl_croak(aTHX_ "usage: Win32::GetFullPathName($filename)");
3177
3178     filename = ST(0);
3179     fullpath = sv_mortalcopy(filename);
3180     SvUPGRADE(fullpath, SVt_PV);
3181     do {
3182         len = GetFullPathName(SvPVX(filename),
3183                               SvLEN(fullpath),
3184                               SvPVX(fullpath),
3185                               &filepart);
3186     } while (len >= SvLEN(fullpath) && sv_grow(fullpath,len+1));
3187     if (len) {
3188         if (GIMME_V == G_ARRAY) {
3189             EXTEND(SP,1);
3190             XST_mPV(1,filepart);
3191             len = filepart - SvPVX(fullpath);
3192             items = 2;
3193         }
3194         SvCUR_set(fullpath,len);
3195         ST(0) = fullpath;
3196         XSRETURN(items);
3197     }
3198     XSRETURN_EMPTY;
3199 }
3200
3201 static
3202 XS(w32_GetLongPathName)
3203 {
3204     dXSARGS;
3205     SV *path;
3206     char tmpbuf[MAX_PATH+1];
3207     char *pathstr;
3208     STRLEN len;
3209
3210     if (items != 1)
3211         Perl_croak(aTHX_ "usage: Win32::GetLongPathName($pathname)");
3212
3213     path = ST(0);
3214     pathstr = SvPV(path,len);
3215     strcpy(tmpbuf, pathstr);
3216     pathstr = win32_longpath(tmpbuf);
3217     if (pathstr) {
3218         ST(0) = sv_2mortal(newSVpvn(pathstr, strlen(pathstr)));
3219         XSRETURN(1);
3220     }
3221     XSRETURN_EMPTY;
3222 }
3223
3224 static
3225 XS(w32_Sleep)
3226 {
3227     dXSARGS;
3228     if (items != 1)
3229         Perl_croak(aTHX_ "usage: Win32::Sleep($milliseconds)");
3230     Sleep(SvIV(ST(0)));
3231     XSRETURN_YES;
3232 }
3233
3234 static
3235 XS(w32_CopyFile)
3236 {
3237     dXSARGS;
3238     if (items != 3)
3239         Perl_croak(aTHX_ "usage: Win32::CopyFile($from, $to, $overwrite)");
3240     if (CopyFile(SvPV_nolen(ST(0)), SvPV_nolen(ST(1)), !SvTRUE(ST(2))))
3241         XSRETURN_YES;
3242     XSRETURN_NO;
3243 }
3244
3245 void
3246 Perl_init_os_extras(pTHX)
3247 {
3248     char *file = __FILE__;
3249     dXSUB_SYS;
3250     dPERLOBJ;
3251
3252     w32_perlshell_tokens = Nullch;
3253     w32_perlshell_items = -1;
3254     w32_fdpid = newAV();                /* XXX needs to be in Perl_win32_init()? */
3255     New(1313, w32_children, 1, child_tab);
3256     w32_num_children = 0;
3257
3258     /* these names are Activeware compatible */
3259     newXS("Win32::GetCwd", w32_GetCwd, file);
3260     newXS("Win32::SetCwd", w32_SetCwd, file);
3261     newXS("Win32::GetNextAvailDrive", w32_GetNextAvailDrive, file);
3262     newXS("Win32::GetLastError", w32_GetLastError, file);
3263     newXS("Win32::SetLastError", w32_SetLastError, file);
3264     newXS("Win32::LoginName", w32_LoginName, file);
3265     newXS("Win32::NodeName", w32_NodeName, file);
3266     newXS("Win32::DomainName", w32_DomainName, file);
3267     newXS("Win32::FsType", w32_FsType, file);
3268     newXS("Win32::GetOSVersion", w32_GetOSVersion, file);
3269     newXS("Win32::IsWinNT", w32_IsWinNT, file);
3270     newXS("Win32::IsWin95", w32_IsWin95, file);
3271     newXS("Win32::FormatMessage", w32_FormatMessage, file);
3272     newXS("Win32::Spawn", w32_Spawn, file);
3273     newXS("Win32::GetTickCount", w32_GetTickCount, file);
3274     newXS("Win32::GetShortPathName", w32_GetShortPathName, file);
3275     newXS("Win32::GetFullPathName", w32_GetFullPathName, file);
3276     newXS("Win32::GetLongPathName", w32_GetLongPathName, file);
3277     newXS("Win32::CopyFile", w32_CopyFile, file);
3278     newXS("Win32::Sleep", w32_Sleep, file);
3279
3280     /* XXX Bloat Alert! The following Activeware preloads really
3281      * ought to be part of Win32::Sys::*, so they're not included
3282      * here.
3283      */
3284     /* LookupAccountName
3285      * LookupAccountSID
3286      * InitiateSystemShutdown
3287      * AbortSystemShutdown
3288      * ExpandEnvrironmentStrings
3289      */
3290 }
3291
3292 void
3293 Perl_win32_init(int *argcp, char ***argvp)
3294 {
3295     /* Disable floating point errors, Perl will trap the ones we
3296      * care about.  VC++ RTL defaults to switching these off
3297      * already, but the Borland RTL doesn't.  Since we don't
3298      * want to be at the vendor's whim on the default, we set
3299      * it explicitly here.
3300      */
3301 #if !defined(_ALPHA_) && !defined(__GNUC__)
3302     _control87(MCW_EM, MCW_EM);
3303 #endif
3304     MALLOC_INIT;
3305 }
3306
3307 #ifdef USE_BINMODE_SCRIPTS
3308
3309 void
3310 win32_strip_return(SV *sv)
3311 {
3312  char *s = SvPVX(sv);
3313  char *e = s+SvCUR(sv);
3314  char *d = s;
3315  while (s < e)
3316   {
3317    if (*s == '\r' && s[1] == '\n')
3318     {
3319      *d++ = '\n';
3320      s += 2;
3321     }
3322    else 
3323     {
3324      *d++ = *s++;
3325     }   
3326   }
3327  SvCUR_set(sv,d-SvPVX(sv)); 
3328 }
3329
3330 #endif
3331