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