More admonishment that one shouldn't waste one's efforts
[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 #define PERLIO_NOT_STDIO 0
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 #ifndef __MINGW32__     /* GCC/Mingw32-2.95.2 forgot the WINAPI on CommandLineToArgvW() */
19 #  include <shellapi.h>
20 #else
21    LPWSTR* WINAPI CommandLineToArgvW(LPCWSTR lpCommandLine, int * pNumArgs);
22 #endif
23 #include <winnt.h>
24 #include <io.h>
25 #include <signal.h>
26
27 /* #include "config.h" */
28
29 #if !defined(PERLIO_IS_STDIO) && !defined(USE_SFIO)
30 #define PerlIO FILE
31 #endif
32
33 #include <sys/stat.h>
34 #include "EXTERN.h"
35 #include "perl.h"
36
37 #define NO_XSLOCKS
38 #define PERL_NO_GET_CONTEXT
39 #include "XSUB.h"
40
41 #include "Win32iop.h"
42 #include <fcntl.h>
43 #ifndef __GNUC__
44 /* assert.h conflicts with #define of assert in perl.h */
45 #include <assert.h>
46 #endif
47 #include <string.h>
48 #include <stdarg.h>
49 #include <float.h>
50 #include <time.h>
51 #if defined(_MSC_VER) || defined(__MINGW32__)
52 #include <sys/utime.h>
53 #else
54 #include <utime.h>
55 #endif
56 #ifdef __GNUC__
57 /* Mingw32 defaults to globing command line
58  * So we turn it off like this:
59  */
60 int _CRT_glob = 0;
61 #endif
62
63 #if defined(__MINGW32__)
64 /* Mingw32 is missing some prototypes */
65 FILE * _wfopen(LPCWSTR wszFileName, LPCWSTR wszMode);
66 FILE * _wfdopen(int nFd, LPCWSTR wszMode);
67 FILE * _freopen(LPCWSTR wszFileName, LPCWSTR wszMode, FILE * pOldStream);
68 int _flushall();
69 int _fcloseall();
70 #endif
71
72 #if defined(__BORLANDC__)
73 #  define _stat stat
74 #  define _utimbuf utimbuf
75 #endif
76
77 #define EXECF_EXEC 1
78 #define EXECF_SPAWN 2
79 #define EXECF_SPAWN_NOWAIT 3
80
81 #if defined(PERL_IMPLICIT_SYS)
82 #  undef win32_get_privlib
83 #  define win32_get_privlib g_win32_get_privlib
84 #  undef win32_get_sitelib
85 #  define win32_get_sitelib g_win32_get_sitelib
86 #  undef win32_get_vendorlib
87 #  define win32_get_vendorlib g_win32_get_vendorlib
88 #  undef do_spawn
89 #  define do_spawn g_do_spawn
90 #  undef getlogin
91 #  define getlogin g_getlogin
92 #endif
93
94 static void             get_shell(void);
95 static long             tokenize(const char *str, char **dest, char ***destv);
96         int             do_spawn2(char *cmd, int exectype);
97 static BOOL             has_shell_metachars(char *ptr);
98 static long             filetime_to_clock(PFILETIME ft);
99 static BOOL             filetime_from_time(PFILETIME ft, time_t t);
100 static char *           get_emd_part(SV **leading, char *trailing, ...);
101 static void             remove_dead_process(long deceased);
102 static long             find_pid(int pid);
103 static char *           qualified_path(const char *cmd);
104 static char *           win32_get_xlib(const char *pl, const char *xlib,
105                                        const char *libname);
106
107 #ifdef USE_ITHREADS
108 static void             remove_dead_pseudo_process(long child);
109 static long             find_pseudo_pid(int pid);
110 #endif
111
112 START_EXTERN_C
113 HANDLE  w32_perldll_handle = INVALID_HANDLE_VALUE;
114 char    w32_module_name[MAX_PATH+1];
115 END_EXTERN_C
116
117 static DWORD    w32_platform = (DWORD)-1;
118
119 #define ONE_K_BUFSIZE   1024
120
121 int
122 IsWin95(void)
123 {
124     return (win32_os_id() == VER_PLATFORM_WIN32_WINDOWS);
125 }
126
127 int
128 IsWinNT(void)
129 {
130     return (win32_os_id() == VER_PLATFORM_WIN32_NT);
131 }
132
133 EXTERN_C void
134 set_w32_module_name(void)
135 {
136     char* ptr;
137     GetModuleFileName((HMODULE)((w32_perldll_handle == INVALID_HANDLE_VALUE)
138                                 ? GetModuleHandle(NULL)
139                                 : w32_perldll_handle),
140                       w32_module_name, sizeof(w32_module_name));
141
142     /* try to get full path to binary (which may be mangled when perl is
143      * run from a 16-bit app) */
144     /*PerlIO_printf(Perl_debug_log, "Before %s\n", w32_module_name);*/
145     (void)win32_longpath(w32_module_name);
146     /*PerlIO_printf(Perl_debug_log, "After  %s\n", w32_module_name);*/
147
148     /* normalize to forward slashes */
149     ptr = w32_module_name;
150     while (*ptr) {
151         if (*ptr == '\\')
152             *ptr = '/';
153         ++ptr;
154     }
155 }
156
157 /* *svp (if non-NULL) is expected to be POK (valid allocated SvPVX(*svp)) */
158 static char*
159 get_regstr_from(HKEY hkey, const char *valuename, SV **svp)
160 {
161     /* Retrieve a REG_SZ or REG_EXPAND_SZ from the registry */
162     HKEY handle;
163     DWORD type;
164     const char *subkey = "Software\\Perl";
165     char *str = Nullch;
166     long retval;
167
168     retval = RegOpenKeyEx(hkey, subkey, 0, KEY_READ, &handle);
169     if (retval == ERROR_SUCCESS) {
170         DWORD datalen;
171         retval = RegQueryValueEx(handle, valuename, 0, &type, NULL, &datalen);
172         if (retval == ERROR_SUCCESS
173             && (type == REG_SZ || type == REG_EXPAND_SZ))
174         {
175             dTHX;
176             if (!*svp)
177                 *svp = sv_2mortal(newSVpvn("",0));
178             SvGROW(*svp, datalen);
179             retval = RegQueryValueEx(handle, valuename, 0, NULL,
180                                      (PBYTE)SvPVX(*svp), &datalen);
181             if (retval == ERROR_SUCCESS) {
182                 str = SvPVX(*svp);
183                 SvCUR_set(*svp,datalen-1);
184             }
185         }
186         RegCloseKey(handle);
187     }
188     return str;
189 }
190
191 /* *svp (if non-NULL) is expected to be POK (valid allocated SvPVX(*svp)) */
192 static char*
193 get_regstr(const char *valuename, SV **svp)
194 {
195     char *str = get_regstr_from(HKEY_CURRENT_USER, valuename, svp);
196     if (!str)
197         str = get_regstr_from(HKEY_LOCAL_MACHINE, valuename, svp);
198     return str;
199 }
200
201 /* *prev_pathp (if non-NULL) is expected to be POK (valid allocated SvPVX(sv)) */
202 static char *
203 get_emd_part(SV **prev_pathp, char *trailing_path, ...)
204 {
205     char base[10];
206     va_list ap;
207     char mod_name[MAX_PATH+1];
208     char *ptr;
209     char *optr;
210     char *strip;
211     STRLEN baselen;
212
213     va_start(ap, trailing_path);
214     strip = va_arg(ap, char *);
215
216     sprintf(base, "%d.%d", (int)PERL_REVISION, (int)PERL_VERSION);
217     baselen = strlen(base);
218
219     if (!*w32_module_name) {
220         set_w32_module_name();
221     }
222     strcpy(mod_name, w32_module_name);
223     ptr = strrchr(mod_name, '/');
224     while (ptr && strip) {
225         /* look for directories to skip back */
226         optr = ptr;
227         *ptr = '\0';
228         ptr = strrchr(mod_name, '/');
229         /* avoid stripping component if there is no slash,
230          * or it doesn't match ... */
231         if (!ptr || stricmp(ptr+1, strip) != 0) {
232             /* ... but not if component matches m|5\.$patchlevel.*| */
233             if (!ptr || !(*strip == '5' && *(ptr+1) == '5'
234                           && strncmp(strip, base, baselen) == 0
235                           && strncmp(ptr+1, base, baselen) == 0))
236             {
237                 *optr = '/';
238                 ptr = optr;
239             }
240         }
241         strip = va_arg(ap, char *);
242     }
243     if (!ptr) {
244         ptr = mod_name;
245         *ptr++ = '.';
246         *ptr = '/';
247     }
248     va_end(ap);
249     strcpy(++ptr, trailing_path);
250
251     /* only add directory if it exists */
252     if (GetFileAttributes(mod_name) != (DWORD) -1) {
253         /* directory exists */
254         dTHX;
255         if (!*prev_pathp)
256             *prev_pathp = sv_2mortal(newSVpvn("",0));
257         sv_catpvn(*prev_pathp, ";", 1);
258         sv_catpv(*prev_pathp, mod_name);
259         return SvPVX(*prev_pathp);
260     }
261
262     return Nullch;
263 }
264
265 char *
266 win32_get_privlib(const char *pl)
267 {
268     dTHX;
269     char *stdlib = "lib";
270     char buffer[MAX_PATH+1];
271     SV *sv = Nullsv;
272
273     /* $stdlib = $HKCU{"lib-$]"} || $HKLM{"lib-$]"} || $HKCU{"lib"} || $HKLM{"lib"} || "";  */
274     sprintf(buffer, "%s-%s", stdlib, pl);
275     if (!get_regstr(buffer, &sv))
276         (void)get_regstr(stdlib, &sv);
277
278     /* $stdlib .= ";$EMD/../../lib" */
279     return get_emd_part(&sv, stdlib, ARCHNAME, "bin", Nullch);
280 }
281
282 static char *
283 win32_get_xlib(const char *pl, const char *xlib, const char *libname)
284 {
285     dTHX;
286     char regstr[40];
287     char pathstr[MAX_PATH+1];
288     SV *sv1 = Nullsv;
289     SV *sv2 = Nullsv;
290
291     /* $HKCU{"$xlib-$]"} || $HKLM{"$xlib-$]"} . ---; */
292     sprintf(regstr, "%s-%s", xlib, pl);
293     (void)get_regstr(regstr, &sv1);
294
295     /* $xlib .=
296      * ";$EMD/" . ((-d $EMD/../../../$]) ? "../../.." : "../.."). "/$libname/$]/lib";  */
297     sprintf(pathstr, "%s/%s/lib", libname, pl);
298     (void)get_emd_part(&sv1, pathstr, ARCHNAME, "bin", pl, Nullch);
299
300     /* $HKCU{$xlib} || $HKLM{$xlib} . ---; */
301     (void)get_regstr(xlib, &sv2);
302
303     /* $xlib .=
304      * ";$EMD/" . ((-d $EMD/../../../$]) ? "../../.." : "../.."). "/$libname/lib";  */
305     sprintf(pathstr, "%s/lib", libname);
306     (void)get_emd_part(&sv2, pathstr, ARCHNAME, "bin", pl, Nullch);
307
308     if (!sv1 && !sv2)
309         return Nullch;
310     if (!sv1)
311         return SvPVX(sv2);
312     if (!sv2)
313         return SvPVX(sv1);
314
315     sv_catpvn(sv1, ";", 1);
316     sv_catsv(sv1, sv2);
317
318     return SvPVX(sv1);
319 }
320
321 char *
322 win32_get_sitelib(const char *pl)
323 {
324     return win32_get_xlib(pl, "sitelib", "site");
325 }
326
327 #ifndef PERL_VENDORLIB_NAME
328 #  define PERL_VENDORLIB_NAME   "vendor"
329 #endif
330
331 char *
332 win32_get_vendorlib(const char *pl)
333 {
334     return win32_get_xlib(pl, "vendorlib", PERL_VENDORLIB_NAME);
335 }
336
337 static BOOL
338 has_shell_metachars(char *ptr)
339 {
340     int inquote = 0;
341     char quote = '\0';
342
343     /*
344      * Scan string looking for redirection (< or >) or pipe
345      * characters (|) that are not in a quoted string.
346      * Shell variable interpolation (%VAR%) can also happen inside strings.
347      */
348     while (*ptr) {
349         switch(*ptr) {
350         case '%':
351             return TRUE;
352         case '\'':
353         case '\"':
354             if (inquote) {
355                 if (quote == *ptr) {
356                     inquote = 0;
357                     quote = '\0';
358                 }
359             }
360             else {
361                 quote = *ptr;
362                 inquote++;
363             }
364             break;
365         case '>':
366         case '<':
367         case '|':
368             if (!inquote)
369                 return TRUE;
370         default:
371             break;
372         }
373         ++ptr;
374     }
375     return FALSE;
376 }
377
378 #if !defined(PERL_IMPLICIT_SYS)
379 /* since the current process environment is being updated in util.c
380  * the library functions will get the correct environment
381  */
382 PerlIO *
383 Perl_my_popen(pTHX_ char *cmd, char *mode)
384 {
385 #ifdef FIXCMD
386 #define fixcmd(x)   {                                   \
387                         char *pspace = strchr((x),' '); \
388                         if (pspace) {                   \
389                             char *p = (x);              \
390                             while (p < pspace) {        \
391                                 if (*p == '/')          \
392                                     *p = '\\';          \
393                                 p++;                    \
394                             }                           \
395                         }                               \
396                     }
397 #else
398 #define fixcmd(x)
399 #endif
400     fixcmd(cmd);
401     PERL_FLUSHALL_FOR_CHILD;
402     return win32_popen(cmd, mode);
403 }
404
405 long
406 Perl_my_pclose(pTHX_ PerlIO *fp)
407 {
408     return win32_pclose(fp);
409 }
410 #endif
411
412 DllExport unsigned long
413 win32_os_id(void)
414 {
415     static OSVERSIONINFO osver;
416
417     if (osver.dwPlatformId != w32_platform) {
418         memset(&osver, 0, sizeof(OSVERSIONINFO));
419         osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
420         GetVersionEx(&osver);
421         w32_platform = osver.dwPlatformId;
422     }
423     return (unsigned long)w32_platform;
424 }
425
426 DllExport int
427 win32_getpid(void)
428 {
429     int pid;
430 #ifdef USE_ITHREADS
431     dTHX;
432     if (w32_pseudo_id)
433         return -((int)w32_pseudo_id);
434 #endif
435     pid = _getpid();
436     /* Windows 9x appears to always reports a pid for threads and processes
437      * that has the high bit set. So we treat the lower 31 bits as the
438      * "real" PID for Perl's purposes. */
439     if (IsWin95() && pid < 0)
440         pid = -pid;
441     return pid;
442 }
443
444 /* Tokenize a string.  Words are null-separated, and the list
445  * ends with a doubled null.  Any character (except null and
446  * including backslash) may be escaped by preceding it with a
447  * backslash (the backslash will be stripped).
448  * Returns number of words in result buffer.
449  */
450 static long
451 tokenize(const char *str, char **dest, char ***destv)
452 {
453     char *retstart = Nullch;
454     char **retvstart = 0;
455     int items = -1;
456     if (str) {
457         dTHX;
458         int slen = strlen(str);
459         register char *ret;
460         register char **retv;
461         New(1307, ret, slen+2, char);
462         New(1308, retv, (slen+3)/2, char*);
463
464         retstart = ret;
465         retvstart = retv;
466         *retv = ret;
467         items = 0;
468         while (*str) {
469             *ret = *str++;
470             if (*ret == '\\' && *str)
471                 *ret = *str++;
472             else if (*ret == ' ') {
473                 while (*str == ' ')
474                     str++;
475                 if (ret == retstart)
476                     ret--;
477                 else {
478                     *ret = '\0';
479                     ++items;
480                     if (*str)
481                         *++retv = ret+1;
482                 }
483             }
484             else if (!*str)
485                 ++items;
486             ret++;
487         }
488         retvstart[items] = Nullch;
489         *ret++ = '\0';
490         *ret = '\0';
491     }
492     *dest = retstart;
493     *destv = retvstart;
494     return items;
495 }
496
497 static void
498 get_shell(void)
499 {
500     dTHX;
501     if (!w32_perlshell_tokens) {
502         /* we don't use COMSPEC here for two reasons:
503          *  1. the same reason perl on UNIX doesn't use SHELL--rampant and
504          *     uncontrolled unportability of the ensuing scripts.
505          *  2. PERL5SHELL could be set to a shell that may not be fit for
506          *     interactive use (which is what most programs look in COMSPEC
507          *     for).
508          */
509         const char* defaultshell = (IsWinNT()
510                                     ? "cmd.exe /x/c" : "command.com /c");
511         const char *usershell = PerlEnv_getenv("PERL5SHELL");
512         w32_perlshell_items = tokenize(usershell ? usershell : defaultshell,
513                                        &w32_perlshell_tokens,
514                                        &w32_perlshell_vec);
515     }
516 }
517
518 int
519 do_aspawn(void *vreally, void **vmark, void **vsp)
520 {
521     dTHX;
522     SV *really = (SV*)vreally;
523     SV **mark = (SV**)vmark;
524     SV **sp = (SV**)vsp;
525     char **argv;
526     char *str;
527     int status;
528     int flag = P_WAIT;
529     int index = 0;
530
531     if (sp <= mark)
532         return -1;
533
534     get_shell();
535     New(1306, argv, (sp - mark) + w32_perlshell_items + 2, char*);
536
537     if (SvNIOKp(*(mark+1)) && !SvPOKp(*(mark+1))) {
538         ++mark;
539         flag = SvIVx(*mark);
540     }
541
542     while (++mark <= sp) {
543         if (*mark && (str = SvPV_nolen(*mark)))
544             argv[index++] = str;
545         else
546             argv[index++] = "";
547     }
548     argv[index++] = 0;
549
550     status = win32_spawnvp(flag,
551                            (const char*)(really ? SvPV_nolen(really) : argv[0]),
552                            (const char* const*)argv);
553
554     if (status < 0 && (errno == ENOEXEC || errno == ENOENT)) {
555         /* possible shell-builtin, invoke with shell */
556         int sh_items;
557         sh_items = w32_perlshell_items;
558         while (--index >= 0)
559             argv[index+sh_items] = argv[index];
560         while (--sh_items >= 0)
561             argv[sh_items] = w32_perlshell_vec[sh_items];
562
563         status = win32_spawnvp(flag,
564                                (const char*)(really ? SvPV_nolen(really) : argv[0]),
565                                (const char* const*)argv);
566     }
567
568     if (flag == P_NOWAIT) {
569         if (IsWin95())
570             PL_statusvalue = -1;        /* >16bits hint for pp_system() */
571     }
572     else {
573         if (status < 0) {
574             if (ckWARN(WARN_EXEC))
575                 Perl_warner(aTHX_ packWARN(WARN_EXEC), "Can't spawn \"%s\": %s", argv[0], strerror(errno));
576             status = 255 * 256;
577         }
578         else
579             status *= 256;
580         PL_statusvalue = status;
581     }
582     Safefree(argv);
583     return (status);
584 }
585
586 /* returns pointer to the next unquoted space or the end of the string */
587 static char*
588 find_next_space(const char *s)
589 {
590     bool in_quotes = FALSE;
591     while (*s) {
592         /* ignore doubled backslashes, or backslash+quote */
593         if (*s == '\\' && (s[1] == '\\' || s[1] == '"')) {
594             s += 2;
595         }
596         /* keep track of when we're within quotes */
597         else if (*s == '"') {
598             s++;
599             in_quotes = !in_quotes;
600         }
601         /* break it up only at spaces that aren't in quotes */
602         else if (!in_quotes && isSPACE(*s))
603             return (char*)s;
604         else
605             s++;
606     }
607     return (char*)s;
608 }
609
610 int
611 do_spawn2(char *cmd, int exectype)
612 {
613     dTHX;
614     char **a;
615     char *s;
616     char **argv;
617     int status = -1;
618     BOOL needToTry = TRUE;
619     char *cmd2;
620
621     /* Save an extra exec if possible. See if there are shell
622      * metacharacters in it */
623     if (!has_shell_metachars(cmd)) {
624         New(1301,argv, strlen(cmd) / 2 + 2, char*);
625         New(1302,cmd2, strlen(cmd) + 1, char);
626         strcpy(cmd2, cmd);
627         a = argv;
628         for (s = cmd2; *s;) {
629             while (*s && isSPACE(*s))
630                 s++;
631             if (*s)
632                 *(a++) = s;
633             s = find_next_space(s);
634             if (*s)
635                 *s++ = '\0';
636         }
637         *a = Nullch;
638         if (argv[0]) {
639             switch (exectype) {
640             case EXECF_SPAWN:
641                 status = win32_spawnvp(P_WAIT, argv[0],
642                                        (const char* const*)argv);
643                 break;
644             case EXECF_SPAWN_NOWAIT:
645                 status = win32_spawnvp(P_NOWAIT, argv[0],
646                                        (const char* const*)argv);
647                 break;
648             case EXECF_EXEC:
649                 status = win32_execvp(argv[0], (const char* const*)argv);
650                 break;
651             }
652             if (status != -1 || errno == 0)
653                 needToTry = FALSE;
654         }
655         Safefree(argv);
656         Safefree(cmd2);
657     }
658     if (needToTry) {
659         char **argv;
660         int i = -1;
661         get_shell();
662         New(1306, argv, w32_perlshell_items + 2, char*);
663         while (++i < w32_perlshell_items)
664             argv[i] = w32_perlshell_vec[i];
665         argv[i++] = cmd;
666         argv[i] = Nullch;
667         switch (exectype) {
668         case EXECF_SPAWN:
669             status = win32_spawnvp(P_WAIT, argv[0],
670                                    (const char* const*)argv);
671             break;
672         case EXECF_SPAWN_NOWAIT:
673             status = win32_spawnvp(P_NOWAIT, argv[0],
674                                    (const char* const*)argv);
675             break;
676         case EXECF_EXEC:
677             status = win32_execvp(argv[0], (const char* const*)argv);
678             break;
679         }
680         cmd = argv[0];
681         Safefree(argv);
682     }
683     if (exectype == EXECF_SPAWN_NOWAIT) {
684         if (IsWin95())
685             PL_statusvalue = -1;        /* >16bits hint for pp_system() */
686     }
687     else {
688         if (status < 0) {
689             if (ckWARN(WARN_EXEC))
690                 Perl_warner(aTHX_ packWARN(WARN_EXEC), "Can't %s \"%s\": %s",
691                      (exectype == EXECF_EXEC ? "exec" : "spawn"),
692                      cmd, strerror(errno));
693             status = 255 * 256;
694         }
695         else
696             status *= 256;
697         PL_statusvalue = status;
698     }
699     return (status);
700 }
701
702 int
703 do_spawn(char *cmd)
704 {
705     return do_spawn2(cmd, EXECF_SPAWN);
706 }
707
708 int
709 do_spawn_nowait(char *cmd)
710 {
711     return do_spawn2(cmd, EXECF_SPAWN_NOWAIT);
712 }
713
714 bool
715 Perl_do_exec(pTHX_ char *cmd)
716 {
717     do_spawn2(cmd, EXECF_EXEC);
718     return FALSE;
719 }
720
721 /* The idea here is to read all the directory names into a string table
722  * (separated by nulls) and when one of the other dir functions is called
723  * return the pointer to the current file name.
724  */
725 DllExport DIR *
726 win32_opendir(char *filename)
727 {
728     dTHX;
729     DIR                 *dirp;
730     long                len;
731     long                idx;
732     char                scanname[MAX_PATH+3];
733     Stat_t              sbuf;
734     WIN32_FIND_DATAA    aFindData;
735     WIN32_FIND_DATAW    wFindData;
736     HANDLE              fh;
737     char                buffer[MAX_PATH*2];
738     WCHAR               wbuffer[MAX_PATH+1];
739     char*               ptr;
740
741     len = strlen(filename);
742     if (len > MAX_PATH)
743         return NULL;
744
745     /* check to see if filename is a directory */
746     if (win32_stat(filename, &sbuf) < 0 || !S_ISDIR(sbuf.st_mode))
747         return NULL;
748
749     /* Get us a DIR structure */
750     Newz(1303, dirp, 1, DIR);
751
752     /* Create the search pattern */
753     strcpy(scanname, filename);
754
755     /* bare drive name means look in cwd for drive */
756     if (len == 2 && isALPHA(scanname[0]) && scanname[1] == ':') {
757         scanname[len++] = '.';
758         scanname[len++] = '/';
759     }
760     else if (scanname[len-1] != '/' && scanname[len-1] != '\\') {
761         scanname[len++] = '/';
762     }
763     scanname[len++] = '*';
764     scanname[len] = '\0';
765
766     /* do the FindFirstFile call */
767     if (USING_WIDE()) {
768         A2WHELPER(scanname, wbuffer, sizeof(wbuffer));
769         fh = FindFirstFileW(PerlDir_mapW(wbuffer), &wFindData);
770     }
771     else {
772         fh = FindFirstFileA(PerlDir_mapA(scanname), &aFindData);
773     }
774     dirp->handle = fh;
775     if (fh == INVALID_HANDLE_VALUE) {
776         DWORD err = GetLastError();
777         /* FindFirstFile() fails on empty drives! */
778         switch (err) {
779         case ERROR_FILE_NOT_FOUND:
780             return dirp;
781         case ERROR_NO_MORE_FILES:
782         case ERROR_PATH_NOT_FOUND:
783             errno = ENOENT;
784             break;
785         case ERROR_NOT_ENOUGH_MEMORY:
786             errno = ENOMEM;
787             break;
788         default:
789             errno = EINVAL;
790             break;
791         }
792         Safefree(dirp);
793         return NULL;
794     }
795
796     /* now allocate the first part of the string table for
797      * the filenames that we find.
798      */
799     if (USING_WIDE()) {
800         W2AHELPER(wFindData.cFileName, buffer, sizeof(buffer));
801         ptr = buffer;
802     }
803     else {
804         ptr = aFindData.cFileName;
805     }
806     idx = strlen(ptr)+1;
807     if (idx < 256)
808         dirp->size = 128;
809     else
810         dirp->size = idx;
811     New(1304, dirp->start, dirp->size, char);
812     strcpy(dirp->start, ptr);
813     dirp->nfiles++;
814     dirp->end = dirp->curr = dirp->start;
815     dirp->end += idx;
816     return dirp;
817 }
818
819
820 /* Readdir just returns the current string pointer and bumps the
821  * string pointer to the nDllExport entry.
822  */
823 DllExport struct direct *
824 win32_readdir(DIR *dirp)
825 {
826     long         len;
827
828     if (dirp->curr) {
829         /* first set up the structure to return */
830         len = strlen(dirp->curr);
831         strcpy(dirp->dirstr.d_name, dirp->curr);
832         dirp->dirstr.d_namlen = len;
833
834         /* Fake an inode */
835         dirp->dirstr.d_ino = dirp->curr - dirp->start;
836
837         /* Now set up for the next call to readdir */
838         dirp->curr += len + 1;
839         if (dirp->curr >= dirp->end) {
840             dTHX;
841             char*               ptr;
842             BOOL                res;
843             WIN32_FIND_DATAW    wFindData;
844             WIN32_FIND_DATAA    aFindData;
845             char                buffer[MAX_PATH*2];
846
847             /* finding the next file that matches the wildcard
848              * (which should be all of them in this directory!).
849              */
850             if (USING_WIDE()) {
851                 res = FindNextFileW(dirp->handle, &wFindData);
852                 if (res) {
853                     W2AHELPER(wFindData.cFileName, buffer, sizeof(buffer));
854                     ptr = buffer;
855                 }
856             }
857             else {
858                 res = FindNextFileA(dirp->handle, &aFindData);
859                 if (res)
860                     ptr = aFindData.cFileName;
861             }
862             if (res) {
863                 long endpos = dirp->end - dirp->start;
864                 long newsize = endpos + strlen(ptr) + 1;
865                 /* bump the string table size by enough for the
866                  * new name and its null terminator */
867                 while (newsize > dirp->size) {
868                     long curpos = dirp->curr - dirp->start;
869                     dirp->size *= 2;
870                     Renew(dirp->start, dirp->size, char);
871                     dirp->curr = dirp->start + curpos;
872                 }
873                 strcpy(dirp->start + endpos, ptr);
874                 dirp->end = dirp->start + newsize;
875                 dirp->nfiles++;
876             }
877             else
878                 dirp->curr = NULL;
879         }
880         return &(dirp->dirstr);
881     }
882     else
883         return NULL;
884 }
885
886 /* Telldir returns the current string pointer position */
887 DllExport long
888 win32_telldir(DIR *dirp)
889 {
890     return (dirp->curr - dirp->start);
891 }
892
893
894 /* Seekdir moves the string pointer to a previously saved position
895  * (returned by telldir).
896  */
897 DllExport void
898 win32_seekdir(DIR *dirp, long loc)
899 {
900     dirp->curr = dirp->start + loc;
901 }
902
903 /* Rewinddir resets the string pointer to the start */
904 DllExport void
905 win32_rewinddir(DIR *dirp)
906 {
907     dirp->curr = dirp->start;
908 }
909
910 /* free the memory allocated by opendir */
911 DllExport int
912 win32_closedir(DIR *dirp)
913 {
914     dTHX;
915     if (dirp->handle != INVALID_HANDLE_VALUE)
916         FindClose(dirp->handle);
917     Safefree(dirp->start);
918     Safefree(dirp);
919     return 1;
920 }
921
922
923 /*
924  * various stubs
925  */
926
927
928 /* Ownership
929  *
930  * Just pretend that everyone is a superuser. NT will let us know if
931  * we don\'t really have permission to do something.
932  */
933
934 #define ROOT_UID    ((uid_t)0)
935 #define ROOT_GID    ((gid_t)0)
936
937 uid_t
938 getuid(void)
939 {
940     return ROOT_UID;
941 }
942
943 uid_t
944 geteuid(void)
945 {
946     return ROOT_UID;
947 }
948
949 gid_t
950 getgid(void)
951 {
952     return ROOT_GID;
953 }
954
955 gid_t
956 getegid(void)
957 {
958     return ROOT_GID;
959 }
960
961 int
962 setuid(uid_t auid)
963 {
964     return (auid == ROOT_UID ? 0 : -1);
965 }
966
967 int
968 setgid(gid_t agid)
969 {
970     return (agid == ROOT_GID ? 0 : -1);
971 }
972
973 char *
974 getlogin(void)
975 {
976     dTHX;
977     char *buf = w32_getlogin_buffer;
978     DWORD size = sizeof(w32_getlogin_buffer);
979     if (GetUserName(buf,&size))
980         return buf;
981     return (char*)NULL;
982 }
983
984 int
985 chown(const char *path, uid_t owner, gid_t group)
986 {
987     /* XXX noop */
988     return 0;
989 }
990
991 /*
992  * XXX this needs strengthening  (for PerlIO)
993  *   -- BKS, 11-11-200
994 */
995 int mkstemp(const char *path)
996 {
997     dTHX;
998     char buf[MAX_PATH+1];
999     int i = 0, fd = -1;
1000
1001 retry:
1002     if (i++ > 10) { /* give up */
1003         errno = ENOENT;
1004         return -1;
1005     }
1006     if (!GetTempFileNameA((LPCSTR)path, "plr", 1, buf)) {
1007         errno = ENOENT;
1008         return -1;
1009     }
1010     fd = PerlLIO_open3(buf, O_CREAT|O_RDWR|O_EXCL, 0600);
1011     if (fd == -1)
1012         goto retry;
1013     return fd;
1014 }
1015
1016 static long
1017 find_pid(int pid)
1018 {
1019     dTHX;
1020     long child = w32_num_children;
1021     while (--child >= 0) {
1022         if ((int)w32_child_pids[child] == pid)
1023             return child;
1024     }
1025     return -1;
1026 }
1027
1028 static void
1029 remove_dead_process(long child)
1030 {
1031     if (child >= 0) {
1032         dTHX;
1033         CloseHandle(w32_child_handles[child]);
1034         Move(&w32_child_handles[child+1], &w32_child_handles[child],
1035              (w32_num_children-child-1), HANDLE);
1036         Move(&w32_child_pids[child+1], &w32_child_pids[child],
1037              (w32_num_children-child-1), DWORD);
1038         w32_num_children--;
1039     }
1040 }
1041
1042 #ifdef USE_ITHREADS
1043 static long
1044 find_pseudo_pid(int pid)
1045 {
1046     dTHX;
1047     long child = w32_num_pseudo_children;
1048     while (--child >= 0) {
1049         if ((int)w32_pseudo_child_pids[child] == pid)
1050             return child;
1051     }
1052     return -1;
1053 }
1054
1055 static void
1056 remove_dead_pseudo_process(long child)
1057 {
1058     if (child >= 0) {
1059         dTHX;
1060         CloseHandle(w32_pseudo_child_handles[child]);
1061         Move(&w32_pseudo_child_handles[child+1], &w32_pseudo_child_handles[child],
1062              (w32_num_pseudo_children-child-1), HANDLE);
1063         Move(&w32_pseudo_child_pids[child+1], &w32_pseudo_child_pids[child],
1064              (w32_num_pseudo_children-child-1), DWORD);
1065         w32_num_pseudo_children--;
1066     }
1067 }
1068 #endif
1069
1070 DllExport int
1071 win32_kill(int pid, int sig)
1072 {
1073     dTHX;
1074     HANDLE hProcess;
1075     long child;
1076 #ifdef USE_ITHREADS
1077     if (pid < 0) {
1078         /* it is a pseudo-forked child */
1079         child = find_pseudo_pid(-pid);
1080         if (child >= 0) {
1081             hProcess = w32_pseudo_child_handles[child];
1082             switch (sig) {
1083             case 0:
1084                 /* "Does process exist?" use of kill */
1085                 return 0;
1086             case 9:
1087                 /* kill -9 style un-graceful exit */
1088                 if (TerminateThread(hProcess, sig)) {
1089                     remove_dead_pseudo_process(child);
1090                     return 0;
1091                 }
1092                 break;
1093             default:
1094               /* We fake signals to pseudo-processes using Win32
1095                * message queue.  In Win9X the pids are negative already. */
1096               if (PostThreadMessage(IsWin95() ? pid : -pid,WM_USER,sig,0)) {
1097                     /* It might be us ... */
1098                     PERL_ASYNC_CHECK();
1099                     return 0;
1100                 }
1101                 break;
1102             }
1103         }
1104         else if (IsWin95()) {
1105             pid = -pid;
1106             goto alien_process;
1107         }
1108     }
1109     else
1110 #endif
1111     {
1112         child = find_pid(pid);
1113         if (child >= 0) {
1114             hProcess = w32_child_handles[child];
1115             switch(sig) {
1116             case 0:
1117                 /* "Does process exist?" use of kill */
1118                 return 0;
1119             case 2:
1120                 if (GenerateConsoleCtrlEvent(CTRL_C_EVENT,pid))
1121                     return 0;
1122                 break;
1123             default: /* For now be backwards compatible with perl5.6 */
1124             case 9:
1125                 if (TerminateProcess(hProcess, sig)) {
1126                     remove_dead_process(child);
1127                     return 0;
1128                 }
1129                 break;
1130             }
1131         }
1132         else {
1133 alien_process:
1134             hProcess = OpenProcess(PROCESS_ALL_ACCESS, TRUE,
1135                                    (IsWin95() ? -pid : pid));
1136             if (hProcess) {
1137                 switch(sig) {
1138                 case 0:
1139                     /* "Does process exist?" use of kill */
1140                     return 0;
1141                 case 2:
1142                     if (GenerateConsoleCtrlEvent(CTRL_C_EVENT,pid))
1143                         return 0;
1144                     break;
1145                 default: /* For now be backwards compatible with perl5.6 */
1146                 case 9:
1147                     if (TerminateProcess(hProcess, sig)) {
1148                         CloseHandle(hProcess);
1149                         return 0;
1150                     }
1151                 }
1152             }
1153         }
1154     }
1155     errno = EINVAL;
1156     return -1;
1157 }
1158
1159 DllExport int
1160 win32_stat(const char *path, Stat_t *sbuf)
1161 {
1162     dTHX;
1163     char        buffer[MAX_PATH+1];
1164     int         l = strlen(path);
1165     int         res;
1166     WCHAR       wbuffer[MAX_PATH+1];
1167     WCHAR*      pwbuffer;
1168     HANDLE      handle;
1169     int         nlink = 1;
1170
1171     if (l > 1) {
1172         switch(path[l - 1]) {
1173         /* FindFirstFile() and stat() are buggy with a trailing
1174          * backslash, so change it to a forward slash :-( */
1175         case '\\':
1176             strncpy(buffer, path, l-1);
1177             buffer[l - 1] = '/';
1178             buffer[l] = '\0';
1179             path = buffer;
1180             break;
1181         /* FindFirstFile() is buggy with "x:", so add a dot :-( */
1182         case ':':
1183             if (l == 2 && isALPHA(path[0])) {
1184                 buffer[0] = path[0];
1185                 buffer[1] = ':';
1186                 buffer[2] = '.';
1187                 buffer[3] = '\0';
1188                 l = 3;
1189                 path = buffer;
1190             }
1191             break;
1192         }
1193     }
1194
1195     /* We *must* open & close the file once; otherwise file attribute changes */
1196     /* might not yet have propagated to "other" hard links of the same file.  */
1197     /* This also gives us an opportunity to determine the number of links.    */
1198     if (USING_WIDE()) {
1199         A2WHELPER(path, wbuffer, sizeof(wbuffer));
1200         pwbuffer = PerlDir_mapW(wbuffer);
1201         handle = CreateFileW(pwbuffer, 0, 0, NULL, OPEN_EXISTING, 0, NULL);
1202     }
1203     else {
1204         path = PerlDir_mapA(path);
1205         l = strlen(path);
1206         handle = CreateFileA(path, 0, 0, NULL, OPEN_EXISTING, 0, NULL);
1207     }
1208     if (handle != INVALID_HANDLE_VALUE) {
1209         BY_HANDLE_FILE_INFORMATION bhi;
1210         if (GetFileInformationByHandle(handle, &bhi))
1211             nlink = bhi.nNumberOfLinks;
1212         CloseHandle(handle);
1213     }
1214
1215     /* pwbuffer or path will be mapped correctly above */
1216     if (USING_WIDE()) {
1217 #if defined(WIN64) || defined(USE_LARGE_FILES)
1218         res = _wstati64(pwbuffer, sbuf);
1219 #else
1220         res = _wstat(pwbuffer, (struct _stat*)sbuf);
1221 #endif
1222     }
1223     else {
1224 #if defined(WIN64) || defined(USE_LARGE_FILES)
1225         res = _stati64(path, sbuf);
1226 #else
1227         res = stat(path, sbuf);
1228 #endif
1229     }
1230     sbuf->st_nlink = nlink;
1231
1232     if (res < 0) {
1233         /* CRT is buggy on sharenames, so make sure it really isn't.
1234          * XXX using GetFileAttributesEx() will enable us to set
1235          * sbuf->st_*time (but note that's not available on the
1236          * Windows of 1995) */
1237         DWORD r;
1238         if (USING_WIDE()) {
1239             r = GetFileAttributesW(pwbuffer);
1240         }
1241         else {
1242             r = GetFileAttributesA(path);
1243         }
1244         if (r != 0xffffffff && (r & FILE_ATTRIBUTE_DIRECTORY)) {
1245             /* sbuf may still contain old garbage since stat() failed */
1246             Zero(sbuf, 1, Stat_t);
1247             sbuf->st_mode = S_IFDIR | S_IREAD;
1248             errno = 0;
1249             if (!(r & FILE_ATTRIBUTE_READONLY))
1250                 sbuf->st_mode |= S_IWRITE | S_IEXEC;
1251             return 0;
1252         }
1253     }
1254     else {
1255         if (l == 3 && isALPHA(path[0]) && path[1] == ':'
1256             && (path[2] == '\\' || path[2] == '/'))
1257         {
1258             /* The drive can be inaccessible, some _stat()s are buggy */
1259             if (USING_WIDE()
1260                 ? !GetVolumeInformationW(pwbuffer,NULL,0,NULL,NULL,NULL,NULL,0)
1261                 : !GetVolumeInformationA(path,NULL,0,NULL,NULL,NULL,NULL,0)) {
1262                 errno = ENOENT;
1263                 return -1;
1264             }
1265         }
1266 #ifdef __BORLANDC__
1267         if (S_ISDIR(sbuf->st_mode))
1268             sbuf->st_mode |= S_IWRITE | S_IEXEC;
1269         else if (S_ISREG(sbuf->st_mode)) {
1270             int perms;
1271             if (l >= 4 && path[l-4] == '.') {
1272                 const char *e = path + l - 3;
1273                 if (strnicmp(e,"exe",3)
1274                     && strnicmp(e,"bat",3)
1275                     && strnicmp(e,"com",3)
1276                     && (IsWin95() || strnicmp(e,"cmd",3)))
1277                     sbuf->st_mode &= ~S_IEXEC;
1278                 else
1279                     sbuf->st_mode |= S_IEXEC;
1280             }
1281             else
1282                 sbuf->st_mode &= ~S_IEXEC;
1283             /* Propagate permissions to _group_ and _others_ */
1284             perms = sbuf->st_mode & (S_IREAD|S_IWRITE|S_IEXEC);
1285             sbuf->st_mode |= (perms>>3) | (perms>>6);
1286         }
1287 #endif
1288     }
1289     return res;
1290 }
1291
1292 #define isSLASH(c) ((c) == '/' || (c) == '\\')
1293 #define SKIP_SLASHES(s) \
1294     STMT_START {                                \
1295         while (*(s) && isSLASH(*(s)))           \
1296             ++(s);                              \
1297     } STMT_END
1298 #define COPY_NONSLASHES(d,s) \
1299     STMT_START {                                \
1300         while (*(s) && !isSLASH(*(s)))          \
1301             *(d)++ = *(s)++;                    \
1302     } STMT_END
1303
1304 /* Find the longname of a given path.  path is destructively modified.
1305  * It should have space for at least MAX_PATH characters. */
1306 DllExport char *
1307 win32_longpath(char *path)
1308 {
1309     WIN32_FIND_DATA fdata;
1310     HANDLE fhand;
1311     char tmpbuf[MAX_PATH+1];
1312     char *tmpstart = tmpbuf;
1313     char *start = path;
1314     char sep;
1315     if (!path)
1316         return Nullch;
1317
1318     /* drive prefix */
1319     if (isALPHA(path[0]) && path[1] == ':') {
1320         start = path + 2;
1321         *tmpstart++ = path[0];
1322         *tmpstart++ = ':';
1323     }
1324     /* UNC prefix */
1325     else if (isSLASH(path[0]) && isSLASH(path[1])) {
1326         start = path + 2;
1327         *tmpstart++ = path[0];
1328         *tmpstart++ = path[1];
1329         SKIP_SLASHES(start);
1330         COPY_NONSLASHES(tmpstart,start);        /* copy machine name */
1331         if (*start) {
1332             *tmpstart++ = *start++;
1333             SKIP_SLASHES(start);
1334             COPY_NONSLASHES(tmpstart,start);    /* copy share name */
1335         }
1336     }
1337     *tmpstart = '\0';
1338     while (*start) {
1339         /* copy initial slash, if any */
1340         if (isSLASH(*start)) {
1341             *tmpstart++ = *start++;
1342             *tmpstart = '\0';
1343             SKIP_SLASHES(start);
1344         }
1345
1346         /* FindFirstFile() expands "." and "..", so we need to pass
1347          * those through unmolested */
1348         if (*start == '.'
1349             && (!start[1] || isSLASH(start[1])
1350                 || (start[1] == '.' && (!start[2] || isSLASH(start[2])))))
1351         {
1352             COPY_NONSLASHES(tmpstart,start);    /* copy "." or ".." */
1353             *tmpstart = '\0';
1354             continue;
1355         }
1356
1357         /* if this is the end, bust outta here */
1358         if (!*start)
1359             break;
1360
1361         /* now we're at a non-slash; walk up to next slash */
1362         while (*start && !isSLASH(*start))
1363             ++start;
1364
1365         /* stop and find full name of component */
1366         sep = *start;
1367         *start = '\0';
1368         fhand = FindFirstFile(path,&fdata);
1369         *start = sep;
1370         if (fhand != INVALID_HANDLE_VALUE) {
1371             STRLEN len = strlen(fdata.cFileName);
1372             if ((STRLEN)(tmpbuf + sizeof(tmpbuf) - tmpstart) > len) {
1373                 strcpy(tmpstart, fdata.cFileName);
1374                 tmpstart += len;
1375                 FindClose(fhand);
1376             }
1377             else {
1378                 FindClose(fhand);
1379                 errno = ERANGE;
1380                 return Nullch;
1381             }
1382         }
1383         else {
1384             /* failed a step, just return without side effects */
1385             /*PerlIO_printf(Perl_debug_log, "Failed to find %s\n", path);*/
1386             errno = EINVAL;
1387             return Nullch;
1388         }
1389     }
1390     strcpy(path,tmpbuf);
1391     return path;
1392 }
1393
1394 DllExport char *
1395 win32_getenv(const char *name)
1396 {
1397     dTHX;
1398     WCHAR wBuffer[MAX_PATH+1];
1399     DWORD needlen;
1400     SV *curitem = Nullsv;
1401
1402     if (USING_WIDE()) {
1403         A2WHELPER(name, wBuffer, sizeof(wBuffer));
1404         needlen = GetEnvironmentVariableW(wBuffer, NULL, 0);
1405     }
1406     else
1407         needlen = GetEnvironmentVariableA(name,NULL,0);
1408     if (needlen != 0) {
1409         curitem = sv_2mortal(newSVpvn("", 0));
1410         if (USING_WIDE()) {
1411             SV *acuritem;
1412             do {
1413                 SvGROW(curitem, (needlen+1)*sizeof(WCHAR));
1414                 needlen = GetEnvironmentVariableW(wBuffer,
1415                                                   (WCHAR*)SvPVX(curitem),
1416                                                   needlen);
1417             } while (needlen >= SvLEN(curitem)/sizeof(WCHAR));
1418             SvCUR_set(curitem, (needlen*sizeof(WCHAR))+1);
1419             acuritem = sv_2mortal(newSVsv(curitem));
1420             W2AHELPER((WCHAR*)SvPVX(acuritem), SvPVX(curitem), SvCUR(curitem));
1421         }
1422         else {
1423             do {
1424                 SvGROW(curitem, needlen+1);
1425                 needlen = GetEnvironmentVariableA(name,SvPVX(curitem),
1426                                                   needlen);
1427             } while (needlen >= SvLEN(curitem));
1428             SvCUR_set(curitem, needlen);
1429         }
1430     }
1431     else {
1432         /* allow any environment variables that begin with 'PERL'
1433            to be stored in the registry */
1434         if (strncmp(name, "PERL", 4) == 0)
1435             (void)get_regstr(name, &curitem);
1436     }
1437     if (curitem && SvCUR(curitem))
1438         return SvPVX(curitem);
1439
1440     return Nullch;
1441 }
1442
1443 DllExport int
1444 win32_putenv(const char *name)
1445 {
1446     dTHX;
1447     char* curitem;
1448     char* val;
1449     WCHAR* wCuritem;
1450     WCHAR* wVal;
1451     int length, relval = -1;
1452
1453     if (name) {
1454         if (USING_WIDE()) {
1455             length = strlen(name)+1;
1456             New(1309,wCuritem,length,WCHAR);
1457             A2WHELPER(name, wCuritem, length*sizeof(WCHAR));
1458             wVal = wcschr(wCuritem, '=');
1459             if (wVal) {
1460                 *wVal++ = '\0';
1461                 if (SetEnvironmentVariableW(wCuritem, *wVal ? wVal : NULL))
1462                     relval = 0;
1463             }
1464             Safefree(wCuritem);
1465         }
1466         else {
1467             New(1309,curitem,strlen(name)+1,char);
1468             strcpy(curitem, name);
1469             val = strchr(curitem, '=');
1470             if (val) {
1471                 /* The sane way to deal with the environment.
1472                  * Has these advantages over putenv() & co.:
1473                  *  * enables us to store a truly empty value in the
1474                  *    environment (like in UNIX).
1475                  *  * we don't have to deal with RTL globals, bugs and leaks.
1476                  *  * Much faster.
1477                  * Why you may want to enable USE_WIN32_RTL_ENV:
1478                  *  * environ[] and RTL functions will not reflect changes,
1479                  *    which might be an issue if extensions want to access
1480                  *    the env. via RTL.  This cuts both ways, since RTL will
1481                  *    not see changes made by extensions that call the Win32
1482                  *    functions directly, either.
1483                  * GSAR 97-06-07
1484                  */
1485                 *val++ = '\0';
1486                 if (SetEnvironmentVariableA(curitem, *val ? val : NULL))
1487                     relval = 0;
1488             }
1489             Safefree(curitem);
1490         }
1491     }
1492     return relval;
1493 }
1494
1495 static long
1496 filetime_to_clock(PFILETIME ft)
1497 {
1498     __int64 qw = ft->dwHighDateTime;
1499     qw <<= 32;
1500     qw |= ft->dwLowDateTime;
1501     qw /= 10000;  /* File time ticks at 0.1uS, clock at 1mS */
1502     return (long) qw;
1503 }
1504
1505 DllExport int
1506 win32_times(struct tms *timebuf)
1507 {
1508     FILETIME user;
1509     FILETIME kernel;
1510     FILETIME dummy;
1511     clock_t process_time_so_far = clock();
1512     if (GetProcessTimes(GetCurrentProcess(), &dummy, &dummy,
1513                         &kernel,&user)) {
1514         timebuf->tms_utime = filetime_to_clock(&user);
1515         timebuf->tms_stime = filetime_to_clock(&kernel);
1516         timebuf->tms_cutime = 0;
1517         timebuf->tms_cstime = 0;
1518     } else {
1519         /* That failed - e.g. Win95 fallback to clock() */
1520         timebuf->tms_utime = process_time_so_far;
1521         timebuf->tms_stime = 0;
1522         timebuf->tms_cutime = 0;
1523         timebuf->tms_cstime = 0;
1524     }
1525     return process_time_so_far;
1526 }
1527
1528 /* fix utime() so it works on directories in NT */
1529 static BOOL
1530 filetime_from_time(PFILETIME pFileTime, time_t Time)
1531 {
1532     struct tm *pTM = localtime(&Time);
1533     SYSTEMTIME SystemTime;
1534     FILETIME LocalTime;
1535
1536     if (pTM == NULL)
1537         return FALSE;
1538
1539     SystemTime.wYear   = pTM->tm_year + 1900;
1540     SystemTime.wMonth  = pTM->tm_mon + 1;
1541     SystemTime.wDay    = pTM->tm_mday;
1542     SystemTime.wHour   = pTM->tm_hour;
1543     SystemTime.wMinute = pTM->tm_min;
1544     SystemTime.wSecond = pTM->tm_sec;
1545     SystemTime.wMilliseconds = 0;
1546
1547     return SystemTimeToFileTime(&SystemTime, &LocalTime) &&
1548            LocalFileTimeToFileTime(&LocalTime, pFileTime);
1549 }
1550
1551 DllExport int
1552 win32_unlink(const char *filename)
1553 {
1554     dTHX;
1555     int ret;
1556     DWORD attrs;
1557
1558     if (USING_WIDE()) {
1559         WCHAR wBuffer[MAX_PATH+1];
1560         WCHAR* pwBuffer;
1561
1562         A2WHELPER(filename, wBuffer, sizeof(wBuffer));
1563         pwBuffer = PerlDir_mapW(wBuffer);
1564         attrs = GetFileAttributesW(pwBuffer);
1565         if (attrs == 0xFFFFFFFF)
1566             goto fail;
1567         if (attrs & FILE_ATTRIBUTE_READONLY) {
1568             (void)SetFileAttributesW(pwBuffer, attrs & ~FILE_ATTRIBUTE_READONLY);
1569             ret = _wunlink(pwBuffer);
1570             if (ret == -1)
1571                 (void)SetFileAttributesW(pwBuffer, attrs);
1572         }
1573         else
1574             ret = _wunlink(pwBuffer);
1575     }
1576     else {
1577         filename = PerlDir_mapA(filename);
1578         attrs = GetFileAttributesA(filename);
1579         if (attrs == 0xFFFFFFFF)
1580             goto fail;
1581         if (attrs & FILE_ATTRIBUTE_READONLY) {
1582             (void)SetFileAttributesA(filename, attrs & ~FILE_ATTRIBUTE_READONLY);
1583             ret = unlink(filename);
1584             if (ret == -1)
1585                 (void)SetFileAttributesA(filename, attrs);
1586         }
1587         else
1588             ret = unlink(filename);
1589     }
1590     return ret;
1591 fail:
1592     errno = ENOENT;
1593     return -1;
1594 }
1595
1596 DllExport int
1597 win32_utime(const char *filename, struct utimbuf *times)
1598 {
1599     dTHX;
1600     HANDLE handle;
1601     FILETIME ftCreate;
1602     FILETIME ftAccess;
1603     FILETIME ftWrite;
1604     struct utimbuf TimeBuffer;
1605     WCHAR wbuffer[MAX_PATH+1];
1606     WCHAR* pwbuffer;
1607
1608     int rc;
1609     if (USING_WIDE()) {
1610         A2WHELPER(filename, wbuffer, sizeof(wbuffer));
1611         pwbuffer = PerlDir_mapW(wbuffer);
1612         rc = _wutime(pwbuffer, (struct _utimbuf*)times);
1613     }
1614     else {
1615         filename = PerlDir_mapA(filename);
1616         rc = utime(filename, times);
1617     }
1618     /* EACCES: path specifies directory or readonly file */
1619     if (rc == 0 || errno != EACCES /* || !IsWinNT() */)
1620         return rc;
1621
1622     if (times == NULL) {
1623         times = &TimeBuffer;
1624         time(&times->actime);
1625         times->modtime = times->actime;
1626     }
1627
1628     /* This will (and should) still fail on readonly files */
1629     if (USING_WIDE()) {
1630         handle = CreateFileW(pwbuffer, GENERIC_READ | GENERIC_WRITE,
1631                             FILE_SHARE_READ | FILE_SHARE_DELETE, NULL,
1632                             OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
1633     }
1634     else {
1635         handle = CreateFileA(filename, GENERIC_READ | GENERIC_WRITE,
1636                             FILE_SHARE_READ | FILE_SHARE_DELETE, NULL,
1637                             OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
1638     }
1639     if (handle == INVALID_HANDLE_VALUE)
1640         return rc;
1641
1642     if (GetFileTime(handle, &ftCreate, &ftAccess, &ftWrite) &&
1643         filetime_from_time(&ftAccess, times->actime) &&
1644         filetime_from_time(&ftWrite, times->modtime) &&
1645         SetFileTime(handle, &ftCreate, &ftAccess, &ftWrite))
1646     {
1647         rc = 0;
1648     }
1649
1650     CloseHandle(handle);
1651     return rc;
1652 }
1653
1654 typedef union {
1655     unsigned __int64    ft_i64;
1656     FILETIME            ft_val;
1657 } FT_t;
1658
1659 #ifdef __GNUC__
1660 #define Const64(x) x##LL
1661 #else
1662 #define Const64(x) x##i64
1663 #endif
1664 /* Number of 100 nanosecond units from 1/1/1601 to 1/1/1970 */
1665 #define EPOCH_BIAS  Const64(116444736000000000)
1666
1667 /* NOTE: This does not compute the timezone info (doing so can be expensive,
1668  * and appears to be unsupported even by glibc) */
1669 DllExport int
1670 win32_gettimeofday(struct timeval *tp, void *not_used)
1671 {
1672     FT_t ft;
1673
1674     /* this returns time in 100-nanosecond units  (i.e. tens of usecs) */
1675     GetSystemTimeAsFileTime(&ft.ft_val);
1676
1677     /* seconds since epoch */
1678     tp->tv_sec = (long)((ft.ft_i64 - EPOCH_BIAS) / Const64(10000000));
1679
1680     /* microseconds remaining */
1681     tp->tv_usec = (long)((ft.ft_i64 / Const64(10)) % Const64(1000000));
1682
1683     return 0;
1684 }
1685
1686 DllExport int
1687 win32_uname(struct utsname *name)
1688 {
1689     struct hostent *hep;
1690     STRLEN nodemax = sizeof(name->nodename)-1;
1691     OSVERSIONINFO osver;
1692
1693     memset(&osver, 0, sizeof(OSVERSIONINFO));
1694     osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
1695     if (GetVersionEx(&osver)) {
1696         /* sysname */
1697         switch (osver.dwPlatformId) {
1698         case VER_PLATFORM_WIN32_WINDOWS:
1699             strcpy(name->sysname, "Windows");
1700             break;
1701         case VER_PLATFORM_WIN32_NT:
1702             strcpy(name->sysname, "Windows NT");
1703             break;
1704         case VER_PLATFORM_WIN32s:
1705             strcpy(name->sysname, "Win32s");
1706             break;
1707         default:
1708             strcpy(name->sysname, "Win32 Unknown");
1709             break;
1710         }
1711
1712         /* release */
1713         sprintf(name->release, "%d.%d",
1714                 osver.dwMajorVersion, osver.dwMinorVersion);
1715
1716         /* version */
1717         sprintf(name->version, "Build %d",
1718                 osver.dwPlatformId == VER_PLATFORM_WIN32_NT
1719                 ? osver.dwBuildNumber : (osver.dwBuildNumber & 0xffff));
1720         if (osver.szCSDVersion[0]) {
1721             char *buf = name->version + strlen(name->version);
1722             sprintf(buf, " (%s)", osver.szCSDVersion);
1723         }
1724     }
1725     else {
1726         *name->sysname = '\0';
1727         *name->version = '\0';
1728         *name->release = '\0';
1729     }
1730
1731     /* nodename */
1732     hep = win32_gethostbyname("localhost");
1733     if (hep) {
1734         STRLEN len = strlen(hep->h_name);
1735         if (len <= nodemax) {
1736             strcpy(name->nodename, hep->h_name);
1737         }
1738         else {
1739             strncpy(name->nodename, hep->h_name, nodemax);
1740             name->nodename[nodemax] = '\0';
1741         }
1742     }
1743     else {
1744         DWORD sz = nodemax;
1745         if (!GetComputerName(name->nodename, &sz))
1746             *name->nodename = '\0';
1747     }
1748
1749     /* machine (architecture) */
1750     {
1751         SYSTEM_INFO info;
1752         DWORD procarch;
1753         char *arch;
1754         GetSystemInfo(&info);
1755
1756 #if (defined(__BORLANDC__)&&(__BORLANDC__<=0x520)) \
1757  || (defined(__MINGW32__) && !defined(_ANONYMOUS_UNION))
1758         procarch = info.u.s.wProcessorArchitecture;
1759 #else
1760         procarch = info.wProcessorArchitecture;
1761 #endif
1762         switch (procarch) {
1763         case PROCESSOR_ARCHITECTURE_INTEL:
1764             arch = "x86"; break;
1765         case PROCESSOR_ARCHITECTURE_MIPS:
1766             arch = "mips"; break;
1767         case PROCESSOR_ARCHITECTURE_ALPHA:
1768             arch = "alpha"; break;
1769         case PROCESSOR_ARCHITECTURE_PPC:
1770             arch = "ppc"; break;
1771 #ifdef PROCESSOR_ARCHITECTURE_SHX
1772         case PROCESSOR_ARCHITECTURE_SHX:
1773             arch = "shx"; break;
1774 #endif
1775 #ifdef PROCESSOR_ARCHITECTURE_ARM
1776         case PROCESSOR_ARCHITECTURE_ARM:
1777             arch = "arm"; break;
1778 #endif
1779 #ifdef PROCESSOR_ARCHITECTURE_IA64
1780         case PROCESSOR_ARCHITECTURE_IA64:
1781             arch = "ia64"; break;
1782 #endif
1783 #ifdef PROCESSOR_ARCHITECTURE_ALPHA64
1784         case PROCESSOR_ARCHITECTURE_ALPHA64:
1785             arch = "alpha64"; break;
1786 #endif
1787 #ifdef PROCESSOR_ARCHITECTURE_MSIL
1788         case PROCESSOR_ARCHITECTURE_MSIL:
1789             arch = "msil"; break;
1790 #endif
1791 #ifdef PROCESSOR_ARCHITECTURE_AMD64
1792         case PROCESSOR_ARCHITECTURE_AMD64:
1793             arch = "amd64"; break;
1794 #endif
1795 #ifdef PROCESSOR_ARCHITECTURE_IA32_ON_WIN64
1796         case PROCESSOR_ARCHITECTURE_IA32_ON_WIN64:
1797             arch = "ia32-64"; break;
1798 #endif
1799 #ifdef PROCESSOR_ARCHITECTURE_UNKNOWN
1800         case PROCESSOR_ARCHITECTURE_UNKNOWN:
1801             arch = "unknown"; break;
1802 #endif
1803         default:
1804             sprintf(name->machine, "unknown(0x%x)", procarch);
1805             arch = name->machine;
1806             break;
1807         }
1808         if (name->machine != arch)
1809             strcpy(name->machine, arch);
1810     }
1811     return 0;
1812 }
1813
1814 /* Timing related stuff */
1815
1816 int
1817 do_raise(pTHX_ int sig) 
1818 {
1819     if (sig < SIG_SIZE) {
1820         Sighandler_t handler = w32_sighandler[sig];
1821         if (handler == SIG_IGN) {
1822             return 0;
1823         }
1824         else if (handler != SIG_DFL) {
1825             (*handler)(sig);
1826             return 0;
1827         }
1828         else {
1829             /* Choose correct default behaviour */
1830             switch (sig) {
1831 #ifdef SIGCLD
1832                 case SIGCLD:
1833 #endif
1834 #ifdef SIGCHLD
1835                 case SIGCHLD:
1836 #endif
1837                 case 0:
1838                     return 0;
1839                 case SIGTERM:
1840                 default:
1841                     break;
1842             }
1843         }
1844     }
1845     /* Tell caller to exit thread/process as approriate */
1846     return 1;
1847 }
1848
1849 void
1850 sig_terminate(pTHX_ int sig)
1851 {
1852     Perl_warn(aTHX_ "Terminating on signal SIG%s(%d)\n",PL_sig_name[sig], sig);
1853     /* exit() seems to be safe, my_exit() or die() is a problem in ^C 
1854        thread 
1855      */
1856     exit(sig);
1857 }
1858
1859 DllExport int
1860 win32_async_check(pTHX)
1861 {
1862     MSG msg;
1863     int ours = 1;
1864     /* Passing PeekMessage -1 as HWND (2nd arg) only get PostThreadMessage() messages
1865      * and ignores window messages - should co-exist better with windows apps e.g. Tk
1866      */
1867     while (PeekMessage(&msg, (HWND)-1, 0, 0, PM_REMOVE|PM_NOYIELD)) {
1868         int sig;
1869         switch(msg.message) {
1870
1871 #if 0
1872     /* Perhaps some other messages could map to signals ? ... */
1873         case WM_CLOSE:
1874         case WM_QUIT:
1875             /* Treat WM_QUIT like SIGHUP?  */
1876             sig = SIGHUP;
1877             goto Raise;
1878             break;
1879 #endif
1880
1881         /* We use WM_USER to fake kill() with other signals */
1882         case WM_USER: {
1883             sig = msg.wParam;
1884         Raise:
1885             if (do_raise(aTHX_ sig)) {
1886                    sig_terminate(aTHX_ sig);
1887             }
1888             break;
1889         }
1890
1891         case WM_TIMER: {
1892             /* alarm() is a one-shot but SetTimer() repeats so kill it */
1893             if (w32_timerid) {
1894                 KillTimer(NULL,w32_timerid);
1895                 w32_timerid=0;
1896             }
1897             /* Now fake a call to signal handler */
1898             if (do_raise(aTHX_ 14)) {
1899                 sig_terminate(aTHX_ 14);
1900             }
1901             break;
1902         }
1903
1904         /* Otherwise do normal Win32 thing - in case it is useful */
1905         default:
1906             TranslateMessage(&msg);
1907             DispatchMessage(&msg);
1908             ours = 0;
1909             break;
1910         }
1911     }
1912     w32_poll_count = 0;
1913
1914     /* Above or other stuff may have set a signal flag */
1915     if (PL_sig_pending) {
1916         despatch_signals();
1917     }
1918     return ours;
1919 }
1920
1921 DllExport DWORD
1922 win32_msgwait(pTHX_ DWORD count, LPHANDLE handles, DWORD timeout, LPDWORD resultp)
1923 {
1924     /* We may need several goes at this - so compute when we stop */
1925     DWORD ticks = 0;
1926     if (timeout != INFINITE) {
1927         ticks = GetTickCount();
1928         timeout += ticks;
1929     }
1930     while (1) {
1931         DWORD result = MsgWaitForMultipleObjects(count,handles,FALSE,timeout-ticks, QS_ALLEVENTS);
1932         if (resultp)
1933            *resultp = result;
1934         if (result == WAIT_TIMEOUT) {
1935             /* Ran out of time - explicit return of zero to avoid -ve if we
1936                have scheduling issues
1937              */
1938             return 0;
1939         }
1940         if (timeout != INFINITE) {
1941             ticks = GetTickCount();
1942         }
1943         if (result == WAIT_OBJECT_0 + count) {
1944             /* Message has arrived - check it */
1945             if (win32_async_check(aTHX)) {
1946                 /* was one of ours */
1947                 break;
1948             }
1949         }
1950         else {
1951            /* Not timeout or message - one of handles is ready */
1952            break;
1953         }
1954     }
1955     /* compute time left to wait */
1956     ticks = timeout - ticks;
1957     /* If we are past the end say zero */
1958     return (ticks > 0) ? ticks : 0;
1959 }
1960
1961 int
1962 win32_internal_wait(int *status, DWORD timeout)
1963 {
1964     /* XXX this wait emulation only knows about processes
1965      * spawned via win32_spawnvp(P_NOWAIT, ...).
1966      */
1967     dTHX;
1968     int i, retval;
1969     DWORD exitcode, waitcode;
1970
1971 #ifdef USE_ITHREADS
1972     if (w32_num_pseudo_children) {
1973         win32_msgwait(aTHX_ w32_num_pseudo_children, w32_pseudo_child_handles,
1974                       timeout, &waitcode);
1975         /* Time out here if there are no other children to wait for. */
1976         if (waitcode == WAIT_TIMEOUT) {
1977             if (!w32_num_children) {
1978                 return 0;
1979             }
1980         }
1981         else if (waitcode != WAIT_FAILED) {
1982             if (waitcode >= WAIT_ABANDONED_0
1983                 && waitcode < WAIT_ABANDONED_0 + w32_num_pseudo_children)
1984                 i = waitcode - WAIT_ABANDONED_0;
1985             else
1986                 i = waitcode - WAIT_OBJECT_0;
1987             if (GetExitCodeThread(w32_pseudo_child_handles[i], &exitcode)) {
1988                 *status = (int)((exitcode & 0xff) << 8);
1989                 retval = (int)w32_pseudo_child_pids[i];
1990                 remove_dead_pseudo_process(i);
1991                 return -retval;
1992             }
1993         }
1994     }
1995 #endif
1996
1997     if (!w32_num_children) {
1998         errno = ECHILD;
1999         return -1;
2000     }
2001
2002     /* if a child exists, wait for it to die */
2003     win32_msgwait(aTHX_ w32_num_children, w32_child_handles, timeout, &waitcode);
2004     if (waitcode == WAIT_TIMEOUT) {
2005         return 0;
2006     }
2007     if (waitcode != WAIT_FAILED) {
2008         if (waitcode >= WAIT_ABANDONED_0
2009             && waitcode < WAIT_ABANDONED_0 + w32_num_children)
2010             i = waitcode - WAIT_ABANDONED_0;
2011         else
2012             i = waitcode - WAIT_OBJECT_0;
2013         if (GetExitCodeProcess(w32_child_handles[i], &exitcode) ) {
2014             *status = (int)((exitcode & 0xff) << 8);
2015             retval = (int)w32_child_pids[i];
2016             remove_dead_process(i);
2017             return retval;
2018         }
2019     }
2020
2021     errno = GetLastError();
2022     return -1;
2023 }
2024
2025 DllExport int
2026 win32_waitpid(int pid, int *status, int flags)
2027 {
2028     dTHX;
2029     DWORD timeout = (flags & WNOHANG) ? 0 : INFINITE;
2030     int retval = -1;
2031     long child;
2032     if (pid == -1)                              /* XXX threadid == 1 ? */
2033         return win32_internal_wait(status, timeout);
2034 #ifdef USE_ITHREADS
2035     else if (pid < 0) {
2036         child = find_pseudo_pid(-pid);
2037         if (child >= 0) {
2038             HANDLE hThread = w32_pseudo_child_handles[child];
2039             DWORD waitcode;
2040             win32_msgwait(aTHX_ 1, &hThread, timeout, &waitcode);
2041             if (waitcode == WAIT_TIMEOUT) {
2042                 return 0;
2043             }
2044             else if (waitcode == WAIT_OBJECT_0) {
2045                 if (GetExitCodeThread(hThread, &waitcode)) {
2046                     *status = (int)((waitcode & 0xff) << 8);
2047                     retval = (int)w32_pseudo_child_pids[child];
2048                     remove_dead_pseudo_process(child);
2049                     return -retval;
2050                 }
2051             }
2052             else
2053                 errno = ECHILD;
2054         }
2055         else if (IsWin95()) {
2056             pid = -pid;
2057             goto alien_process;
2058         }
2059     }
2060 #endif
2061     else {
2062         HANDLE hProcess;
2063         DWORD waitcode;
2064         child = find_pid(pid);
2065         if (child >= 0) {
2066             hProcess = w32_child_handles[child];
2067             win32_msgwait(aTHX_ 1, &hProcess, timeout, &waitcode);
2068             if (waitcode == WAIT_TIMEOUT) {
2069                 return 0;
2070             }
2071             else if (waitcode == WAIT_OBJECT_0) {
2072                 if (GetExitCodeProcess(hProcess, &waitcode)) {
2073                     *status = (int)((waitcode & 0xff) << 8);
2074                     retval = (int)w32_child_pids[child];
2075                     remove_dead_process(child);
2076                     return retval;
2077                 }
2078             }
2079             else
2080                 errno = ECHILD;
2081         }
2082         else {
2083 alien_process:
2084             hProcess = OpenProcess(PROCESS_ALL_ACCESS, TRUE,
2085                                    (IsWin95() ? -pid : pid));
2086             if (hProcess) {
2087                 win32_msgwait(aTHX_ 1, &hProcess, timeout, &waitcode);
2088                 if (waitcode == WAIT_TIMEOUT) {
2089                     return 0;
2090                 }
2091                 else if (waitcode == WAIT_OBJECT_0) {
2092                     if (GetExitCodeProcess(hProcess, &waitcode)) {
2093                         *status = (int)((waitcode & 0xff) << 8);
2094                         CloseHandle(hProcess);
2095                         return pid;
2096                     }
2097                 }
2098                 CloseHandle(hProcess);
2099             }
2100             else
2101                 errno = ECHILD;
2102         }
2103     }
2104     return retval >= 0 ? pid : retval;
2105 }
2106
2107 DllExport int
2108 win32_wait(int *status)
2109 {
2110     return win32_internal_wait(status, INFINITE);
2111 }
2112
2113 DllExport unsigned int
2114 win32_sleep(unsigned int t)
2115 {
2116     dTHX;
2117     /* Win32 times are in ms so *1000 in and /1000 out */
2118     return win32_msgwait(aTHX_ 0, NULL, t*1000, NULL)/1000;
2119 }
2120
2121 DllExport unsigned int
2122 win32_alarm(unsigned int sec)
2123 {
2124     /*
2125      * the 'obvious' implentation is SetTimer() with a callback
2126      * which does whatever receiving SIGALRM would do
2127      * we cannot use SIGALRM even via raise() as it is not
2128      * one of the supported codes in <signal.h>
2129      */
2130     dTHX;
2131     if (sec) {
2132         w32_timerid = SetTimer(NULL,w32_timerid,sec*1000,NULL);
2133     }
2134     else {
2135         if (w32_timerid) {
2136             KillTimer(NULL,w32_timerid);
2137             w32_timerid=0;
2138         }
2139     }
2140     return 0;
2141 }
2142
2143 #ifdef HAVE_DES_FCRYPT
2144 extern char *   des_fcrypt(const char *txt, const char *salt, char *cbuf);
2145 #endif
2146
2147 DllExport char *
2148 win32_crypt(const char *txt, const char *salt)
2149 {
2150     dTHX;
2151 #ifdef HAVE_DES_FCRYPT
2152     return des_fcrypt(txt, salt, w32_crypt_buffer);
2153 #else
2154     Perl_croak(aTHX_ "The crypt() function is unimplemented due to excessive paranoia.");
2155     return Nullch;
2156 #endif
2157 }
2158
2159 #ifdef USE_FIXED_OSFHANDLE
2160
2161 #define FOPEN                   0x01    /* file handle open */
2162 #define FNOINHERIT              0x10    /* file handle opened O_NOINHERIT */
2163 #define FAPPEND                 0x20    /* file handle opened O_APPEND */
2164 #define FDEV                    0x40    /* file handle refers to device */
2165 #define FTEXT                   0x80    /* file handle is in text mode */
2166
2167 /***
2168 *int my_open_osfhandle(intptr_t osfhandle, int flags) - open C Runtime file handle
2169 *
2170 *Purpose:
2171 *       This function allocates a free C Runtime file handle and associates
2172 *       it with the Win32 HANDLE specified by the first parameter. This is a
2173 *       temperary fix for WIN95's brain damage GetFileType() error on socket
2174 *       we just bypass that call for socket
2175 *
2176 *       This works with MSVC++ 4.0+ or GCC/Mingw32
2177 *
2178 *Entry:
2179 *       intptr_t osfhandle - Win32 HANDLE to associate with C Runtime file handle.
2180 *       int flags      - flags to associate with C Runtime file handle.
2181 *
2182 *Exit:
2183 *       returns index of entry in fh, if successful
2184 *       return -1, if no free entry is found
2185 *
2186 *Exceptions:
2187 *
2188 *******************************************************************************/
2189
2190 /*
2191  * we fake up some parts of the CRT that aren't exported by MSVCRT.dll
2192  * this lets sockets work on Win9X with GCC and should fix the problems
2193  * with perl95.exe
2194  *      -- BKS, 1-23-2000
2195 */
2196
2197 /* create an ioinfo entry, kill its handle, and steal the entry */
2198
2199 static int
2200 _alloc_osfhnd(void)
2201 {
2202     HANDLE hF = CreateFile("NUL", 0, 0, NULL, OPEN_ALWAYS, 0, NULL);
2203     int fh = _open_osfhandle((intptr_t)hF, 0);
2204     CloseHandle(hF);
2205     if (fh == -1)
2206         return fh;
2207     EnterCriticalSection(&(_pioinfo(fh)->lock));
2208     return fh;
2209 }
2210
2211 static int
2212 my_open_osfhandle(intptr_t osfhandle, int flags)
2213 {
2214     int fh;
2215     char fileflags;             /* _osfile flags */
2216
2217     /* copy relevant flags from second parameter */
2218     fileflags = FDEV;
2219
2220     if (flags & O_APPEND)
2221         fileflags |= FAPPEND;
2222
2223     if (flags & O_TEXT)
2224         fileflags |= FTEXT;
2225
2226     if (flags & O_NOINHERIT)
2227         fileflags |= FNOINHERIT;
2228
2229     /* attempt to allocate a C Runtime file handle */
2230     if ((fh = _alloc_osfhnd()) == -1) {
2231         errno = EMFILE;         /* too many open files */
2232         _doserrno = 0L;         /* not an OS error */
2233         return -1;              /* return error to caller */
2234     }
2235
2236     /* the file is open. now, set the info in _osfhnd array */
2237     _set_osfhnd(fh, osfhandle);
2238
2239     fileflags |= FOPEN;         /* mark as open */
2240
2241     _osfile(fh) = fileflags;    /* set osfile entry */
2242     LeaveCriticalSection(&_pioinfo(fh)->lock);
2243
2244     return fh;                  /* return handle */
2245 }
2246
2247 #endif  /* USE_FIXED_OSFHANDLE */
2248
2249 /* simulate flock by locking a range on the file */
2250
2251 #define LK_ERR(f,i)     ((f) ? (i = 0) : (errno = GetLastError()))
2252 #define LK_LEN          0xffff0000
2253
2254 DllExport int
2255 win32_flock(int fd, int oper)
2256 {
2257     OVERLAPPED o;
2258     int i = -1;
2259     HANDLE fh;
2260
2261     if (!IsWinNT()) {
2262         dTHX;
2263         Perl_croak_nocontext("flock() unimplemented on this platform");
2264         return -1;
2265     }
2266     fh = (HANDLE)_get_osfhandle(fd);
2267     memset(&o, 0, sizeof(o));
2268
2269     switch(oper) {
2270     case LOCK_SH:               /* shared lock */
2271         LK_ERR(LockFileEx(fh, 0, 0, LK_LEN, 0, &o),i);
2272         break;
2273     case LOCK_EX:               /* exclusive lock */
2274         LK_ERR(LockFileEx(fh, LOCKFILE_EXCLUSIVE_LOCK, 0, LK_LEN, 0, &o),i);
2275         break;
2276     case LOCK_SH|LOCK_NB:       /* non-blocking shared lock */
2277         LK_ERR(LockFileEx(fh, LOCKFILE_FAIL_IMMEDIATELY, 0, LK_LEN, 0, &o),i);
2278         break;
2279     case LOCK_EX|LOCK_NB:       /* non-blocking exclusive lock */
2280         LK_ERR(LockFileEx(fh,
2281                        LOCKFILE_EXCLUSIVE_LOCK|LOCKFILE_FAIL_IMMEDIATELY,
2282                        0, LK_LEN, 0, &o),i);
2283         break;
2284     case LOCK_UN:               /* unlock lock */
2285         LK_ERR(UnlockFileEx(fh, 0, LK_LEN, 0, &o),i);
2286         break;
2287     default:                    /* unknown */
2288         errno = EINVAL;
2289         break;
2290     }
2291     return i;
2292 }
2293
2294 #undef LK_ERR
2295 #undef LK_LEN
2296
2297 /*
2298  *  redirected io subsystem for all XS modules
2299  *
2300  */
2301
2302 DllExport int *
2303 win32_errno(void)
2304 {
2305     return (&errno);
2306 }
2307
2308 DllExport char ***
2309 win32_environ(void)
2310 {
2311     return (&(_environ));
2312 }
2313
2314 /* the rest are the remapped stdio routines */
2315 DllExport FILE *
2316 win32_stderr(void)
2317 {
2318     return (stderr);
2319 }
2320
2321 DllExport FILE *
2322 win32_stdin(void)
2323 {
2324     return (stdin);
2325 }
2326
2327 DllExport FILE *
2328 win32_stdout()
2329 {
2330     return (stdout);
2331 }
2332
2333 DllExport int
2334 win32_ferror(FILE *fp)
2335 {
2336     return (ferror(fp));
2337 }
2338
2339
2340 DllExport int
2341 win32_feof(FILE *fp)
2342 {
2343     return (feof(fp));
2344 }
2345
2346 /*
2347  * Since the errors returned by the socket error function
2348  * WSAGetLastError() are not known by the library routine strerror
2349  * we have to roll our own.
2350  */
2351
2352 DllExport char *
2353 win32_strerror(int e)
2354 {
2355 #if !defined __BORLANDC__ && !defined __MINGW32__      /* compiler intolerance */
2356     extern int sys_nerr;
2357 #endif
2358     DWORD source = 0;
2359
2360     if (e < 0 || e > sys_nerr) {
2361         dTHX;
2362         if (e < 0)
2363             e = GetLastError();
2364
2365         if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, &source, e, 0,
2366                           w32_strerror_buffer,
2367                           sizeof(w32_strerror_buffer), NULL) == 0)
2368             strcpy(w32_strerror_buffer, "Unknown Error");
2369
2370         return w32_strerror_buffer;
2371     }
2372     return strerror(e);
2373 }
2374
2375 DllExport void
2376 win32_str_os_error(void *sv, DWORD dwErr)
2377 {
2378     DWORD dwLen;
2379     char *sMsg;
2380     dwLen = FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER
2381                           |FORMAT_MESSAGE_IGNORE_INSERTS
2382                           |FORMAT_MESSAGE_FROM_SYSTEM, NULL,
2383                            dwErr, 0, (char *)&sMsg, 1, NULL);
2384     /* strip trailing whitespace and period */
2385     if (0 < dwLen) {
2386         do {
2387             --dwLen;    /* dwLen doesn't include trailing null */
2388         } while (0 < dwLen && isSPACE(sMsg[dwLen]));
2389         if ('.' != sMsg[dwLen])
2390             dwLen++;
2391         sMsg[dwLen] = '\0';
2392     }
2393     if (0 == dwLen) {
2394         sMsg = (char*)LocalAlloc(0, 64/**sizeof(TCHAR)*/);
2395         if (sMsg)
2396             dwLen = sprintf(sMsg,
2397                             "Unknown error #0x%lX (lookup 0x%lX)",
2398                             dwErr, GetLastError());
2399     }
2400     if (sMsg) {
2401         dTHX;
2402         sv_setpvn((SV*)sv, sMsg, dwLen);
2403         LocalFree(sMsg);
2404     }
2405 }
2406
2407 DllExport int
2408 win32_fprintf(FILE *fp, const char *format, ...)
2409 {
2410     va_list marker;
2411     va_start(marker, format);     /* Initialize variable arguments. */
2412
2413     return (vfprintf(fp, format, marker));
2414 }
2415
2416 DllExport int
2417 win32_printf(const char *format, ...)
2418 {
2419     va_list marker;
2420     va_start(marker, format);     /* Initialize variable arguments. */
2421
2422     return (vprintf(format, marker));
2423 }
2424
2425 DllExport int
2426 win32_vfprintf(FILE *fp, const char *format, va_list args)
2427 {
2428     return (vfprintf(fp, format, args));
2429 }
2430
2431 DllExport int
2432 win32_vprintf(const char *format, va_list args)
2433 {
2434     return (vprintf(format, args));
2435 }
2436
2437 DllExport size_t
2438 win32_fread(void *buf, size_t size, size_t count, FILE *fp)
2439 {
2440     return fread(buf, size, count, fp);
2441 }
2442
2443 DllExport size_t
2444 win32_fwrite(const void *buf, size_t size, size_t count, FILE *fp)
2445 {
2446     return fwrite(buf, size, count, fp);
2447 }
2448
2449 #define MODE_SIZE 10
2450
2451 DllExport FILE *
2452 win32_fopen(const char *filename, const char *mode)
2453 {
2454     dTHX;
2455     WCHAR wMode[MODE_SIZE], wBuffer[MAX_PATH+1];
2456     FILE *f;
2457
2458     if (!*filename)
2459         return NULL;
2460
2461     if (stricmp(filename, "/dev/null")==0)
2462         filename = "NUL";
2463
2464     if (USING_WIDE()) {
2465         A2WHELPER(mode, wMode, sizeof(wMode));
2466         A2WHELPER(filename, wBuffer, sizeof(wBuffer));
2467         f = _wfopen(PerlDir_mapW(wBuffer), wMode);
2468     }
2469     else
2470         f = fopen(PerlDir_mapA(filename), mode);
2471     /* avoid buffering headaches for child processes */
2472     if (f && *mode == 'a')
2473         win32_fseek(f, 0, SEEK_END);
2474     return f;
2475 }
2476
2477 #ifndef USE_SOCKETS_AS_HANDLES
2478 #undef fdopen
2479 #define fdopen my_fdopen
2480 #endif
2481
2482 DllExport FILE *
2483 win32_fdopen(int handle, const char *mode)
2484 {
2485     dTHX;
2486     WCHAR wMode[MODE_SIZE];
2487     FILE *f;
2488     if (USING_WIDE()) {
2489         A2WHELPER(mode, wMode, sizeof(wMode));
2490         f = _wfdopen(handle, wMode);
2491     }
2492     else
2493         f = fdopen(handle, (char *) mode);
2494     /* avoid buffering headaches for child processes */
2495     if (f && *mode == 'a')
2496         win32_fseek(f, 0, SEEK_END);
2497     return f;
2498 }
2499
2500 DllExport FILE *
2501 win32_freopen(const char *path, const char *mode, FILE *stream)
2502 {
2503     dTHX;
2504     WCHAR wMode[MODE_SIZE], wBuffer[MAX_PATH+1];
2505     if (stricmp(path, "/dev/null")==0)
2506         path = "NUL";
2507
2508     if (USING_WIDE()) {
2509         A2WHELPER(mode, wMode, sizeof(wMode));
2510         A2WHELPER(path, wBuffer, sizeof(wBuffer));
2511         return _wfreopen(PerlDir_mapW(wBuffer), wMode, stream);
2512     }
2513     return freopen(PerlDir_mapA(path), mode, stream);
2514 }
2515
2516 DllExport int
2517 win32_fclose(FILE *pf)
2518 {
2519     return my_fclose(pf);       /* defined in win32sck.c */
2520 }
2521
2522 DllExport int
2523 win32_fputs(const char *s,FILE *pf)
2524 {
2525     return fputs(s, pf);
2526 }
2527
2528 DllExport int
2529 win32_fputc(int c,FILE *pf)
2530 {
2531     return fputc(c,pf);
2532 }
2533
2534 DllExport int
2535 win32_ungetc(int c,FILE *pf)
2536 {
2537     return ungetc(c,pf);
2538 }
2539
2540 DllExport int
2541 win32_getc(FILE *pf)
2542 {
2543     return getc(pf);
2544 }
2545
2546 DllExport int
2547 win32_fileno(FILE *pf)
2548 {
2549     return fileno(pf);
2550 }
2551
2552 DllExport void
2553 win32_clearerr(FILE *pf)
2554 {
2555     clearerr(pf);
2556     return;
2557 }
2558
2559 DllExport int
2560 win32_fflush(FILE *pf)
2561 {
2562     return fflush(pf);
2563 }
2564
2565 DllExport Off_t
2566 win32_ftell(FILE *pf)
2567 {
2568 #if defined(WIN64) || defined(USE_LARGE_FILES)
2569     fpos_t pos;
2570     if (fgetpos(pf, &pos))
2571         return -1;
2572     return (Off_t)pos;
2573 #else
2574     return ftell(pf);
2575 #endif
2576 }
2577
2578 DllExport int
2579 win32_fseek(FILE *pf, Off_t offset,int origin)
2580 {
2581 #if defined(WIN64) || defined(USE_LARGE_FILES)
2582     fpos_t pos;
2583     switch (origin) {
2584     case SEEK_CUR:
2585         if (fgetpos(pf, &pos))
2586             return -1;
2587         offset += pos;
2588         break;
2589     case SEEK_END:
2590         fseek(pf, 0, SEEK_END);
2591         pos = _telli64(fileno(pf));
2592         offset += pos;
2593         break;
2594     case SEEK_SET:
2595         break;
2596     default:
2597         errno = EINVAL;
2598         return -1;
2599     }
2600     return fsetpos(pf, &offset);
2601 #else
2602     return fseek(pf, offset, origin);
2603 #endif
2604 }
2605
2606 DllExport int
2607 win32_fgetpos(FILE *pf,fpos_t *p)
2608 {
2609     return fgetpos(pf, p);
2610 }
2611
2612 DllExport int
2613 win32_fsetpos(FILE *pf,const fpos_t *p)
2614 {
2615     return fsetpos(pf, p);
2616 }
2617
2618 DllExport void
2619 win32_rewind(FILE *pf)
2620 {
2621     rewind(pf);
2622     return;
2623 }
2624
2625 DllExport FILE*
2626 win32_tmpfile(void)
2627 {
2628     dTHX;
2629     char prefix[MAX_PATH+1];
2630     char filename[MAX_PATH+1];
2631     DWORD len = GetTempPath(MAX_PATH, prefix);
2632     if (len && len < MAX_PATH) {
2633         if (GetTempFileName(prefix, "plx", 0, filename)) {
2634             HANDLE fh = CreateFile(filename,
2635                                    DELETE | GENERIC_READ | GENERIC_WRITE,
2636                                    0,
2637                                    NULL,
2638                                    CREATE_ALWAYS,
2639                                    FILE_ATTRIBUTE_NORMAL
2640                                    | FILE_FLAG_DELETE_ON_CLOSE,
2641                                    NULL);
2642             if (fh != INVALID_HANDLE_VALUE) {
2643                 int fd = win32_open_osfhandle((intptr_t)fh, 0);
2644                 if (fd >= 0) {
2645 #if defined(__BORLANDC__)
2646                     setmode(fd,O_BINARY);
2647 #endif
2648                     DEBUG_p(PerlIO_printf(Perl_debug_log,
2649                                           "Created tmpfile=%s\n",filename));
2650                     return fdopen(fd, "w+b");
2651                 }
2652             }
2653         }
2654     }
2655     return NULL;
2656 }
2657
2658 DllExport void
2659 win32_abort(void)
2660 {
2661     abort();
2662     return;
2663 }
2664
2665 DllExport int
2666 win32_fstat(int fd, Stat_t *sbufptr)
2667 {
2668 #ifdef __BORLANDC__
2669     /* A file designated by filehandle is not shown as accessible
2670      * for write operations, probably because it is opened for reading.
2671      * --Vadim Konovalov
2672      */
2673     int rc = fstat(fd,sbufptr);
2674     BY_HANDLE_FILE_INFORMATION bhfi;
2675     if (GetFileInformationByHandle((HANDLE)_get_osfhandle(fd), &bhfi)) {
2676         sbufptr->st_mode &= 0xFE00;
2677         if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)
2678             sbufptr->st_mode |= (S_IREAD + (S_IREAD >> 3) + (S_IREAD >> 6));
2679         else
2680             sbufptr->st_mode |= ((S_IREAD|S_IWRITE) + ((S_IREAD|S_IWRITE) >> 3)
2681               + ((S_IREAD|S_IWRITE) >> 6));
2682     }
2683     return rc;
2684 #else
2685     return my_fstat(fd,sbufptr);
2686 #endif
2687 }
2688
2689 DllExport int
2690 win32_pipe(int *pfd, unsigned int size, int mode)
2691 {
2692     return _pipe(pfd, size, mode);
2693 }
2694
2695 DllExport PerlIO*
2696 win32_popenlist(const char *mode, IV narg, SV **args)
2697 {
2698  dTHX;
2699  Perl_croak(aTHX_ "List form of pipe open not implemented");
2700  return NULL;
2701 }
2702
2703 /*
2704  * a popen() clone that respects PERL5SHELL
2705  *
2706  * changed to return PerlIO* rather than FILE * by BKS, 11-11-2000
2707  */
2708
2709 DllExport PerlIO*
2710 win32_popen(const char *command, const char *mode)
2711 {
2712 #ifdef USE_RTL_POPEN
2713     return _popen(command, mode);
2714 #else
2715     dTHX;
2716     int p[2];
2717     int parent, child;
2718     int stdfd, oldfd;
2719     int ourmode;
2720     int childpid;
2721
2722     /* establish which ends read and write */
2723     if (strchr(mode,'w')) {
2724         stdfd = 0;              /* stdin */
2725         parent = 1;
2726         child = 0;
2727     }
2728     else if (strchr(mode,'r')) {
2729         stdfd = 1;              /* stdout */
2730         parent = 0;
2731         child = 1;
2732     }
2733     else
2734         return NULL;
2735
2736     /* set the correct mode */
2737     if (strchr(mode,'b'))
2738         ourmode = O_BINARY;
2739     else if (strchr(mode,'t'))
2740         ourmode = O_TEXT;
2741     else
2742         ourmode = _fmode & (O_TEXT | O_BINARY);
2743
2744     /* the child doesn't inherit handles */
2745     ourmode |= O_NOINHERIT;
2746
2747     if (win32_pipe( p, 512, ourmode) == -1)
2748         return NULL;
2749
2750     /* save current stdfd */
2751     if ((oldfd = win32_dup(stdfd)) == -1)
2752         goto cleanup;
2753
2754     /* make stdfd go to child end of pipe (implicitly closes stdfd) */
2755     /* stdfd will be inherited by the child */
2756     if (win32_dup2(p[child], stdfd) == -1)
2757         goto cleanup;
2758
2759     /* close the child end in parent */
2760     win32_close(p[child]);
2761
2762     /* start the child */
2763     {
2764         dTHX;
2765         if ((childpid = do_spawn_nowait((char*)command)) == -1)
2766             goto cleanup;
2767
2768         /* revert stdfd to whatever it was before */
2769         if (win32_dup2(oldfd, stdfd) == -1)
2770             goto cleanup;
2771
2772         /* close saved handle */
2773         win32_close(oldfd);
2774
2775         LOCK_FDPID_MUTEX;
2776         sv_setiv(*av_fetch(w32_fdpid, p[parent], TRUE), childpid);
2777         UNLOCK_FDPID_MUTEX;
2778
2779         /* set process id so that it can be returned by perl's open() */
2780         PL_forkprocess = childpid;
2781     }
2782
2783     /* we have an fd, return a file stream */
2784     return (PerlIO_fdopen(p[parent], (char *)mode));
2785
2786 cleanup:
2787     /* we don't need to check for errors here */
2788     win32_close(p[0]);
2789     win32_close(p[1]);
2790     if (oldfd != -1) {
2791         win32_dup2(oldfd, stdfd);
2792         win32_close(oldfd);
2793     }
2794     return (NULL);
2795
2796 #endif /* USE_RTL_POPEN */
2797 }
2798
2799 /*
2800  * pclose() clone
2801  */
2802
2803 DllExport int
2804 win32_pclose(PerlIO *pf)
2805 {
2806 #ifdef USE_RTL_POPEN
2807     return _pclose(pf);
2808 #else
2809     dTHX;
2810     int childpid, status;
2811     SV *sv;
2812
2813     LOCK_FDPID_MUTEX;
2814     sv = *av_fetch(w32_fdpid, PerlIO_fileno(pf), TRUE);
2815
2816     if (SvIOK(sv))
2817         childpid = SvIVX(sv);
2818     else
2819         childpid = 0;
2820
2821     if (!childpid) {
2822         errno = EBADF;
2823         return -1;
2824     }
2825
2826 #ifdef USE_PERLIO
2827     PerlIO_close(pf);
2828 #else
2829     fclose(pf);
2830 #endif
2831     SvIVX(sv) = 0;
2832     UNLOCK_FDPID_MUTEX;
2833
2834     if (win32_waitpid(childpid, &status, 0) == -1)
2835         return -1;
2836
2837     return status;
2838
2839 #endif /* USE_RTL_POPEN */
2840 }
2841
2842 static BOOL WINAPI
2843 Nt4CreateHardLinkW(
2844     LPCWSTR lpFileName,
2845     LPCWSTR lpExistingFileName,
2846     LPSECURITY_ATTRIBUTES lpSecurityAttributes)
2847 {
2848     HANDLE handle;
2849     WCHAR wFullName[MAX_PATH+1];
2850     LPVOID lpContext = NULL;
2851     WIN32_STREAM_ID StreamId;
2852     DWORD dwSize = (char*)&StreamId.cStreamName - (char*)&StreamId;
2853     DWORD dwWritten;
2854     DWORD dwLen;
2855     BOOL bSuccess;
2856
2857     BOOL (__stdcall *pfnBackupWrite)(HANDLE, LPBYTE, DWORD, LPDWORD,
2858                                      BOOL, BOOL, LPVOID*) =
2859         (BOOL (__stdcall *)(HANDLE, LPBYTE, DWORD, LPDWORD,
2860                             BOOL, BOOL, LPVOID*))
2861         GetProcAddress(GetModuleHandle("kernel32.dll"), "BackupWrite");
2862     if (pfnBackupWrite == NULL)
2863         return 0;
2864
2865     dwLen = GetFullPathNameW(lpFileName, MAX_PATH, wFullName, NULL);
2866     if (dwLen == 0)
2867         return 0;
2868     dwLen = (dwLen+1)*sizeof(WCHAR);
2869
2870     handle = CreateFileW(lpExistingFileName, FILE_WRITE_ATTRIBUTES,
2871                          FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
2872                          NULL, OPEN_EXISTING, 0, NULL);
2873     if (handle == INVALID_HANDLE_VALUE)
2874         return 0;
2875
2876     StreamId.dwStreamId = BACKUP_LINK;
2877     StreamId.dwStreamAttributes = 0;
2878     StreamId.dwStreamNameSize = 0;
2879 #if defined(__BORLANDC__) \
2880  ||(defined(__MINGW32__) && !defined(_ANONYMOUS_UNION))
2881     StreamId.Size.u.HighPart = 0;
2882     StreamId.Size.u.LowPart = dwLen;
2883 #else
2884     StreamId.Size.HighPart = 0;
2885     StreamId.Size.LowPart = dwLen;
2886 #endif
2887
2888     bSuccess = pfnBackupWrite(handle, (LPBYTE)&StreamId, dwSize, &dwWritten,
2889                               FALSE, FALSE, &lpContext);
2890     if (bSuccess) {
2891         bSuccess = pfnBackupWrite(handle, (LPBYTE)wFullName, dwLen, &dwWritten,
2892                                   FALSE, FALSE, &lpContext);
2893         pfnBackupWrite(handle, NULL, 0, &dwWritten, TRUE, FALSE, &lpContext);
2894     }
2895
2896     CloseHandle(handle);
2897     return bSuccess;
2898 }
2899
2900 DllExport int
2901 win32_link(const char *oldname, const char *newname)
2902 {
2903     dTHX;
2904     BOOL (__stdcall *pfnCreateHardLinkW)(LPCWSTR,LPCWSTR,LPSECURITY_ATTRIBUTES);
2905     WCHAR wOldName[MAX_PATH+1];
2906     WCHAR wNewName[MAX_PATH+1];
2907
2908     if (IsWin95())
2909         Perl_croak(aTHX_ PL_no_func, "link");
2910
2911     pfnCreateHardLinkW =
2912         (BOOL (__stdcall *)(LPCWSTR, LPCWSTR, LPSECURITY_ATTRIBUTES))
2913         GetProcAddress(GetModuleHandle("kernel32.dll"), "CreateHardLinkW");
2914     if (pfnCreateHardLinkW == NULL)
2915         pfnCreateHardLinkW = Nt4CreateHardLinkW;
2916
2917     if ((A2WHELPER(oldname, wOldName, sizeof(wOldName))) &&
2918         (A2WHELPER(newname, wNewName, sizeof(wNewName))) &&
2919         (wcscpy(wOldName, PerlDir_mapW(wOldName)),
2920         pfnCreateHardLinkW(PerlDir_mapW(wNewName), wOldName, NULL)))
2921     {
2922         return 0;
2923     }
2924     errno = (GetLastError() == ERROR_FILE_NOT_FOUND) ? ENOENT : EINVAL;
2925     return -1;
2926 }
2927
2928 DllExport int
2929 win32_rename(const char *oname, const char *newname)
2930 {
2931     WCHAR wOldName[MAX_PATH+1];
2932     WCHAR wNewName[MAX_PATH+1];
2933     char szOldName[MAX_PATH+1];
2934     char szNewName[MAX_PATH+1];
2935     BOOL bResult;
2936     dTHX;
2937
2938     /* XXX despite what the documentation says about MoveFileEx(),
2939      * it doesn't work under Windows95!
2940      */
2941     if (IsWinNT()) {
2942         DWORD dwFlags = MOVEFILE_COPY_ALLOWED;
2943         if (USING_WIDE()) {
2944             A2WHELPER(oname, wOldName, sizeof(wOldName));
2945             A2WHELPER(newname, wNewName, sizeof(wNewName));
2946             if (wcsicmp(wNewName, wOldName))
2947                 dwFlags |= MOVEFILE_REPLACE_EXISTING;
2948             wcscpy(wOldName, PerlDir_mapW(wOldName));
2949             bResult = MoveFileExW(wOldName,PerlDir_mapW(wNewName), dwFlags);
2950         }
2951         else {
2952             if (stricmp(newname, oname))
2953                 dwFlags |= MOVEFILE_REPLACE_EXISTING;
2954             strcpy(szOldName, PerlDir_mapA(oname));
2955             bResult = MoveFileExA(szOldName,PerlDir_mapA(newname), dwFlags);
2956         }
2957         if (!bResult) {
2958             DWORD err = GetLastError();
2959             switch (err) {
2960             case ERROR_BAD_NET_NAME:
2961             case ERROR_BAD_NETPATH:
2962             case ERROR_BAD_PATHNAME:
2963             case ERROR_FILE_NOT_FOUND:
2964             case ERROR_FILENAME_EXCED_RANGE:
2965             case ERROR_INVALID_DRIVE:
2966             case ERROR_NO_MORE_FILES:
2967             case ERROR_PATH_NOT_FOUND:
2968                 errno = ENOENT;
2969                 break;
2970             default:
2971                 errno = EACCES;
2972                 break;
2973             }
2974             return -1;
2975         }
2976         return 0;
2977     }
2978     else {
2979         int retval = 0;
2980         char szTmpName[MAX_PATH+1];
2981         char dname[MAX_PATH+1];
2982         char *endname = Nullch;
2983         STRLEN tmplen = 0;
2984         DWORD from_attr, to_attr;
2985
2986         strcpy(szOldName, PerlDir_mapA(oname));
2987         strcpy(szNewName, PerlDir_mapA(newname));
2988
2989         /* if oname doesn't exist, do nothing */
2990         from_attr = GetFileAttributes(szOldName);
2991         if (from_attr == 0xFFFFFFFF) {
2992             errno = ENOENT;
2993             return -1;
2994         }
2995
2996         /* if newname exists, rename it to a temporary name so that we
2997          * don't delete it in case oname happens to be the same file
2998          * (but perhaps accessed via a different path)
2999          */
3000         to_attr = GetFileAttributes(szNewName);
3001         if (to_attr != 0xFFFFFFFF) {
3002             /* if newname is a directory, we fail
3003              * XXX could overcome this with yet more convoluted logic */
3004             if (to_attr & FILE_ATTRIBUTE_DIRECTORY) {
3005                 errno = EACCES;
3006                 return -1;
3007             }
3008             tmplen = strlen(szNewName);
3009             strcpy(szTmpName,szNewName);
3010             endname = szTmpName+tmplen;
3011             for (; endname > szTmpName ; --endname) {
3012                 if (*endname == '/' || *endname == '\\') {
3013                     *endname = '\0';
3014                     break;
3015                 }
3016             }
3017             if (endname > szTmpName)
3018                 endname = strcpy(dname,szTmpName);
3019             else
3020                 endname = ".";
3021
3022             /* get a temporary filename in same directory
3023              * XXX is this really the best we can do? */
3024             if (!GetTempFileName((LPCTSTR)endname, "plr", 0, szTmpName)) {
3025                 errno = ENOENT;
3026                 return -1;
3027             }
3028             DeleteFile(szTmpName);
3029
3030             retval = rename(szNewName, szTmpName);
3031             if (retval != 0) {
3032                 errno = EACCES;
3033                 return retval;
3034             }
3035         }
3036
3037         /* rename oname to newname */
3038         retval = rename(szOldName, szNewName);
3039
3040         /* if we created a temporary file before ... */
3041         if (endname != Nullch) {
3042             /* ...and rename succeeded, delete temporary file/directory */
3043             if (retval == 0)
3044                 DeleteFile(szTmpName);
3045             /* else restore it to what it was */
3046             else
3047                 (void)rename(szTmpName, szNewName);
3048         }
3049         return retval;
3050     }
3051 }
3052
3053 DllExport int
3054 win32_setmode(int fd, int mode)
3055 {
3056     return setmode(fd, mode);
3057 }
3058
3059 DllExport Off_t
3060 win32_lseek(int fd, Off_t offset, int origin)
3061 {
3062 #if defined(WIN64) || defined(USE_LARGE_FILES)
3063     return _lseeki64(fd, offset, origin);
3064 #else
3065     return lseek(fd, offset, origin);
3066 #endif
3067 }
3068
3069 DllExport Off_t
3070 win32_tell(int fd)
3071 {
3072 #if defined(WIN64) || defined(USE_LARGE_FILES)
3073     return _telli64(fd);
3074 #else
3075     return tell(fd);
3076 #endif
3077 }
3078
3079 DllExport int
3080 win32_open(const char *path, int flag, ...)
3081 {
3082     dTHX;
3083     va_list ap;
3084     int pmode;
3085     WCHAR wBuffer[MAX_PATH+1];
3086
3087     va_start(ap, flag);
3088     pmode = va_arg(ap, int);
3089     va_end(ap);
3090
3091     if (stricmp(path, "/dev/null")==0)
3092         path = "NUL";
3093
3094     if (USING_WIDE()) {
3095         A2WHELPER(path, wBuffer, sizeof(wBuffer));
3096         return _wopen(PerlDir_mapW(wBuffer), flag, pmode);
3097     }
3098     return open(PerlDir_mapA(path), flag, pmode);
3099 }
3100
3101 /* close() that understands socket */
3102 extern int my_close(int);       /* in win32sck.c */
3103
3104 DllExport int
3105 win32_close(int fd)
3106 {
3107     return my_close(fd);
3108 }
3109
3110 DllExport int
3111 win32_eof(int fd)
3112 {
3113     return eof(fd);
3114 }
3115
3116 DllExport int
3117 win32_dup(int fd)
3118 {
3119     return dup(fd);
3120 }
3121
3122 DllExport int
3123 win32_dup2(int fd1,int fd2)
3124 {
3125     return dup2(fd1,fd2);
3126 }
3127
3128 #ifdef PERL_MSVCRT_READFIX
3129
3130 #define LF              10      /* line feed */
3131 #define CR              13      /* carriage return */
3132 #define CTRLZ           26      /* ctrl-z means eof for text */
3133 #define FOPEN           0x01    /* file handle open */
3134 #define FEOFLAG         0x02    /* end of file has been encountered */
3135 #define FCRLF           0x04    /* CR-LF across read buffer (in text mode) */
3136 #define FPIPE           0x08    /* file handle refers to a pipe */
3137 #define FAPPEND         0x20    /* file handle opened O_APPEND */
3138 #define FDEV            0x40    /* file handle refers to device */
3139 #define FTEXT           0x80    /* file handle is in text mode */
3140 #define MAX_DESCRIPTOR_COUNT    (64*32) /* this is the maximun that MSVCRT can handle */
3141
3142 int __cdecl
3143 _fixed_read(int fh, void *buf, unsigned cnt)
3144 {
3145     int bytes_read;                 /* number of bytes read */
3146     char *buffer;                   /* buffer to read to */
3147     int os_read;                    /* bytes read on OS call */
3148     char *p, *q;                    /* pointers into buffer */
3149     char peekchr;                   /* peek-ahead character */
3150     ULONG filepos;                  /* file position after seek */
3151     ULONG dosretval;                /* o.s. return value */
3152
3153     /* validate handle */
3154     if (((unsigned)fh >= (unsigned)MAX_DESCRIPTOR_COUNT) ||
3155          !(_osfile(fh) & FOPEN))
3156     {
3157         /* out of range -- return error */
3158         errno = EBADF;
3159         _doserrno = 0;  /* not o.s. error */
3160         return -1;
3161     }
3162
3163     /*
3164      * If lockinitflag is FALSE, assume fd is device
3165      * lockinitflag is set to TRUE by open.
3166      */
3167     if (_pioinfo(fh)->lockinitflag)
3168         EnterCriticalSection(&(_pioinfo(fh)->lock));  /* lock file */
3169
3170     bytes_read = 0;                 /* nothing read yet */
3171     buffer = (char*)buf;
3172
3173     if (cnt == 0 || (_osfile(fh) & FEOFLAG)) {
3174         /* nothing to read or at EOF, so return 0 read */
3175         goto functionexit;
3176     }
3177
3178     if ((_osfile(fh) & (FPIPE|FDEV)) && _pipech(fh) != LF) {
3179         /* a pipe/device and pipe lookahead non-empty: read the lookahead
3180          * char */
3181         *buffer++ = _pipech(fh);
3182         ++bytes_read;
3183         --cnt;
3184         _pipech(fh) = LF;           /* mark as empty */
3185     }
3186
3187     /* read the data */
3188
3189     if (!ReadFile((HANDLE)_osfhnd(fh), buffer, cnt, (LPDWORD)&os_read, NULL))
3190     {
3191         /* ReadFile has reported an error. recognize two special cases.
3192          *
3193          *      1. map ERROR_ACCESS_DENIED to EBADF
3194          *
3195          *      2. just return 0 if ERROR_BROKEN_PIPE has occurred. it
3196          *         means the handle is a read-handle on a pipe for which
3197          *         all write-handles have been closed and all data has been
3198          *         read. */
3199
3200         if ((dosretval = GetLastError()) == ERROR_ACCESS_DENIED) {
3201             /* wrong read/write mode should return EBADF, not EACCES */
3202             errno = EBADF;
3203             _doserrno = dosretval;
3204             bytes_read = -1;
3205             goto functionexit;
3206         }
3207         else if (dosretval == ERROR_BROKEN_PIPE) {
3208             bytes_read = 0;
3209             goto functionexit;
3210         }
3211         else {
3212             bytes_read = -1;
3213             goto functionexit;
3214         }
3215     }
3216
3217     bytes_read += os_read;          /* update bytes read */
3218
3219     if (_osfile(fh) & FTEXT) {
3220         /* now must translate CR-LFs to LFs in the buffer */
3221
3222         /* set CRLF flag to indicate LF at beginning of buffer */
3223         /* if ((os_read != 0) && (*(char *)buf == LF))   */
3224         /*    _osfile(fh) |= FCRLF;                      */
3225         /* else                                          */
3226         /*    _osfile(fh) &= ~FCRLF;                     */
3227
3228         _osfile(fh) &= ~FCRLF;
3229
3230         /* convert chars in the buffer: p is src, q is dest */
3231         p = q = (char*)buf;
3232         while (p < (char *)buf + bytes_read) {
3233             if (*p == CTRLZ) {
3234                 /* if fh is not a device, set ctrl-z flag */
3235                 if (!(_osfile(fh) & FDEV))
3236                     _osfile(fh) |= FEOFLAG;
3237                 break;              /* stop translating */
3238             }
3239             else if (*p != CR)
3240                 *q++ = *p++;
3241             else {
3242                 /* *p is CR, so must check next char for LF */
3243                 if (p < (char *)buf + bytes_read - 1) {
3244                     if (*(p+1) == LF) {
3245                         p += 2;
3246                         *q++ = LF;  /* convert CR-LF to LF */
3247                     }
3248                     else
3249                         *q++ = *p++;    /* store char normally */
3250                 }
3251                 else {
3252                     /* This is the hard part.  We found a CR at end of
3253                        buffer.  We must peek ahead to see if next char
3254                        is an LF. */
3255                     ++p;
3256
3257                     dosretval = 0;
3258                     if (!ReadFile((HANDLE)_osfhnd(fh), &peekchr, 1,
3259                                     (LPDWORD)&os_read, NULL))
3260                         dosretval = GetLastError();
3261
3262                     if (dosretval != 0 || os_read == 0) {
3263                         /* couldn't read ahead, store CR */
3264                         *q++ = CR;
3265                     }
3266                     else {
3267                         /* peekchr now has the extra character -- we now
3268                            have several possibilities:
3269                            1. disk file and char is not LF; just seek back
3270                               and copy CR
3271                            2. disk file and char is LF; store LF, don't seek back
3272                            3. pipe/device and char is LF; store LF.
3273                            4. pipe/device and char isn't LF, store CR and
3274                               put char in pipe lookahead buffer. */
3275                         if (_osfile(fh) & (FDEV|FPIPE)) {
3276                             /* non-seekable device */
3277                             if (peekchr == LF)
3278                                 *q++ = LF;
3279                             else {
3280                                 *q++ = CR;
3281                                 _pipech(fh) = peekchr;
3282                             }
3283                         }
3284                         else {
3285                             /* disk file */
3286                             if (peekchr == LF) {
3287                                 /* nothing read yet; must make some
3288                                    progress */
3289                                 *q++ = LF;
3290                                 /* turn on this flag for tell routine */
3291                                 _osfile(fh) |= FCRLF;
3292                             }
3293                             else {
3294                                 HANDLE osHandle;        /* o.s. handle value */
3295                                 /* seek back */
3296                                 if ((osHandle = (HANDLE)_get_osfhandle(fh)) != (HANDLE)-1)
3297                                 {
3298                                     if ((filepos = SetFilePointer(osHandle, -1, NULL, FILE_CURRENT)) == -1)
3299                                         dosretval = GetLastError();
3300                                 }
3301                                 if (peekchr != LF)
3302                                     *q++ = CR;
3303                             }
3304                         }
3305                     }
3306                 }
3307             }
3308         }
3309
3310         /* we now change bytes_read to reflect the true number of chars
3311            in the buffer */
3312         bytes_read = q - (char *)buf;
3313     }
3314
3315 functionexit:
3316     if (_pioinfo(fh)->lockinitflag)
3317         LeaveCriticalSection(&(_pioinfo(fh)->lock));    /* unlock file */
3318
3319     return bytes_read;
3320 }
3321
3322 #endif  /* PERL_MSVCRT_READFIX */
3323
3324 DllExport int
3325 win32_read(int fd, void *buf, unsigned int cnt)
3326 {
3327 #ifdef PERL_MSVCRT_READFIX
3328     return _fixed_read(fd, buf, cnt);
3329 #else
3330     return read(fd, buf, cnt);
3331 #endif
3332 }
3333
3334 DllExport int
3335 win32_write(int fd, const void *buf, unsigned int cnt)
3336 {
3337     return write(fd, buf, cnt);
3338 }
3339
3340 DllExport int
3341 win32_mkdir(const char *dir, int mode)
3342 {
3343     dTHX;
3344     if (USING_WIDE()) {
3345         WCHAR wBuffer[MAX_PATH+1];
3346         A2WHELPER(dir, wBuffer, sizeof(wBuffer));
3347         return _wmkdir(PerlDir_mapW(wBuffer));
3348     }
3349     return mkdir(PerlDir_mapA(dir)); /* just ignore mode */
3350 }
3351
3352 DllExport int
3353 win32_rmdir(const char *dir)
3354 {
3355     dTHX;
3356     if (USING_WIDE()) {
3357         WCHAR wBuffer[MAX_PATH+1];
3358         A2WHELPER(dir, wBuffer, sizeof(wBuffer));
3359         return _wrmdir(PerlDir_mapW(wBuffer));
3360     }
3361     return rmdir(PerlDir_mapA(dir));
3362 }
3363
3364 DllExport int
3365 win32_chdir(const char *dir)
3366 {
3367     dTHX;
3368     if (!dir) {
3369         errno = ENOENT;
3370         return -1;
3371     }
3372     if (USING_WIDE()) {
3373         WCHAR wBuffer[MAX_PATH+1];
3374         A2WHELPER(dir, wBuffer, sizeof(wBuffer));
3375         return _wchdir(wBuffer);
3376     }
3377     return chdir(dir);
3378 }
3379
3380 DllExport  int
3381 win32_access(const char *path, int mode)
3382 {
3383     dTHX;
3384     if (USING_WIDE()) {
3385         WCHAR wBuffer[MAX_PATH+1];
3386         A2WHELPER(path, wBuffer, sizeof(wBuffer));
3387         return _waccess(PerlDir_mapW(wBuffer), mode);
3388     }
3389     return access(PerlDir_mapA(path), mode);
3390 }
3391
3392 DllExport  int
3393 win32_chmod(const char *path, int mode)
3394 {
3395     dTHX;
3396     if (USING_WIDE()) {
3397         WCHAR wBuffer[MAX_PATH+1];
3398         A2WHELPER(path, wBuffer, sizeof(wBuffer));
3399         return _wchmod(PerlDir_mapW(wBuffer), mode);
3400     }
3401     return chmod(PerlDir_mapA(path), mode);
3402 }
3403
3404
3405 static char *
3406 create_command_line(char *cname, STRLEN clen, const char * const *args)
3407 {
3408     dTHX;
3409     int index, argc;
3410     char *cmd, *ptr;
3411     const char *arg;
3412     STRLEN len = 0;
3413     bool bat_file = FALSE;
3414     bool cmd_shell = FALSE;
3415     bool dumb_shell = FALSE;
3416     bool extra_quotes = FALSE;
3417     bool quote_next = FALSE;
3418
3419     if (!cname)
3420         cname = (char*)args[0];
3421
3422     /* The NT cmd.exe shell has the following peculiarity that needs to be
3423      * worked around.  It strips a leading and trailing dquote when any
3424      * of the following is true:
3425      *    1. the /S switch was used
3426      *    2. there are more than two dquotes
3427      *    3. there is a special character from this set: &<>()@^|
3428      *    4. no whitespace characters within the two dquotes
3429      *    5. string between two dquotes isn't an executable file
3430      * To work around this, we always add a leading and trailing dquote
3431      * to the string, if the first argument is either "cmd.exe" or "cmd",
3432      * and there were at least two or more arguments passed to cmd.exe
3433      * (not including switches).
3434      * XXX the above rules (from "cmd /?") don't seem to be applied
3435      * always, making for the convolutions below :-(
3436      */
3437     if (cname) {
3438         if (!clen)
3439             clen = strlen(cname);
3440
3441         if (clen > 4
3442             && (stricmp(&cname[clen-4], ".bat") == 0
3443                 || (IsWinNT() && stricmp(&cname[clen-4], ".cmd") == 0)))
3444         {
3445             bat_file = TRUE;
3446             len += 3;
3447         }
3448         else {
3449             char *exe = strrchr(cname, '/');
3450             char *exe2 = strrchr(cname, '\\');
3451             if (exe2 > exe)
3452                 exe = exe2;
3453             if (exe)
3454                 ++exe;
3455             else
3456                 exe = cname;
3457             if (stricmp(exe, "cmd.exe") == 0 || stricmp(exe, "cmd") == 0) {
3458                 cmd_shell = TRUE;
3459                 len += 3;
3460             }
3461             else if (stricmp(exe, "command.com") == 0
3462                      || stricmp(exe, "command") == 0)
3463             {
3464                 dumb_shell = TRUE;
3465             }
3466         }
3467     }
3468
3469     DEBUG_p(PerlIO_printf(Perl_debug_log, "Args "));
3470     for (index = 0; (arg = (char*)args[index]) != NULL; ++index) {
3471         STRLEN curlen = strlen(arg);
3472         if (!(arg[0] == '"' && arg[curlen-1] == '"'))
3473             len += 2;   /* assume quoting needed (worst case) */
3474         len += curlen + 1;
3475         DEBUG_p(PerlIO_printf(Perl_debug_log, "[%s]",arg));
3476     }
3477     DEBUG_p(PerlIO_printf(Perl_debug_log, "\n"));
3478
3479     argc = index;
3480     New(1310, cmd, len, char);
3481     ptr = cmd;
3482
3483     if (bat_file) {
3484         *ptr++ = '"';
3485         extra_quotes = TRUE;
3486     }
3487
3488     for (index = 0; (arg = (char*)args[index]) != NULL; ++index) {
3489         bool do_quote = 0;
3490         STRLEN curlen = strlen(arg);
3491
3492         /* we want to protect empty arguments and ones with spaces with
3493          * dquotes, but only if they aren't already there */
3494         if (!dumb_shell) {
3495             if (!curlen) {
3496                 do_quote = 1;
3497             }
3498             else if (quote_next) {
3499                 /* see if it really is multiple arguments pretending to
3500                  * be one and force a set of quotes around it */
3501                 if (*find_next_space(arg))
3502                     do_quote = 1;
3503             }
3504             else if (!(arg[0] == '"' && curlen > 1 && arg[curlen-1] == '"')) {
3505                 STRLEN i = 0;
3506                 while (i < curlen) {
3507                     if (isSPACE(arg[i])) {
3508                         do_quote = 1;
3509                     }
3510                     else if (arg[i] == '"') {
3511                         do_quote = 0;
3512                         break;
3513                     }
3514                     i++;
3515                 }
3516             }
3517         }
3518
3519         if (do_quote)
3520             *ptr++ = '"';
3521
3522         strcpy(ptr, arg);
3523         ptr += curlen;
3524
3525         if (do_quote)
3526             *ptr++ = '"';
3527
3528         if (args[index+1])
3529             *ptr++ = ' ';
3530
3531         if (!extra_quotes
3532             && cmd_shell
3533             && (stricmp(arg, "/x/c") == 0 || stricmp(arg, "/c") == 0))
3534         {
3535             /* is there a next argument? */
3536             if (args[index+1]) {
3537                 /* are there two or more next arguments? */
3538                 if (args[index+2]) {
3539                     *ptr++ = '"';
3540                     extra_quotes = TRUE;
3541                 }
3542                 else {
3543                     /* single argument, force quoting if it has spaces */
3544                     quote_next = TRUE;
3545                 }
3546             }
3547         }
3548     }
3549
3550     if (extra_quotes)
3551         *ptr++ = '"';
3552
3553     *ptr = '\0';
3554
3555     return cmd;
3556 }
3557
3558 static char *
3559 qualified_path(const char *cmd)
3560 {
3561     dTHX;
3562     char *pathstr;
3563     char *fullcmd, *curfullcmd;
3564     STRLEN cmdlen = 0;
3565     int has_slash = 0;
3566
3567     if (!cmd)
3568         return Nullch;
3569     fullcmd = (char*)cmd;
3570     while (*fullcmd) {
3571         if (*fullcmd == '/' || *fullcmd == '\\')
3572             has_slash++;
3573         fullcmd++;
3574         cmdlen++;
3575     }
3576
3577     /* look in PATH */
3578     pathstr = PerlEnv_getenv("PATH");
3579     New(0, fullcmd, MAX_PATH+1, char);
3580     curfullcmd = fullcmd;
3581
3582     while (1) {
3583         DWORD res;
3584
3585         /* start by appending the name to the current prefix */
3586         strcpy(curfullcmd, cmd);
3587         curfullcmd += cmdlen;
3588
3589         /* if it doesn't end with '.', or has no extension, try adding
3590          * a trailing .exe first */
3591         if (cmd[cmdlen-1] != '.'
3592             && (cmdlen < 4 || cmd[cmdlen-4] != '.'))
3593         {
3594             strcpy(curfullcmd, ".exe");
3595             res = GetFileAttributes(fullcmd);
3596             if (res != 0xFFFFFFFF && !(res & FILE_ATTRIBUTE_DIRECTORY))
3597                 return fullcmd;
3598             *curfullcmd = '\0';
3599         }
3600
3601         /* that failed, try the bare name */
3602         res = GetFileAttributes(fullcmd);
3603         if (res != 0xFFFFFFFF && !(res & FILE_ATTRIBUTE_DIRECTORY))
3604             return fullcmd;
3605
3606         /* quit if no other path exists, or if cmd already has path */
3607         if (!pathstr || !*pathstr || has_slash)
3608             break;
3609
3610         /* skip leading semis */
3611         while (*pathstr == ';')
3612             pathstr++;
3613
3614         /* build a new prefix from scratch */
3615         curfullcmd = fullcmd;
3616         while (*pathstr && *pathstr != ';') {
3617             if (*pathstr == '"') {      /* foo;"baz;etc";bar */
3618                 pathstr++;              /* skip initial '"' */
3619                 while (*pathstr && *pathstr != '"') {
3620                     if ((STRLEN)(curfullcmd-fullcmd) < MAX_PATH-cmdlen-5)
3621                         *curfullcmd++ = *pathstr;
3622                     pathstr++;
3623                 }
3624                 if (*pathstr)
3625                     pathstr++;          /* skip trailing '"' */
3626             }
3627             else {
3628                 if ((STRLEN)(curfullcmd-fullcmd) < MAX_PATH-cmdlen-5)
3629                     *curfullcmd++ = *pathstr;
3630                 pathstr++;
3631             }
3632         }
3633         if (*pathstr)
3634             pathstr++;                  /* skip trailing semi */
3635         if (curfullcmd > fullcmd        /* append a dir separator */
3636             && curfullcmd[-1] != '/' && curfullcmd[-1] != '\\')
3637         {
3638             *curfullcmd++ = '\\';
3639         }
3640     }
3641
3642     Safefree(fullcmd);
3643     return Nullch;
3644 }
3645
3646 /* The following are just place holders.
3647  * Some hosts may provide and environment that the OS is
3648  * not tracking, therefore, these host must provide that
3649  * environment and the current directory to CreateProcess
3650  */
3651
3652 DllExport void*
3653 win32_get_childenv(void)
3654 {
3655     return NULL;
3656 }
3657
3658 DllExport void
3659 win32_free_childenv(void* d)
3660 {
3661 }
3662
3663 DllExport void
3664 win32_clearenv(void)
3665 {
3666     char *envv = GetEnvironmentStrings();
3667     char *cur = envv;
3668     STRLEN len;
3669     while (*cur) {
3670         char *end = strchr(cur,'=');
3671         if (end && end != cur) {
3672             *end = '\0';
3673             SetEnvironmentVariable(cur, NULL);
3674             *end = '=';
3675             cur = end + strlen(end+1)+2;
3676         }
3677         else if ((len = strlen(cur)))
3678             cur += len+1;
3679     }
3680     FreeEnvironmentStrings(envv);
3681 }
3682
3683 DllExport char*
3684 win32_get_childdir(void)
3685 {
3686     dTHX;
3687     char* ptr;
3688     char szfilename[(MAX_PATH+1)*2];
3689     if (USING_WIDE()) {
3690         WCHAR wfilename[MAX_PATH+1];
3691         GetCurrentDirectoryW(MAX_PATH+1, wfilename);
3692         W2AHELPER(wfilename, szfilename, sizeof(szfilename));
3693     }
3694     else {
3695         GetCurrentDirectoryA(MAX_PATH+1, szfilename);
3696     }
3697
3698     New(0, ptr, strlen(szfilename)+1, char);
3699     strcpy(ptr, szfilename);
3700     return ptr;
3701 }
3702
3703 DllExport void
3704 win32_free_childdir(char* d)
3705 {
3706     dTHX;
3707     Safefree(d);
3708 }
3709
3710
3711 /* XXX this needs to be made more compatible with the spawnvp()
3712  * provided by the various RTLs.  In particular, searching for
3713  * *.{com,bat,cmd} files (as done by the RTLs) is unimplemented.
3714  * This doesn't significantly affect perl itself, because we
3715  * always invoke things using PERL5SHELL if a direct attempt to
3716  * spawn the executable fails.
3717  *
3718  * XXX splitting and rejoining the commandline between do_aspawn()
3719  * and win32_spawnvp() could also be avoided.
3720  */
3721
3722 DllExport int
3723 win32_spawnvp(int mode, const char *cmdname, const char *const *argv)
3724 {
3725 #ifdef USE_RTL_SPAWNVP
3726     return spawnvp(mode, cmdname, (char * const *)argv);
3727 #else
3728     dTHX;
3729     int ret;
3730     void* env;
3731     char* dir;
3732     child_IO_table tbl;
3733     STARTUPINFO StartupInfo;
3734     PROCESS_INFORMATION ProcessInformation;
3735     DWORD create = 0;
3736     char *cmd;
3737     char *fullcmd = Nullch;
3738     char *cname = (char *)cmdname;
3739     STRLEN clen = 0;
3740
3741     if (cname) {
3742         clen = strlen(cname);
3743         /* if command name contains dquotes, must remove them */
3744         if (strchr(cname, '"')) {
3745             cmd = cname;
3746             New(0,cname,clen+1,char);
3747             clen = 0;
3748             while (*cmd) {
3749                 if (*cmd != '"') {
3750                     cname[clen] = *cmd;
3751                     ++clen;
3752                 }
3753                 ++cmd;
3754             }
3755             cname[clen] = '\0';
3756         }
3757     }
3758
3759     cmd = create_command_line(cname, clen, argv);
3760
3761     env = PerlEnv_get_childenv();
3762     dir = PerlEnv_get_childdir();
3763
3764     switch(mode) {
3765     case P_NOWAIT:      /* asynch + remember result */
3766         if (w32_num_children >= MAXIMUM_WAIT_OBJECTS) {
3767             errno = EAGAIN;
3768             ret = -1;
3769             goto RETVAL;
3770         }
3771         /* Create a new process group so we can use GenerateConsoleCtrlEvent()
3772          * in win32_kill()
3773          */
3774         create |= CREATE_NEW_PROCESS_GROUP;
3775         /* FALL THROUGH */
3776
3777     case P_WAIT:        /* synchronous execution */
3778         break;
3779     default:            /* invalid mode */
3780         errno = EINVAL;
3781         ret = -1;
3782         goto RETVAL;
3783     }
3784     memset(&StartupInfo,0,sizeof(StartupInfo));
3785     StartupInfo.cb = sizeof(StartupInfo);
3786     memset(&tbl,0,sizeof(tbl));
3787     PerlEnv_get_child_IO(&tbl);
3788     StartupInfo.dwFlags         = tbl.dwFlags;
3789     StartupInfo.dwX             = tbl.dwX;
3790     StartupInfo.dwY             = tbl.dwY;
3791     StartupInfo.dwXSize         = tbl.dwXSize;
3792     StartupInfo.dwYSize         = tbl.dwYSize;
3793     StartupInfo.dwXCountChars   = tbl.dwXCountChars;
3794     StartupInfo.dwYCountChars   = tbl.dwYCountChars;
3795     StartupInfo.dwFillAttribute = tbl.dwFillAttribute;
3796     StartupInfo.wShowWindow     = tbl.wShowWindow;
3797     StartupInfo.hStdInput       = tbl.childStdIn;
3798     StartupInfo.hStdOutput      = tbl.childStdOut;
3799     StartupInfo.hStdError       = tbl.childStdErr;
3800     if (StartupInfo.hStdInput == INVALID_HANDLE_VALUE &&
3801         StartupInfo.hStdOutput == INVALID_HANDLE_VALUE &&
3802         StartupInfo.hStdError == INVALID_HANDLE_VALUE)
3803     {
3804         create |= CREATE_NEW_CONSOLE;
3805     }
3806     else {
3807         StartupInfo.dwFlags |= STARTF_USESTDHANDLES;
3808     }
3809     if (w32_use_showwindow) {
3810         StartupInfo.dwFlags |= STARTF_USESHOWWINDOW;
3811         StartupInfo.wShowWindow = w32_showwindow;
3812     }
3813
3814     DEBUG_p(PerlIO_printf(Perl_debug_log, "Spawning [%s] with [%s]\n",
3815                           cname,cmd));
3816 RETRY:
3817     if (!CreateProcess(cname,           /* search PATH to find executable */
3818                        cmd,             /* executable, and its arguments */
3819                        NULL,            /* process attributes */
3820                        NULL,            /* thread attributes */
3821                        TRUE,            /* inherit handles */
3822                        create,          /* creation flags */
3823                        (LPVOID)env,     /* inherit environment */
3824                        dir,             /* inherit cwd */
3825                        &StartupInfo,
3826                        &ProcessInformation))
3827     {
3828         /* initial NULL argument to CreateProcess() does a PATH
3829          * search, but it always first looks in the directory
3830          * where the current process was started, which behavior
3831          * is undesirable for backward compatibility.  So we
3832          * jump through our own hoops by picking out the path
3833          * we really want it to use. */
3834         if (!fullcmd) {
3835             fullcmd = qualified_path(cname);
3836             if (fullcmd) {
3837                 if (cname != cmdname)
3838                     Safefree(cname);
3839                 cname = fullcmd;
3840                 DEBUG_p(PerlIO_printf(Perl_debug_log,
3841                                       "Retrying [%s] with same args\n",
3842                                       cname));
3843                 goto RETRY;
3844             }
3845         }
3846         errno = ENOENT;
3847         ret = -1;
3848         goto RETVAL;
3849     }
3850
3851     if (mode == P_NOWAIT) {
3852         /* asynchronous spawn -- store handle, return PID */
3853         ret = (int)ProcessInformation.dwProcessId;
3854         if (IsWin95() && ret < 0)
3855             ret = -ret;
3856
3857         w32_child_handles[w32_num_children] = ProcessInformation.hProcess;
3858         w32_child_pids[w32_num_children] = (DWORD)ret;
3859         ++w32_num_children;
3860     }
3861     else  {
3862         DWORD status;
3863         win32_msgwait(aTHX_ 1, &ProcessInformation.hProcess, INFINITE, NULL);
3864         /* FIXME: if msgwait returned due to message perhaps forward the
3865            "signal" to the process
3866          */
3867         GetExitCodeProcess(ProcessInformation.hProcess, &status);
3868         ret = (int)status;
3869         CloseHandle(ProcessInformation.hProcess);
3870     }
3871
3872     CloseHandle(ProcessInformation.hThread);
3873
3874 RETVAL:
3875     PerlEnv_free_childenv(env);
3876     PerlEnv_free_childdir(dir);
3877     Safefree(cmd);
3878     if (cname != cmdname)
3879         Safefree(cname);
3880     return ret;
3881 #endif
3882 }
3883
3884 DllExport int
3885 win32_execv(const char *cmdname, const char *const *argv)
3886 {
3887 #ifdef USE_ITHREADS
3888     dTHX;
3889     /* if this is a pseudo-forked child, we just want to spawn
3890      * the new program, and return */
3891     if (w32_pseudo_id)
3892         return spawnv(P_WAIT, cmdname, (char *const *)argv);
3893 #endif
3894     return execv(cmdname, (char *const *)argv);
3895 }
3896
3897 DllExport int
3898 win32_execvp(const char *cmdname, const char *const *argv)
3899 {
3900 #ifdef USE_ITHREADS
3901     dTHX;
3902     /* if this is a pseudo-forked child, we just want to spawn
3903      * the new program, and return */
3904     if (w32_pseudo_id) {
3905         int status = win32_spawnvp(P_WAIT, cmdname, (char *const *)argv);
3906         if (status != -1) {
3907             my_exit(status);
3908             return 0;
3909         }
3910         else
3911             return status;
3912     }
3913 #endif
3914     return execvp(cmdname, (char *const *)argv);
3915 }
3916
3917 DllExport void
3918 win32_perror(const char *str)
3919 {
3920     perror(str);
3921 }
3922
3923 DllExport void
3924 win32_setbuf(FILE *pf, char *buf)
3925 {
3926     setbuf(pf, buf);
3927 }
3928
3929 DllExport int
3930 win32_setvbuf(FILE *pf, char *buf, int type, size_t size)
3931 {
3932     return setvbuf(pf, buf, type, size);
3933 }
3934
3935 DllExport int
3936 win32_flushall(void)
3937 {
3938     return flushall();
3939 }
3940
3941 DllExport int
3942 win32_fcloseall(void)
3943 {
3944     return fcloseall();
3945 }
3946
3947 DllExport char*
3948 win32_fgets(char *s, int n, FILE *pf)
3949 {
3950     return fgets(s, n, pf);
3951 }
3952
3953 DllExport char*
3954 win32_gets(char *s)
3955 {
3956     return gets(s);
3957 }
3958
3959 DllExport int
3960 win32_fgetc(FILE *pf)
3961 {
3962     return fgetc(pf);
3963 }
3964
3965 DllExport int
3966 win32_putc(int c, FILE *pf)
3967 {
3968     return putc(c,pf);
3969 }
3970
3971 DllExport int
3972 win32_puts(const char *s)
3973 {
3974     return puts(s);
3975 }
3976
3977 DllExport int
3978 win32_getchar(void)
3979 {
3980     return getchar();
3981 }
3982
3983 DllExport int
3984 win32_putchar(int c)
3985 {
3986     return putchar(c);
3987 }
3988
3989 #ifdef MYMALLOC
3990
3991 #ifndef USE_PERL_SBRK
3992
3993 static char *committed = NULL;          /* XXX threadead */
3994 static char *base      = NULL;          /* XXX threadead */
3995 static char *reserved  = NULL;          /* XXX threadead */
3996 static char *brk       = NULL;          /* XXX threadead */
3997 static DWORD pagesize  = 0;             /* XXX threadead */
3998 static DWORD allocsize = 0;             /* XXX threadead */
3999
4000 void *
4001 sbrk(ptrdiff_t need)
4002 {
4003  void *result;
4004  if (!pagesize)
4005   {SYSTEM_INFO info;
4006    GetSystemInfo(&info);
4007    /* Pretend page size is larger so we don't perpetually
4008     * call the OS to commit just one page ...
4009     */
4010    pagesize = info.dwPageSize << 3;
4011    allocsize = info.dwAllocationGranularity;
4012   }
4013  /* This scheme fails eventually if request for contiguous
4014   * block is denied so reserve big blocks - this is only
4015   * address space not memory ...
4016   */
4017  if (brk+need >= reserved)
4018   {
4019    DWORD size = 64*1024*1024;
4020    char *addr;
4021    if (committed && reserved && committed < reserved)
4022     {
4023      /* Commit last of previous chunk cannot span allocations */
4024      addr = (char *) VirtualAlloc(committed,reserved-committed,MEM_COMMIT,PAGE_READWRITE);
4025      if (addr)
4026       committed = reserved;
4027     }
4028    /* Reserve some (more) space
4029     * Note this is a little sneaky, 1st call passes NULL as reserved
4030     * so lets system choose where we start, subsequent calls pass
4031     * the old end address so ask for a contiguous block
4032     */
4033    addr  = (char *) VirtualAlloc(reserved,size,MEM_RESERVE,PAGE_NOACCESS);
4034    if (addr)
4035     {
4036      reserved = addr+size;
4037      if (!base)
4038       base = addr;
4039      if (!committed)
4040       committed = base;
4041      if (!brk)
4042       brk = committed;
4043     }
4044    else
4045     {
4046      return (void *) -1;
4047     }
4048   }
4049  result = brk;
4050  brk += need;
4051  if (brk > committed)
4052   {
4053    DWORD size = ((brk-committed + pagesize -1)/pagesize) * pagesize;
4054    char *addr = (char *) VirtualAlloc(committed,size,MEM_COMMIT,PAGE_READWRITE);
4055    if (addr)
4056     {
4057      committed += size;
4058     }
4059    else
4060     return (void *) -1;
4061   }
4062  return result;
4063 }
4064
4065 #endif
4066 #endif
4067
4068 DllExport void*
4069 win32_malloc(size_t size)
4070 {
4071     return malloc(size);
4072 }
4073
4074 DllExport void*
4075 win32_calloc(size_t numitems, size_t size)
4076 {
4077     return calloc(numitems,size);
4078 }
4079
4080 DllExport void*
4081 win32_realloc(void *block, size_t size)
4082 {
4083     return realloc(block,size);
4084 }
4085
4086 DllExport void
4087 win32_free(void *block)
4088 {
4089     free(block);
4090 }
4091
4092
4093 DllExport int
4094 win32_open_osfhandle(intptr_t handle, int flags)
4095 {
4096 #ifdef USE_FIXED_OSFHANDLE
4097     if (IsWin95())
4098         return my_open_osfhandle(handle, flags);
4099 #endif
4100     return _open_osfhandle(handle, flags);
4101 }
4102
4103 DllExport intptr_t
4104 win32_get_osfhandle(int fd)
4105 {
4106     return (intptr_t)_get_osfhandle(fd);
4107 }
4108
4109 DllExport FILE *
4110 win32_fdupopen(FILE *pf)
4111 {
4112     FILE* pfdup;
4113     fpos_t pos;
4114     char mode[3];
4115     int fileno = win32_dup(win32_fileno(pf));
4116
4117     /* open the file in the same mode */
4118 #ifdef __BORLANDC__
4119     if((pf)->flags & _F_READ) {
4120         mode[0] = 'r';
4121         mode[1] = 0;
4122     }
4123     else if((pf)->flags & _F_WRIT) {
4124         mode[0] = 'a';
4125         mode[1] = 0;
4126     }
4127     else if((pf)->flags & _F_RDWR) {
4128         mode[0] = 'r';
4129         mode[1] = '+';
4130         mode[2] = 0;
4131     }
4132 #else
4133     if((pf)->_flag & _IOREAD) {
4134         mode[0] = 'r';
4135         mode[1] = 0;
4136     }
4137     else if((pf)->_flag & _IOWRT) {
4138         mode[0] = 'a';
4139         mode[1] = 0;
4140     }
4141     else if((pf)->_flag & _IORW) {
4142         mode[0] = 'r';
4143         mode[1] = '+';
4144         mode[2] = 0;
4145     }
4146 #endif
4147
4148     /* it appears that the binmode is attached to the
4149      * file descriptor so binmode files will be handled
4150      * correctly
4151      */
4152     pfdup = win32_fdopen(fileno, mode);
4153
4154     /* move the file pointer to the same position */
4155     if (!fgetpos(pf, &pos)) {
4156         fsetpos(pfdup, &pos);
4157     }
4158     return pfdup;
4159 }
4160
4161 DllExport void*
4162 win32_dynaload(const char* filename)
4163 {
4164     dTHX;
4165     HMODULE hModule;
4166     char buf[MAX_PATH+1];
4167     char *first;
4168
4169     /* LoadLibrary() doesn't recognize forward slashes correctly,
4170      * so turn 'em back. */
4171     first = strchr(filename, '/');
4172     if (first) {
4173         STRLEN len = strlen(filename);
4174         if (len <= MAX_PATH) {
4175             strcpy(buf, filename);
4176             filename = &buf[first - filename];
4177             while (*filename) {
4178                 if (*filename == '/')
4179                     *(char*)filename = '\\';
4180                 ++filename;
4181             }
4182             filename = buf;
4183         }
4184     }
4185     if (USING_WIDE()) {
4186         WCHAR wfilename[MAX_PATH+1];
4187         A2WHELPER(filename, wfilename, sizeof(wfilename));
4188         hModule = LoadLibraryExW(PerlDir_mapW(wfilename), NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
4189     }
4190     else {
4191         hModule = LoadLibraryExA(PerlDir_mapA(filename), NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
4192     }
4193     return hModule;
4194 }
4195
4196 /*
4197  * Extras.
4198  */
4199
4200 static
4201 XS(w32_SetChildShowWindow)
4202 {
4203     dXSARGS;
4204     BOOL use_showwindow = w32_use_showwindow;
4205     /* use "unsigned short" because Perl has redefined "WORD" */
4206     unsigned short showwindow = w32_showwindow;
4207
4208     if (items > 1)
4209         Perl_croak(aTHX_ "usage: Win32::SetChildShowWindow($showwindow)");
4210
4211     if (items == 0 || !SvOK(ST(0)))
4212         w32_use_showwindow = FALSE;
4213     else {
4214         w32_use_showwindow = TRUE;
4215         w32_showwindow = (unsigned short)SvIV(ST(0));
4216     }
4217
4218     EXTEND(SP, 1);
4219     if (use_showwindow)
4220         ST(0) = sv_2mortal(newSViv(showwindow));
4221     else
4222         ST(0) = &PL_sv_undef;
4223     XSRETURN(1);
4224 }
4225
4226 static
4227 XS(w32_GetCwd)
4228 {
4229     dXSARGS;
4230     /* Make the host for current directory */
4231     char* ptr = PerlEnv_get_childdir();
4232     /*
4233      * If ptr != Nullch
4234      *   then it worked, set PV valid,
4235      *   else return 'undef'
4236      */
4237     if (ptr) {
4238         SV *sv = sv_newmortal();
4239         sv_setpv(sv, ptr);
4240         PerlEnv_free_childdir(ptr);
4241
4242 #ifndef INCOMPLETE_TAINTS
4243         SvTAINTED_on(sv);
4244 #endif
4245
4246         EXTEND(SP,1);
4247         SvPOK_on(sv);
4248         ST(0) = sv;
4249         XSRETURN(1);
4250     }
4251     XSRETURN_UNDEF;
4252 }
4253
4254 static
4255 XS(w32_SetCwd)
4256 {
4257     dXSARGS;
4258     if (items != 1)
4259         Perl_croak(aTHX_ "usage: Win32::SetCurrentDirectory($cwd)");
4260     if (!PerlDir_chdir(SvPV_nolen(ST(0))))
4261         XSRETURN_YES;
4262
4263     XSRETURN_NO;
4264 }
4265
4266 static
4267 XS(w32_GetNextAvailDrive)
4268 {
4269     dXSARGS;
4270     char ix = 'C';
4271     char root[] = "_:\\";
4272
4273     EXTEND(SP,1);
4274     while (ix <= 'Z') {
4275         root[0] = ix++;
4276         if (GetDriveType(root) == 1) {
4277             root[2] = '\0';
4278             XSRETURN_PV(root);
4279         }
4280     }
4281     XSRETURN_UNDEF;
4282 }
4283
4284 static
4285 XS(w32_GetLastError)
4286 {
4287     dXSARGS;
4288     EXTEND(SP,1);
4289     XSRETURN_IV(GetLastError());
4290 }
4291
4292 static
4293 XS(w32_SetLastError)
4294 {
4295     dXSARGS;
4296     if (items != 1)
4297         Perl_croak(aTHX_ "usage: Win32::SetLastError($error)");
4298     SetLastError(SvIV(ST(0)));
4299     XSRETURN_EMPTY;
4300 }
4301
4302 static
4303 XS(w32_LoginName)
4304 {
4305     dXSARGS;
4306     char *name = w32_getlogin_buffer;
4307     DWORD size = sizeof(w32_getlogin_buffer);
4308     EXTEND(SP,1);
4309     if (GetUserName(name,&size)) {
4310         /* size includes NULL */
4311         ST(0) = sv_2mortal(newSVpvn(name,size-1));
4312         XSRETURN(1);
4313     }
4314     XSRETURN_UNDEF;
4315 }
4316
4317 static
4318 XS(w32_NodeName)
4319 {
4320     dXSARGS;
4321     char name[MAX_COMPUTERNAME_LENGTH+1];
4322     DWORD size = sizeof(name);
4323     EXTEND(SP,1);
4324     if (GetComputerName(name,&size)) {
4325         /* size does NOT include NULL :-( */
4326         ST(0) = sv_2mortal(newSVpvn(name,size));
4327         XSRETURN(1);
4328     }
4329     XSRETURN_UNDEF;
4330 }
4331
4332
4333 static
4334 XS(w32_DomainName)
4335 {
4336     dXSARGS;
4337     HINSTANCE hNetApi32 = LoadLibrary("netapi32.dll");
4338     DWORD (__stdcall *pfnNetApiBufferFree)(LPVOID Buffer);
4339     DWORD (__stdcall *pfnNetWkstaGetInfo)(LPWSTR servername, DWORD level,
4340                                           void *bufptr);
4341
4342     if (hNetApi32) {
4343         pfnNetApiBufferFree = (DWORD (__stdcall *)(void *))
4344             GetProcAddress(hNetApi32, "NetApiBufferFree");
4345         pfnNetWkstaGetInfo = (DWORD (__stdcall *)(LPWSTR, DWORD, void *))
4346             GetProcAddress(hNetApi32, "NetWkstaGetInfo");
4347     }
4348     EXTEND(SP,1);
4349     if (hNetApi32 && pfnNetWkstaGetInfo && pfnNetApiBufferFree) {
4350         /* this way is more reliable, in case user has a local account. */
4351         char dname[256];
4352         DWORD dnamelen = sizeof(dname);
4353         struct {
4354             DWORD   wki100_platform_id;
4355             LPWSTR  wki100_computername;
4356             LPWSTR  wki100_langroup;
4357             DWORD   wki100_ver_major;
4358             DWORD   wki100_ver_minor;
4359         } *pwi;
4360         /* NERR_Success *is* 0*/
4361         if (0 == pfnNetWkstaGetInfo(NULL, 100, &pwi)) {
4362             if (pwi->wki100_langroup && *(pwi->wki100_langroup)) {
4363                 WideCharToMultiByte(CP_ACP, NULL, pwi->wki100_langroup,
4364                                     -1, (LPSTR)dname, dnamelen, NULL, NULL);
4365             }
4366             else {
4367                 WideCharToMultiByte(CP_ACP, NULL, pwi->wki100_computername,
4368                                     -1, (LPSTR)dname, dnamelen, NULL, NULL);
4369             }
4370             pfnNetApiBufferFree(pwi);
4371             FreeLibrary(hNetApi32);
4372             XSRETURN_PV(dname);
4373         }
4374         FreeLibrary(hNetApi32);
4375     }
4376     else {
4377         /* Win95 doesn't have NetWksta*(), so do it the old way */
4378         char name[256];
4379         DWORD size = sizeof(name);
4380         if (hNetApi32)
4381             FreeLibrary(hNetApi32);
4382         if (GetUserName(name,&size)) {
4383             char sid[ONE_K_BUFSIZE];
4384             DWORD sidlen = sizeof(sid);
4385             char dname[256];
4386             DWORD dnamelen = sizeof(dname);
4387             SID_NAME_USE snu;
4388             if (LookupAccountName(NULL, name, (PSID)&sid, &sidlen,
4389                                   dname, &dnamelen, &snu)) {
4390                 XSRETURN_PV(dname);             /* all that for this */
4391             }
4392         }
4393     }
4394     XSRETURN_UNDEF;
4395 }
4396
4397 static
4398 XS(w32_FsType)
4399 {
4400     dXSARGS;
4401     char fsname[256];
4402     DWORD flags, filecomplen;
4403     if (GetVolumeInformation(NULL, NULL, 0, NULL, &filecomplen,
4404                          &flags, fsname, sizeof(fsname))) {
4405         if (GIMME_V == G_ARRAY) {
4406             XPUSHs(sv_2mortal(newSVpvn(fsname,strlen(fsname))));
4407             XPUSHs(sv_2mortal(newSViv(flags)));
4408             XPUSHs(sv_2mortal(newSViv(filecomplen)));
4409             PUTBACK;
4410             return;
4411         }
4412         EXTEND(SP,1);
4413         XSRETURN_PV(fsname);
4414     }
4415     XSRETURN_EMPTY;
4416 }
4417
4418 static
4419 XS(w32_GetOSVersion)
4420 {
4421     dXSARGS;
4422     OSVERSIONINFOA osver;
4423
4424     if (USING_WIDE()) {
4425         OSVERSIONINFOW osverw;
4426         char szCSDVersion[sizeof(osverw.szCSDVersion)];
4427         osverw.dwOSVersionInfoSize = sizeof(OSVERSIONINFOW);
4428         if (!GetVersionExW(&osverw)) {
4429             XSRETURN_EMPTY;
4430         }
4431         W2AHELPER(osverw.szCSDVersion, szCSDVersion, sizeof(szCSDVersion));
4432         XPUSHs(newSVpvn(szCSDVersion, strlen(szCSDVersion)));
4433         osver.dwMajorVersion = osverw.dwMajorVersion;
4434         osver.dwMinorVersion = osverw.dwMinorVersion;
4435         osver.dwBuildNumber = osverw.dwBuildNumber;
4436         osver.dwPlatformId = osverw.dwPlatformId;
4437     }
4438     else {
4439         osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFOA);
4440         if (!GetVersionExA(&osver)) {
4441             XSRETURN_EMPTY;
4442         }
4443         XPUSHs(newSVpvn(osver.szCSDVersion, strlen(osver.szCSDVersion)));
4444     }
4445     XPUSHs(newSViv(osver.dwMajorVersion));
4446     XPUSHs(newSViv(osver.dwMinorVersion));
4447     XPUSHs(newSViv(osver.dwBuildNumber));
4448     XPUSHs(newSViv(osver.dwPlatformId));
4449     PUTBACK;
4450 }
4451
4452 static
4453 XS(w32_IsWinNT)
4454 {
4455     dXSARGS;
4456     EXTEND(SP,1);
4457     XSRETURN_IV(IsWinNT());
4458 }
4459
4460 static
4461 XS(w32_IsWin95)
4462 {
4463     dXSARGS;
4464     EXTEND(SP,1);
4465     XSRETURN_IV(IsWin95());
4466 }
4467
4468 static
4469 XS(w32_FormatMessage)
4470 {
4471     dXSARGS;
4472     DWORD source = 0;
4473     char msgbuf[ONE_K_BUFSIZE];
4474
4475     if (items != 1)
4476         Perl_croak(aTHX_ "usage: Win32::FormatMessage($errno)");
4477
4478     if (USING_WIDE()) {
4479         WCHAR wmsgbuf[ONE_K_BUFSIZE];
4480         if (FormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM,
4481                           &source, SvIV(ST(0)), 0,
4482                           wmsgbuf, ONE_K_BUFSIZE-1, NULL))
4483         {
4484             W2AHELPER(wmsgbuf, msgbuf, sizeof(msgbuf));
4485             XSRETURN_PV(msgbuf);
4486         }
4487     }
4488     else {
4489         if (FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM,
4490                           &source, SvIV(ST(0)), 0,
4491                           msgbuf, sizeof(msgbuf)-1, NULL))
4492             XSRETURN_PV(msgbuf);
4493     }
4494
4495     XSRETURN_UNDEF;
4496 }
4497
4498 static
4499 XS(w32_Spawn)
4500 {
4501     dXSARGS;
4502     char *cmd, *args;
4503     void *env;
4504     char *dir;
4505     PROCESS_INFORMATION stProcInfo;
4506     STARTUPINFO stStartInfo;
4507     BOOL bSuccess = FALSE;
4508
4509     if (items != 3)
4510         Perl_croak(aTHX_ "usage: Win32::Spawn($cmdName, $args, $PID)");
4511
4512     cmd = SvPV_nolen(ST(0));
4513     args = SvPV_nolen(ST(1));
4514
4515     env = PerlEnv_get_childenv();
4516     dir = PerlEnv_get_childdir();
4517
4518     memset(&stStartInfo, 0, sizeof(stStartInfo));   /* Clear the block */
4519     stStartInfo.cb = sizeof(stStartInfo);           /* Set the structure size */
4520     stStartInfo.dwFlags = STARTF_USESHOWWINDOW;     /* Enable wShowWindow control */
4521     stStartInfo.wShowWindow = SW_SHOWMINNOACTIVE;   /* Start min (normal) */
4522
4523     if (CreateProcess(
4524                 cmd,                    /* Image path */
4525                 args,                   /* Arguments for command line */
4526                 NULL,                   /* Default process security */
4527                 NULL,                   /* Default thread security */
4528                 FALSE,                  /* Must be TRUE to use std handles */
4529                 NORMAL_PRIORITY_CLASS,  /* No special scheduling */
4530                 env,                    /* Inherit our environment block */
4531                 dir,                    /* Inherit our currrent directory */
4532                 &stStartInfo,           /* -> Startup info */
4533                 &stProcInfo))           /* <- Process info (if OK) */
4534     {
4535         int pid = (int)stProcInfo.dwProcessId;
4536         if (IsWin95() && pid < 0)
4537             pid = -pid;
4538         sv_setiv(ST(2), pid);
4539         CloseHandle(stProcInfo.hThread);/* library source code does this. */
4540         bSuccess = TRUE;
4541     }
4542     PerlEnv_free_childenv(env);
4543     PerlEnv_free_childdir(dir);
4544     XSRETURN_IV(bSuccess);
4545 }
4546
4547 static
4548 XS(w32_GetTickCount)
4549 {
4550     dXSARGS;
4551     DWORD msec = GetTickCount();
4552     EXTEND(SP,1);
4553     if ((IV)msec > 0)
4554         XSRETURN_IV(msec);
4555     XSRETURN_NV(msec);
4556 }
4557
4558 static
4559 XS(w32_GetShortPathName)
4560 {
4561     dXSARGS;
4562     SV *shortpath;
4563     DWORD len;
4564
4565     if (items != 1)
4566         Perl_croak(aTHX_ "usage: Win32::GetShortPathName($longPathName)");
4567
4568     shortpath = sv_mortalcopy(ST(0));
4569     SvUPGRADE(shortpath, SVt_PV);
4570     if (!SvPVX(shortpath) || !SvLEN(shortpath))
4571         XSRETURN_UNDEF;
4572
4573     /* src == target is allowed */
4574     do {
4575         len = GetShortPathName(SvPVX(shortpath),
4576                                SvPVX(shortpath),
4577                                SvLEN(shortpath));
4578     } while (len >= SvLEN(shortpath) && sv_grow(shortpath,len+1));
4579     if (len) {
4580         SvCUR_set(shortpath,len);
4581         ST(0) = shortpath;
4582         XSRETURN(1);
4583     }
4584     XSRETURN_UNDEF;
4585 }
4586
4587 static
4588 XS(w32_GetFullPathName)
4589 {
4590     dXSARGS;
4591     SV *filename;
4592     SV *fullpath;
4593     char *filepart;
4594     DWORD len;
4595
4596     if (items != 1)
4597         Perl_croak(aTHX_ "usage: Win32::GetFullPathName($filename)");
4598
4599     filename = ST(0);
4600     fullpath = sv_mortalcopy(filename);
4601     SvUPGRADE(fullpath, SVt_PV);
4602     if (!SvPVX(fullpath) || !SvLEN(fullpath))
4603         XSRETURN_UNDEF;
4604
4605     do {
4606         len = GetFullPathName(SvPVX(filename),
4607                               SvLEN(fullpath),
4608                               SvPVX(fullpath),
4609                               &filepart);
4610     } while (len >= SvLEN(fullpath) && sv_grow(fullpath,len+1));
4611     if (len) {
4612         if (GIMME_V == G_ARRAY) {
4613             EXTEND(SP,1);
4614             XST_mPV(1,filepart);
4615             len = filepart - SvPVX(fullpath);
4616             items = 2;
4617         }
4618         SvCUR_set(fullpath,len);
4619         ST(0) = fullpath;
4620         XSRETURN(items);
4621     }
4622     XSRETURN_EMPTY;
4623 }
4624
4625 static
4626 XS(w32_GetLongPathName)
4627 {
4628     dXSARGS;
4629     SV *path;
4630     char tmpbuf[MAX_PATH+1];
4631     char *pathstr;
4632     STRLEN len;
4633
4634     if (items != 1)
4635         Perl_croak(aTHX_ "usage: Win32::GetLongPathName($pathname)");
4636
4637     path = ST(0);
4638     pathstr = SvPV(path,len);
4639     strcpy(tmpbuf, pathstr);
4640     pathstr = win32_longpath(tmpbuf);
4641     if (pathstr) {
4642         ST(0) = sv_2mortal(newSVpvn(pathstr, strlen(pathstr)));
4643         XSRETURN(1);
4644     }
4645     XSRETURN_EMPTY;
4646 }
4647
4648 static
4649 XS(w32_Sleep)
4650 {
4651     dXSARGS;
4652     if (items != 1)
4653         Perl_croak(aTHX_ "usage: Win32::Sleep($milliseconds)");
4654     Sleep(SvIV(ST(0)));
4655     XSRETURN_YES;
4656 }
4657
4658 static
4659 XS(w32_CopyFile)
4660 {
4661     dXSARGS;
4662     BOOL bResult;
4663     if (items != 3)
4664         Perl_croak(aTHX_ "usage: Win32::CopyFile($from, $to, $overwrite)");
4665     if (USING_WIDE()) {
4666         WCHAR wSourceFile[MAX_PATH+1];
4667         WCHAR wDestFile[MAX_PATH+1];
4668         A2WHELPER(SvPV_nolen(ST(0)), wSourceFile, sizeof(wSourceFile));
4669         wcscpy(wSourceFile, PerlDir_mapW(wSourceFile));
4670         A2WHELPER(SvPV_nolen(ST(1)), wDestFile, sizeof(wDestFile));
4671         bResult = CopyFileW(wSourceFile, PerlDir_mapW(wDestFile), !SvTRUE(ST(2)));
4672     }
4673     else {
4674         char szSourceFile[MAX_PATH+1];
4675         strcpy(szSourceFile, PerlDir_mapA(SvPV_nolen(ST(0))));
4676         bResult = CopyFileA(szSourceFile, PerlDir_mapA(SvPV_nolen(ST(1))), !SvTRUE(ST(2)));
4677     }
4678
4679     if (bResult)
4680         XSRETURN_YES;
4681     XSRETURN_NO;
4682 }
4683
4684 void
4685 Perl_init_os_extras(void)
4686 {
4687     dTHX;
4688     char *file = __FILE__;
4689     dXSUB_SYS;
4690
4691     /* these names are Activeware compatible */
4692     newXS("Win32::GetCwd", w32_GetCwd, file);
4693     newXS("Win32::SetCwd", w32_SetCwd, file);
4694     newXS("Win32::GetNextAvailDrive", w32_GetNextAvailDrive, file);
4695     newXS("Win32::GetLastError", w32_GetLastError, file);
4696     newXS("Win32::SetLastError", w32_SetLastError, file);
4697     newXS("Win32::LoginName", w32_LoginName, file);
4698     newXS("Win32::NodeName", w32_NodeName, file);
4699     newXS("Win32::DomainName", w32_DomainName, file);
4700     newXS("Win32::FsType", w32_FsType, file);
4701     newXS("Win32::GetOSVersion", w32_GetOSVersion, file);
4702     newXS("Win32::IsWinNT", w32_IsWinNT, file);
4703     newXS("Win32::IsWin95", w32_IsWin95, file);
4704     newXS("Win32::FormatMessage", w32_FormatMessage, file);
4705     newXS("Win32::Spawn", w32_Spawn, file);
4706     newXS("Win32::GetTickCount", w32_GetTickCount, file);
4707     newXS("Win32::GetShortPathName", w32_GetShortPathName, file);
4708     newXS("Win32::GetFullPathName", w32_GetFullPathName, file);
4709     newXS("Win32::GetLongPathName", w32_GetLongPathName, file);
4710     newXS("Win32::CopyFile", w32_CopyFile, file);
4711     newXS("Win32::Sleep", w32_Sleep, file);
4712     newXS("Win32::SetChildShowWindow", w32_SetChildShowWindow, file);
4713
4714     /* XXX Bloat Alert! The following Activeware preloads really
4715      * ought to be part of Win32::Sys::*, so they're not included
4716      * here.
4717      */
4718     /* LookupAccountName
4719      * LookupAccountSID
4720      * InitiateSystemShutdown
4721      * AbortSystemShutdown
4722      * ExpandEnvrironmentStrings
4723      */
4724 }
4725
4726 void *
4727 win32_signal_context(void)
4728 {
4729     dTHX;
4730 #ifdef MULTIPLICITY
4731     if (!my_perl) {
4732         my_perl = PL_curinterp;
4733         PERL_SET_THX(my_perl);
4734     }
4735     return my_perl;
4736 #else
4737 #ifdef USE_5005THREADS
4738     return aTHX;
4739 #else
4740     return PL_curinterp;
4741 #endif
4742 #endif
4743 }
4744
4745
4746 BOOL WINAPI
4747 win32_ctrlhandler(DWORD dwCtrlType)
4748 {
4749 #ifdef MULTIPLICITY
4750     dTHXa(PERL_GET_SIG_CONTEXT);
4751
4752     if (!my_perl)
4753         return FALSE;
4754 #else
4755 #ifdef USE_5005THREADS
4756     dTHX;
4757 #endif
4758 #endif
4759
4760     switch(dwCtrlType) {
4761     case CTRL_CLOSE_EVENT:
4762      /*  A signal that the system sends to all processes attached to a console when
4763          the user closes the console (either by choosing the Close command from the
4764          console window's System menu, or by choosing the End Task command from the
4765          Task List
4766       */
4767         if (do_raise(aTHX_ 1))        /* SIGHUP */
4768             sig_terminate(aTHX_ 1);
4769         return TRUE;
4770
4771     case CTRL_C_EVENT:
4772         /*  A CTRL+c signal was received */
4773         if (do_raise(aTHX_ SIGINT))
4774             sig_terminate(aTHX_ SIGINT);
4775         return TRUE;
4776
4777     case CTRL_BREAK_EVENT:
4778         /*  A CTRL+BREAK signal was received */
4779         if (do_raise(aTHX_ SIGBREAK))
4780             sig_terminate(aTHX_ SIGBREAK);
4781         return TRUE;
4782
4783     case CTRL_LOGOFF_EVENT:
4784       /*  A signal that the system sends to all console processes when a user is logging
4785           off. This signal does not indicate which user is logging off, so no
4786           assumptions can be made.
4787        */
4788         break;
4789     case CTRL_SHUTDOWN_EVENT:
4790       /*  A signal that the system sends to all console processes when the system is
4791           shutting down.
4792        */
4793         if (do_raise(aTHX_ SIGTERM))
4794             sig_terminate(aTHX_ SIGTERM);
4795         return TRUE;
4796     default:
4797         break;
4798     }
4799     return FALSE;
4800 }
4801
4802
4803 void
4804 Perl_win32_init(int *argcp, char ***argvp)
4805 {
4806     /* Disable floating point errors, Perl will trap the ones we
4807      * care about.  VC++ RTL defaults to switching these off
4808      * already, but the Borland RTL doesn't.  Since we don't
4809      * want to be at the vendor's whim on the default, we set
4810      * it explicitly here.
4811      */
4812 #if !defined(_ALPHA_) && !defined(__GNUC__)
4813     _control87(MCW_EM, MCW_EM);
4814 #endif
4815     MALLOC_INIT;
4816 }
4817
4818 void
4819 win32_get_child_IO(child_IO_table* ptbl)
4820 {
4821     ptbl->childStdIn    = GetStdHandle(STD_INPUT_HANDLE);
4822     ptbl->childStdOut   = GetStdHandle(STD_OUTPUT_HANDLE);
4823     ptbl->childStdErr   = GetStdHandle(STD_ERROR_HANDLE);
4824 }
4825
4826 Sighandler_t
4827 win32_signal(int sig, Sighandler_t subcode)
4828 {
4829     dTHX;
4830     if (sig < SIG_SIZE) {
4831         int save_errno = errno;
4832         Sighandler_t result = signal(sig, subcode);
4833         if (result == SIG_ERR) {
4834             result = w32_sighandler[sig];
4835             errno = save_errno;
4836         }
4837         w32_sighandler[sig] = subcode;
4838         return result;
4839     }
4840     else {
4841         errno = EINVAL;
4842         return SIG_ERR;
4843     }
4844 }
4845
4846
4847 #ifdef HAVE_INTERP_INTERN
4848
4849
4850 static void
4851 win32_csighandler(int sig)
4852 {
4853 #if 0
4854     dTHXa(PERL_GET_SIG_CONTEXT);
4855     Perl_warn(aTHX_ "Got signal %d",sig);
4856 #endif
4857     /* Does nothing */
4858 }
4859
4860 void
4861 Perl_sys_intern_init(pTHX)
4862 {
4863     int i;
4864     w32_perlshell_tokens        = Nullch;
4865     w32_perlshell_vec           = (char**)NULL;
4866     w32_perlshell_items         = 0;
4867     w32_fdpid                   = newAV();
4868     New(1313, w32_children, 1, child_tab);
4869     w32_num_children            = 0;
4870 #  ifdef USE_ITHREADS
4871     w32_pseudo_id               = 0;
4872     New(1313, w32_pseudo_children, 1, child_tab);
4873     w32_num_pseudo_children     = 0;
4874 #  endif
4875     w32_init_socktype           = 0;
4876     w32_timerid                 = 0;
4877     w32_poll_count              = 0;
4878     for (i=0; i < SIG_SIZE; i++) {
4879         w32_sighandler[i] = SIG_DFL;
4880     }
4881 #  ifdef MULTIPLICTY
4882     if (my_perl == PL_curinterp) {
4883 #  else
4884     {
4885 #  endif
4886         /* Force C runtime signal stuff to set its console handler */
4887         signal(SIGINT,&win32_csighandler);
4888         signal(SIGBREAK,&win32_csighandler);
4889         /* Push our handler on top */
4890         SetConsoleCtrlHandler(win32_ctrlhandler,TRUE);
4891     }
4892 }
4893
4894 void
4895 Perl_sys_intern_clear(pTHX)
4896 {
4897     Safefree(w32_perlshell_tokens);
4898     Safefree(w32_perlshell_vec);
4899     /* NOTE: w32_fdpid is freed by sv_clean_all() */
4900     Safefree(w32_children);
4901     if (w32_timerid) {
4902         KillTimer(NULL,w32_timerid);
4903         w32_timerid=0;
4904     }
4905 #  ifdef MULTIPLICITY
4906     if (my_perl == PL_curinterp) {
4907 #  else
4908     {
4909 #  endif
4910         SetConsoleCtrlHandler(win32_ctrlhandler,FALSE);
4911     }
4912 #  ifdef USE_ITHREADS
4913     Safefree(w32_pseudo_children);
4914 #  endif
4915 }
4916
4917 #  ifdef USE_ITHREADS
4918
4919 void
4920 Perl_sys_intern_dup(pTHX_ struct interp_intern *src, struct interp_intern *dst)
4921 {
4922     dst->perlshell_tokens       = Nullch;
4923     dst->perlshell_vec          = (char**)NULL;
4924     dst->perlshell_items        = 0;
4925     dst->fdpid                  = newAV();
4926     Newz(1313, dst->children, 1, child_tab);
4927     dst->pseudo_id              = 0;
4928     Newz(1313, dst->pseudo_children, 1, child_tab);
4929     dst->thr_intern.Winit_socktype = 0;
4930     dst->timerid                 = 0;
4931     dst->poll_count              = 0;
4932     Copy(src->sigtable,dst->sigtable,SIG_SIZE,Sighandler_t);
4933 }
4934 #  endif /* USE_ITHREADS */
4935 #endif /* HAVE_INTERP_INTERN */
4936
4937 static void
4938 win32_free_argvw(pTHX_ void *ptr)
4939 {
4940     char** argv = (char**)ptr;
4941     while(*argv) {
4942         Safefree(*argv);
4943         *argv++ = Nullch;
4944     }
4945 }
4946
4947 void
4948 win32_argv2utf8(int argc, char** argv)
4949 {
4950     dTHX;
4951     char* psz;
4952     int length, wargc;
4953     LPWSTR* lpwStr = CommandLineToArgvW(GetCommandLineW(), &wargc);
4954     if (lpwStr && argc) {
4955         while (argc--) {
4956             length = WideCharToMultiByte(CP_UTF8, 0, lpwStr[--wargc], -1, NULL, 0, NULL, NULL);
4957             Newz(0, psz, length, char);
4958             WideCharToMultiByte(CP_UTF8, 0, lpwStr[wargc], -1, psz, length, NULL, NULL);
4959             argv[argc] = psz;
4960         }
4961         call_atexit(win32_free_argvw, argv);
4962     }
4963     GlobalFree((HGLOBAL)lpwStr);
4964 }