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