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