implement C<goto &func> and other fixes (via private mail)
[p5sagit/p5-mst-13.2.git] / win32 / win32.c
1 /* WIN32.C
2  *
3  * (c) 1995 Microsoft Corporation. All rights reserved. 
4  *              Developed by hip communications inc., http://info.hip.com/info/
5  * Portions (c) 1993 Intergraph Corporation. All rights reserved.
6  *
7  *    You may distribute under the terms of either the GNU General Public
8  *    License or the Artistic License, as specified in the README file.
9  */
10
11 #define WIN32_LEAN_AND_MEAN
12 #define WIN32IO_IS_STDIO
13 #include <tchar.h>
14 #ifdef __GNUC__
15 #define Win32_Winsock
16 #endif
17 #include <windows.h>
18
19 #ifndef __MINGW32__
20 #include <lmcons.h>
21 #include <lmerr.h>
22 /* ugliness to work around a buggy struct definition in lmwksta.h */
23 #undef LPTSTR
24 #define LPTSTR LPWSTR
25 #include <lmwksta.h>
26 #undef LPTSTR
27 #define LPTSTR LPSTR
28 #include <lmapibuf.h>
29 #endif /* __MINGW32__ */
30
31 /* #include "config.h" */
32
33 #define PERLIO_NOT_STDIO 0 
34 #if !defined(PERLIO_IS_STDIO) && !defined(USE_SFIO)
35 #define PerlIO FILE
36 #endif
37
38 #include "EXTERN.h"
39 #include "perl.h"
40
41 #define NO_XSLOCKS
42 #ifdef PERL_OBJECT
43 extern CPerlObj* pPerl;
44 #endif
45 #include "XSUB.h"
46
47 #include "Win32iop.h"
48 #include <fcntl.h>
49 #include <sys/stat.h>
50 #ifndef __GNUC__
51 /* assert.h conflicts with #define of assert in perl.h */
52 #include <assert.h>
53 #endif
54 #include <string.h>
55 #include <stdarg.h>
56 #include <float.h>
57 #include <time.h>
58 #if defined(_MSC_VER) || defined(__MINGW32__)
59 #include <sys/utime.h>
60 #else
61 #include <utime.h>
62 #endif
63
64 #ifdef __GNUC__
65 /* Mingw32 defaults to globing command line 
66  * So we turn it off like this:
67  */
68 int _CRT_glob = 0;
69 #endif
70
71 #define EXECF_EXEC 1
72 #define EXECF_SPAWN 2
73 #define EXECF_SPAWN_NOWAIT 3
74
75 #if defined(PERL_OBJECT)
76 #undef win32_get_privlib
77 #define win32_get_privlib g_win32_get_privlib
78 #undef win32_get_sitelib
79 #define win32_get_sitelib g_win32_get_sitelib
80 #undef do_aspawn
81 #define do_aspawn g_do_aspawn
82 #undef do_spawn
83 #define do_spawn g_do_spawn
84 #undef do_exec
85 #define do_exec g_do_exec
86 #undef getlogin
87 #define getlogin g_getlogin
88 #endif
89
90 static DWORD            os_id(void);
91 static void             get_shell(void);
92 static long             tokenize(char *str, char **dest, char ***destv);
93         int             do_spawn2(char *cmd, int exectype);
94 static BOOL             has_shell_metachars(char *ptr);
95 static long             filetime_to_clock(PFILETIME ft);
96 static BOOL             filetime_from_time(PFILETIME ft, time_t t);
97 static char *           get_emd_part(char *leading, char *trailing, ...);
98 static void             remove_dead_process(HANDLE deceased);
99
100 HANDLE  w32_perldll_handle = INVALID_HANDLE_VALUE;
101 static DWORD    w32_platform = (DWORD)-1;
102
103 #ifdef USE_THREADS
104 #  ifdef USE_DECLSPEC_THREAD
105 __declspec(thread) char strerror_buffer[512];
106 __declspec(thread) char getlogin_buffer[128];
107 __declspec(thread) char w32_perllib_root[MAX_PATH+1];
108 #    ifdef HAVE_DES_FCRYPT
109 __declspec(thread) char crypt_buffer[30];
110 #    endif
111 #  else
112 #    define strerror_buffer     (thr->i.Wstrerror_buffer)
113 #    define getlogin_buffer     (thr->i.Wgetlogin_buffer)
114 #    define w32_perllib_root    (thr->i.Ww32_perllib_root)
115 #    define crypt_buffer        (thr->i.Wcrypt_buffer)
116 #  endif
117 #else
118 static char     strerror_buffer[512];
119 static char     getlogin_buffer[128];
120 static char     w32_perllib_root[MAX_PATH+1];
121 #  ifdef HAVE_DES_FCRYPT
122 static char     crypt_buffer[30];
123 #  endif
124 #endif
125
126 int 
127 IsWin95(void) {
128     return (os_id() == VER_PLATFORM_WIN32_WINDOWS);
129 }
130
131 int
132 IsWinNT(void) {
133     return (os_id() == VER_PLATFORM_WIN32_NT);
134 }
135
136 char*
137 GetRegStrFromKey(HKEY hkey, const char *lpszValueName, char** ptr, DWORD* lpDataLen)
138 {   /* Retrieve a REG_SZ or REG_EXPAND_SZ from the registry */
139     HKEY handle;
140     DWORD type;
141     const char *subkey = "Software\\Perl";
142     long retval;
143
144     retval = RegOpenKeyEx(hkey, subkey, 0, KEY_READ, &handle);
145     if (retval == ERROR_SUCCESS){
146         retval = RegQueryValueEx(handle, lpszValueName, 0, &type, NULL, lpDataLen);
147         if (retval == ERROR_SUCCESS && type == REG_SZ) {
148             if (*ptr) {
149                 Renew(*ptr, *lpDataLen, char);
150             }
151             else {
152                 New(1312, *ptr, *lpDataLen, char);
153             }
154             retval = RegQueryValueEx(handle, lpszValueName, 0, NULL, (PBYTE)*ptr, lpDataLen);
155             if (retval != ERROR_SUCCESS) {
156                 Safefree(*ptr);
157                 *ptr = Nullch;
158             }
159         }
160         RegCloseKey(handle);
161     }
162     return *ptr;
163 }
164
165 char*
166 GetRegStr(const char *lpszValueName, char** ptr, DWORD* lpDataLen)
167 {
168     *ptr = GetRegStrFromKey(HKEY_CURRENT_USER, lpszValueName, ptr, lpDataLen);
169     if (*ptr == Nullch)
170     {
171         *ptr = GetRegStrFromKey(HKEY_LOCAL_MACHINE, lpszValueName, ptr, lpDataLen);
172     }
173     return *ptr;
174 }
175
176 static char *
177 get_emd_part(char *prev_path, char *trailing_path, ...)
178 {
179     va_list ap;
180     char mod_name[MAX_PATH+1];
181     char *ptr;
182     char *optr;
183     char *strip;
184     int oldsize, newsize;
185
186     va_start(ap, trailing_path);
187     strip = va_arg(ap, char *);
188
189     GetModuleFileName((w32_perldll_handle == INVALID_HANDLE_VALUE)
190                       ? GetModuleHandle(NULL)
191                       : w32_perldll_handle, mod_name, sizeof(mod_name));
192     ptr = strrchr(mod_name, '\\');
193     while (ptr && strip) {
194         /* look for directories to skip back */
195         optr = ptr;
196         *ptr = '\0';
197         ptr = strrchr(mod_name, '\\');
198         if (!ptr || stricmp(ptr+1, strip) != 0) {
199             *optr = '\\';
200             ptr = optr;
201         }
202         strip = va_arg(ap, char *);
203     }
204     if (!ptr) {
205         ptr = mod_name;
206         *ptr++ = '.';
207         *ptr = '\\';
208     }
209     va_end(ap);
210     strcpy(++ptr, trailing_path);
211
212     newsize = strlen(mod_name) + 1;
213     if (prev_path) {
214         oldsize = strlen(prev_path) + 1;
215         newsize += oldsize;                     /* includes plus 1 for ';' */
216         Renew(prev_path, newsize, char);
217         prev_path[oldsize-1] = ';';
218         strcpy(&prev_path[oldsize], mod_name);
219     }
220     else {
221         New(1311, prev_path, newsize, char);
222         strcpy(prev_path, mod_name);
223     }
224
225     return prev_path;
226 }
227
228 char *
229 win32_get_privlib(char *pl)
230 {
231     char *stdlib = "lib";
232     char buffer[MAX_PATH+1];
233     char *path = Nullch;
234     DWORD datalen;
235
236     /* $stdlib = $HKCU{"lib-$]"} || $HKLM{"lib-$]"} || $HKCU{"lib"} || $HKLM{"lib"} || "";  */
237     sprintf(buffer, "%s-%s", stdlib, pl);
238     path = GetRegStr(buffer, &path, &datalen);
239     if (!path)
240         path = GetRegStr(stdlib, &path, &datalen);
241
242     /* $stdlib .= ";$EMD/../../lib" */
243     return get_emd_part(path, stdlib, ARCHNAME, "bin", Nullch);
244 }
245
246 char *
247 win32_get_sitelib(char *pl)
248 {
249     char *sitelib = "sitelib";
250     char regstr[40];
251     char pathstr[MAX_PATH+1];
252     DWORD datalen;
253     char *path1 = Nullch;
254     char *path2 = Nullch;
255     int len, newsize;
256
257     /* $HKCU{"sitelib-$]"} || $HKLM{"sitelib-$]"} . ---; */
258     sprintf(regstr, "%s-%s", sitelib, pl);
259     path1 = GetRegStr(regstr, &path1, &datalen);
260
261     /* $sitelib .=
262      * ";$EMD/" . ((-d $EMD/../../../$]) ? "../../.." : "../.."). "/site/$]/lib";  */
263     sprintf(pathstr, "site\\%s\\lib", pl);
264     path1 = get_emd_part(path1, pathstr, ARCHNAME, "bin", pl, Nullch);
265
266     /* $HKCU{'sitelib'} || $HKLM{'sitelib'} . ---; */
267     path2 = GetRegStr(sitelib, &path2, &datalen);
268
269     /* $sitelib .=
270      * ";$EMD/" . ((-d $EMD/../../../$]) ? "../../.." : "../.."). "/site/lib";  */
271     path2 = get_emd_part(path2, "site\\lib", ARCHNAME, "bin", pl, Nullch);
272
273     if (!path1)
274         return path2;
275
276     if (!path2)
277         return path1;
278
279     len = strlen(path1);
280     newsize = len + strlen(path2) + 2; /* plus one for ';' */
281
282     Renew(path1, newsize, char);
283     path1[len++] = ';';
284     strcpy(&path1[len], path2);
285
286     Safefree(path2);
287     return path1;
288 }
289
290
291 static BOOL
292 has_shell_metachars(char *ptr)
293 {
294     int inquote = 0;
295     char quote = '\0';
296
297     /*
298      * Scan string looking for redirection (< or >) or pipe
299      * characters (|) that are not in a quoted string.
300      * Shell variable interpolation (%VAR%) can also happen inside strings.
301      */
302     while (*ptr) {
303         switch(*ptr) {
304         case '%':
305             return TRUE;
306         case '\'':
307         case '\"':
308             if (inquote) {
309                 if (quote == *ptr) {
310                     inquote = 0;
311                     quote = '\0';
312                 }
313             }
314             else {
315                 quote = *ptr;
316                 inquote++;
317             }
318             break;
319         case '>':
320         case '<':
321         case '|':
322             if (!inquote)
323                 return TRUE;
324         default:
325             break;
326         }
327         ++ptr;
328     }
329     return FALSE;
330 }
331
332 #if !defined(PERL_OBJECT)
333 /* since the current process environment is being updated in util.c
334  * the library functions will get the correct environment
335  */
336 PerlIO *
337 my_popen(char *cmd, char *mode)
338 {
339 #ifdef FIXCMD
340 #define fixcmd(x)       {                                       \
341                             char *pspace = strchr((x),' ');     \
342                             if (pspace) {                       \
343                                 char *p = (x);                  \
344                                 while (p < pspace) {            \
345                                     if (*p == '/')              \
346                                         *p = '\\';              \
347                                     p++;                        \
348                                 }                               \
349                             }                                   \
350                         }
351 #else
352 #define fixcmd(x)
353 #endif
354     fixcmd(cmd);
355     win32_fflush(stdout);
356     win32_fflush(stderr);
357     return win32_popen(cmd, mode);
358 }
359
360 long
361 my_pclose(PerlIO *fp)
362 {
363     return win32_pclose(fp);
364 }
365 #endif
366
367 static DWORD
368 os_id(void)
369 {
370     static OSVERSIONINFO osver;
371
372     if (osver.dwPlatformId != w32_platform) {
373         memset(&osver, 0, sizeof(OSVERSIONINFO));
374         osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
375         GetVersionEx(&osver);
376         w32_platform = osver.dwPlatformId;
377     }
378     return (w32_platform);
379 }
380
381 /* Tokenize a string.  Words are null-separated, and the list
382  * ends with a doubled null.  Any character (except null and
383  * including backslash) may be escaped by preceding it with a
384  * backslash (the backslash will be stripped).
385  * Returns number of words in result buffer.
386  */
387 static long
388 tokenize(char *str, char **dest, char ***destv)
389 {
390     char *retstart = Nullch;
391     char **retvstart = 0;
392     int items = -1;
393     if (str) {
394         int slen = strlen(str);
395         register char *ret;
396         register char **retv;
397         New(1307, ret, slen+2, char);
398         New(1308, retv, (slen+3)/2, char*);
399
400         retstart = ret;
401         retvstart = retv;
402         *retv = ret;
403         items = 0;
404         while (*str) {
405             *ret = *str++;
406             if (*ret == '\\' && *str)
407                 *ret = *str++;
408             else if (*ret == ' ') {
409                 while (*str == ' ')
410                     str++;
411                 if (ret == retstart)
412                     ret--;
413                 else {
414                     *ret = '\0';
415                     ++items;
416                     if (*str)
417                         *++retv = ret+1;
418                 }
419             }
420             else if (!*str)
421                 ++items;
422             ret++;
423         }
424         retvstart[items] = Nullch;
425         *ret++ = '\0';
426         *ret = '\0';
427     }
428     *dest = retstart;
429     *destv = retvstart;
430     return items;
431 }
432
433 static void
434 get_shell(void)
435 {
436     if (!w32_perlshell_tokens) {
437         /* we don't use COMSPEC here for two reasons:
438          *  1. the same reason perl on UNIX doesn't use SHELL--rampant and
439          *     uncontrolled unportability of the ensuing scripts.
440          *  2. PERL5SHELL could be set to a shell that may not be fit for
441          *     interactive use (which is what most programs look in COMSPEC
442          *     for).
443          */
444         char* defaultshell = (IsWinNT() ? "cmd.exe /x/c" : "command.com /c");
445         char *usershell = getenv("PERL5SHELL");
446         w32_perlshell_items = tokenize(usershell ? usershell : defaultshell,
447                                        &w32_perlshell_tokens,
448                                        &w32_perlshell_vec);
449     }
450 }
451
452 int
453 do_aspawn(void *vreally, void **vmark, void **vsp)
454 {
455     SV *really = (SV*)vreally;
456     SV **mark = (SV**)vmark;
457     SV **sp = (SV**)vsp;
458     char **argv;
459     char *str;
460     int status;
461     int flag = P_WAIT;
462     int index = 0;
463
464     if (sp <= mark)
465         return -1;
466
467     get_shell();
468     New(1306, argv, (sp - mark) + w32_perlshell_items + 2, char*);
469
470     if (SvNIOKp(*(mark+1)) && !SvPOKp(*(mark+1))) {
471         ++mark;
472         flag = SvIVx(*mark);
473     }
474
475     while (++mark <= sp) {
476         if (*mark && (str = SvPV(*mark, PL_na)))
477             argv[index++] = str;
478         else
479             argv[index++] = "";
480     }
481     argv[index++] = 0;
482    
483     status = win32_spawnvp(flag,
484                            (const char*)(really ? SvPV(really,PL_na) : argv[0]),
485                            (const char* const*)argv);
486
487     if (status < 0 && errno == ENOEXEC) {
488         /* possible shell-builtin, invoke with shell */
489         int sh_items;
490         sh_items = w32_perlshell_items;
491         while (--index >= 0)
492             argv[index+sh_items] = argv[index];
493         while (--sh_items >= 0)
494             argv[sh_items] = w32_perlshell_vec[sh_items];
495    
496         status = win32_spawnvp(flag,
497                                (const char*)(really ? SvPV(really,PL_na) : argv[0]),
498                                (const char* const*)argv);
499     }
500
501     if (flag != P_NOWAIT) {
502         if (status < 0) {
503             if (PL_dowarn)
504                 warn("Can't spawn \"%s\": %s", argv[0], strerror(errno));
505             status = 255 * 256;
506         }
507         else
508             status *= 256;
509         PL_statusvalue = status;
510     }
511     Safefree(argv);
512     return (status);
513 }
514
515 int
516 do_spawn2(char *cmd, int exectype)
517 {
518     char **a;
519     char *s;
520     char **argv;
521     int status = -1;
522     BOOL needToTry = TRUE;
523     char *cmd2;
524
525     /* Save an extra exec if possible. See if there are shell
526      * metacharacters in it */
527     if (!has_shell_metachars(cmd)) {
528         New(1301,argv, strlen(cmd) / 2 + 2, char*);
529         New(1302,cmd2, strlen(cmd) + 1, char);
530         strcpy(cmd2, cmd);
531         a = argv;
532         for (s = cmd2; *s;) {
533             while (*s && isspace(*s))
534                 s++;
535             if (*s)
536                 *(a++) = s;
537             while (*s && !isspace(*s))
538                 s++;
539             if (*s)
540                 *s++ = '\0';
541         }
542         *a = Nullch;
543         if (argv[0]) {
544             switch (exectype) {
545             case EXECF_SPAWN:
546                 status = win32_spawnvp(P_WAIT, argv[0],
547                                        (const char* const*)argv);
548                 break;
549             case EXECF_SPAWN_NOWAIT:
550                 status = win32_spawnvp(P_NOWAIT, argv[0],
551                                        (const char* const*)argv);
552                 break;
553             case EXECF_EXEC:
554                 status = win32_execvp(argv[0], (const char* const*)argv);
555                 break;
556             }
557             if (status != -1 || errno == 0)
558                 needToTry = FALSE;
559         }
560         Safefree(argv);
561         Safefree(cmd2);
562     }
563     if (needToTry) {
564         char **argv;
565         int i = -1;
566         get_shell();
567         New(1306, argv, w32_perlshell_items + 2, char*);
568         while (++i < w32_perlshell_items)
569             argv[i] = w32_perlshell_vec[i];
570         argv[i++] = cmd;
571         argv[i] = Nullch;
572         switch (exectype) {
573         case EXECF_SPAWN:
574             status = win32_spawnvp(P_WAIT, argv[0],
575                                    (const char* const*)argv);
576             break;
577         case EXECF_SPAWN_NOWAIT:
578             status = win32_spawnvp(P_NOWAIT, argv[0],
579                                    (const char* const*)argv);
580             break;
581         case EXECF_EXEC:
582             status = win32_execvp(argv[0], (const char* const*)argv);
583             break;
584         }
585         cmd = argv[0];
586         Safefree(argv);
587     }
588     if (exectype != EXECF_SPAWN_NOWAIT) {
589         if (status < 0) {
590             if (PL_dowarn)
591                 warn("Can't %s \"%s\": %s",
592                      (exectype == EXECF_EXEC ? "exec" : "spawn"),
593                      cmd, strerror(errno));
594             status = 255 * 256;
595         }
596         else
597             status *= 256;
598         PL_statusvalue = status;
599     }
600     return (status);
601 }
602
603 int
604 do_spawn(char *cmd)
605 {
606     return do_spawn2(cmd, EXECF_SPAWN);
607 }
608
609 int
610 do_spawn_nowait(char *cmd)
611 {
612     return do_spawn2(cmd, EXECF_SPAWN_NOWAIT);
613 }
614
615 bool
616 do_exec(char *cmd)
617 {
618     do_spawn2(cmd, EXECF_EXEC);
619     return FALSE;
620 }
621
622 /* The idea here is to read all the directory names into a string table
623  * (separated by nulls) and when one of the other dir functions is called
624  * return the pointer to the current file name.
625  */
626 DIR *
627 win32_opendir(char *filename)
628 {
629     DIR                 *p;
630     long                len;
631     long                idx;
632     char                scanname[MAX_PATH+3];
633     struct stat         sbuf;
634     WIN32_FIND_DATA     FindData;
635     HANDLE              fh;
636
637     len = strlen(filename);
638     if (len > MAX_PATH)
639         return NULL;
640
641     /* check to see if filename is a directory */
642     if (win32_stat(filename, &sbuf) < 0 || !S_ISDIR(sbuf.st_mode))
643         return NULL;
644
645     /* Get us a DIR structure */
646     Newz(1303, p, 1, DIR);
647     if (p == NULL)
648         return NULL;
649
650     /* Create the search pattern */
651     strcpy(scanname, filename);
652     if (scanname[len-1] != '/' && scanname[len-1] != '\\')
653         scanname[len++] = '/';
654     scanname[len++] = '*';
655     scanname[len] = '\0';
656
657     /* do the FindFirstFile call */
658     fh = FindFirstFile(scanname, &FindData);
659     if (fh == INVALID_HANDLE_VALUE) {
660         return NULL;
661     }
662
663     /* now allocate the first part of the string table for
664      * the filenames that we find.
665      */
666     idx = strlen(FindData.cFileName)+1;
667     New(1304, p->start, idx, char);
668     if (p->start == NULL)
669         croak("opendir: malloc failed!\n");
670     strcpy(p->start, FindData.cFileName);
671     p->nfiles++;
672
673     /* loop finding all the files that match the wildcard
674      * (which should be all of them in this directory!).
675      * the variable idx should point one past the null terminator
676      * of the previous string found.
677      */
678     while (FindNextFile(fh, &FindData)) {
679         len = strlen(FindData.cFileName);
680         /* bump the string table size by enough for the
681          * new name and it's null terminator
682          */
683         Renew(p->start, idx+len+1, char);
684         if (p->start == NULL)
685             croak("opendir: malloc failed!\n");
686         strcpy(&p->start[idx], FindData.cFileName);
687         p->nfiles++;
688         idx += len+1;
689     }
690     FindClose(fh);
691     p->size = idx;
692     p->curr = p->start;
693     return p;
694 }
695
696
697 /* Readdir just returns the current string pointer and bumps the
698  * string pointer to the nDllExport entry.
699  */
700 struct direct *
701 win32_readdir(DIR *dirp)
702 {
703     int         len;
704     static int  dummy = 0;
705
706     if (dirp->curr) {
707         /* first set up the structure to return */
708         len = strlen(dirp->curr);
709         strcpy(dirp->dirstr.d_name, dirp->curr);
710         dirp->dirstr.d_namlen = len;
711
712         /* Fake an inode */
713         dirp->dirstr.d_ino = dummy++;
714
715         /* Now set up for the nDllExport call to readdir */
716         dirp->curr += len + 1;
717         if (dirp->curr >= (dirp->start + dirp->size)) {
718             dirp->curr = NULL;
719         }
720
721         return &(dirp->dirstr);
722     } 
723     else
724         return NULL;
725 }
726
727 /* Telldir returns the current string pointer position */
728 long
729 win32_telldir(DIR *dirp)
730 {
731     return (long) dirp->curr;
732 }
733
734
735 /* Seekdir moves the string pointer to a previously saved position
736  *(Saved by telldir).
737  */
738 void
739 win32_seekdir(DIR *dirp, long loc)
740 {
741     dirp->curr = (char *)loc;
742 }
743
744 /* Rewinddir resets the string pointer to the start */
745 void
746 win32_rewinddir(DIR *dirp)
747 {
748     dirp->curr = dirp->start;
749 }
750
751 /* free the memory allocated by opendir */
752 int
753 win32_closedir(DIR *dirp)
754 {
755     Safefree(dirp->start);
756     Safefree(dirp);
757     return 1;
758 }
759
760
761 /*
762  * various stubs
763  */
764
765
766 /* Ownership
767  *
768  * Just pretend that everyone is a superuser. NT will let us know if
769  * we don\'t really have permission to do something.
770  */
771
772 #define ROOT_UID    ((uid_t)0)
773 #define ROOT_GID    ((gid_t)0)
774
775 uid_t
776 getuid(void)
777 {
778     return ROOT_UID;
779 }
780
781 uid_t
782 geteuid(void)
783 {
784     return ROOT_UID;
785 }
786
787 gid_t
788 getgid(void)
789 {
790     return ROOT_GID;
791 }
792
793 gid_t
794 getegid(void)
795 {
796     return ROOT_GID;
797 }
798
799 int
800 setuid(uid_t auid)
801
802     return (auid == ROOT_UID ? 0 : -1);
803 }
804
805 int
806 setgid(gid_t agid)
807 {
808     return (agid == ROOT_GID ? 0 : -1);
809 }
810
811 char *
812 getlogin(void)
813 {
814     dTHR;
815     char *buf = getlogin_buffer;
816     DWORD size = sizeof(getlogin_buffer);
817     if (GetUserName(buf,&size))
818         return buf;
819     return (char*)NULL;
820 }
821
822 int
823 chown(const char *path, uid_t owner, gid_t group)
824 {
825     /* XXX noop */
826     return 0;
827 }
828
829 static void
830 remove_dead_process(HANDLE deceased)
831 {
832 #ifndef USE_RTL_WAIT
833     int child;
834     for (child = 0 ; child < w32_num_children ; ++child) {
835         if (w32_child_pids[child] == deceased) {
836             Copy(&w32_child_pids[child+1], &w32_child_pids[child],
837                  (w32_num_children-child-1), HANDLE);
838             w32_num_children--;
839             break;
840         }
841     }
842 #endif
843 }
844
845 DllExport int
846 win32_kill(int pid, int sig)
847 {
848 #ifdef USE_RTL_WAIT
849     HANDLE hProcess= OpenProcess(PROCESS_ALL_ACCESS, TRUE, pid);
850 #else
851     HANDLE hProcess = (HANDLE) pid;
852 #endif
853
854     if (hProcess == NULL) {
855         croak("kill process failed!\n");
856     }
857     else {
858         if (!TerminateProcess(hProcess, sig))
859             croak("kill process failed!\n");
860         CloseHandle(hProcess);
861
862         /* WaitForMultipleObjects() on a pid that was killed returns error
863          * so if we know the pid is gone we remove it from process list */
864         remove_dead_process(hProcess);
865     }
866     return 0;
867 }
868
869 /*
870  * File system stuff
871  */
872
873 DllExport unsigned int
874 win32_sleep(unsigned int t)
875 {
876     Sleep(t*1000);
877     return 0;
878 }
879
880 DllExport int
881 win32_stat(const char *path, struct stat *buffer)
882 {
883     char        t[MAX_PATH+1]; 
884     const char  *p = path;
885     int         l = strlen(path);
886     int         res;
887
888     if (l > 1) {
889         switch(path[l - 1]) {
890         case '\\':
891         case '/':
892             if (path[l - 2] != ':') {
893                 strncpy(t, path, l - 1);
894                 t[l - 1] = 0;
895                 p = t;
896             };
897         }
898     }
899     res = stat(p,buffer);
900     if (res < 0) {
901         /* CRT is buggy on sharenames, so make sure it really isn't.
902          * XXX using GetFileAttributesEx() will enable us to set
903          * buffer->st_*time (but note that's not available on the
904          * Windows of 1995) */
905         DWORD r = GetFileAttributes(p);
906         if (r != 0xffffffff && (r & FILE_ATTRIBUTE_DIRECTORY)) {
907             buffer->st_mode |= S_IFDIR | S_IREAD;
908             errno = 0;
909             if (!(r & FILE_ATTRIBUTE_READONLY))
910                 buffer->st_mode |= S_IWRITE | S_IEXEC;
911             return 0;
912         }
913     }
914 #ifdef __BORLANDC__
915     else {
916         if (S_ISDIR(buffer->st_mode))
917             buffer->st_mode |= S_IWRITE | S_IEXEC;
918         else if (S_ISREG(buffer->st_mode)) {
919             if (l >= 4 && path[l-4] == '.') {
920                 const char *e = path + l - 3;
921                 if (strnicmp(e,"exe",3)
922                     && strnicmp(e,"bat",3)
923                     && strnicmp(e,"com",3)
924                     && (IsWin95() || strnicmp(e,"cmd",3)))
925                     buffer->st_mode &= ~S_IEXEC;
926                 else
927                     buffer->st_mode |= S_IEXEC;
928             }
929             else
930                 buffer->st_mode &= ~S_IEXEC;
931         }
932     }
933 #endif
934     return res;
935 }
936
937 #ifndef USE_WIN32_RTL_ENV
938
939 DllExport char *
940 win32_getenv(const char *name)
941 {
942     static char *curitem = Nullch;      /* XXX threadead */
943     static DWORD curlen = 0;            /* XXX threadead */
944     DWORD needlen;
945     if (!curitem) {
946         curlen = 512;
947         New(1305,curitem,curlen,char);
948     }
949
950     needlen = GetEnvironmentVariable(name,curitem,curlen);
951     if (needlen != 0) {
952         while (needlen > curlen) {
953             Renew(curitem,needlen,char);
954             curlen = needlen;
955             needlen = GetEnvironmentVariable(name,curitem,curlen);
956         }
957     }
958     else {
959         /* allow any environment variables that begin with 'PERL'
960            to be stored in the registry */
961         if (curitem)
962             *curitem = '\0';
963
964         if (strncmp(name, "PERL", 4) == 0) {
965             if (curitem) {
966                 Safefree(curitem);
967                 curitem = Nullch;
968                 curlen = 0;
969             }
970             curitem = GetRegStr(name, &curitem, &curlen);
971         }
972     }
973     if (curitem && *curitem == '\0')
974         return Nullch;
975
976     return curitem;
977 }
978
979 #endif
980
981 static long
982 filetime_to_clock(PFILETIME ft)
983 {
984  __int64 qw = ft->dwHighDateTime;
985  qw <<= 32;
986  qw |= ft->dwLowDateTime;
987  qw /= 10000;  /* File time ticks at 0.1uS, clock at 1mS */
988  return (long) qw;
989 }
990
991 DllExport int
992 win32_times(struct tms *timebuf)
993 {
994     FILETIME user;
995     FILETIME kernel;
996     FILETIME dummy;
997     if (GetProcessTimes(GetCurrentProcess(), &dummy, &dummy, 
998                         &kernel,&user)) {
999         timebuf->tms_utime = filetime_to_clock(&user);
1000         timebuf->tms_stime = filetime_to_clock(&kernel);
1001         timebuf->tms_cutime = 0;
1002         timebuf->tms_cstime = 0;
1003         
1004     } else { 
1005         /* That failed - e.g. Win95 fallback to clock() */
1006         clock_t t = clock();
1007         timebuf->tms_utime = t;
1008         timebuf->tms_stime = 0;
1009         timebuf->tms_cutime = 0;
1010         timebuf->tms_cstime = 0;
1011     }
1012     return 0;
1013 }
1014
1015 /* fix utime() so it works on directories in NT
1016  * thanks to Jan Dubois <jan.dubois@ibm.net>
1017  */
1018 static BOOL
1019 filetime_from_time(PFILETIME pFileTime, time_t Time)
1020 {
1021     struct tm *pTM = gmtime(&Time);
1022     SYSTEMTIME SystemTime;
1023
1024     if (pTM == NULL)
1025         return FALSE;
1026
1027     SystemTime.wYear   = pTM->tm_year + 1900;
1028     SystemTime.wMonth  = pTM->tm_mon + 1;
1029     SystemTime.wDay    = pTM->tm_mday;
1030     SystemTime.wHour   = pTM->tm_hour;
1031     SystemTime.wMinute = pTM->tm_min;
1032     SystemTime.wSecond = pTM->tm_sec;
1033     SystemTime.wMilliseconds = 0;
1034
1035     return SystemTimeToFileTime(&SystemTime, pFileTime);
1036 }
1037
1038 DllExport int
1039 win32_utime(const char *filename, struct utimbuf *times)
1040 {
1041     HANDLE handle;
1042     FILETIME ftCreate;
1043     FILETIME ftAccess;
1044     FILETIME ftWrite;
1045     struct utimbuf TimeBuffer;
1046
1047     int rc = utime(filename,times);
1048     /* EACCES: path specifies directory or readonly file */
1049     if (rc == 0 || errno != EACCES /* || !IsWinNT() */)
1050         return rc;
1051
1052     if (times == NULL) {
1053         times = &TimeBuffer;
1054         time(&times->actime);
1055         times->modtime = times->actime;
1056     }
1057
1058     /* This will (and should) still fail on readonly files */
1059     handle = CreateFile(filename, GENERIC_READ | GENERIC_WRITE,
1060                         FILE_SHARE_READ | FILE_SHARE_DELETE, NULL,
1061                         OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
1062     if (handle == INVALID_HANDLE_VALUE)
1063         return rc;
1064
1065     if (GetFileTime(handle, &ftCreate, &ftAccess, &ftWrite) &&
1066         filetime_from_time(&ftAccess, times->actime) &&
1067         filetime_from_time(&ftWrite, times->modtime) &&
1068         SetFileTime(handle, &ftCreate, &ftAccess, &ftWrite))
1069     {
1070         rc = 0;
1071     }
1072
1073     CloseHandle(handle);
1074     return rc;
1075 }
1076
1077 DllExport int
1078 win32_waitpid(int pid, int *status, int flags)
1079 {
1080     int rc;
1081     if (pid == -1) 
1082       return win32_wait(status);
1083     else {
1084       rc = cwait(status, pid, WAIT_CHILD);
1085     /* cwait() returns differently on Borland */
1086 #ifdef __BORLANDC__
1087     if (status)
1088         *status =  (((*status >> 8) & 0xff) | ((*status << 8) & 0xff00));
1089 #endif
1090       remove_dead_process((HANDLE)pid);
1091     }
1092     return rc >= 0 ? pid : rc;                
1093 }
1094
1095 DllExport int
1096 win32_wait(int *status)
1097 {
1098 #ifdef USE_RTL_WAIT
1099     return wait(status);
1100 #else
1101     /* XXX this wait emulation only knows about processes
1102      * spawned via win32_spawnvp(P_NOWAIT, ...).
1103      */
1104     int i, retval;
1105     DWORD exitcode, waitcode;
1106
1107     if (!w32_num_children) {
1108         errno = ECHILD;
1109         return -1;
1110     }
1111
1112     /* if a child exists, wait for it to die */
1113     waitcode = WaitForMultipleObjects(w32_num_children,
1114                                       w32_child_pids,
1115                                       FALSE,
1116                                       INFINITE);
1117     if (waitcode != WAIT_FAILED) {
1118         if (waitcode >= WAIT_ABANDONED_0
1119             && waitcode < WAIT_ABANDONED_0 + w32_num_children)
1120             i = waitcode - WAIT_ABANDONED_0;
1121         else
1122             i = waitcode - WAIT_OBJECT_0;
1123         if (GetExitCodeProcess(w32_child_pids[i], &exitcode) ) {
1124             CloseHandle(w32_child_pids[i]);
1125             *status = (int)((exitcode & 0xff) << 8);
1126             retval = (int)w32_child_pids[i];
1127             Copy(&w32_child_pids[i+1], &w32_child_pids[i],
1128                  (w32_num_children-i-1), HANDLE);
1129             w32_num_children--;
1130             return retval;
1131         }
1132     }
1133
1134 FAILED:
1135     errno = GetLastError();
1136     return -1;
1137
1138 #endif
1139 }
1140
1141 static UINT timerid = 0;
1142
1143 static VOID CALLBACK TimerProc(HWND win, UINT msg, UINT id, DWORD time)
1144 {
1145  KillTimer(NULL,timerid);
1146  timerid=0;  
1147  sighandler(14);
1148 }
1149
1150 DllExport unsigned int
1151 win32_alarm(unsigned int sec)
1152 {
1153     /* 
1154      * the 'obvious' implentation is SetTimer() with a callback
1155      * which does whatever receiving SIGALRM would do 
1156      * we cannot use SIGALRM even via raise() as it is not 
1157      * one of the supported codes in <signal.h>
1158      *
1159      * Snag is unless something is looking at the message queue
1160      * nothing happens :-(
1161      */ 
1162     if (sec)
1163      {
1164       timerid = SetTimer(NULL,timerid,sec*1000,(TIMERPROC)TimerProc);
1165       if (!timerid)
1166        croak("Cannot set timer");
1167      } 
1168     else
1169      {
1170       if (timerid)
1171        {
1172         KillTimer(NULL,timerid);
1173         timerid=0;  
1174        }
1175      }
1176     return 0;
1177 }
1178
1179 #if defined(HAVE_DES_FCRYPT) || defined(PERL_OBJECT)
1180 #ifdef HAVE_DES_FCRYPT
1181 extern char *   des_fcrypt(const char *txt, const char *salt, char *cbuf);
1182 #endif
1183
1184 DllExport char *
1185 win32_crypt(const char *txt, const char *salt)
1186 {
1187 #ifdef HAVE_DES_FCRYPT
1188     dTHR;
1189     return des_fcrypt(txt, salt, crypt_buffer);
1190 #else
1191     die("The crypt() function is unimplemented due to excessive paranoia.");
1192     return Nullch;
1193 #endif
1194 }
1195 #endif
1196
1197 #ifdef USE_FIXED_OSFHANDLE
1198
1199 EXTERN_C int __cdecl _alloc_osfhnd(void);
1200 EXTERN_C int __cdecl _set_osfhnd(int fh, long value);
1201 EXTERN_C void __cdecl _lock_fhandle(int);
1202 EXTERN_C void __cdecl _unlock_fhandle(int);
1203 EXTERN_C void __cdecl _unlock(int);
1204
1205 #if     (_MSC_VER >= 1000)
1206 typedef struct  {
1207     long osfhnd;    /* underlying OS file HANDLE */
1208     char osfile;    /* attributes of file (e.g., open in text mode?) */
1209     char pipech;    /* one char buffer for handles opened on pipes */
1210 #if defined (_MT) && !defined (DLL_FOR_WIN32S)
1211     int lockinitflag;
1212     CRITICAL_SECTION lock;
1213 #endif  /* defined (_MT) && !defined (DLL_FOR_WIN32S) */
1214 }       ioinfo;
1215
1216 EXTERN_C ioinfo * __pioinfo[];
1217
1218 #define IOINFO_L2E                      5
1219 #define IOINFO_ARRAY_ELTS       (1 << IOINFO_L2E)
1220 #define _pioinfo(i)     (__pioinfo[i >> IOINFO_L2E] + (i & (IOINFO_ARRAY_ELTS - 1)))
1221 #define _osfile(i)      (_pioinfo(i)->osfile)
1222
1223 #else   /* (_MSC_VER >= 1000) */
1224 extern char _osfile[];
1225 #endif  /* (_MSC_VER >= 1000) */
1226
1227 #define FOPEN                   0x01    /* file handle open */
1228 #define FAPPEND                 0x20    /* file handle opened O_APPEND */
1229 #define FDEV                    0x40    /* file handle refers to device */
1230 #define FTEXT                   0x80    /* file handle is in text mode */
1231
1232 #define _STREAM_LOCKS   26              /* Table of stream locks */
1233 #define _LAST_STREAM_LOCK  (_STREAM_LOCKS+_NSTREAM_-1)  /* Last stream lock */
1234 #define _FH_LOCKS          (_LAST_STREAM_LOCK+1)        /* Table of fh locks */
1235
1236 /***
1237 *int my_open_osfhandle(long osfhandle, int flags) - open C Runtime file handle
1238 *
1239 *Purpose:
1240 *       This function allocates a free C Runtime file handle and associates
1241 *       it with the Win32 HANDLE specified by the first parameter. This is a
1242 *               temperary fix for WIN95's brain damage GetFileType() error on socket
1243 *               we just bypass that call for socket
1244 *
1245 *Entry:
1246 *       long osfhandle - Win32 HANDLE to associate with C Runtime file handle.
1247 *       int flags      - flags to associate with C Runtime file handle.
1248 *
1249 *Exit:
1250 *       returns index of entry in fh, if successful
1251 *       return -1, if no free entry is found
1252 *
1253 *Exceptions:
1254 *
1255 *******************************************************************************/
1256
1257 static int
1258 my_open_osfhandle(long osfhandle, int flags)
1259 {
1260     int fh;
1261     char fileflags;             /* _osfile flags */
1262
1263     /* copy relevant flags from second parameter */
1264     fileflags = FDEV;
1265
1266     if (flags & O_APPEND)
1267         fileflags |= FAPPEND;
1268
1269     if (flags & O_TEXT)
1270         fileflags |= FTEXT;
1271
1272     /* attempt to allocate a C Runtime file handle */
1273     if ((fh = _alloc_osfhnd()) == -1) {
1274         errno = EMFILE;         /* too many open files */
1275         _doserrno = 0L;         /* not an OS error */
1276         return -1;              /* return error to caller */
1277     }
1278
1279     /* the file is open. now, set the info in _osfhnd array */
1280     _set_osfhnd(fh, osfhandle);
1281
1282     fileflags |= FOPEN;         /* mark as open */
1283
1284 #if (_MSC_VER >= 1000)
1285     _osfile(fh) = fileflags;    /* set osfile entry */
1286     _unlock_fhandle(fh);
1287 #else
1288     _osfile[fh] = fileflags;    /* set osfile entry */
1289     _unlock(fh+_FH_LOCKS);              /* unlock handle */
1290 #endif
1291
1292     return fh;                  /* return handle */
1293 }
1294
1295 #define _open_osfhandle my_open_osfhandle
1296 #endif  /* USE_FIXED_OSFHANDLE */
1297
1298 /* simulate flock by locking a range on the file */
1299
1300 #define LK_ERR(f,i)     ((f) ? (i = 0) : (errno = GetLastError()))
1301 #define LK_LEN          0xffff0000
1302
1303 DllExport int
1304 win32_flock(int fd, int oper)
1305 {
1306     OVERLAPPED o;
1307     int i = -1;
1308     HANDLE fh;
1309
1310     if (!IsWinNT()) {
1311         croak("flock() unimplemented on this platform");
1312         return -1;
1313     }
1314     fh = (HANDLE)_get_osfhandle(fd);
1315     memset(&o, 0, sizeof(o));
1316
1317     switch(oper) {
1318     case LOCK_SH:               /* shared lock */
1319         LK_ERR(LockFileEx(fh, 0, 0, LK_LEN, 0, &o),i);
1320         break;
1321     case LOCK_EX:               /* exclusive lock */
1322         LK_ERR(LockFileEx(fh, LOCKFILE_EXCLUSIVE_LOCK, 0, LK_LEN, 0, &o),i);
1323         break;
1324     case LOCK_SH|LOCK_NB:       /* non-blocking shared lock */
1325         LK_ERR(LockFileEx(fh, LOCKFILE_FAIL_IMMEDIATELY, 0, LK_LEN, 0, &o),i);
1326         break;
1327     case LOCK_EX|LOCK_NB:       /* non-blocking exclusive lock */
1328         LK_ERR(LockFileEx(fh,
1329                        LOCKFILE_EXCLUSIVE_LOCK|LOCKFILE_FAIL_IMMEDIATELY,
1330                        0, LK_LEN, 0, &o),i);
1331         break;
1332     case LOCK_UN:               /* unlock lock */
1333         LK_ERR(UnlockFileEx(fh, 0, LK_LEN, 0, &o),i);
1334         break;
1335     default:                    /* unknown */
1336         errno = EINVAL;
1337         break;
1338     }
1339     return i;
1340 }
1341
1342 #undef LK_ERR
1343 #undef LK_LEN
1344
1345 /*
1346  *  redirected io subsystem for all XS modules
1347  *
1348  */
1349
1350 DllExport int *
1351 win32_errno(void)
1352 {
1353     return (&errno);
1354 }
1355
1356 DllExport char ***
1357 win32_environ(void)
1358 {
1359     return (&(_environ));
1360 }
1361
1362 /* the rest are the remapped stdio routines */
1363 DllExport FILE *
1364 win32_stderr(void)
1365 {
1366     return (stderr);
1367 }
1368
1369 DllExport FILE *
1370 win32_stdin(void)
1371 {
1372     return (stdin);
1373 }
1374
1375 DllExport FILE *
1376 win32_stdout()
1377 {
1378     return (stdout);
1379 }
1380
1381 DllExport int
1382 win32_ferror(FILE *fp)
1383 {
1384     return (ferror(fp));
1385 }
1386
1387
1388 DllExport int
1389 win32_feof(FILE *fp)
1390 {
1391     return (feof(fp));
1392 }
1393
1394 /*
1395  * Since the errors returned by the socket error function 
1396  * WSAGetLastError() are not known by the library routine strerror
1397  * we have to roll our own.
1398  */
1399
1400 DllExport char *
1401 win32_strerror(int e) 
1402 {
1403 #ifndef __BORLANDC__            /* Borland intolerance */
1404     extern int sys_nerr;
1405 #endif
1406     DWORD source = 0;
1407
1408     if (e < 0 || e > sys_nerr) {
1409         dTHR;
1410         if (e < 0)
1411             e = GetLastError();
1412
1413         if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, &source, e, 0,
1414                          strerror_buffer, sizeof(strerror_buffer), NULL) == 0) 
1415             strcpy(strerror_buffer, "Unknown Error");
1416
1417         return strerror_buffer;
1418     }
1419     return strerror(e);
1420 }
1421
1422 DllExport void
1423 win32_str_os_error(void *sv, DWORD dwErr)
1424 {
1425     DWORD dwLen;
1426     char *sMsg;
1427     dwLen = FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER
1428                           |FORMAT_MESSAGE_IGNORE_INSERTS
1429                           |FORMAT_MESSAGE_FROM_SYSTEM, NULL,
1430                            dwErr, 0, (char *)&sMsg, 1, NULL);
1431     if (0 < dwLen) {
1432         while (0 < dwLen  &&  isspace(sMsg[--dwLen]))
1433             ;
1434         if ('.' != sMsg[dwLen])
1435             dwLen++;
1436         sMsg[dwLen]= '\0';
1437     }
1438     if (0 == dwLen) {
1439         sMsg = (char*)LocalAlloc(0, 64/**sizeof(TCHAR)*/);
1440         dwLen = sprintf(sMsg,
1441                         "Unknown error #0x%lX (lookup 0x%lX)",
1442                         dwErr, GetLastError());
1443     }
1444     sv_setpvn((SV*)sv, sMsg, dwLen);
1445     LocalFree(sMsg);
1446 }
1447
1448
1449 DllExport int
1450 win32_fprintf(FILE *fp, const char *format, ...)
1451 {
1452     va_list marker;
1453     va_start(marker, format);     /* Initialize variable arguments. */
1454
1455     return (vfprintf(fp, format, marker));
1456 }
1457
1458 DllExport int
1459 win32_printf(const char *format, ...)
1460 {
1461     va_list marker;
1462     va_start(marker, format);     /* Initialize variable arguments. */
1463
1464     return (vprintf(format, marker));
1465 }
1466
1467 DllExport int
1468 win32_vfprintf(FILE *fp, const char *format, va_list args)
1469 {
1470     return (vfprintf(fp, format, args));
1471 }
1472
1473 DllExport int
1474 win32_vprintf(const char *format, va_list args)
1475 {
1476     return (vprintf(format, args));
1477 }
1478
1479 DllExport size_t
1480 win32_fread(void *buf, size_t size, size_t count, FILE *fp)
1481 {
1482     return fread(buf, size, count, fp);
1483 }
1484
1485 DllExport size_t
1486 win32_fwrite(const void *buf, size_t size, size_t count, FILE *fp)
1487 {
1488     return fwrite(buf, size, count, fp);
1489 }
1490
1491 DllExport FILE *
1492 win32_fopen(const char *filename, const char *mode)
1493 {
1494     if (stricmp(filename, "/dev/null")==0)
1495         return fopen("NUL", mode);
1496     return fopen(filename, mode);
1497 }
1498
1499 #ifndef USE_SOCKETS_AS_HANDLES
1500 #undef fdopen
1501 #define fdopen my_fdopen
1502 #endif
1503
1504 DllExport FILE *
1505 win32_fdopen( int handle, const char *mode)
1506 {
1507     return fdopen(handle, (char *) mode);
1508 }
1509
1510 DllExport FILE *
1511 win32_freopen( const char *path, const char *mode, FILE *stream)
1512 {
1513     if (stricmp(path, "/dev/null")==0)
1514         return freopen("NUL", mode, stream);
1515     return freopen(path, mode, stream);
1516 }
1517
1518 DllExport int
1519 win32_fclose(FILE *pf)
1520 {
1521     return my_fclose(pf);       /* defined in win32sck.c */
1522 }
1523
1524 DllExport int
1525 win32_fputs(const char *s,FILE *pf)
1526 {
1527     return fputs(s, pf);
1528 }
1529
1530 DllExport int
1531 win32_fputc(int c,FILE *pf)
1532 {
1533     return fputc(c,pf);
1534 }
1535
1536 DllExport int
1537 win32_ungetc(int c,FILE *pf)
1538 {
1539     return ungetc(c,pf);
1540 }
1541
1542 DllExport int
1543 win32_getc(FILE *pf)
1544 {
1545     return getc(pf);
1546 }
1547
1548 DllExport int
1549 win32_fileno(FILE *pf)
1550 {
1551     return fileno(pf);
1552 }
1553
1554 DllExport void
1555 win32_clearerr(FILE *pf)
1556 {
1557     clearerr(pf);
1558     return;
1559 }
1560
1561 DllExport int
1562 win32_fflush(FILE *pf)
1563 {
1564     return fflush(pf);
1565 }
1566
1567 DllExport long
1568 win32_ftell(FILE *pf)
1569 {
1570     return ftell(pf);
1571 }
1572
1573 DllExport int
1574 win32_fseek(FILE *pf,long offset,int origin)
1575 {
1576     return fseek(pf, offset, origin);
1577 }
1578
1579 DllExport int
1580 win32_fgetpos(FILE *pf,fpos_t *p)
1581 {
1582     return fgetpos(pf, p);
1583 }
1584
1585 DllExport int
1586 win32_fsetpos(FILE *pf,const fpos_t *p)
1587 {
1588     return fsetpos(pf, p);
1589 }
1590
1591 DllExport void
1592 win32_rewind(FILE *pf)
1593 {
1594     rewind(pf);
1595     return;
1596 }
1597
1598 DllExport FILE*
1599 win32_tmpfile(void)
1600 {
1601     return tmpfile();
1602 }
1603
1604 DllExport void
1605 win32_abort(void)
1606 {
1607     abort();
1608     return;
1609 }
1610
1611 DllExport int
1612 win32_fstat(int fd,struct stat *sbufptr)
1613 {
1614     return fstat(fd,sbufptr);
1615 }
1616
1617 DllExport int
1618 win32_pipe(int *pfd, unsigned int size, int mode)
1619 {
1620     return _pipe(pfd, size, mode);
1621 }
1622
1623 /*
1624  * a popen() clone that respects PERL5SHELL
1625  */
1626
1627 DllExport FILE*
1628 win32_popen(const char *command, const char *mode)
1629 {
1630 #ifdef USE_RTL_POPEN
1631     return _popen(command, mode);
1632 #else
1633     int p[2];
1634     int parent, child;
1635     int stdfd, oldfd;
1636     int ourmode;
1637     int childpid;
1638
1639     /* establish which ends read and write */
1640     if (strchr(mode,'w')) {
1641         stdfd = 0;              /* stdin */
1642         parent = 1;
1643         child = 0;
1644     }
1645     else if (strchr(mode,'r')) {
1646         stdfd = 1;              /* stdout */
1647         parent = 0;
1648         child = 1;
1649     }
1650     else
1651         return NULL;
1652
1653     /* set the correct mode */
1654     if (strchr(mode,'b'))
1655         ourmode = O_BINARY;
1656     else if (strchr(mode,'t'))
1657         ourmode = O_TEXT;
1658     else
1659         ourmode = _fmode & (O_TEXT | O_BINARY);
1660
1661     /* the child doesn't inherit handles */
1662     ourmode |= O_NOINHERIT;
1663
1664     if (win32_pipe( p, 512, ourmode) == -1)
1665         return NULL;
1666
1667     /* save current stdfd */
1668     if ((oldfd = win32_dup(stdfd)) == -1)
1669         goto cleanup;
1670
1671     /* make stdfd go to child end of pipe (implicitly closes stdfd) */
1672     /* stdfd will be inherited by the child */
1673     if (win32_dup2(p[child], stdfd) == -1)
1674         goto cleanup;
1675
1676     /* close the child end in parent */
1677     win32_close(p[child]);
1678
1679     /* start the child */
1680     if ((childpid = do_spawn_nowait((char*)command)) == -1)
1681         goto cleanup;
1682
1683     /* revert stdfd to whatever it was before */
1684     if (win32_dup2(oldfd, stdfd) == -1)
1685         goto cleanup;
1686
1687     /* close saved handle */
1688     win32_close(oldfd);
1689
1690     sv_setiv(*av_fetch(w32_fdpid, p[parent], TRUE), childpid);
1691
1692     /* we have an fd, return a file stream */
1693     return (win32_fdopen(p[parent], (char *)mode));
1694
1695 cleanup:
1696     /* we don't need to check for errors here */
1697     win32_close(p[0]);
1698     win32_close(p[1]);
1699     if (oldfd != -1) {
1700         win32_dup2(oldfd, stdfd);
1701         win32_close(oldfd);
1702     }
1703     return (NULL);
1704
1705 #endif /* USE_RTL_POPEN */
1706 }
1707
1708 /*
1709  * pclose() clone
1710  */
1711
1712 DllExport int
1713 win32_pclose(FILE *pf)
1714 {
1715 #ifdef USE_RTL_POPEN
1716     return _pclose(pf);
1717 #else
1718
1719     int childpid, status;
1720     SV *sv;
1721
1722     sv = *av_fetch(w32_fdpid, win32_fileno(pf), TRUE);
1723     if (SvIOK(sv))
1724         childpid = SvIVX(sv);
1725     else
1726         childpid = 0;
1727
1728     if (!childpid) {
1729         errno = EBADF;
1730         return -1;
1731     }
1732
1733     win32_fclose(pf);
1734     SvIVX(sv) = 0;
1735
1736     remove_dead_process((HANDLE)childpid);
1737
1738     /* wait for the child */
1739     if (cwait(&status, childpid, WAIT_CHILD) == -1)
1740         return (-1);
1741     /* cwait() returns differently on Borland */
1742 #ifdef __BORLANDC__
1743     return (((status >> 8) & 0xff) | ((status << 8) & 0xff00));
1744 #else
1745     return (status);
1746 #endif
1747
1748 #endif /* USE_RTL_POPEN */
1749 }
1750
1751 DllExport int
1752 win32_rename(const char *oname, const char *newname)
1753 {
1754     char szNewWorkName[MAX_PATH+1];
1755     WIN32_FIND_DATA fdOldFile, fdNewFile;
1756     HANDLE handle;
1757     char *ptr;
1758
1759     if ((strchr(oname, '\\') || strchr(oname, '/'))
1760         && strchr(newname, '\\') == NULL
1761         && strchr(newname, '/') == NULL)
1762     {
1763         strcpy(szNewWorkName, oname);
1764         if ((ptr = strrchr(szNewWorkName, '\\')) == NULL)
1765             ptr = strrchr(szNewWorkName, '/');
1766         strcpy(++ptr, newname);
1767     }
1768     else
1769         strcpy(szNewWorkName, newname);
1770
1771     if (stricmp(oname, szNewWorkName) != 0) {
1772         // check that we're not being fooled by relative paths
1773         // and only delete the new file
1774         //  1) if it exists
1775         //  2) it is not the same file as the old file
1776         //  3) old file exist
1777         // GetFullPathName does not return the long file name on some systems
1778         handle = FindFirstFile(oname, &fdOldFile);
1779         if (handle != INVALID_HANDLE_VALUE) {
1780             FindClose(handle);
1781     
1782             handle = FindFirstFile(szNewWorkName, &fdNewFile);
1783     
1784             if (handle != INVALID_HANDLE_VALUE)
1785                 FindClose(handle);
1786             else
1787                 fdNewFile.cFileName[0] = '\0';
1788
1789             if (strcmp(fdOldFile.cAlternateFileName,
1790                        fdNewFile.cAlternateFileName) != 0
1791                 && strcmp(fdOldFile.cFileName, fdNewFile.cFileName) != 0)
1792             {
1793                 // file exists and not same file
1794                 DeleteFile(szNewWorkName);
1795             }
1796         }
1797     }
1798     return rename(oname, newname);
1799 }
1800
1801 DllExport int
1802 win32_setmode(int fd, int mode)
1803 {
1804     return setmode(fd, mode);
1805 }
1806
1807 DllExport long
1808 win32_lseek(int fd, long offset, int origin)
1809 {
1810     return lseek(fd, offset, origin);
1811 }
1812
1813 DllExport long
1814 win32_tell(int fd)
1815 {
1816     return tell(fd);
1817 }
1818
1819 DllExport int
1820 win32_open(const char *path, int flag, ...)
1821 {
1822     va_list ap;
1823     int pmode;
1824
1825     va_start(ap, flag);
1826     pmode = va_arg(ap, int);
1827     va_end(ap);
1828
1829     if (stricmp(path, "/dev/null")==0)
1830         return open("NUL", flag, pmode);
1831     return open(path,flag,pmode);
1832 }
1833
1834 DllExport int
1835 win32_close(int fd)
1836 {
1837     return close(fd);
1838 }
1839
1840 DllExport int
1841 win32_eof(int fd)
1842 {
1843     return eof(fd);
1844 }
1845
1846 DllExport int
1847 win32_dup(int fd)
1848 {
1849     return dup(fd);
1850 }
1851
1852 DllExport int
1853 win32_dup2(int fd1,int fd2)
1854 {
1855     return dup2(fd1,fd2);
1856 }
1857
1858 DllExport int
1859 win32_read(int fd, void *buf, unsigned int cnt)
1860 {
1861     return read(fd, buf, cnt);
1862 }
1863
1864 DllExport int
1865 win32_write(int fd, const void *buf, unsigned int cnt)
1866 {
1867     return write(fd, buf, cnt);
1868 }
1869
1870 DllExport int
1871 win32_mkdir(const char *dir, int mode)
1872 {
1873     return mkdir(dir); /* just ignore mode */
1874 }
1875
1876 DllExport int
1877 win32_rmdir(const char *dir)
1878 {
1879     return rmdir(dir);
1880 }
1881
1882 DllExport int
1883 win32_chdir(const char *dir)
1884 {
1885     return chdir(dir);
1886 }
1887
1888 DllExport int
1889 win32_spawnvp(int mode, const char *cmdname, const char *const *argv)
1890 {
1891     int status;
1892
1893 #ifndef USE_RTL_WAIT
1894     if (mode == P_NOWAIT && w32_num_children >= MAXIMUM_WAIT_OBJECTS)
1895         return -1;
1896 #endif
1897
1898     status = spawnvp(mode, cmdname, (char * const *) argv);
1899 #ifndef USE_RTL_WAIT
1900     /* XXX For the P_NOWAIT case, Borland RTL returns pinfo.dwProcessId
1901      * while VC RTL returns pinfo.hProcess. For purposes of the custom
1902      * implementation of win32_wait(), we assume the latter.
1903      */
1904     if (mode == P_NOWAIT && status >= 0)
1905         w32_child_pids[w32_num_children++] = (HANDLE)status;
1906 #endif
1907     return status;
1908 }
1909
1910 DllExport int
1911 win32_execv(const char *cmdname, const char *const *argv)
1912 {
1913     return execv(cmdname, (char *const *)argv);
1914 }
1915
1916 DllExport int
1917 win32_execvp(const char *cmdname, const char *const *argv)
1918 {
1919     return execvp(cmdname, (char *const *)argv);
1920 }
1921
1922 DllExport void
1923 win32_perror(const char *str)
1924 {
1925     perror(str);
1926 }
1927
1928 DllExport void
1929 win32_setbuf(FILE *pf, char *buf)
1930 {
1931     setbuf(pf, buf);
1932 }
1933
1934 DllExport int
1935 win32_setvbuf(FILE *pf, char *buf, int type, size_t size)
1936 {
1937     return setvbuf(pf, buf, type, size);
1938 }
1939
1940 DllExport int
1941 win32_flushall(void)
1942 {
1943     return flushall();
1944 }
1945
1946 DllExport int
1947 win32_fcloseall(void)
1948 {
1949     return fcloseall();
1950 }
1951
1952 DllExport char*
1953 win32_fgets(char *s, int n, FILE *pf)
1954 {
1955     return fgets(s, n, pf);
1956 }
1957
1958 DllExport char*
1959 win32_gets(char *s)
1960 {
1961     return gets(s);
1962 }
1963
1964 DllExport int
1965 win32_fgetc(FILE *pf)
1966 {
1967     return fgetc(pf);
1968 }
1969
1970 DllExport int
1971 win32_putc(int c, FILE *pf)
1972 {
1973     return putc(c,pf);
1974 }
1975
1976 DllExport int
1977 win32_puts(const char *s)
1978 {
1979     return puts(s);
1980 }
1981
1982 DllExport int
1983 win32_getchar(void)
1984 {
1985     return getchar();
1986 }
1987
1988 DllExport int
1989 win32_putchar(int c)
1990 {
1991     return putchar(c);
1992 }
1993
1994 #ifdef MYMALLOC
1995
1996 #ifndef USE_PERL_SBRK
1997
1998 static char *committed = NULL;
1999 static char *base      = NULL;
2000 static char *reserved  = NULL;
2001 static char *brk       = NULL;
2002 static DWORD pagesize  = 0;
2003 static DWORD allocsize = 0;
2004
2005 void *
2006 sbrk(int need)
2007 {
2008  void *result;
2009  if (!pagesize)
2010   {SYSTEM_INFO info;
2011    GetSystemInfo(&info);
2012    /* Pretend page size is larger so we don't perpetually
2013     * call the OS to commit just one page ...
2014     */
2015    pagesize = info.dwPageSize << 3;
2016    allocsize = info.dwAllocationGranularity;
2017   }
2018  /* This scheme fails eventually if request for contiguous
2019   * block is denied so reserve big blocks - this is only 
2020   * address space not memory ...
2021   */
2022  if (brk+need >= reserved)
2023   {
2024    DWORD size = 64*1024*1024;
2025    char *addr;
2026    if (committed && reserved && committed < reserved)
2027     {
2028      /* Commit last of previous chunk cannot span allocations */
2029      addr = (char *) VirtualAlloc(committed,reserved-committed,MEM_COMMIT,PAGE_READWRITE);
2030      if (addr)
2031       committed = reserved;
2032     }
2033    /* Reserve some (more) space 
2034     * Note this is a little sneaky, 1st call passes NULL as reserved
2035     * so lets system choose where we start, subsequent calls pass
2036     * the old end address so ask for a contiguous block
2037     */
2038    addr  = (char *) VirtualAlloc(reserved,size,MEM_RESERVE,PAGE_NOACCESS);
2039    if (addr)
2040     {
2041      reserved = addr+size;
2042      if (!base)
2043       base = addr;
2044      if (!committed)
2045       committed = base;
2046      if (!brk)
2047       brk = committed;
2048     }
2049    else
2050     {
2051      return (void *) -1;
2052     }
2053   }
2054  result = brk;
2055  brk += need;
2056  if (brk > committed)
2057   {
2058    DWORD size = ((brk-committed + pagesize -1)/pagesize) * pagesize;
2059    char *addr = (char *) VirtualAlloc(committed,size,MEM_COMMIT,PAGE_READWRITE);
2060    if (addr)
2061     {
2062      committed += size;
2063     }
2064    else
2065     return (void *) -1;
2066   }
2067  return result;
2068 }
2069
2070 #endif
2071 #endif
2072
2073 DllExport void*
2074 win32_malloc(size_t size)
2075 {
2076     return malloc(size);
2077 }
2078
2079 DllExport void*
2080 win32_calloc(size_t numitems, size_t size)
2081 {
2082     return calloc(numitems,size);
2083 }
2084
2085 DllExport void*
2086 win32_realloc(void *block, size_t size)
2087 {
2088     return realloc(block,size);
2089 }
2090
2091 DllExport void
2092 win32_free(void *block)
2093 {
2094     free(block);
2095 }
2096
2097
2098 int
2099 win32_open_osfhandle(long handle, int flags)
2100 {
2101     return _open_osfhandle(handle, flags);
2102 }
2103
2104 long
2105 win32_get_osfhandle(int fd)
2106 {
2107     return _get_osfhandle(fd);
2108 }
2109
2110 /*
2111  * Extras.
2112  */
2113
2114 static
2115 XS(w32_GetCwd)
2116 {
2117     dXSARGS;
2118     SV *sv = sv_newmortal();
2119     /* Make one call with zero size - return value is required size */
2120     DWORD len = GetCurrentDirectory((DWORD)0,NULL);
2121     SvUPGRADE(sv,SVt_PV);
2122     SvGROW(sv,len);
2123     SvCUR(sv) = GetCurrentDirectory((DWORD) SvLEN(sv), SvPVX(sv));
2124     /* 
2125      * If result != 0 
2126      *   then it worked, set PV valid, 
2127      *   else leave it 'undef' 
2128      */
2129     if (SvCUR(sv))
2130         SvPOK_on(sv);
2131     EXTEND(SP,1);
2132     ST(0) = sv;
2133     XSRETURN(1);
2134 }
2135
2136 static
2137 XS(w32_SetCwd)
2138 {
2139     dXSARGS;
2140     if (items != 1)
2141         croak("usage: Win32::SetCurrentDirectory($cwd)");
2142     if (SetCurrentDirectory(SvPV(ST(0),PL_na)))
2143         XSRETURN_YES;
2144
2145     XSRETURN_NO;
2146 }
2147
2148 static
2149 XS(w32_GetNextAvailDrive)
2150 {
2151     dXSARGS;
2152     char ix = 'C';
2153     char root[] = "_:\\";
2154     while (ix <= 'Z') {
2155         root[0] = ix++;
2156         if (GetDriveType(root) == 1) {
2157             root[2] = '\0';
2158             XSRETURN_PV(root);
2159         }
2160     }
2161     XSRETURN_UNDEF;
2162 }
2163
2164 static
2165 XS(w32_GetLastError)
2166 {
2167     dXSARGS;
2168     XSRETURN_IV(GetLastError());
2169 }
2170
2171 static
2172 XS(w32_LoginName)
2173 {
2174     dXSARGS;
2175     char *name = getlogin_buffer;
2176     DWORD size = sizeof(getlogin_buffer);
2177     if (GetUserName(name,&size)) {
2178         /* size includes NULL */
2179         ST(0) = sv_2mortal(newSVpv(name,size-1));
2180         XSRETURN(1);
2181     }
2182     XSRETURN_UNDEF;
2183 }
2184
2185 static
2186 XS(w32_NodeName)
2187 {
2188     dXSARGS;
2189     char name[MAX_COMPUTERNAME_LENGTH+1];
2190     DWORD size = sizeof(name);
2191     if (GetComputerName(name,&size)) {
2192         /* size does NOT include NULL :-( */
2193         ST(0) = sv_2mortal(newSVpv(name,size));
2194         XSRETURN(1);
2195     }
2196     XSRETURN_UNDEF;
2197 }
2198
2199
2200 static
2201 XS(w32_DomainName)
2202 {
2203     dXSARGS;
2204 #ifndef HAS_NETWKSTAGETINFO
2205     /* mingw32 (and Win95) don't have NetWksta*(), so do it the old way */
2206     char name[256];
2207     DWORD size = sizeof(name);
2208     if (GetUserName(name,&size)) {
2209         char sid[1024];
2210         DWORD sidlen = sizeof(sid);
2211         char dname[256];
2212         DWORD dnamelen = sizeof(dname);
2213         SID_NAME_USE snu;
2214         if (LookupAccountName(NULL, name, (PSID)&sid, &sidlen,
2215                               dname, &dnamelen, &snu)) {
2216             XSRETURN_PV(dname);         /* all that for this */
2217         }
2218     }
2219 #else
2220     /* this way is more reliable, in case user has a local account.
2221      * XXX need dynamic binding of netapi32.dll symbols or this will fail on
2222      * Win95. Probably makes more sense to move it into libwin32. */
2223     char dname[256];
2224     DWORD dnamelen = sizeof(dname);
2225     PWKSTA_INFO_100 pwi;
2226     if (NERR_Success == NetWkstaGetInfo(NULL, 100, (LPBYTE*)&pwi)) {
2227         if (pwi->wki100_langroup && *(pwi->wki100_langroup)) {
2228             WideCharToMultiByte(CP_ACP, NULL, pwi->wki100_langroup,
2229                                 -1, (LPSTR)dname, dnamelen, NULL, NULL);
2230         }
2231         else {
2232             WideCharToMultiByte(CP_ACP, NULL, pwi->wki100_computername,
2233                                 -1, (LPSTR)dname, dnamelen, NULL, NULL);
2234         }
2235         NetApiBufferFree(pwi);
2236         XSRETURN_PV(dname);
2237     }
2238 #endif
2239     XSRETURN_UNDEF;
2240 }
2241
2242 static
2243 XS(w32_FsType)
2244 {
2245     dXSARGS;
2246     char fsname[256];
2247     DWORD flags, filecomplen;
2248     if (GetVolumeInformation(NULL, NULL, 0, NULL, &filecomplen,
2249                          &flags, fsname, sizeof(fsname))) {
2250         if (GIMME == G_ARRAY) {
2251             XPUSHs(sv_2mortal(newSVpv(fsname,0)));
2252             XPUSHs(sv_2mortal(newSViv(flags)));
2253             XPUSHs(sv_2mortal(newSViv(filecomplen)));
2254             PUTBACK;
2255             return;
2256         }
2257         XSRETURN_PV(fsname);
2258     }
2259     XSRETURN_UNDEF;
2260 }
2261
2262 static
2263 XS(w32_GetOSVersion)
2264 {
2265     dXSARGS;
2266     OSVERSIONINFO osver;
2267
2268     osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
2269     if (GetVersionEx(&osver)) {
2270         XPUSHs(newSVpv(osver.szCSDVersion, 0));
2271         XPUSHs(newSViv(osver.dwMajorVersion));
2272         XPUSHs(newSViv(osver.dwMinorVersion));
2273         XPUSHs(newSViv(osver.dwBuildNumber));
2274         XPUSHs(newSViv(osver.dwPlatformId));
2275         PUTBACK;
2276         return;
2277     }
2278     XSRETURN_UNDEF;
2279 }
2280
2281 static
2282 XS(w32_IsWinNT)
2283 {
2284     dXSARGS;
2285     XSRETURN_IV(IsWinNT());
2286 }
2287
2288 static
2289 XS(w32_IsWin95)
2290 {
2291     dXSARGS;
2292     XSRETURN_IV(IsWin95());
2293 }
2294
2295 static
2296 XS(w32_FormatMessage)
2297 {
2298     dXSARGS;
2299     DWORD source = 0;
2300     char msgbuf[1024];
2301
2302     if (items != 1)
2303         croak("usage: Win32::FormatMessage($errno)");
2304
2305     if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM,
2306                       &source, SvIV(ST(0)), 0,
2307                       msgbuf, sizeof(msgbuf)-1, NULL))
2308         XSRETURN_PV(msgbuf);
2309
2310     XSRETURN_UNDEF;
2311 }
2312
2313 static
2314 XS(w32_Spawn)
2315 {
2316     dXSARGS;
2317     char *cmd, *args;
2318     PROCESS_INFORMATION stProcInfo;
2319     STARTUPINFO stStartInfo;
2320     BOOL bSuccess = FALSE;
2321
2322     if (items != 3)
2323         croak("usage: Win32::Spawn($cmdName, $args, $PID)");
2324
2325     cmd = SvPV(ST(0),PL_na);
2326     args = SvPV(ST(1), PL_na);
2327
2328     memset(&stStartInfo, 0, sizeof(stStartInfo));   /* Clear the block */
2329     stStartInfo.cb = sizeof(stStartInfo);           /* Set the structure size */
2330     stStartInfo.dwFlags = STARTF_USESHOWWINDOW;     /* Enable wShowWindow control */
2331     stStartInfo.wShowWindow = SW_SHOWMINNOACTIVE;   /* Start min (normal) */
2332
2333     if (CreateProcess(
2334                 cmd,                    /* Image path */
2335                 args,                   /* Arguments for command line */
2336                 NULL,                   /* Default process security */
2337                 NULL,                   /* Default thread security */
2338                 FALSE,                  /* Must be TRUE to use std handles */
2339                 NORMAL_PRIORITY_CLASS,  /* No special scheduling */
2340                 NULL,                   /* Inherit our environment block */
2341                 NULL,                   /* Inherit our currrent directory */
2342                 &stStartInfo,           /* -> Startup info */
2343                 &stProcInfo))           /* <- Process info (if OK) */
2344     {
2345         CloseHandle(stProcInfo.hThread);/* library source code does this. */
2346         sv_setiv(ST(2), stProcInfo.dwProcessId);
2347         bSuccess = TRUE;
2348     }
2349     XSRETURN_IV(bSuccess);
2350 }
2351
2352 static
2353 XS(w32_GetTickCount)
2354 {
2355     dXSARGS;
2356     XSRETURN_IV(GetTickCount());
2357 }
2358
2359 static
2360 XS(w32_GetShortPathName)
2361 {
2362     dXSARGS;
2363     SV *shortpath;
2364     DWORD len;
2365
2366     if (items != 1)
2367         croak("usage: Win32::GetShortPathName($longPathName)");
2368
2369     shortpath = sv_mortalcopy(ST(0));
2370     SvUPGRADE(shortpath, SVt_PV);
2371     /* src == target is allowed */
2372     do {
2373         len = GetShortPathName(SvPVX(shortpath),
2374                                SvPVX(shortpath),
2375                                SvLEN(shortpath));
2376     } while (len >= SvLEN(shortpath) && sv_grow(shortpath,len+1));
2377     if (len) {
2378         SvCUR_set(shortpath,len);
2379         ST(0) = shortpath;
2380     }
2381     else
2382         ST(0) = &PL_sv_undef;
2383     XSRETURN(1);
2384 }
2385
2386 static
2387 XS(w32_Sleep)
2388 {
2389     dXSARGS;
2390     if (items != 1)
2391         croak("usage: Win32::Sleep($milliseconds)");
2392     Sleep(SvIV(ST(0)));
2393     XSRETURN_YES;
2394 }
2395
2396 void
2397 Perl_init_os_extras()
2398 {
2399     char *file = __FILE__;
2400     dXSUB_SYS;
2401
2402     w32_perlshell_tokens = Nullch;
2403     w32_perlshell_items = -1;
2404     w32_fdpid = newAV();                /* XXX needs to be in Perl_win32_init()? */
2405 #ifndef USE_RTL_WAIT
2406     w32_num_children = 0;
2407 #endif
2408
2409     /* these names are Activeware compatible */
2410     newXS("Win32::GetCwd", w32_GetCwd, file);
2411     newXS("Win32::SetCwd", w32_SetCwd, file);
2412     newXS("Win32::GetNextAvailDrive", w32_GetNextAvailDrive, file);
2413     newXS("Win32::GetLastError", w32_GetLastError, file);
2414     newXS("Win32::LoginName", w32_LoginName, file);
2415     newXS("Win32::NodeName", w32_NodeName, file);
2416     newXS("Win32::DomainName", w32_DomainName, file);
2417     newXS("Win32::FsType", w32_FsType, file);
2418     newXS("Win32::GetOSVersion", w32_GetOSVersion, file);
2419     newXS("Win32::IsWinNT", w32_IsWinNT, file);
2420     newXS("Win32::IsWin95", w32_IsWin95, file);
2421     newXS("Win32::FormatMessage", w32_FormatMessage, file);
2422     newXS("Win32::Spawn", w32_Spawn, file);
2423     newXS("Win32::GetTickCount", w32_GetTickCount, file);
2424     newXS("Win32::GetShortPathName", w32_GetShortPathName, file);
2425     newXS("Win32::Sleep", w32_Sleep, file);
2426
2427     /* XXX Bloat Alert! The following Activeware preloads really
2428      * ought to be part of Win32::Sys::*, so they're not included
2429      * here.
2430      */
2431     /* LookupAccountName
2432      * LookupAccountSID
2433      * InitiateSystemShutdown
2434      * AbortSystemShutdown
2435      * ExpandEnvrironmentStrings
2436      */
2437 }
2438
2439 void
2440 Perl_win32_init(int *argcp, char ***argvp)
2441 {
2442     /* Disable floating point errors, Perl will trap the ones we
2443      * care about.  VC++ RTL defaults to switching these off
2444      * already, but the Borland RTL doesn't.  Since we don't
2445      * want to be at the vendor's whim on the default, we set
2446      * it explicitly here.
2447      */
2448 #if !defined(_ALPHA_) && !defined(__GNUC__)
2449     _control87(MCW_EM, MCW_EM);
2450 #endif
2451     MALLOC_INIT;
2452 }
2453
2454 #ifdef USE_BINMODE_SCRIPTS
2455
2456 void
2457 win32_strip_return(SV *sv)
2458 {
2459  char *s = SvPVX(sv);
2460  char *e = s+SvCUR(sv);
2461  char *d = s;
2462  while (s < e)
2463   {
2464    if (*s == '\r' && s[1] == '\n')
2465     {
2466      *d++ = '\n';
2467      s += 2;
2468     }
2469    else 
2470     {
2471      *d++ = *s++;
2472     }   
2473   }
2474  SvCUR_set(sv,d-SvPVX(sv)); 
2475 }
2476
2477 #endif