Merge from emacs--rel--22
[bpt/emacs.git] / src / w32.c
1 /* Utility and Unix shadow routines for GNU Emacs on the Microsoft W32 API.
2 Copyright (C) 1994, 1995, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA.
21
22 Geoff Voelker (voelker@cs.washington.edu) 7-29-94
23 */
24 #include <stddef.h> /* for offsetof */
25 #include <stdlib.h>
26 #include <stdio.h>
27 #include <io.h>
28 #include <errno.h>
29 #include <fcntl.h>
30 #include <ctype.h>
31 #include <signal.h>
32 #include <sys/file.h>
33 #include <sys/time.h>
34 #include <sys/utime.h>
35 #include <mbstring.h> /* for _mbspbrk */
36
37 /* must include CRT headers *before* config.h */
38
39 #ifdef HAVE_CONFIG_H
40 #include <config.h>
41 #endif
42
43 #undef access
44 #undef chdir
45 #undef chmod
46 #undef creat
47 #undef ctime
48 #undef fopen
49 #undef link
50 #undef mkdir
51 #undef mktemp
52 #undef open
53 #undef rename
54 #undef rmdir
55 #undef unlink
56
57 #undef close
58 #undef dup
59 #undef dup2
60 #undef pipe
61 #undef read
62 #undef write
63
64 #undef strerror
65
66 #include "lisp.h"
67
68 #include <pwd.h>
69 #include <grp.h>
70
71 #ifdef __GNUC__
72 #define _ANONYMOUS_UNION
73 #define _ANONYMOUS_STRUCT
74 #endif
75 #include <windows.h>
76 #include <lmcons.h>
77 #include <shlobj.h>
78
79 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
80 #include <sys/socket.h>
81 #undef socket
82 #undef bind
83 #undef connect
84 #undef htons
85 #undef ntohs
86 #undef inet_addr
87 #undef gethostname
88 #undef gethostbyname
89 #undef getservbyname
90 #undef getpeername
91 #undef shutdown
92 #undef setsockopt
93 #undef listen
94 #undef getsockname
95 #undef accept
96 #undef recvfrom
97 #undef sendto
98 #endif
99
100 #include "w32.h"
101 #include "ndir.h"
102 #include "w32heap.h"
103 #include "systime.h"
104
105 typedef HRESULT (WINAPI * ShGetFolderPath_fn)
106 (IN HWND, IN int, IN HANDLE, IN DWORD, OUT char *);
107
108 void globals_of_w32 ();
109
110 extern Lisp_Object Vw32_downcase_file_names;
111 extern Lisp_Object Vw32_generate_fake_inodes;
112 extern Lisp_Object Vw32_get_true_file_attributes;
113 /* Defined in process.c for its own purpose. */
114 extern Lisp_Object Qlocal;
115
116 extern int w32_num_mouse_buttons;
117
118 \f
119 /* Initialization states.
120
121 WARNING: If you add any more such variables for additional APIs,
122 you MUST add initialization for them to globals_of_w32
123 below. This is because these variables might get set
124 to non-NULL values during dumping, but the dumped Emacs
125 cannot reuse those values, because it could be run on a
126 different version of the OS, where API addresses are
127 different. */
128 static BOOL g_b_init_is_windows_9x;
129 static BOOL g_b_init_open_process_token;
130 static BOOL g_b_init_get_token_information;
131 static BOOL g_b_init_lookup_account_sid;
132 static BOOL g_b_init_get_sid_identifier_authority;
133 static BOOL g_b_init_get_sid_sub_authority;
134 static BOOL g_b_init_get_sid_sub_authority_count;
135
136 /*
137 BEGIN: Wrapper functions around OpenProcessToken
138 and other functions in advapi32.dll that are only
139 supported in Windows NT / 2k / XP
140 */
141 /* ** Function pointer typedefs ** */
142 typedef BOOL (WINAPI * OpenProcessToken_Proc) (
143 HANDLE ProcessHandle,
144 DWORD DesiredAccess,
145 PHANDLE TokenHandle);
146 typedef BOOL (WINAPI * GetTokenInformation_Proc) (
147 HANDLE TokenHandle,
148 TOKEN_INFORMATION_CLASS TokenInformationClass,
149 LPVOID TokenInformation,
150 DWORD TokenInformationLength,
151 PDWORD ReturnLength);
152 typedef BOOL (WINAPI * GetProcessTimes_Proc) (
153 HANDLE process_handle,
154 LPFILETIME creation_time,
155 LPFILETIME exit_time,
156 LPFILETIME kernel_time,
157 LPFILETIME user_time);
158
159 GetProcessTimes_Proc get_process_times_fn = NULL;
160
161 #ifdef _UNICODE
162 const char * const LookupAccountSid_Name = "LookupAccountSidW";
163 #else
164 const char * const LookupAccountSid_Name = "LookupAccountSidA";
165 #endif
166 typedef BOOL (WINAPI * LookupAccountSid_Proc) (
167 LPCTSTR lpSystemName,
168 PSID Sid,
169 LPTSTR Name,
170 LPDWORD cbName,
171 LPTSTR DomainName,
172 LPDWORD cbDomainName,
173 PSID_NAME_USE peUse);
174 typedef PSID_IDENTIFIER_AUTHORITY (WINAPI * GetSidIdentifierAuthority_Proc) (
175 PSID pSid);
176 typedef PDWORD (WINAPI * GetSidSubAuthority_Proc) (
177 PSID pSid,
178 DWORD n);
179 typedef PUCHAR (WINAPI * GetSidSubAuthorityCount_Proc) (
180 PSID pSid);
181
182
183 /* ** A utility function ** */
184 static BOOL
185 is_windows_9x ()
186 {
187 static BOOL s_b_ret=0;
188 OSVERSIONINFO os_ver;
189 if (g_b_init_is_windows_9x == 0)
190 {
191 g_b_init_is_windows_9x = 1;
192 ZeroMemory(&os_ver, sizeof(OSVERSIONINFO));
193 os_ver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
194 if (GetVersionEx (&os_ver))
195 {
196 s_b_ret = (os_ver.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS);
197 }
198 }
199 return s_b_ret;
200 }
201
202 /* Get total user and system times for get-internal-run-time.
203 Returns a list of three integers if the times are provided by the OS
204 (NT derivatives), otherwise it returns the result of current-time. */
205 Lisp_Object
206 w32_get_internal_run_time ()
207 {
208 if (get_process_times_fn)
209 {
210 FILETIME create, exit, kernel, user;
211 HANDLE proc = GetCurrentProcess();
212 if ((*get_process_times_fn) (proc, &create, &exit, &kernel, &user))
213 {
214 LARGE_INTEGER user_int, kernel_int, total;
215 int microseconds;
216 user_int.LowPart = user.dwLowDateTime;
217 user_int.HighPart = user.dwHighDateTime;
218 kernel_int.LowPart = kernel.dwLowDateTime;
219 kernel_int.HighPart = kernel.dwHighDateTime;
220 total.QuadPart = user_int.QuadPart + kernel_int.QuadPart;
221 /* FILETIME is 100 nanosecond increments, Emacs only wants
222 microsecond resolution. */
223 total.QuadPart /= 10;
224 microseconds = total.QuadPart % 1000000;
225 total.QuadPart /= 1000000;
226
227 /* Sanity check to make sure we can represent the result. */
228 if (total.HighPart == 0)
229 {
230 int secs = total.LowPart;
231
232 return list3 (make_number ((secs >> 16) & 0xffff),
233 make_number (secs & 0xffff),
234 make_number (microseconds));
235 }
236 }
237 }
238
239 return Fcurrent_time ();
240 }
241
242 /* ** The wrapper functions ** */
243
244 BOOL WINAPI open_process_token (
245 HANDLE ProcessHandle,
246 DWORD DesiredAccess,
247 PHANDLE TokenHandle)
248 {
249 static OpenProcessToken_Proc s_pfn_Open_Process_Token = NULL;
250 HMODULE hm_advapi32 = NULL;
251 if (is_windows_9x () == TRUE)
252 {
253 return FALSE;
254 }
255 if (g_b_init_open_process_token == 0)
256 {
257 g_b_init_open_process_token = 1;
258 hm_advapi32 = LoadLibrary ("Advapi32.dll");
259 s_pfn_Open_Process_Token =
260 (OpenProcessToken_Proc) GetProcAddress (hm_advapi32, "OpenProcessToken");
261 }
262 if (s_pfn_Open_Process_Token == NULL)
263 {
264 return FALSE;
265 }
266 return (
267 s_pfn_Open_Process_Token (
268 ProcessHandle,
269 DesiredAccess,
270 TokenHandle)
271 );
272 }
273
274 BOOL WINAPI get_token_information (
275 HANDLE TokenHandle,
276 TOKEN_INFORMATION_CLASS TokenInformationClass,
277 LPVOID TokenInformation,
278 DWORD TokenInformationLength,
279 PDWORD ReturnLength)
280 {
281 static GetTokenInformation_Proc s_pfn_Get_Token_Information = NULL;
282 HMODULE hm_advapi32 = NULL;
283 if (is_windows_9x () == TRUE)
284 {
285 return FALSE;
286 }
287 if (g_b_init_get_token_information == 0)
288 {
289 g_b_init_get_token_information = 1;
290 hm_advapi32 = LoadLibrary ("Advapi32.dll");
291 s_pfn_Get_Token_Information =
292 (GetTokenInformation_Proc) GetProcAddress (hm_advapi32, "GetTokenInformation");
293 }
294 if (s_pfn_Get_Token_Information == NULL)
295 {
296 return FALSE;
297 }
298 return (
299 s_pfn_Get_Token_Information (
300 TokenHandle,
301 TokenInformationClass,
302 TokenInformation,
303 TokenInformationLength,
304 ReturnLength)
305 );
306 }
307
308 BOOL WINAPI lookup_account_sid (
309 LPCTSTR lpSystemName,
310 PSID Sid,
311 LPTSTR Name,
312 LPDWORD cbName,
313 LPTSTR DomainName,
314 LPDWORD cbDomainName,
315 PSID_NAME_USE peUse)
316 {
317 static LookupAccountSid_Proc s_pfn_Lookup_Account_Sid = NULL;
318 HMODULE hm_advapi32 = NULL;
319 if (is_windows_9x () == TRUE)
320 {
321 return FALSE;
322 }
323 if (g_b_init_lookup_account_sid == 0)
324 {
325 g_b_init_lookup_account_sid = 1;
326 hm_advapi32 = LoadLibrary ("Advapi32.dll");
327 s_pfn_Lookup_Account_Sid =
328 (LookupAccountSid_Proc) GetProcAddress (hm_advapi32, LookupAccountSid_Name);
329 }
330 if (s_pfn_Lookup_Account_Sid == NULL)
331 {
332 return FALSE;
333 }
334 return (
335 s_pfn_Lookup_Account_Sid (
336 lpSystemName,
337 Sid,
338 Name,
339 cbName,
340 DomainName,
341 cbDomainName,
342 peUse)
343 );
344 }
345
346 PSID_IDENTIFIER_AUTHORITY WINAPI get_sid_identifier_authority (
347 PSID pSid)
348 {
349 static GetSidIdentifierAuthority_Proc s_pfn_Get_Sid_Identifier_Authority = NULL;
350 HMODULE hm_advapi32 = NULL;
351 if (is_windows_9x () == TRUE)
352 {
353 return NULL;
354 }
355 if (g_b_init_get_sid_identifier_authority == 0)
356 {
357 g_b_init_get_sid_identifier_authority = 1;
358 hm_advapi32 = LoadLibrary ("Advapi32.dll");
359 s_pfn_Get_Sid_Identifier_Authority =
360 (GetSidIdentifierAuthority_Proc) GetProcAddress (
361 hm_advapi32, "GetSidIdentifierAuthority");
362 }
363 if (s_pfn_Get_Sid_Identifier_Authority == NULL)
364 {
365 return NULL;
366 }
367 return (s_pfn_Get_Sid_Identifier_Authority (pSid));
368 }
369
370 PDWORD WINAPI get_sid_sub_authority (
371 PSID pSid,
372 DWORD n)
373 {
374 static GetSidSubAuthority_Proc s_pfn_Get_Sid_Sub_Authority = NULL;
375 static DWORD zero = 0U;
376 HMODULE hm_advapi32 = NULL;
377 if (is_windows_9x () == TRUE)
378 {
379 return &zero;
380 }
381 if (g_b_init_get_sid_sub_authority == 0)
382 {
383 g_b_init_get_sid_sub_authority = 1;
384 hm_advapi32 = LoadLibrary ("Advapi32.dll");
385 s_pfn_Get_Sid_Sub_Authority =
386 (GetSidSubAuthority_Proc) GetProcAddress (
387 hm_advapi32, "GetSidSubAuthority");
388 }
389 if (s_pfn_Get_Sid_Sub_Authority == NULL)
390 {
391 return &zero;
392 }
393 return (s_pfn_Get_Sid_Sub_Authority (pSid, n));
394 }
395
396 PUCHAR WINAPI get_sid_sub_authority_count (
397 PSID pSid)
398 {
399 static GetSidSubAuthorityCount_Proc s_pfn_Get_Sid_Sub_Authority_Count = NULL;
400 static UCHAR zero = 0U;
401 HMODULE hm_advapi32 = NULL;
402 if (is_windows_9x () == TRUE)
403 {
404 return &zero;
405 }
406 if (g_b_init_get_sid_sub_authority_count == 0)
407 {
408 g_b_init_get_sid_sub_authority_count = 1;
409 hm_advapi32 = LoadLibrary ("Advapi32.dll");
410 s_pfn_Get_Sid_Sub_Authority_Count =
411 (GetSidSubAuthorityCount_Proc) GetProcAddress (
412 hm_advapi32, "GetSidSubAuthorityCount");
413 }
414 if (s_pfn_Get_Sid_Sub_Authority_Count == NULL)
415 {
416 return &zero;
417 }
418 return (s_pfn_Get_Sid_Sub_Authority_Count (pSid));
419 }
420
421 /*
422 END: Wrapper functions around OpenProcessToken
423 and other functions in advapi32.dll that are only
424 supported in Windows NT / 2k / XP
425 */
426
427 \f
428 /* Equivalent of strerror for W32 error codes. */
429 char *
430 w32_strerror (int error_no)
431 {
432 static char buf[500];
433
434 if (error_no == 0)
435 error_no = GetLastError ();
436
437 buf[0] = '\0';
438 if (!FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM, NULL,
439 error_no,
440 0, /* choose most suitable language */
441 buf, sizeof (buf), NULL))
442 sprintf (buf, "w32 error %u", error_no);
443 return buf;
444 }
445
446 /* Return 1 if P is a valid pointer to an object of size SIZE. Return
447 0 if P is NOT a valid pointer. Return -1 if we cannot validate P.
448
449 This is called from alloc.c:valid_pointer_p. */
450 int
451 w32_valid_pointer_p (void *p, int size)
452 {
453 SIZE_T done;
454 HANDLE h = OpenProcess (PROCESS_VM_READ, FALSE, GetCurrentProcessId ());
455
456 if (h)
457 {
458 unsigned char *buf = alloca (size);
459 int retval = ReadProcessMemory (h, p, buf, size, &done);
460
461 CloseHandle (h);
462 return retval;
463 }
464 else
465 return -1;
466 }
467
468 static char startup_dir[MAXPATHLEN];
469
470 /* Get the current working directory. */
471 char *
472 getwd (char *dir)
473 {
474 #if 0
475 if (GetCurrentDirectory (MAXPATHLEN, dir) > 0)
476 return dir;
477 return NULL;
478 #else
479 /* Emacs doesn't actually change directory itself, and we want to
480 force our real wd to be where emacs.exe is to avoid unnecessary
481 conflicts when trying to rename or delete directories. */
482 strcpy (dir, startup_dir);
483 return dir;
484 #endif
485 }
486
487 #ifndef HAVE_SOCKETS
488 /* Emulate gethostname. */
489 int
490 gethostname (char *buffer, int size)
491 {
492 /* NT only allows small host names, so the buffer is
493 certainly large enough. */
494 return !GetComputerName (buffer, &size);
495 }
496 #endif /* HAVE_SOCKETS */
497
498 /* Emulate getloadavg. */
499 int
500 getloadavg (double loadavg[], int nelem)
501 {
502 int i;
503
504 /* A faithful emulation is going to have to be saved for a rainy day. */
505 for (i = 0; i < nelem; i++)
506 {
507 loadavg[i] = 0.0;
508 }
509 return i;
510 }
511
512 /* Emulate getpwuid, getpwnam and others. */
513
514 #define PASSWD_FIELD_SIZE 256
515
516 static char the_passwd_name[PASSWD_FIELD_SIZE];
517 static char the_passwd_passwd[PASSWD_FIELD_SIZE];
518 static char the_passwd_gecos[PASSWD_FIELD_SIZE];
519 static char the_passwd_dir[PASSWD_FIELD_SIZE];
520 static char the_passwd_shell[PASSWD_FIELD_SIZE];
521
522 static struct passwd the_passwd =
523 {
524 the_passwd_name,
525 the_passwd_passwd,
526 0,
527 0,
528 0,
529 the_passwd_gecos,
530 the_passwd_dir,
531 the_passwd_shell,
532 };
533
534 static struct group the_group =
535 {
536 /* There are no groups on NT, so we just return "root" as the
537 group name. */
538 "root",
539 };
540
541 int
542 getuid ()
543 {
544 return the_passwd.pw_uid;
545 }
546
547 int
548 geteuid ()
549 {
550 /* I could imagine arguing for checking to see whether the user is
551 in the Administrators group and returning a UID of 0 for that
552 case, but I don't know how wise that would be in the long run. */
553 return getuid ();
554 }
555
556 int
557 getgid ()
558 {
559 return the_passwd.pw_gid;
560 }
561
562 int
563 getegid ()
564 {
565 return getgid ();
566 }
567
568 struct passwd *
569 getpwuid (int uid)
570 {
571 if (uid == the_passwd.pw_uid)
572 return &the_passwd;
573 return NULL;
574 }
575
576 struct group *
577 getgrgid (gid_t gid)
578 {
579 return &the_group;
580 }
581
582 struct passwd *
583 getpwnam (char *name)
584 {
585 struct passwd *pw;
586
587 pw = getpwuid (getuid ());
588 if (!pw)
589 return pw;
590
591 if (stricmp (name, pw->pw_name))
592 return NULL;
593
594 return pw;
595 }
596
597 void
598 init_user_info ()
599 {
600 /* Find the user's real name by opening the process token and
601 looking up the name associated with the user-sid in that token.
602
603 Use the relative portion of the identifier authority value from
604 the user-sid as the user id value (same for group id using the
605 primary group sid from the process token). */
606
607 char name[UNLEN+1], domain[1025];
608 DWORD length = sizeof (name), dlength = sizeof (domain), trash;
609 HANDLE token = NULL;
610 SID_NAME_USE user_type;
611 unsigned char buf[1024];
612 TOKEN_USER user_token;
613 TOKEN_PRIMARY_GROUP group_token;
614
615 if (open_process_token (GetCurrentProcess (), TOKEN_QUERY, &token)
616 && get_token_information (token, TokenUser,
617 (PVOID)buf, sizeof (buf), &trash)
618 && (memcpy (&user_token, buf, sizeof (user_token)),
619 lookup_account_sid (NULL, user_token.User.Sid, name, &length,
620 domain, &dlength, &user_type)))
621 {
622 strcpy (the_passwd.pw_name, name);
623 /* Determine a reasonable uid value. */
624 if (stricmp ("administrator", name) == 0)
625 {
626 the_passwd.pw_uid = 500; /* well-known Administrator uid */
627 the_passwd.pw_gid = 513; /* well-known None gid */
628 }
629 else
630 {
631 /* Use the last sub-authority value of the RID, the relative
632 portion of the SID, as user/group ID. */
633 DWORD n_subauthorities =
634 *get_sid_sub_authority_count (user_token.User.Sid);
635
636 if (n_subauthorities < 1)
637 the_passwd.pw_uid = 0; /* the "World" RID */
638 else
639 {
640 the_passwd.pw_uid =
641 *get_sid_sub_authority (user_token.User.Sid,
642 n_subauthorities - 1);
643 }
644
645 /* Get group id */
646 if (get_token_information (token, TokenPrimaryGroup,
647 (PVOID)buf, sizeof (buf), &trash))
648 {
649 memcpy (&group_token, buf, sizeof (group_token));
650 n_subauthorities =
651 *get_sid_sub_authority_count (group_token.PrimaryGroup);
652
653 if (n_subauthorities < 1)
654 the_passwd.pw_gid = 0; /* the "World" RID */
655 else
656 {
657 the_passwd.pw_gid =
658 *get_sid_sub_authority (group_token.PrimaryGroup,
659 n_subauthorities - 1);
660 }
661 }
662 else
663 the_passwd.pw_gid = the_passwd.pw_uid;
664 }
665 }
666 /* If security calls are not supported (presumably because we
667 are running under Windows 95), fallback to this. */
668 else if (GetUserName (name, &length))
669 {
670 strcpy (the_passwd.pw_name, name);
671 if (stricmp ("administrator", name) == 0)
672 the_passwd.pw_uid = 0;
673 else
674 the_passwd.pw_uid = 123;
675 the_passwd.pw_gid = the_passwd.pw_uid;
676 }
677 else
678 {
679 strcpy (the_passwd.pw_name, "unknown");
680 the_passwd.pw_uid = 123;
681 the_passwd.pw_gid = 123;
682 }
683
684 /* Ensure HOME and SHELL are defined. */
685 if (getenv ("HOME") == NULL)
686 abort ();
687 if (getenv ("SHELL") == NULL)
688 abort ();
689
690 /* Set dir and shell from environment variables. */
691 strcpy (the_passwd.pw_dir, getenv ("HOME"));
692 strcpy (the_passwd.pw_shell, getenv ("SHELL"));
693
694 if (token)
695 CloseHandle (token);
696 }
697
698 int
699 random ()
700 {
701 /* rand () on NT gives us 15 random bits...hack together 30 bits. */
702 return ((rand () << 15) | rand ());
703 }
704
705 void
706 srandom (int seed)
707 {
708 srand (seed);
709 }
710
711
712 /* Normalize filename by converting all path separators to
713 the specified separator. Also conditionally convert upper
714 case path name components to lower case. */
715
716 static void
717 normalize_filename (fp, path_sep)
718 register char *fp;
719 char path_sep;
720 {
721 char sep;
722 char *elem;
723
724 /* Always lower-case drive letters a-z, even if the filesystem
725 preserves case in filenames.
726 This is so filenames can be compared by string comparison
727 functions that are case-sensitive. Even case-preserving filesystems
728 do not distinguish case in drive letters. */
729 if (fp[1] == ':' && *fp >= 'A' && *fp <= 'Z')
730 {
731 *fp += 'a' - 'A';
732 fp += 2;
733 }
734
735 if (NILP (Vw32_downcase_file_names))
736 {
737 while (*fp)
738 {
739 if (*fp == '/' || *fp == '\\')
740 *fp = path_sep;
741 fp++;
742 }
743 return;
744 }
745
746 sep = path_sep; /* convert to this path separator */
747 elem = fp; /* start of current path element */
748
749 do {
750 if (*fp >= 'a' && *fp <= 'z')
751 elem = 0; /* don't convert this element */
752
753 if (*fp == 0 || *fp == ':')
754 {
755 sep = *fp; /* restore current separator (or 0) */
756 *fp = '/'; /* after conversion of this element */
757 }
758
759 if (*fp == '/' || *fp == '\\')
760 {
761 if (elem && elem != fp)
762 {
763 *fp = 0; /* temporary end of string */
764 _strlwr (elem); /* while we convert to lower case */
765 }
766 *fp = sep; /* convert (or restore) path separator */
767 elem = fp + 1; /* next element starts after separator */
768 sep = path_sep;
769 }
770 } while (*fp++);
771 }
772
773 /* Destructively turn backslashes into slashes. */
774 void
775 dostounix_filename (p)
776 register char *p;
777 {
778 normalize_filename (p, '/');
779 }
780
781 /* Destructively turn slashes into backslashes. */
782 void
783 unixtodos_filename (p)
784 register char *p;
785 {
786 normalize_filename (p, '\\');
787 }
788
789 /* Remove all CR's that are followed by a LF.
790 (From msdos.c...probably should figure out a way to share it,
791 although this code isn't going to ever change.) */
792 int
793 crlf_to_lf (n, buf)
794 register int n;
795 register unsigned char *buf;
796 {
797 unsigned char *np = buf;
798 unsigned char *startp = buf;
799 unsigned char *endp = buf + n;
800
801 if (n == 0)
802 return n;
803 while (buf < endp - 1)
804 {
805 if (*buf == 0x0d)
806 {
807 if (*(++buf) != 0x0a)
808 *np++ = 0x0d;
809 }
810 else
811 *np++ = *buf++;
812 }
813 if (buf < endp)
814 *np++ = *buf++;
815 return np - startp;
816 }
817
818 /* Parse the root part of file name, if present. Return length and
819 optionally store pointer to char after root. */
820 static int
821 parse_root (char * name, char ** pPath)
822 {
823 char * start = name;
824
825 if (name == NULL)
826 return 0;
827
828 /* find the root name of the volume if given */
829 if (isalpha (name[0]) && name[1] == ':')
830 {
831 /* skip past drive specifier */
832 name += 2;
833 if (IS_DIRECTORY_SEP (name[0]))
834 name++;
835 }
836 else if (IS_DIRECTORY_SEP (name[0]) && IS_DIRECTORY_SEP (name[1]))
837 {
838 int slashes = 2;
839 name += 2;
840 do
841 {
842 if (IS_DIRECTORY_SEP (*name) && --slashes == 0)
843 break;
844 name++;
845 }
846 while ( *name );
847 if (IS_DIRECTORY_SEP (name[0]))
848 name++;
849 }
850
851 if (pPath)
852 *pPath = name;
853
854 return name - start;
855 }
856
857 /* Get long base name for name; name is assumed to be absolute. */
858 static int
859 get_long_basename (char * name, char * buf, int size)
860 {
861 WIN32_FIND_DATA find_data;
862 HANDLE dir_handle;
863 int len = 0;
864
865 /* must be valid filename, no wild cards or other invalid characters */
866 if (_mbspbrk (name, "*?|<>\""))
867 return 0;
868
869 dir_handle = FindFirstFile (name, &find_data);
870 if (dir_handle != INVALID_HANDLE_VALUE)
871 {
872 if ((len = strlen (find_data.cFileName)) < size)
873 memcpy (buf, find_data.cFileName, len + 1);
874 else
875 len = 0;
876 FindClose (dir_handle);
877 }
878 return len;
879 }
880
881 /* Get long name for file, if possible (assumed to be absolute). */
882 BOOL
883 w32_get_long_filename (char * name, char * buf, int size)
884 {
885 char * o = buf;
886 char * p;
887 char * q;
888 char full[ MAX_PATH ];
889 int len;
890
891 len = strlen (name);
892 if (len >= MAX_PATH)
893 return FALSE;
894
895 /* Use local copy for destructive modification. */
896 memcpy (full, name, len+1);
897 unixtodos_filename (full);
898
899 /* Copy root part verbatim. */
900 len = parse_root (full, &p);
901 memcpy (o, full, len);
902 o += len;
903 *o = '\0';
904 size -= len;
905
906 while (p != NULL && *p)
907 {
908 q = p;
909 p = strchr (q, '\\');
910 if (p) *p = '\0';
911 len = get_long_basename (full, o, size);
912 if (len > 0)
913 {
914 o += len;
915 size -= len;
916 if (p != NULL)
917 {
918 *p++ = '\\';
919 if (size < 2)
920 return FALSE;
921 *o++ = '\\';
922 size--;
923 *o = '\0';
924 }
925 }
926 else
927 return FALSE;
928 }
929
930 return TRUE;
931 }
932
933 int
934 is_unc_volume (const char *filename)
935 {
936 const char *ptr = filename;
937
938 if (!IS_DIRECTORY_SEP (ptr[0]) || !IS_DIRECTORY_SEP (ptr[1]) || !ptr[2])
939 return 0;
940
941 if (_mbspbrk (ptr + 2, "*?|<>\"\\/"))
942 return 0;
943
944 return 1;
945 }
946
947 /* Routines that are no-ops on NT but are defined to get Emacs to compile. */
948
949 int
950 sigsetmask (int signal_mask)
951 {
952 return 0;
953 }
954
955 int
956 sigmask (int sig)
957 {
958 return 0;
959 }
960
961 int
962 sigblock (int sig)
963 {
964 return 0;
965 }
966
967 int
968 sigunblock (int sig)
969 {
970 return 0;
971 }
972
973 int
974 setpgrp (int pid, int gid)
975 {
976 return 0;
977 }
978
979 int
980 alarm (int seconds)
981 {
982 return 0;
983 }
984
985 #define REG_ROOT "SOFTWARE\\GNU\\Emacs"
986
987 LPBYTE
988 w32_get_resource (key, lpdwtype)
989 char *key;
990 LPDWORD lpdwtype;
991 {
992 LPBYTE lpvalue;
993 HKEY hrootkey = NULL;
994 DWORD cbData;
995
996 /* Check both the current user and the local machine to see if
997 we have any resources. */
998
999 if (RegOpenKeyEx (HKEY_CURRENT_USER, REG_ROOT, 0, KEY_READ, &hrootkey) == ERROR_SUCCESS)
1000 {
1001 lpvalue = NULL;
1002
1003 if (RegQueryValueEx (hrootkey, key, NULL, NULL, NULL, &cbData) == ERROR_SUCCESS
1004 && (lpvalue = (LPBYTE) xmalloc (cbData)) != NULL
1005 && RegQueryValueEx (hrootkey, key, NULL, lpdwtype, lpvalue, &cbData) == ERROR_SUCCESS)
1006 {
1007 RegCloseKey (hrootkey);
1008 return (lpvalue);
1009 }
1010
1011 if (lpvalue) xfree (lpvalue);
1012
1013 RegCloseKey (hrootkey);
1014 }
1015
1016 if (RegOpenKeyEx (HKEY_LOCAL_MACHINE, REG_ROOT, 0, KEY_READ, &hrootkey) == ERROR_SUCCESS)
1017 {
1018 lpvalue = NULL;
1019
1020 if (RegQueryValueEx (hrootkey, key, NULL, NULL, NULL, &cbData) == ERROR_SUCCESS
1021 && (lpvalue = (LPBYTE) xmalloc (cbData)) != NULL
1022 && RegQueryValueEx (hrootkey, key, NULL, lpdwtype, lpvalue, &cbData) == ERROR_SUCCESS)
1023 {
1024 RegCloseKey (hrootkey);
1025 return (lpvalue);
1026 }
1027
1028 if (lpvalue) xfree (lpvalue);
1029
1030 RegCloseKey (hrootkey);
1031 }
1032
1033 return (NULL);
1034 }
1035
1036 char *get_emacs_configuration (void);
1037 extern Lisp_Object Vsystem_configuration;
1038
1039 void
1040 init_environment (char ** argv)
1041 {
1042 static const char * const tempdirs[] = {
1043 "$TMPDIR", "$TEMP", "$TMP", "c:/"
1044 };
1045
1046 int i;
1047
1048 const int imax = sizeof (tempdirs) / sizeof (tempdirs[0]);
1049
1050 /* Make sure they have a usable $TMPDIR. Many Emacs functions use
1051 temporary files and assume "/tmp" if $TMPDIR is unset, which
1052 will break on DOS/Windows. Refuse to work if we cannot find
1053 a directory, not even "c:/", usable for that purpose. */
1054 for (i = 0; i < imax ; i++)
1055 {
1056 const char *tmp = tempdirs[i];
1057
1058 if (*tmp == '$')
1059 tmp = getenv (tmp + 1);
1060 /* Note that `access' can lie to us if the directory resides on a
1061 read-only filesystem, like CD-ROM or a write-protected floppy.
1062 The only way to be really sure is to actually create a file and
1063 see if it succeeds. But I think that's too much to ask. */
1064 if (tmp && _access (tmp, D_OK) == 0)
1065 {
1066 char * var = alloca (strlen (tmp) + 8);
1067 sprintf (var, "TMPDIR=%s", tmp);
1068 _putenv (strdup (var));
1069 break;
1070 }
1071 }
1072 if (i >= imax)
1073 cmd_error_internal
1074 (Fcons (Qerror,
1075 Fcons (build_string ("no usable temporary directories found!!"),
1076 Qnil)),
1077 "While setting TMPDIR: ");
1078
1079 /* Check for environment variables and use registry settings if they
1080 don't exist. Fallback on default values where applicable. */
1081 {
1082 int i;
1083 LPBYTE lpval;
1084 DWORD dwType;
1085 char locale_name[32];
1086 struct stat ignored;
1087 char default_home[MAX_PATH];
1088
1089 static const struct env_entry
1090 {
1091 char * name;
1092 char * def_value;
1093 } dflt_envvars[] =
1094 {
1095 {"HOME", "C:/"},
1096 {"PRELOAD_WINSOCK", NULL},
1097 {"emacs_dir", "C:/emacs"},
1098 {"EMACSLOADPATH", "%emacs_dir%/site-lisp;%emacs_dir%/../site-lisp;%emacs_dir%/lisp;%emacs_dir%/leim"},
1099 {"SHELL", "%emacs_dir%/bin/cmdproxy.exe"},
1100 {"EMACSDATA", "%emacs_dir%/etc"},
1101 {"EMACSPATH", "%emacs_dir%/bin"},
1102 /* We no longer set INFOPATH because Info-default-directory-list
1103 is then ignored. */
1104 /* {"INFOPATH", "%emacs_dir%/info"}, */
1105 {"EMACSDOC", "%emacs_dir%/etc"},
1106 {"TERM", "cmd"},
1107 {"LANG", NULL},
1108 };
1109
1110 #define N_ENV_VARS sizeof(dflt_envvars)/sizeof(dflt_envvars[0])
1111
1112 /* We need to copy dflt_envvars[] and work on the copy because we
1113 don't want the dumped Emacs to inherit the values of
1114 environment variables we saw during dumping (which could be on
1115 a different system). The defaults above must be left intact. */
1116 struct env_entry env_vars[N_ENV_VARS];
1117
1118 for (i = 0; i < N_ENV_VARS; i++)
1119 env_vars[i] = dflt_envvars[i];
1120
1121 /* For backwards compatibility, check if a .emacs file exists in C:/
1122 If not, then we can try to default to the appdata directory under the
1123 user's profile, which is more likely to be writable. */
1124 if (stat ("C:/.emacs", &ignored) < 0)
1125 {
1126 HRESULT profile_result;
1127 /* Dynamically load ShGetFolderPath, as it won't exist on versions
1128 of Windows 95 and NT4 that have not been updated to include
1129 MSIE 5. Also we don't link with shell32.dll by default. */
1130 HMODULE shell32_dll;
1131 ShGetFolderPath_fn get_folder_path;
1132 shell32_dll = GetModuleHandle ("shell32.dll");
1133 get_folder_path = (ShGetFolderPath_fn)
1134 GetProcAddress (shell32_dll, "SHGetFolderPathA");
1135
1136 if (get_folder_path != NULL)
1137 {
1138 profile_result = get_folder_path (NULL, CSIDL_APPDATA, NULL,
1139 0, default_home);
1140
1141 /* If we can't get the appdata dir, revert to old behaviour. */
1142 if (profile_result == S_OK)
1143 env_vars[0].def_value = default_home;
1144 }
1145
1146 /* Unload shell32.dll, it is not needed anymore. */
1147 FreeLibrary (shell32_dll);
1148 }
1149
1150 /* Get default locale info and use it for LANG. */
1151 if (GetLocaleInfo (LOCALE_USER_DEFAULT,
1152 LOCALE_SABBREVLANGNAME | LOCALE_USE_CP_ACP,
1153 locale_name, sizeof (locale_name)))
1154 {
1155 for (i = 0; i < N_ENV_VARS; i++)
1156 {
1157 if (strcmp (env_vars[i].name, "LANG") == 0)
1158 {
1159 env_vars[i].def_value = locale_name;
1160 break;
1161 }
1162 }
1163 }
1164
1165 #define SET_ENV_BUF_SIZE (4 * MAX_PATH) /* to cover EMACSLOADPATH */
1166
1167 /* Treat emacs_dir specially: set it unconditionally based on our
1168 location, if it appears that we are running from the bin subdir
1169 of a standard installation. */
1170 {
1171 char *p;
1172 char modname[MAX_PATH];
1173
1174 if (!GetModuleFileName (NULL, modname, MAX_PATH))
1175 abort ();
1176 if ((p = strrchr (modname, '\\')) == NULL)
1177 abort ();
1178 *p = 0;
1179
1180 if ((p = strrchr (modname, '\\')) && stricmp (p, "\\bin") == 0)
1181 {
1182 char buf[SET_ENV_BUF_SIZE];
1183
1184 *p = 0;
1185 for (p = modname; *p; p++)
1186 if (*p == '\\') *p = '/';
1187
1188 _snprintf (buf, sizeof(buf)-1, "emacs_dir=%s", modname);
1189 _putenv (strdup (buf));
1190 }
1191 /* Handle running emacs from the build directory: src/oo-spd/i386/ */
1192
1193 /* FIXME: should use substring of get_emacs_configuration ().
1194 But I don't think the Windows build supports alpha, mips etc
1195 anymore, so have taken the easy option for now. */
1196 else if (p && stricmp (p, "\\i386") == 0)
1197 {
1198 *p = 0;
1199 p = strrchr (modname, '\\');
1200 if (p != NULL)
1201 {
1202 *p = 0;
1203 p = strrchr (modname, '\\');
1204 if (p && stricmp (p, "\\src") == 0)
1205 {
1206 char buf[SET_ENV_BUF_SIZE];
1207
1208 *p = 0;
1209 for (p = modname; *p; p++)
1210 if (*p == '\\') *p = '/';
1211
1212 _snprintf (buf, sizeof(buf)-1, "emacs_dir=%s", modname);
1213 _putenv (strdup (buf));
1214 }
1215 }
1216 }
1217 }
1218
1219 for (i = 0; i < N_ENV_VARS; i++)
1220 {
1221 if (!getenv (env_vars[i].name))
1222 {
1223 int dont_free = 0;
1224
1225 if ((lpval = w32_get_resource (env_vars[i].name, &dwType)) == NULL
1226 /* Also ignore empty environment variables. */
1227 || *lpval == 0)
1228 {
1229 if (lpval) xfree (lpval);
1230 lpval = env_vars[i].def_value;
1231 dwType = REG_EXPAND_SZ;
1232 dont_free = 1;
1233 }
1234
1235 if (lpval)
1236 {
1237 char buf1[SET_ENV_BUF_SIZE], buf2[SET_ENV_BUF_SIZE];
1238
1239 if (dwType == REG_EXPAND_SZ)
1240 ExpandEnvironmentStrings ((LPSTR) lpval, buf1, sizeof(buf1));
1241 else if (dwType == REG_SZ)
1242 strcpy (buf1, lpval);
1243 if (dwType == REG_EXPAND_SZ || dwType == REG_SZ)
1244 {
1245 _snprintf (buf2, sizeof(buf2)-1, "%s=%s", env_vars[i].name,
1246 buf1);
1247 _putenv (strdup (buf2));
1248 }
1249
1250 if (!dont_free)
1251 xfree (lpval);
1252 }
1253 }
1254 }
1255 }
1256
1257 /* Rebuild system configuration to reflect invoking system. */
1258 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
1259
1260 /* Another special case: on NT, the PATH variable is actually named
1261 "Path" although cmd.exe (perhaps NT itself) arranges for
1262 environment variable lookup and setting to be case insensitive.
1263 However, Emacs assumes a fully case sensitive environment, so we
1264 need to change "Path" to "PATH" to match the expectations of
1265 various elisp packages. We do this by the sneaky method of
1266 modifying the string in the C runtime environ entry.
1267
1268 The same applies to COMSPEC. */
1269 {
1270 char ** envp;
1271
1272 for (envp = environ; *envp; envp++)
1273 if (_strnicmp (*envp, "PATH=", 5) == 0)
1274 memcpy (*envp, "PATH=", 5);
1275 else if (_strnicmp (*envp, "COMSPEC=", 8) == 0)
1276 memcpy (*envp, "COMSPEC=", 8);
1277 }
1278
1279 /* Remember the initial working directory for getwd, then make the
1280 real wd be the location of emacs.exe to avoid conflicts when
1281 renaming or deleting directories. (We also don't call chdir when
1282 running subprocesses for the same reason.) */
1283 if (!GetCurrentDirectory (MAXPATHLEN, startup_dir))
1284 abort ();
1285
1286 {
1287 char *p;
1288 static char modname[MAX_PATH];
1289
1290 if (!GetModuleFileName (NULL, modname, MAX_PATH))
1291 abort ();
1292 if ((p = strrchr (modname, '\\')) == NULL)
1293 abort ();
1294 *p = 0;
1295
1296 SetCurrentDirectory (modname);
1297
1298 /* Ensure argv[0] has the full path to Emacs. */
1299 *p = '\\';
1300 argv[0] = modname;
1301 }
1302
1303 /* Determine if there is a middle mouse button, to allow parse_button
1304 to decide whether right mouse events should be mouse-2 or
1305 mouse-3. */
1306 w32_num_mouse_buttons = GetSystemMetrics (SM_CMOUSEBUTTONS);
1307
1308 init_user_info ();
1309 }
1310
1311 char *
1312 emacs_root_dir (void)
1313 {
1314 static char root_dir[FILENAME_MAX];
1315 const char *p;
1316
1317 p = getenv ("emacs_dir");
1318 if (p == NULL)
1319 abort ();
1320 strcpy (root_dir, p);
1321 root_dir[parse_root (root_dir, NULL)] = '\0';
1322 dostounix_filename (root_dir);
1323 return root_dir;
1324 }
1325
1326 /* We don't have scripts to automatically determine the system configuration
1327 for Emacs before it's compiled, and we don't want to have to make the
1328 user enter it, so we define EMACS_CONFIGURATION to invoke this runtime
1329 routine. */
1330
1331 char *
1332 get_emacs_configuration (void)
1333 {
1334 char *arch, *oem, *os;
1335 int build_num;
1336 static char configuration_buffer[32];
1337
1338 /* Determine the processor type. */
1339 switch (get_processor_type ())
1340 {
1341
1342 #ifdef PROCESSOR_INTEL_386
1343 case PROCESSOR_INTEL_386:
1344 case PROCESSOR_INTEL_486:
1345 case PROCESSOR_INTEL_PENTIUM:
1346 arch = "i386";
1347 break;
1348 #endif
1349
1350 #ifdef PROCESSOR_MIPS_R2000
1351 case PROCESSOR_MIPS_R2000:
1352 case PROCESSOR_MIPS_R3000:
1353 case PROCESSOR_MIPS_R4000:
1354 arch = "mips";
1355 break;
1356 #endif
1357
1358 #ifdef PROCESSOR_ALPHA_21064
1359 case PROCESSOR_ALPHA_21064:
1360 arch = "alpha";
1361 break;
1362 #endif
1363
1364 default:
1365 arch = "unknown";
1366 break;
1367 }
1368
1369 /* Use the OEM field to reflect the compiler/library combination. */
1370 #ifdef _MSC_VER
1371 #define COMPILER_NAME "msvc"
1372 #else
1373 #ifdef __GNUC__
1374 #define COMPILER_NAME "mingw"
1375 #else
1376 #define COMPILER_NAME "unknown"
1377 #endif
1378 #endif
1379 oem = COMPILER_NAME;
1380
1381 switch (osinfo_cache.dwPlatformId) {
1382 case VER_PLATFORM_WIN32_NT:
1383 os = "nt";
1384 build_num = osinfo_cache.dwBuildNumber;
1385 break;
1386 case VER_PLATFORM_WIN32_WINDOWS:
1387 if (osinfo_cache.dwMinorVersion == 0) {
1388 os = "windows95";
1389 } else {
1390 os = "windows98";
1391 }
1392 build_num = LOWORD (osinfo_cache.dwBuildNumber);
1393 break;
1394 case VER_PLATFORM_WIN32s:
1395 /* Not supported, should not happen. */
1396 os = "windows32s";
1397 build_num = LOWORD (osinfo_cache.dwBuildNumber);
1398 break;
1399 default:
1400 os = "unknown";
1401 build_num = 0;
1402 break;
1403 }
1404
1405 if (osinfo_cache.dwPlatformId == VER_PLATFORM_WIN32_NT) {
1406 sprintf (configuration_buffer, "%s-%s-%s%d.%d.%d", arch, oem, os,
1407 get_w32_major_version (), get_w32_minor_version (), build_num);
1408 } else {
1409 sprintf (configuration_buffer, "%s-%s-%s.%d", arch, oem, os, build_num);
1410 }
1411
1412 return configuration_buffer;
1413 }
1414
1415 char *
1416 get_emacs_configuration_options (void)
1417 {
1418 static char options_buffer[256];
1419
1420 /* Work out the effective configure options for this build. */
1421 #ifdef _MSC_VER
1422 #define COMPILER_VERSION "--with-msvc (%d.%02d)", _MSC_VER / 100, _MSC_VER % 100
1423 #else
1424 #ifdef __GNUC__
1425 #define COMPILER_VERSION "--with-gcc (%d.%d)", __GNUC__, __GNUC_MINOR__
1426 #else
1427 #define COMPILER_VERSION ""
1428 #endif
1429 #endif
1430
1431 sprintf (options_buffer, COMPILER_VERSION);
1432 #ifdef EMACSDEBUG
1433 strcat (options_buffer, " --no-opt");
1434 #endif
1435 #ifdef USER_CFLAGS
1436 strcat (options_buffer, " --cflags");
1437 strcat (options_buffer, USER_CFLAGS);
1438 #endif
1439 #ifdef USER_LDFLAGS
1440 strcat (options_buffer, " --ldflags");
1441 strcat (options_buffer, USER_LDFLAGS);
1442 #endif
1443 return options_buffer;
1444 }
1445
1446
1447 #include <sys/timeb.h>
1448
1449 /* Emulate gettimeofday (Ulrich Leodolter, 1/11/95). */
1450 void
1451 gettimeofday (struct timeval *tv, struct timezone *tz)
1452 {
1453 struct _timeb tb;
1454 _ftime (&tb);
1455
1456 tv->tv_sec = tb.time;
1457 tv->tv_usec = tb.millitm * 1000L;
1458 if (tz)
1459 {
1460 tz->tz_minuteswest = tb.timezone; /* minutes west of Greenwich */
1461 tz->tz_dsttime = tb.dstflag; /* type of dst correction */
1462 }
1463 }
1464
1465 /* ------------------------------------------------------------------------- */
1466 /* IO support and wrapper functions for W32 API. */
1467 /* ------------------------------------------------------------------------- */
1468
1469 /* Place a wrapper around the MSVC version of ctime. It returns NULL
1470 on network directories, so we handle that case here.
1471 (Ulrich Leodolter, 1/11/95). */
1472 char *
1473 sys_ctime (const time_t *t)
1474 {
1475 char *str = (char *) ctime (t);
1476 return (str ? str : "Sun Jan 01 00:00:00 1970");
1477 }
1478
1479 /* Emulate sleep...we could have done this with a define, but that
1480 would necessitate including windows.h in the files that used it.
1481 This is much easier. */
1482 void
1483 sys_sleep (int seconds)
1484 {
1485 Sleep (seconds * 1000);
1486 }
1487
1488 /* Internal MSVC functions for low-level descriptor munging */
1489 extern int __cdecl _set_osfhnd (int fd, long h);
1490 extern int __cdecl _free_osfhnd (int fd);
1491
1492 /* parallel array of private info on file handles */
1493 filedesc fd_info [ MAXDESC ];
1494
1495 typedef struct volume_info_data {
1496 struct volume_info_data * next;
1497
1498 /* time when info was obtained */
1499 DWORD timestamp;
1500
1501 /* actual volume info */
1502 char * root_dir;
1503 DWORD serialnum;
1504 DWORD maxcomp;
1505 DWORD flags;
1506 char * name;
1507 char * type;
1508 } volume_info_data;
1509
1510 /* Global referenced by various functions. */
1511 static volume_info_data volume_info;
1512
1513 /* Vector to indicate which drives are local and fixed (for which cached
1514 data never expires). */
1515 static BOOL fixed_drives[26];
1516
1517 /* Consider cached volume information to be stale if older than 10s,
1518 at least for non-local drives. Info for fixed drives is never stale. */
1519 #define DRIVE_INDEX( c ) ( (c) <= 'Z' ? (c) - 'A' : (c) - 'a' )
1520 #define VOLINFO_STILL_VALID( root_dir, info ) \
1521 ( ( isalpha (root_dir[0]) && \
1522 fixed_drives[ DRIVE_INDEX (root_dir[0]) ] ) \
1523 || GetTickCount () - info->timestamp < 10000 )
1524
1525 /* Cache support functions. */
1526
1527 /* Simple linked list with linear search is sufficient. */
1528 static volume_info_data *volume_cache = NULL;
1529
1530 static volume_info_data *
1531 lookup_volume_info (char * root_dir)
1532 {
1533 volume_info_data * info;
1534
1535 for (info = volume_cache; info; info = info->next)
1536 if (stricmp (info->root_dir, root_dir) == 0)
1537 break;
1538 return info;
1539 }
1540
1541 static void
1542 add_volume_info (char * root_dir, volume_info_data * info)
1543 {
1544 info->root_dir = xstrdup (root_dir);
1545 info->next = volume_cache;
1546 volume_cache = info;
1547 }
1548
1549
1550 /* Wrapper for GetVolumeInformation, which uses caching to avoid
1551 performance penalty (~2ms on 486 for local drives, 7.5ms for local
1552 cdrom drive, ~5-10ms or more for remote drives on LAN). */
1553 volume_info_data *
1554 GetCachedVolumeInformation (char * root_dir)
1555 {
1556 volume_info_data * info;
1557 char default_root[ MAX_PATH ];
1558
1559 /* NULL for root_dir means use root from current directory. */
1560 if (root_dir == NULL)
1561 {
1562 if (GetCurrentDirectory (MAX_PATH, default_root) == 0)
1563 return NULL;
1564 parse_root (default_root, &root_dir);
1565 *root_dir = 0;
1566 root_dir = default_root;
1567 }
1568
1569 /* Local fixed drives can be cached permanently. Removable drives
1570 cannot be cached permanently, since the volume name and serial
1571 number (if nothing else) can change. Remote drives should be
1572 treated as if they are removable, since there is no sure way to
1573 tell whether they are or not. Also, the UNC association of drive
1574 letters mapped to remote volumes can be changed at any time (even
1575 by other processes) without notice.
1576
1577 As a compromise, so we can benefit from caching info for remote
1578 volumes, we use a simple expiry mechanism to invalidate cache
1579 entries that are more than ten seconds old. */
1580
1581 #if 0
1582 /* No point doing this, because WNetGetConnection is even slower than
1583 GetVolumeInformation, consistently taking ~50ms on a 486 (FWIW,
1584 GetDriveType is about the only call of this type which does not
1585 involve network access, and so is extremely quick). */
1586
1587 /* Map drive letter to UNC if remote. */
1588 if ( isalpha( root_dir[0] ) && !fixed[ DRIVE_INDEX( root_dir[0] ) ] )
1589 {
1590 char remote_name[ 256 ];
1591 char drive[3] = { root_dir[0], ':' };
1592
1593 if (WNetGetConnection (drive, remote_name, sizeof (remote_name))
1594 == NO_ERROR)
1595 /* do something */ ;
1596 }
1597 #endif
1598
1599 info = lookup_volume_info (root_dir);
1600
1601 if (info == NULL || ! VOLINFO_STILL_VALID (root_dir, info))
1602 {
1603 char name[ 256 ];
1604 DWORD serialnum;
1605 DWORD maxcomp;
1606 DWORD flags;
1607 char type[ 256 ];
1608
1609 /* Info is not cached, or is stale. */
1610 if (!GetVolumeInformation (root_dir,
1611 name, sizeof (name),
1612 &serialnum,
1613 &maxcomp,
1614 &flags,
1615 type, sizeof (type)))
1616 return NULL;
1617
1618 /* Cache the volume information for future use, overwriting existing
1619 entry if present. */
1620 if (info == NULL)
1621 {
1622 info = (volume_info_data *) xmalloc (sizeof (volume_info_data));
1623 add_volume_info (root_dir, info);
1624 }
1625 else
1626 {
1627 xfree (info->name);
1628 xfree (info->type);
1629 }
1630
1631 info->name = xstrdup (name);
1632 info->serialnum = serialnum;
1633 info->maxcomp = maxcomp;
1634 info->flags = flags;
1635 info->type = xstrdup (type);
1636 info->timestamp = GetTickCount ();
1637 }
1638
1639 return info;
1640 }
1641
1642 /* Get information on the volume where name is held; set path pointer to
1643 start of pathname in name (past UNC header\volume header if present). */
1644 int
1645 get_volume_info (const char * name, const char ** pPath)
1646 {
1647 char temp[MAX_PATH];
1648 char *rootname = NULL; /* default to current volume */
1649 volume_info_data * info;
1650
1651 if (name == NULL)
1652 return FALSE;
1653
1654 /* find the root name of the volume if given */
1655 if (isalpha (name[0]) && name[1] == ':')
1656 {
1657 rootname = temp;
1658 temp[0] = *name++;
1659 temp[1] = *name++;
1660 temp[2] = '\\';
1661 temp[3] = 0;
1662 }
1663 else if (IS_DIRECTORY_SEP (name[0]) && IS_DIRECTORY_SEP (name[1]))
1664 {
1665 char *str = temp;
1666 int slashes = 4;
1667 rootname = temp;
1668 do
1669 {
1670 if (IS_DIRECTORY_SEP (*name) && --slashes == 0)
1671 break;
1672 *str++ = *name++;
1673 }
1674 while ( *name );
1675
1676 *str++ = '\\';
1677 *str = 0;
1678 }
1679
1680 if (pPath)
1681 *pPath = name;
1682
1683 info = GetCachedVolumeInformation (rootname);
1684 if (info != NULL)
1685 {
1686 /* Set global referenced by other functions. */
1687 volume_info = *info;
1688 return TRUE;
1689 }
1690 return FALSE;
1691 }
1692
1693 /* Determine if volume is FAT format (ie. only supports short 8.3
1694 names); also set path pointer to start of pathname in name. */
1695 int
1696 is_fat_volume (const char * name, const char ** pPath)
1697 {
1698 if (get_volume_info (name, pPath))
1699 return (volume_info.maxcomp == 12);
1700 return FALSE;
1701 }
1702
1703 /* Map filename to a valid 8.3 name if necessary. */
1704 const char *
1705 map_w32_filename (const char * name, const char ** pPath)
1706 {
1707 static char shortname[MAX_PATH];
1708 char * str = shortname;
1709 char c;
1710 char * path;
1711 const char * save_name = name;
1712
1713 if (strlen (name) >= MAX_PATH)
1714 {
1715 /* Return a filename which will cause callers to fail. */
1716 strcpy (shortname, "?");
1717 return shortname;
1718 }
1719
1720 if (is_fat_volume (name, (const char **)&path)) /* truncate to 8.3 */
1721 {
1722 register int left = 8; /* maximum number of chars in part */
1723 register int extn = 0; /* extension added? */
1724 register int dots = 2; /* maximum number of dots allowed */
1725
1726 while (name < path)
1727 *str++ = *name++; /* skip past UNC header */
1728
1729 while ((c = *name++))
1730 {
1731 switch ( c )
1732 {
1733 case '\\':
1734 case '/':
1735 *str++ = '\\';
1736 extn = 0; /* reset extension flags */
1737 dots = 2; /* max 2 dots */
1738 left = 8; /* max length 8 for main part */
1739 break;
1740 case ':':
1741 *str++ = ':';
1742 extn = 0; /* reset extension flags */
1743 dots = 2; /* max 2 dots */
1744 left = 8; /* max length 8 for main part */
1745 break;
1746 case '.':
1747 if ( dots )
1748 {
1749 /* Convert path components of the form .xxx to _xxx,
1750 but leave . and .. as they are. This allows .emacs
1751 to be read as _emacs, for example. */
1752
1753 if (! *name ||
1754 *name == '.' ||
1755 IS_DIRECTORY_SEP (*name))
1756 {
1757 *str++ = '.';
1758 dots--;
1759 }
1760 else
1761 {
1762 *str++ = '_';
1763 left--;
1764 dots = 0;
1765 }
1766 }
1767 else if ( !extn )
1768 {
1769 *str++ = '.';
1770 extn = 1; /* we've got an extension */
1771 left = 3; /* 3 chars in extension */
1772 }
1773 else
1774 {
1775 /* any embedded dots after the first are converted to _ */
1776 *str++ = '_';
1777 }
1778 break;
1779 case '~':
1780 case '#': /* don't lose these, they're important */
1781 if ( ! left )
1782 str[-1] = c; /* replace last character of part */
1783 /* FALLTHRU */
1784 default:
1785 if ( left )
1786 {
1787 *str++ = tolower (c); /* map to lower case (looks nicer) */
1788 left--;
1789 dots = 0; /* started a path component */
1790 }
1791 break;
1792 }
1793 }
1794 *str = '\0';
1795 }
1796 else
1797 {
1798 strcpy (shortname, name);
1799 unixtodos_filename (shortname);
1800 }
1801
1802 if (pPath)
1803 *pPath = shortname + (path - save_name);
1804
1805 return shortname;
1806 }
1807
1808 static int
1809 is_exec (const char * name)
1810 {
1811 char * p = strrchr (name, '.');
1812 return
1813 (p != NULL
1814 && (stricmp (p, ".exe") == 0 ||
1815 stricmp (p, ".com") == 0 ||
1816 stricmp (p, ".bat") == 0 ||
1817 stricmp (p, ".cmd") == 0));
1818 }
1819
1820 /* Emulate the Unix directory procedures opendir, closedir,
1821 and readdir. We can't use the procedures supplied in sysdep.c,
1822 so we provide them here. */
1823
1824 struct direct dir_static; /* simulated directory contents */
1825 static HANDLE dir_find_handle = INVALID_HANDLE_VALUE;
1826 static int dir_is_fat;
1827 static char dir_pathname[MAXPATHLEN+1];
1828 static WIN32_FIND_DATA dir_find_data;
1829
1830 /* Support shares on a network resource as subdirectories of a read-only
1831 root directory. */
1832 static HANDLE wnet_enum_handle = INVALID_HANDLE_VALUE;
1833 HANDLE open_unc_volume (const char *);
1834 char *read_unc_volume (HANDLE, char *, int);
1835 void close_unc_volume (HANDLE);
1836
1837 DIR *
1838 opendir (char *filename)
1839 {
1840 DIR *dirp;
1841
1842 /* Opening is done by FindFirstFile. However, a read is inherent to
1843 this operation, so we defer the open until read time. */
1844
1845 if (dir_find_handle != INVALID_HANDLE_VALUE)
1846 return NULL;
1847 if (wnet_enum_handle != INVALID_HANDLE_VALUE)
1848 return NULL;
1849
1850 if (is_unc_volume (filename))
1851 {
1852 wnet_enum_handle = open_unc_volume (filename);
1853 if (wnet_enum_handle == INVALID_HANDLE_VALUE)
1854 return NULL;
1855 }
1856
1857 if (!(dirp = (DIR *) malloc (sizeof (DIR))))
1858 return NULL;
1859
1860 dirp->dd_fd = 0;
1861 dirp->dd_loc = 0;
1862 dirp->dd_size = 0;
1863
1864 strncpy (dir_pathname, map_w32_filename (filename, NULL), MAXPATHLEN);
1865 dir_pathname[MAXPATHLEN] = '\0';
1866 dir_is_fat = is_fat_volume (filename, NULL);
1867
1868 return dirp;
1869 }
1870
1871 void
1872 closedir (DIR *dirp)
1873 {
1874 /* If we have a find-handle open, close it. */
1875 if (dir_find_handle != INVALID_HANDLE_VALUE)
1876 {
1877 FindClose (dir_find_handle);
1878 dir_find_handle = INVALID_HANDLE_VALUE;
1879 }
1880 else if (wnet_enum_handle != INVALID_HANDLE_VALUE)
1881 {
1882 close_unc_volume (wnet_enum_handle);
1883 wnet_enum_handle = INVALID_HANDLE_VALUE;
1884 }
1885 xfree ((char *) dirp);
1886 }
1887
1888 struct direct *
1889 readdir (DIR *dirp)
1890 {
1891 int downcase = !NILP (Vw32_downcase_file_names);
1892
1893 if (wnet_enum_handle != INVALID_HANDLE_VALUE)
1894 {
1895 if (!read_unc_volume (wnet_enum_handle,
1896 dir_find_data.cFileName,
1897 MAX_PATH))
1898 return NULL;
1899 }
1900 /* If we aren't dir_finding, do a find-first, otherwise do a find-next. */
1901 else if (dir_find_handle == INVALID_HANDLE_VALUE)
1902 {
1903 char filename[MAXNAMLEN + 3];
1904 int ln;
1905
1906 strcpy (filename, dir_pathname);
1907 ln = strlen (filename) - 1;
1908 if (!IS_DIRECTORY_SEP (filename[ln]))
1909 strcat (filename, "\\");
1910 strcat (filename, "*");
1911
1912 dir_find_handle = FindFirstFile (filename, &dir_find_data);
1913
1914 if (dir_find_handle == INVALID_HANDLE_VALUE)
1915 return NULL;
1916 }
1917 else
1918 {
1919 if (!FindNextFile (dir_find_handle, &dir_find_data))
1920 return NULL;
1921 }
1922
1923 /* Emacs never uses this value, so don't bother making it match
1924 value returned by stat(). */
1925 dir_static.d_ino = 1;
1926
1927 strcpy (dir_static.d_name, dir_find_data.cFileName);
1928
1929 /* If the file name in cFileName[] includes `?' characters, it means
1930 the original file name used characters that cannot be represented
1931 by the current ANSI codepage. To avoid total lossage, retrieve
1932 the short 8+3 alias of the long file name. */
1933 if (_mbspbrk (dir_static.d_name, "?"))
1934 {
1935 strcpy (dir_static.d_name, dir_find_data.cAlternateFileName);
1936 downcase = 1; /* 8+3 aliases are returned in all caps */
1937 }
1938 dir_static.d_namlen = strlen (dir_static.d_name);
1939 dir_static.d_reclen = sizeof (struct direct) - MAXNAMLEN + 3 +
1940 dir_static.d_namlen - dir_static.d_namlen % 4;
1941
1942 /* If the file name in cFileName[] includes `?' characters, it means
1943 the original file name used characters that cannot be represented
1944 by the current ANSI codepage. To avoid total lossage, retrieve
1945 the short 8+3 alias of the long file name. */
1946 if (_mbspbrk (dir_find_data.cFileName, "?"))
1947 {
1948 strcpy (dir_static.d_name, dir_find_data.cAlternateFileName);
1949 /* 8+3 aliases are returned in all caps, which could break
1950 various alists that look at filenames' extensions. */
1951 downcase = 1;
1952 }
1953 else
1954 strcpy (dir_static.d_name, dir_find_data.cFileName);
1955 dir_static.d_namlen = strlen (dir_static.d_name);
1956 if (dir_is_fat)
1957 _strlwr (dir_static.d_name);
1958 else if (downcase)
1959 {
1960 register char *p;
1961 for (p = dir_static.d_name; *p; p++)
1962 if (*p >= 'a' && *p <= 'z')
1963 break;
1964 if (!*p)
1965 _strlwr (dir_static.d_name);
1966 }
1967
1968 return &dir_static;
1969 }
1970
1971 HANDLE
1972 open_unc_volume (const char *path)
1973 {
1974 NETRESOURCE nr;
1975 HANDLE henum;
1976 int result;
1977
1978 nr.dwScope = RESOURCE_GLOBALNET;
1979 nr.dwType = RESOURCETYPE_DISK;
1980 nr.dwDisplayType = RESOURCEDISPLAYTYPE_SERVER;
1981 nr.dwUsage = RESOURCEUSAGE_CONTAINER;
1982 nr.lpLocalName = NULL;
1983 nr.lpRemoteName = (LPSTR)map_w32_filename (path, NULL);
1984 nr.lpComment = NULL;
1985 nr.lpProvider = NULL;
1986
1987 result = WNetOpenEnum(RESOURCE_GLOBALNET, RESOURCETYPE_DISK,
1988 RESOURCEUSAGE_CONNECTABLE, &nr, &henum);
1989
1990 if (result == NO_ERROR)
1991 return henum;
1992 else
1993 return INVALID_HANDLE_VALUE;
1994 }
1995
1996 char *
1997 read_unc_volume (HANDLE henum, char *readbuf, int size)
1998 {
1999 DWORD count;
2000 int result;
2001 DWORD bufsize = 512;
2002 char *buffer;
2003 char *ptr;
2004
2005 count = 1;
2006 buffer = alloca (bufsize);
2007 result = WNetEnumResource (wnet_enum_handle, &count, buffer, &bufsize);
2008 if (result != NO_ERROR)
2009 return NULL;
2010
2011 /* WNetEnumResource returns \\resource\share...skip forward to "share". */
2012 ptr = ((LPNETRESOURCE) buffer)->lpRemoteName;
2013 ptr += 2;
2014 while (*ptr && !IS_DIRECTORY_SEP (*ptr)) ptr++;
2015 ptr++;
2016
2017 strncpy (readbuf, ptr, size);
2018 return readbuf;
2019 }
2020
2021 void
2022 close_unc_volume (HANDLE henum)
2023 {
2024 if (henum != INVALID_HANDLE_VALUE)
2025 WNetCloseEnum (henum);
2026 }
2027
2028 DWORD
2029 unc_volume_file_attributes (const char *path)
2030 {
2031 HANDLE henum;
2032 DWORD attrs;
2033
2034 henum = open_unc_volume (path);
2035 if (henum == INVALID_HANDLE_VALUE)
2036 return -1;
2037
2038 attrs = FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_DIRECTORY;
2039
2040 close_unc_volume (henum);
2041
2042 return attrs;
2043 }
2044
2045 /* Ensure a network connection is authenticated. */
2046 static void
2047 logon_network_drive (const char *path)
2048 {
2049 NETRESOURCE resource;
2050 char share[MAX_PATH];
2051 int i, n_slashes;
2052 char drive[4];
2053
2054 sprintf (drive, "%c:\\", path[0]);
2055
2056 /* Only logon to networked drives. */
2057 if ((!IS_DIRECTORY_SEP (path[0]) || !IS_DIRECTORY_SEP (path[1]))
2058 && GetDriveType (drive) != DRIVE_REMOTE)
2059 return;
2060
2061 n_slashes = 2;
2062 strncpy (share, path, MAX_PATH);
2063 /* Truncate to just server and share name. */
2064 for (i = 2; i < MAX_PATH; i++)
2065 {
2066 if (IS_DIRECTORY_SEP (share[i]) && ++n_slashes > 3)
2067 {
2068 share[i] = '\0';
2069 break;
2070 }
2071 }
2072
2073 resource.dwType = RESOURCETYPE_DISK;
2074 resource.lpLocalName = NULL;
2075 resource.lpRemoteName = share;
2076 resource.lpProvider = NULL;
2077
2078 WNetAddConnection2 (&resource, NULL, NULL, CONNECT_INTERACTIVE);
2079 }
2080
2081 /* Shadow some MSVC runtime functions to map requests for long filenames
2082 to reasonable short names if necessary. This was originally added to
2083 permit running Emacs on NT 3.1 on a FAT partition, which doesn't support
2084 long file names. */
2085
2086 int
2087 sys_access (const char * path, int mode)
2088 {
2089 DWORD attributes;
2090
2091 /* MSVC implementation doesn't recognize D_OK. */
2092 path = map_w32_filename (path, NULL);
2093 if (is_unc_volume (path))
2094 {
2095 attributes = unc_volume_file_attributes (path);
2096 if (attributes == -1) {
2097 errno = EACCES;
2098 return -1;
2099 }
2100 }
2101 else if ((attributes = GetFileAttributes (path)) == -1)
2102 {
2103 /* Should try mapping GetLastError to errno; for now just indicate
2104 that path doesn't exist. */
2105 errno = EACCES;
2106 return -1;
2107 }
2108 if ((mode & X_OK) != 0 && !is_exec (path))
2109 {
2110 errno = EACCES;
2111 return -1;
2112 }
2113 if ((mode & W_OK) != 0 && (attributes & FILE_ATTRIBUTE_READONLY) != 0)
2114 {
2115 errno = EACCES;
2116 return -1;
2117 }
2118 if ((mode & D_OK) != 0 && (attributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
2119 {
2120 errno = EACCES;
2121 return -1;
2122 }
2123 return 0;
2124 }
2125
2126 int
2127 sys_chdir (const char * path)
2128 {
2129 return _chdir (map_w32_filename (path, NULL));
2130 }
2131
2132 int
2133 sys_chmod (const char * path, int mode)
2134 {
2135 return _chmod (map_w32_filename (path, NULL), mode);
2136 }
2137
2138 int
2139 sys_chown (const char *path, uid_t owner, gid_t group)
2140 {
2141 if (sys_chmod (path, S_IREAD) == -1) /* check if file exists */
2142 return -1;
2143 return 0;
2144 }
2145
2146 int
2147 sys_creat (const char * path, int mode)
2148 {
2149 return _creat (map_w32_filename (path, NULL), mode);
2150 }
2151
2152 FILE *
2153 sys_fopen(const char * path, const char * mode)
2154 {
2155 int fd;
2156 int oflag;
2157 const char * mode_save = mode;
2158
2159 /* Force all file handles to be non-inheritable. This is necessary to
2160 ensure child processes don't unwittingly inherit handles that might
2161 prevent future file access. */
2162
2163 if (mode[0] == 'r')
2164 oflag = O_RDONLY;
2165 else if (mode[0] == 'w' || mode[0] == 'a')
2166 oflag = O_WRONLY | O_CREAT | O_TRUNC;
2167 else
2168 return NULL;
2169
2170 /* Only do simplistic option parsing. */
2171 while (*++mode)
2172 if (mode[0] == '+')
2173 {
2174 oflag &= ~(O_RDONLY | O_WRONLY);
2175 oflag |= O_RDWR;
2176 }
2177 else if (mode[0] == 'b')
2178 {
2179 oflag &= ~O_TEXT;
2180 oflag |= O_BINARY;
2181 }
2182 else if (mode[0] == 't')
2183 {
2184 oflag &= ~O_BINARY;
2185 oflag |= O_TEXT;
2186 }
2187 else break;
2188
2189 fd = _open (map_w32_filename (path, NULL), oflag | _O_NOINHERIT, 0644);
2190 if (fd < 0)
2191 return NULL;
2192
2193 return _fdopen (fd, mode_save);
2194 }
2195
2196 /* This only works on NTFS volumes, but is useful to have. */
2197 int
2198 sys_link (const char * old, const char * new)
2199 {
2200 HANDLE fileh;
2201 int result = -1;
2202 char oldname[MAX_PATH], newname[MAX_PATH];
2203
2204 if (old == NULL || new == NULL)
2205 {
2206 errno = ENOENT;
2207 return -1;
2208 }
2209
2210 strcpy (oldname, map_w32_filename (old, NULL));
2211 strcpy (newname, map_w32_filename (new, NULL));
2212
2213 fileh = CreateFile (oldname, 0, 0, NULL, OPEN_EXISTING,
2214 FILE_FLAG_BACKUP_SEMANTICS, NULL);
2215 if (fileh != INVALID_HANDLE_VALUE)
2216 {
2217 int wlen;
2218
2219 /* Confusingly, the "alternate" stream name field does not apply
2220 when restoring a hard link, and instead contains the actual
2221 stream data for the link (ie. the name of the link to create).
2222 The WIN32_STREAM_ID structure before the cStreamName field is
2223 the stream header, which is then immediately followed by the
2224 stream data. */
2225
2226 struct {
2227 WIN32_STREAM_ID wid;
2228 WCHAR wbuffer[MAX_PATH]; /* extra space for link name */
2229 } data;
2230
2231 wlen = MultiByteToWideChar (CP_ACP, MB_PRECOMPOSED, newname, -1,
2232 data.wid.cStreamName, MAX_PATH);
2233 if (wlen > 0)
2234 {
2235 LPVOID context = NULL;
2236 DWORD wbytes = 0;
2237
2238 data.wid.dwStreamId = BACKUP_LINK;
2239 data.wid.dwStreamAttributes = 0;
2240 data.wid.Size.LowPart = wlen * sizeof(WCHAR);
2241 data.wid.Size.HighPart = 0;
2242 data.wid.dwStreamNameSize = 0;
2243
2244 if (BackupWrite (fileh, (LPBYTE)&data,
2245 offsetof (WIN32_STREAM_ID, cStreamName)
2246 + data.wid.Size.LowPart,
2247 &wbytes, FALSE, FALSE, &context)
2248 && BackupWrite (fileh, NULL, 0, &wbytes, TRUE, FALSE, &context))
2249 {
2250 /* succeeded */
2251 result = 0;
2252 }
2253 else
2254 {
2255 /* Should try mapping GetLastError to errno; for now just
2256 indicate a general error (eg. links not supported). */
2257 errno = EINVAL; // perhaps EMLINK?
2258 }
2259 }
2260
2261 CloseHandle (fileh);
2262 }
2263 else
2264 errno = ENOENT;
2265
2266 return result;
2267 }
2268
2269 int
2270 sys_mkdir (const char * path)
2271 {
2272 return _mkdir (map_w32_filename (path, NULL));
2273 }
2274
2275 /* Because of long name mapping issues, we need to implement this
2276 ourselves. Also, MSVC's _mktemp returns NULL when it can't generate
2277 a unique name, instead of setting the input template to an empty
2278 string.
2279
2280 Standard algorithm seems to be use pid or tid with a letter on the
2281 front (in place of the 6 X's) and cycle through the letters to find a
2282 unique name. We extend that to allow any reasonable character as the
2283 first of the 6 X's. */
2284 char *
2285 sys_mktemp (char * template)
2286 {
2287 char * p;
2288 int i;
2289 unsigned uid = GetCurrentThreadId ();
2290 static char first_char[] = "abcdefghijklmnopqrstuvwyz0123456789!%-_@#";
2291
2292 if (template == NULL)
2293 return NULL;
2294 p = template + strlen (template);
2295 i = 5;
2296 /* replace up to the last 5 X's with uid in decimal */
2297 while (--p >= template && p[0] == 'X' && --i >= 0)
2298 {
2299 p[0] = '0' + uid % 10;
2300 uid /= 10;
2301 }
2302
2303 if (i < 0 && p[0] == 'X')
2304 {
2305 i = 0;
2306 do
2307 {
2308 int save_errno = errno;
2309 p[0] = first_char[i];
2310 if (sys_access (template, 0) < 0)
2311 {
2312 errno = save_errno;
2313 return template;
2314 }
2315 }
2316 while (++i < sizeof (first_char));
2317 }
2318
2319 /* Template is badly formed or else we can't generate a unique name,
2320 so return empty string */
2321 template[0] = 0;
2322 return template;
2323 }
2324
2325 int
2326 sys_open (const char * path, int oflag, int mode)
2327 {
2328 const char* mpath = map_w32_filename (path, NULL);
2329 /* Try to open file without _O_CREAT, to be able to write to hidden
2330 and system files. Force all file handles to be
2331 non-inheritable. */
2332 int res = _open (mpath, (oflag & ~_O_CREAT) | _O_NOINHERIT, mode);
2333 if (res >= 0)
2334 return res;
2335 return _open (mpath, oflag | _O_NOINHERIT, mode);
2336 }
2337
2338 int
2339 sys_rename (const char * oldname, const char * newname)
2340 {
2341 BOOL result;
2342 char temp[MAX_PATH];
2343
2344 /* MoveFile on Windows 95 doesn't correctly change the short file name
2345 alias in a number of circumstances (it is not easy to predict when
2346 just by looking at oldname and newname, unfortunately). In these
2347 cases, renaming through a temporary name avoids the problem.
2348
2349 A second problem on Windows 95 is that renaming through a temp name when
2350 newname is uppercase fails (the final long name ends up in
2351 lowercase, although the short alias might be uppercase) UNLESS the
2352 long temp name is not 8.3.
2353
2354 So, on Windows 95 we always rename through a temp name, and we make sure
2355 the temp name has a long extension to ensure correct renaming. */
2356
2357 strcpy (temp, map_w32_filename (oldname, NULL));
2358
2359 if (os_subtype == OS_WIN95)
2360 {
2361 char * o;
2362 char * p;
2363 int i = 0;
2364
2365 oldname = map_w32_filename (oldname, NULL);
2366 if (o = strrchr (oldname, '\\'))
2367 o++;
2368 else
2369 o = (char *) oldname;
2370
2371 if (p = strrchr (temp, '\\'))
2372 p++;
2373 else
2374 p = temp;
2375
2376 do
2377 {
2378 /* Force temp name to require a manufactured 8.3 alias - this
2379 seems to make the second rename work properly. */
2380 sprintf (p, "_.%s.%u", o, i);
2381 i++;
2382 result = rename (oldname, temp);
2383 }
2384 /* This loop must surely terminate! */
2385 while (result < 0 && errno == EEXIST);
2386 if (result < 0)
2387 return -1;
2388 }
2389
2390 /* Emulate Unix behaviour - newname is deleted if it already exists
2391 (at least if it is a file; don't do this for directories).
2392
2393 Since we mustn't do this if we are just changing the case of the
2394 file name (we would end up deleting the file we are trying to
2395 rename!), we let rename detect if the destination file already
2396 exists - that way we avoid the possible pitfalls of trying to
2397 determine ourselves whether two names really refer to the same
2398 file, which is not always possible in the general case. (Consider
2399 all the permutations of shared or subst'd drives, etc.) */
2400
2401 newname = map_w32_filename (newname, NULL);
2402 result = rename (temp, newname);
2403
2404 if (result < 0
2405 && errno == EEXIST
2406 && _chmod (newname, 0666) == 0
2407 && _unlink (newname) == 0)
2408 result = rename (temp, newname);
2409
2410 return result;
2411 }
2412
2413 int
2414 sys_rmdir (const char * path)
2415 {
2416 return _rmdir (map_w32_filename (path, NULL));
2417 }
2418
2419 int
2420 sys_unlink (const char * path)
2421 {
2422 path = map_w32_filename (path, NULL);
2423
2424 /* On Unix, unlink works without write permission. */
2425 _chmod (path, 0666);
2426 return _unlink (path);
2427 }
2428
2429 static FILETIME utc_base_ft;
2430 static long double utc_base;
2431 static int init = 0;
2432
2433 static time_t
2434 convert_time (FILETIME ft)
2435 {
2436 long double ret;
2437
2438 if (!init)
2439 {
2440 /* Determine the delta between 1-Jan-1601 and 1-Jan-1970. */
2441 SYSTEMTIME st;
2442
2443 st.wYear = 1970;
2444 st.wMonth = 1;
2445 st.wDay = 1;
2446 st.wHour = 0;
2447 st.wMinute = 0;
2448 st.wSecond = 0;
2449 st.wMilliseconds = 0;
2450
2451 SystemTimeToFileTime (&st, &utc_base_ft);
2452 utc_base = (long double) utc_base_ft.dwHighDateTime
2453 * 4096.0L * 1024.0L * 1024.0L + utc_base_ft.dwLowDateTime;
2454 init = 1;
2455 }
2456
2457 if (CompareFileTime (&ft, &utc_base_ft) < 0)
2458 return 0;
2459
2460 ret = (long double) ft.dwHighDateTime
2461 * 4096.0L * 1024.0L * 1024.0L + ft.dwLowDateTime;
2462 ret -= utc_base;
2463 return (time_t) (ret * 1e-7L);
2464 }
2465
2466 void
2467 convert_from_time_t (time_t time, FILETIME * pft)
2468 {
2469 long double tmp;
2470
2471 if (!init)
2472 {
2473 /* Determine the delta between 1-Jan-1601 and 1-Jan-1970. */
2474 SYSTEMTIME st;
2475
2476 st.wYear = 1970;
2477 st.wMonth = 1;
2478 st.wDay = 1;
2479 st.wHour = 0;
2480 st.wMinute = 0;
2481 st.wSecond = 0;
2482 st.wMilliseconds = 0;
2483
2484 SystemTimeToFileTime (&st, &utc_base_ft);
2485 utc_base = (long double) utc_base_ft.dwHighDateTime
2486 * 4096 * 1024 * 1024 + utc_base_ft.dwLowDateTime;
2487 init = 1;
2488 }
2489
2490 /* time in 100ns units since 1-Jan-1601 */
2491 tmp = (long double) time * 1e7 + utc_base;
2492 pft->dwHighDateTime = (DWORD) (tmp / (4096.0 * 1024 * 1024));
2493 pft->dwLowDateTime = (DWORD) (tmp - (4096.0 * 1024 * 1024) * pft->dwHighDateTime);
2494 }
2495
2496 #if 0
2497 /* No reason to keep this; faking inode values either by hashing or even
2498 using the file index from GetInformationByHandle, is not perfect and
2499 so by default Emacs doesn't use the inode values on Windows.
2500 Instead, we now determine file-truename correctly (except for
2501 possible drive aliasing etc). */
2502
2503 /* Modified version of "PJW" algorithm (see the "Dragon" compiler book). */
2504 static unsigned
2505 hashval (const unsigned char * str)
2506 {
2507 unsigned h = 0;
2508 while (*str)
2509 {
2510 h = (h << 4) + *str++;
2511 h ^= (h >> 28);
2512 }
2513 return h;
2514 }
2515
2516 /* Return the hash value of the canonical pathname, excluding the
2517 drive/UNC header, to get a hopefully unique inode number. */
2518 static DWORD
2519 generate_inode_val (const char * name)
2520 {
2521 char fullname[ MAX_PATH ];
2522 char * p;
2523 unsigned hash;
2524
2525 /* Get the truly canonical filename, if it exists. (Note: this
2526 doesn't resolve aliasing due to subst commands, or recognise hard
2527 links. */
2528 if (!w32_get_long_filename ((char *)name, fullname, MAX_PATH))
2529 abort ();
2530
2531 parse_root (fullname, &p);
2532 /* Normal W32 filesystems are still case insensitive. */
2533 _strlwr (p);
2534 return hashval (p);
2535 }
2536
2537 #endif
2538
2539 /* MSVC stat function can't cope with UNC names and has other bugs, so
2540 replace it with our own. This also allows us to calculate consistent
2541 inode values without hacks in the main Emacs code. */
2542 int
2543 stat (const char * path, struct stat * buf)
2544 {
2545 char *name, *r;
2546 WIN32_FIND_DATA wfd;
2547 HANDLE fh;
2548 unsigned __int64 fake_inode;
2549 int permission;
2550 int len;
2551 int rootdir = FALSE;
2552
2553 if (path == NULL || buf == NULL)
2554 {
2555 errno = EFAULT;
2556 return -1;
2557 }
2558
2559 name = (char *) map_w32_filename (path, &path);
2560 /* Must be valid filename, no wild cards or other invalid
2561 characters. We use _mbspbrk to support multibyte strings that
2562 might look to strpbrk as if they included literal *, ?, and other
2563 characters mentioned below that are disallowed by Windows
2564 filesystems. */
2565 if (_mbspbrk (name, "*?|<>\""))
2566 {
2567 errno = ENOENT;
2568 return -1;
2569 }
2570
2571 /* If name is "c:/.." or "/.." then stat "c:/" or "/". */
2572 r = IS_DEVICE_SEP (name[1]) ? &name[2] : name;
2573 if (IS_DIRECTORY_SEP (r[0]) && r[1] == '.' && r[2] == '.' && r[3] == '\0')
2574 {
2575 r[1] = r[2] = '\0';
2576 }
2577
2578 /* Remove trailing directory separator, unless name is the root
2579 directory of a drive or UNC volume in which case ensure there
2580 is a trailing separator. */
2581 len = strlen (name);
2582 rootdir = (path >= name + len - 1
2583 && (IS_DIRECTORY_SEP (*path) || *path == 0));
2584 name = strcpy (alloca (len + 2), name);
2585
2586 if (is_unc_volume (name))
2587 {
2588 DWORD attrs = unc_volume_file_attributes (name);
2589
2590 if (attrs == -1)
2591 return -1;
2592
2593 memset (&wfd, 0, sizeof (wfd));
2594 wfd.dwFileAttributes = attrs;
2595 wfd.ftCreationTime = utc_base_ft;
2596 wfd.ftLastAccessTime = utc_base_ft;
2597 wfd.ftLastWriteTime = utc_base_ft;
2598 strcpy (wfd.cFileName, name);
2599 }
2600 else if (rootdir)
2601 {
2602 if (!IS_DIRECTORY_SEP (name[len-1]))
2603 strcat (name, "\\");
2604 if (GetDriveType (name) < 2)
2605 {
2606 errno = ENOENT;
2607 return -1;
2608 }
2609 memset (&wfd, 0, sizeof (wfd));
2610 wfd.dwFileAttributes = FILE_ATTRIBUTE_DIRECTORY;
2611 wfd.ftCreationTime = utc_base_ft;
2612 wfd.ftLastAccessTime = utc_base_ft;
2613 wfd.ftLastWriteTime = utc_base_ft;
2614 strcpy (wfd.cFileName, name);
2615 }
2616 else
2617 {
2618 if (IS_DIRECTORY_SEP (name[len-1]))
2619 name[len - 1] = 0;
2620
2621 /* (This is hacky, but helps when doing file completions on
2622 network drives.) Optimize by using information available from
2623 active readdir if possible. */
2624 len = strlen (dir_pathname);
2625 if (IS_DIRECTORY_SEP (dir_pathname[len-1]))
2626 len--;
2627 if (dir_find_handle != INVALID_HANDLE_VALUE
2628 && strnicmp (name, dir_pathname, len) == 0
2629 && IS_DIRECTORY_SEP (name[len])
2630 && stricmp (name + len + 1, dir_static.d_name) == 0)
2631 {
2632 /* This was the last entry returned by readdir. */
2633 wfd = dir_find_data;
2634 }
2635 else
2636 {
2637 logon_network_drive (name);
2638
2639 fh = FindFirstFile (name, &wfd);
2640 if (fh == INVALID_HANDLE_VALUE)
2641 {
2642 errno = ENOENT;
2643 return -1;
2644 }
2645 FindClose (fh);
2646 }
2647 }
2648
2649 if (!NILP (Vw32_get_true_file_attributes)
2650 && !(EQ (Vw32_get_true_file_attributes, Qlocal) &&
2651 GetDriveType (name) == DRIVE_FIXED)
2652 /* No access rights required to get info. */
2653 && (fh = CreateFile (name, 0, 0, NULL, OPEN_EXISTING,
2654 FILE_FLAG_BACKUP_SEMANTICS, NULL))
2655 != INVALID_HANDLE_VALUE)
2656 {
2657 /* This is more accurate in terms of gettting the correct number
2658 of links, but is quite slow (it is noticeable when Emacs is
2659 making a list of file name completions). */
2660 BY_HANDLE_FILE_INFORMATION info;
2661
2662 if (GetFileInformationByHandle (fh, &info))
2663 {
2664 buf->st_nlink = info.nNumberOfLinks;
2665 /* Might as well use file index to fake inode values, but this
2666 is not guaranteed to be unique unless we keep a handle open
2667 all the time (even then there are situations where it is
2668 not unique). Reputedly, there are at most 48 bits of info
2669 (on NTFS, presumably less on FAT). */
2670 fake_inode = info.nFileIndexHigh;
2671 fake_inode <<= 32;
2672 fake_inode += info.nFileIndexLow;
2673 }
2674 else
2675 {
2676 buf->st_nlink = 1;
2677 fake_inode = 0;
2678 }
2679
2680 if (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
2681 {
2682 buf->st_mode = S_IFDIR;
2683 }
2684 else
2685 {
2686 switch (GetFileType (fh))
2687 {
2688 case FILE_TYPE_DISK:
2689 buf->st_mode = S_IFREG;
2690 break;
2691 case FILE_TYPE_PIPE:
2692 buf->st_mode = S_IFIFO;
2693 break;
2694 case FILE_TYPE_CHAR:
2695 case FILE_TYPE_UNKNOWN:
2696 default:
2697 buf->st_mode = S_IFCHR;
2698 }
2699 }
2700 CloseHandle (fh);
2701 }
2702 else
2703 {
2704 /* Don't bother to make this information more accurate. */
2705 buf->st_mode = (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ?
2706 S_IFDIR : S_IFREG;
2707 buf->st_nlink = 1;
2708 fake_inode = 0;
2709 }
2710
2711 #if 0
2712 /* Not sure if there is any point in this. */
2713 if (!NILP (Vw32_generate_fake_inodes))
2714 fake_inode = generate_inode_val (name);
2715 else if (fake_inode == 0)
2716 {
2717 /* For want of something better, try to make everything unique. */
2718 static DWORD gen_num = 0;
2719 fake_inode = ++gen_num;
2720 }
2721 #endif
2722
2723 /* MSVC defines _ino_t to be short; other libc's might not. */
2724 if (sizeof (buf->st_ino) == 2)
2725 buf->st_ino = fake_inode ^ (fake_inode >> 16);
2726 else
2727 buf->st_ino = fake_inode;
2728
2729 /* consider files to belong to current user */
2730 buf->st_uid = the_passwd.pw_uid;
2731 buf->st_gid = the_passwd.pw_gid;
2732
2733 /* volume_info is set indirectly by map_w32_filename */
2734 buf->st_dev = volume_info.serialnum;
2735 buf->st_rdev = volume_info.serialnum;
2736
2737
2738 buf->st_size = wfd.nFileSizeLow;
2739
2740 /* Convert timestamps to Unix format. */
2741 buf->st_mtime = convert_time (wfd.ftLastWriteTime);
2742 buf->st_atime = convert_time (wfd.ftLastAccessTime);
2743 if (buf->st_atime == 0) buf->st_atime = buf->st_mtime;
2744 buf->st_ctime = convert_time (wfd.ftCreationTime);
2745 if (buf->st_ctime == 0) buf->st_ctime = buf->st_mtime;
2746
2747 /* determine rwx permissions */
2748 if (wfd.dwFileAttributes & FILE_ATTRIBUTE_READONLY)
2749 permission = S_IREAD;
2750 else
2751 permission = S_IREAD | S_IWRITE;
2752
2753 if (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
2754 permission |= S_IEXEC;
2755 else if (is_exec (name))
2756 permission |= S_IEXEC;
2757
2758 buf->st_mode |= permission | (permission >> 3) | (permission >> 6);
2759
2760 return 0;
2761 }
2762
2763 /* Provide fstat and utime as well as stat for consistent handling of
2764 file timestamps. */
2765 int
2766 fstat (int desc, struct stat * buf)
2767 {
2768 HANDLE fh = (HANDLE) _get_osfhandle (desc);
2769 BY_HANDLE_FILE_INFORMATION info;
2770 unsigned __int64 fake_inode;
2771 int permission;
2772
2773 switch (GetFileType (fh) & ~FILE_TYPE_REMOTE)
2774 {
2775 case FILE_TYPE_DISK:
2776 buf->st_mode = S_IFREG;
2777 if (!GetFileInformationByHandle (fh, &info))
2778 {
2779 errno = EACCES;
2780 return -1;
2781 }
2782 break;
2783 case FILE_TYPE_PIPE:
2784 buf->st_mode = S_IFIFO;
2785 goto non_disk;
2786 case FILE_TYPE_CHAR:
2787 case FILE_TYPE_UNKNOWN:
2788 default:
2789 buf->st_mode = S_IFCHR;
2790 non_disk:
2791 memset (&info, 0, sizeof (info));
2792 info.dwFileAttributes = 0;
2793 info.ftCreationTime = utc_base_ft;
2794 info.ftLastAccessTime = utc_base_ft;
2795 info.ftLastWriteTime = utc_base_ft;
2796 }
2797
2798 if (info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
2799 buf->st_mode = S_IFDIR;
2800
2801 buf->st_nlink = info.nNumberOfLinks;
2802 /* Might as well use file index to fake inode values, but this
2803 is not guaranteed to be unique unless we keep a handle open
2804 all the time (even then there are situations where it is
2805 not unique). Reputedly, there are at most 48 bits of info
2806 (on NTFS, presumably less on FAT). */
2807 fake_inode = info.nFileIndexHigh;
2808 fake_inode <<= 32;
2809 fake_inode += info.nFileIndexLow;
2810
2811 /* MSVC defines _ino_t to be short; other libc's might not. */
2812 if (sizeof (buf->st_ino) == 2)
2813 buf->st_ino = fake_inode ^ (fake_inode >> 16);
2814 else
2815 buf->st_ino = fake_inode;
2816
2817 /* consider files to belong to current user */
2818 buf->st_uid = the_passwd.pw_uid;
2819 buf->st_gid = the_passwd.pw_gid;
2820
2821 buf->st_dev = info.dwVolumeSerialNumber;
2822 buf->st_rdev = info.dwVolumeSerialNumber;
2823
2824 buf->st_size = info.nFileSizeLow;
2825
2826 /* Convert timestamps to Unix format. */
2827 buf->st_mtime = convert_time (info.ftLastWriteTime);
2828 buf->st_atime = convert_time (info.ftLastAccessTime);
2829 if (buf->st_atime == 0) buf->st_atime = buf->st_mtime;
2830 buf->st_ctime = convert_time (info.ftCreationTime);
2831 if (buf->st_ctime == 0) buf->st_ctime = buf->st_mtime;
2832
2833 /* determine rwx permissions */
2834 if (info.dwFileAttributes & FILE_ATTRIBUTE_READONLY)
2835 permission = S_IREAD;
2836 else
2837 permission = S_IREAD | S_IWRITE;
2838
2839 if (info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
2840 permission |= S_IEXEC;
2841 else
2842 {
2843 #if 0 /* no way of knowing the filename */
2844 char * p = strrchr (name, '.');
2845 if (p != NULL &&
2846 (stricmp (p, ".exe") == 0 ||
2847 stricmp (p, ".com") == 0 ||
2848 stricmp (p, ".bat") == 0 ||
2849 stricmp (p, ".cmd") == 0))
2850 permission |= S_IEXEC;
2851 #endif
2852 }
2853
2854 buf->st_mode |= permission | (permission >> 3) | (permission >> 6);
2855
2856 return 0;
2857 }
2858
2859 int
2860 utime (const char *name, struct utimbuf *times)
2861 {
2862 struct utimbuf deftime;
2863 HANDLE fh;
2864 FILETIME mtime;
2865 FILETIME atime;
2866
2867 if (times == NULL)
2868 {
2869 deftime.modtime = deftime.actime = time (NULL);
2870 times = &deftime;
2871 }
2872
2873 /* Need write access to set times. */
2874 fh = CreateFile (name, GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE,
2875 0, OPEN_EXISTING, 0, NULL);
2876 if (fh)
2877 {
2878 convert_from_time_t (times->actime, &atime);
2879 convert_from_time_t (times->modtime, &mtime);
2880 if (!SetFileTime (fh, NULL, &atime, &mtime))
2881 {
2882 CloseHandle (fh);
2883 errno = EACCES;
2884 return -1;
2885 }
2886 CloseHandle (fh);
2887 }
2888 else
2889 {
2890 errno = EINVAL;
2891 return -1;
2892 }
2893 return 0;
2894 }
2895
2896 #ifdef HAVE_SOCKETS
2897
2898 /* Wrappers for winsock functions to map between our file descriptors
2899 and winsock's handles; also set h_errno for convenience.
2900
2901 To allow Emacs to run on systems which don't have winsock support
2902 installed, we dynamically link to winsock on startup if present, and
2903 otherwise provide the minimum necessary functionality
2904 (eg. gethostname). */
2905
2906 /* function pointers for relevant socket functions */
2907 int (PASCAL *pfn_WSAStartup) (WORD wVersionRequired, LPWSADATA lpWSAData);
2908 void (PASCAL *pfn_WSASetLastError) (int iError);
2909 int (PASCAL *pfn_WSAGetLastError) (void);
2910 int (PASCAL *pfn_WSAEventSelect) (SOCKET s, HANDLE hEventObject, long lNetworkEvents);
2911 HANDLE (PASCAL *pfn_WSACreateEvent) (void);
2912 int (PASCAL *pfn_WSACloseEvent) (HANDLE hEvent);
2913 int (PASCAL *pfn_socket) (int af, int type, int protocol);
2914 int (PASCAL *pfn_bind) (SOCKET s, const struct sockaddr *addr, int namelen);
2915 int (PASCAL *pfn_connect) (SOCKET s, const struct sockaddr *addr, int namelen);
2916 int (PASCAL *pfn_ioctlsocket) (SOCKET s, long cmd, u_long *argp);
2917 int (PASCAL *pfn_recv) (SOCKET s, char * buf, int len, int flags);
2918 int (PASCAL *pfn_send) (SOCKET s, const char * buf, int len, int flags);
2919 int (PASCAL *pfn_closesocket) (SOCKET s);
2920 int (PASCAL *pfn_shutdown) (SOCKET s, int how);
2921 int (PASCAL *pfn_WSACleanup) (void);
2922
2923 u_short (PASCAL *pfn_htons) (u_short hostshort);
2924 u_short (PASCAL *pfn_ntohs) (u_short netshort);
2925 unsigned long (PASCAL *pfn_inet_addr) (const char * cp);
2926 int (PASCAL *pfn_gethostname) (char * name, int namelen);
2927 struct hostent * (PASCAL *pfn_gethostbyname) (const char * name);
2928 struct servent * (PASCAL *pfn_getservbyname) (const char * name, const char * proto);
2929 int (PASCAL *pfn_getpeername) (SOCKET s, struct sockaddr *addr, int * namelen);
2930 int (PASCAL *pfn_setsockopt) (SOCKET s, int level, int optname,
2931 const char * optval, int optlen);
2932 int (PASCAL *pfn_listen) (SOCKET s, int backlog);
2933 int (PASCAL *pfn_getsockname) (SOCKET s, struct sockaddr * name,
2934 int * namelen);
2935 SOCKET (PASCAL *pfn_accept) (SOCKET s, struct sockaddr * addr, int * addrlen);
2936 int (PASCAL *pfn_recvfrom) (SOCKET s, char * buf, int len, int flags,
2937 struct sockaddr * from, int * fromlen);
2938 int (PASCAL *pfn_sendto) (SOCKET s, const char * buf, int len, int flags,
2939 const struct sockaddr * to, int tolen);
2940
2941 /* SetHandleInformation is only needed to make sockets non-inheritable. */
2942 BOOL (WINAPI *pfn_SetHandleInformation) (HANDLE object, DWORD mask, DWORD flags);
2943 #ifndef HANDLE_FLAG_INHERIT
2944 #define HANDLE_FLAG_INHERIT 1
2945 #endif
2946
2947 HANDLE winsock_lib;
2948 static int winsock_inuse;
2949
2950 BOOL
2951 term_winsock (void)
2952 {
2953 if (winsock_lib != NULL && winsock_inuse == 0)
2954 {
2955 /* Not sure what would cause WSAENETDOWN, or even if it can happen
2956 after WSAStartup returns successfully, but it seems reasonable
2957 to allow unloading winsock anyway in that case. */
2958 if (pfn_WSACleanup () == 0 ||
2959 pfn_WSAGetLastError () == WSAENETDOWN)
2960 {
2961 if (FreeLibrary (winsock_lib))
2962 winsock_lib = NULL;
2963 return TRUE;
2964 }
2965 }
2966 return FALSE;
2967 }
2968
2969 BOOL
2970 init_winsock (int load_now)
2971 {
2972 WSADATA winsockData;
2973
2974 if (winsock_lib != NULL)
2975 return TRUE;
2976
2977 pfn_SetHandleInformation = NULL;
2978 pfn_SetHandleInformation
2979 = (void *) GetProcAddress (GetModuleHandle ("kernel32.dll"),
2980 "SetHandleInformation");
2981
2982 winsock_lib = LoadLibrary ("Ws2_32.dll");
2983
2984 if (winsock_lib != NULL)
2985 {
2986 /* dynamically link to socket functions */
2987
2988 #define LOAD_PROC(fn) \
2989 if ((pfn_##fn = (void *) GetProcAddress (winsock_lib, #fn)) == NULL) \
2990 goto fail;
2991
2992 LOAD_PROC( WSAStartup );
2993 LOAD_PROC( WSASetLastError );
2994 LOAD_PROC( WSAGetLastError );
2995 LOAD_PROC( WSAEventSelect );
2996 LOAD_PROC( WSACreateEvent );
2997 LOAD_PROC( WSACloseEvent );
2998 LOAD_PROC( socket );
2999 LOAD_PROC( bind );
3000 LOAD_PROC( connect );
3001 LOAD_PROC( ioctlsocket );
3002 LOAD_PROC( recv );
3003 LOAD_PROC( send );
3004 LOAD_PROC( closesocket );
3005 LOAD_PROC( shutdown );
3006 LOAD_PROC( htons );
3007 LOAD_PROC( ntohs );
3008 LOAD_PROC( inet_addr );
3009 LOAD_PROC( gethostname );
3010 LOAD_PROC( gethostbyname );
3011 LOAD_PROC( getservbyname );
3012 LOAD_PROC( getpeername );
3013 LOAD_PROC( WSACleanup );
3014 LOAD_PROC( setsockopt );
3015 LOAD_PROC( listen );
3016 LOAD_PROC( getsockname );
3017 LOAD_PROC( accept );
3018 LOAD_PROC( recvfrom );
3019 LOAD_PROC( sendto );
3020 #undef LOAD_PROC
3021
3022 /* specify version 1.1 of winsock */
3023 if (pfn_WSAStartup (0x101, &winsockData) == 0)
3024 {
3025 if (winsockData.wVersion != 0x101)
3026 goto fail;
3027
3028 if (!load_now)
3029 {
3030 /* Report that winsock exists and is usable, but leave
3031 socket functions disabled. I am assuming that calling
3032 WSAStartup does not require any network interaction,
3033 and in particular does not cause or require a dial-up
3034 connection to be established. */
3035
3036 pfn_WSACleanup ();
3037 FreeLibrary (winsock_lib);
3038 winsock_lib = NULL;
3039 }
3040 winsock_inuse = 0;
3041 return TRUE;
3042 }
3043
3044 fail:
3045 FreeLibrary (winsock_lib);
3046 winsock_lib = NULL;
3047 }
3048
3049 return FALSE;
3050 }
3051
3052
3053 int h_errno = 0;
3054
3055 /* function to set h_errno for compatability; map winsock error codes to
3056 normal system codes where they overlap (non-overlapping definitions
3057 are already in <sys/socket.h> */
3058 static void
3059 set_errno ()
3060 {
3061 if (winsock_lib == NULL)
3062 h_errno = EINVAL;
3063 else
3064 h_errno = pfn_WSAGetLastError ();
3065
3066 switch (h_errno)
3067 {
3068 case WSAEACCES: h_errno = EACCES; break;
3069 case WSAEBADF: h_errno = EBADF; break;
3070 case WSAEFAULT: h_errno = EFAULT; break;
3071 case WSAEINTR: h_errno = EINTR; break;
3072 case WSAEINVAL: h_errno = EINVAL; break;
3073 case WSAEMFILE: h_errno = EMFILE; break;
3074 case WSAENAMETOOLONG: h_errno = ENAMETOOLONG; break;
3075 case WSAENOTEMPTY: h_errno = ENOTEMPTY; break;
3076 }
3077 errno = h_errno;
3078 }
3079
3080 static void
3081 check_errno ()
3082 {
3083 if (h_errno == 0 && winsock_lib != NULL)
3084 pfn_WSASetLastError (0);
3085 }
3086
3087 /* Extend strerror to handle the winsock-specific error codes. */
3088 struct {
3089 int errnum;
3090 char * msg;
3091 } _wsa_errlist[] = {
3092 WSAEINTR , "Interrupted function call",
3093 WSAEBADF , "Bad file descriptor",
3094 WSAEACCES , "Permission denied",
3095 WSAEFAULT , "Bad address",
3096 WSAEINVAL , "Invalid argument",
3097 WSAEMFILE , "Too many open files",
3098
3099 WSAEWOULDBLOCK , "Resource temporarily unavailable",
3100 WSAEINPROGRESS , "Operation now in progress",
3101 WSAEALREADY , "Operation already in progress",
3102 WSAENOTSOCK , "Socket operation on non-socket",
3103 WSAEDESTADDRREQ , "Destination address required",
3104 WSAEMSGSIZE , "Message too long",
3105 WSAEPROTOTYPE , "Protocol wrong type for socket",
3106 WSAENOPROTOOPT , "Bad protocol option",
3107 WSAEPROTONOSUPPORT , "Protocol not supported",
3108 WSAESOCKTNOSUPPORT , "Socket type not supported",
3109 WSAEOPNOTSUPP , "Operation not supported",
3110 WSAEPFNOSUPPORT , "Protocol family not supported",
3111 WSAEAFNOSUPPORT , "Address family not supported by protocol family",
3112 WSAEADDRINUSE , "Address already in use",
3113 WSAEADDRNOTAVAIL , "Cannot assign requested address",
3114 WSAENETDOWN , "Network is down",
3115 WSAENETUNREACH , "Network is unreachable",
3116 WSAENETRESET , "Network dropped connection on reset",
3117 WSAECONNABORTED , "Software caused connection abort",
3118 WSAECONNRESET , "Connection reset by peer",
3119 WSAENOBUFS , "No buffer space available",
3120 WSAEISCONN , "Socket is already connected",
3121 WSAENOTCONN , "Socket is not connected",
3122 WSAESHUTDOWN , "Cannot send after socket shutdown",
3123 WSAETOOMANYREFS , "Too many references", /* not sure */
3124 WSAETIMEDOUT , "Connection timed out",
3125 WSAECONNREFUSED , "Connection refused",
3126 WSAELOOP , "Network loop", /* not sure */
3127 WSAENAMETOOLONG , "Name is too long",
3128 WSAEHOSTDOWN , "Host is down",
3129 WSAEHOSTUNREACH , "No route to host",
3130 WSAENOTEMPTY , "Buffer not empty", /* not sure */
3131 WSAEPROCLIM , "Too many processes",
3132 WSAEUSERS , "Too many users", /* not sure */
3133 WSAEDQUOT , "Double quote in host name", /* really not sure */
3134 WSAESTALE , "Data is stale", /* not sure */
3135 WSAEREMOTE , "Remote error", /* not sure */
3136
3137 WSASYSNOTREADY , "Network subsystem is unavailable",
3138 WSAVERNOTSUPPORTED , "WINSOCK.DLL version out of range",
3139 WSANOTINITIALISED , "Winsock not initialized successfully",
3140 WSAEDISCON , "Graceful shutdown in progress",
3141 #ifdef WSAENOMORE
3142 WSAENOMORE , "No more operations allowed", /* not sure */
3143 WSAECANCELLED , "Operation cancelled", /* not sure */
3144 WSAEINVALIDPROCTABLE , "Invalid procedure table from service provider",
3145 WSAEINVALIDPROVIDER , "Invalid service provider version number",
3146 WSAEPROVIDERFAILEDINIT , "Unable to initialize a service provider",
3147 WSASYSCALLFAILURE , "System call failure",
3148 WSASERVICE_NOT_FOUND , "Service not found", /* not sure */
3149 WSATYPE_NOT_FOUND , "Class type not found",
3150 WSA_E_NO_MORE , "No more resources available", /* really not sure */
3151 WSA_E_CANCELLED , "Operation already cancelled", /* really not sure */
3152 WSAEREFUSED , "Operation refused", /* not sure */
3153 #endif
3154
3155 WSAHOST_NOT_FOUND , "Host not found",
3156 WSATRY_AGAIN , "Authoritative host not found during name lookup",
3157 WSANO_RECOVERY , "Non-recoverable error during name lookup",
3158 WSANO_DATA , "Valid name, no data record of requested type",
3159
3160 -1, NULL
3161 };
3162
3163 char *
3164 sys_strerror(int error_no)
3165 {
3166 int i;
3167 static char unknown_msg[40];
3168
3169 if (error_no >= 0 && error_no < sys_nerr)
3170 return sys_errlist[error_no];
3171
3172 for (i = 0; _wsa_errlist[i].errnum >= 0; i++)
3173 if (_wsa_errlist[i].errnum == error_no)
3174 return _wsa_errlist[i].msg;
3175
3176 sprintf(unknown_msg, "Unidentified error: %d", error_no);
3177 return unknown_msg;
3178 }
3179
3180 /* [andrewi 3-May-96] I've had conflicting results using both methods,
3181 but I believe the method of keeping the socket handle separate (and
3182 insuring it is not inheritable) is the correct one. */
3183
3184 //#define SOCK_REPLACE_HANDLE
3185
3186 #ifdef SOCK_REPLACE_HANDLE
3187 #define SOCK_HANDLE(fd) ((SOCKET) _get_osfhandle (fd))
3188 #else
3189 #define SOCK_HANDLE(fd) ((SOCKET) fd_info[fd].hnd)
3190 #endif
3191
3192 int socket_to_fd (SOCKET s);
3193
3194 int
3195 sys_socket(int af, int type, int protocol)
3196 {
3197 SOCKET s;
3198
3199 if (winsock_lib == NULL)
3200 {
3201 h_errno = ENETDOWN;
3202 return INVALID_SOCKET;
3203 }
3204
3205 check_errno ();
3206
3207 /* call the real socket function */
3208 s = pfn_socket (af, type, protocol);
3209
3210 if (s != INVALID_SOCKET)
3211 return socket_to_fd (s);
3212
3213 set_errno ();
3214 return -1;
3215 }
3216
3217 /* Convert a SOCKET to a file descriptor. */
3218 int
3219 socket_to_fd (SOCKET s)
3220 {
3221 int fd;
3222 child_process * cp;
3223
3224 /* Although under NT 3.5 _open_osfhandle will accept a socket
3225 handle, if opened with SO_OPENTYPE == SO_SYNCHRONOUS_NONALERT,
3226 that does not work under NT 3.1. However, we can get the same
3227 effect by using a backdoor function to replace an existing
3228 descriptor handle with the one we want. */
3229
3230 /* allocate a file descriptor (with appropriate flags) */
3231 fd = _open ("NUL:", _O_RDWR);
3232 if (fd >= 0)
3233 {
3234 #ifdef SOCK_REPLACE_HANDLE
3235 /* now replace handle to NUL with our socket handle */
3236 CloseHandle ((HANDLE) _get_osfhandle (fd));
3237 _free_osfhnd (fd);
3238 _set_osfhnd (fd, s);
3239 /* setmode (fd, _O_BINARY); */
3240 #else
3241 /* Make a non-inheritable copy of the socket handle. Note
3242 that it is possible that sockets aren't actually kernel
3243 handles, which appears to be the case on Windows 9x when
3244 the MS Proxy winsock client is installed. */
3245 {
3246 /* Apparently there is a bug in NT 3.51 with some service
3247 packs, which prevents using DuplicateHandle to make a
3248 socket handle non-inheritable (causes WSACleanup to
3249 hang). The work-around is to use SetHandleInformation
3250 instead if it is available and implemented. */
3251 if (pfn_SetHandleInformation)
3252 {
3253 pfn_SetHandleInformation ((HANDLE) s, HANDLE_FLAG_INHERIT, 0);
3254 }
3255 else
3256 {
3257 HANDLE parent = GetCurrentProcess ();
3258 HANDLE new_s = INVALID_HANDLE_VALUE;
3259
3260 if (DuplicateHandle (parent,
3261 (HANDLE) s,
3262 parent,
3263 &new_s,
3264 0,
3265 FALSE,
3266 DUPLICATE_SAME_ACCESS))
3267 {
3268 /* It is possible that DuplicateHandle succeeds even
3269 though the socket wasn't really a kernel handle,
3270 because a real handle has the same value. So
3271 test whether the new handle really is a socket. */
3272 long nonblocking = 0;
3273 if (pfn_ioctlsocket ((SOCKET) new_s, FIONBIO, &nonblocking) == 0)
3274 {
3275 pfn_closesocket (s);
3276 s = (SOCKET) new_s;
3277 }
3278 else
3279 {
3280 CloseHandle (new_s);
3281 }
3282 }
3283 }
3284 }
3285 fd_info[fd].hnd = (HANDLE) s;
3286 #endif
3287
3288 /* set our own internal flags */
3289 fd_info[fd].flags = FILE_SOCKET | FILE_BINARY | FILE_READ | FILE_WRITE;
3290
3291 cp = new_child ();
3292 if (cp)
3293 {
3294 cp->fd = fd;
3295 cp->status = STATUS_READ_ACKNOWLEDGED;
3296
3297 /* attach child_process to fd_info */
3298 if (fd_info[ fd ].cp != NULL)
3299 {
3300 DebPrint (("sys_socket: fd_info[%d] apparently in use!\n", fd));
3301 abort ();
3302 }
3303
3304 fd_info[ fd ].cp = cp;
3305
3306 /* success! */
3307 winsock_inuse++; /* count open sockets */
3308 return fd;
3309 }
3310
3311 /* clean up */
3312 _close (fd);
3313 }
3314 pfn_closesocket (s);
3315 h_errno = EMFILE;
3316 return -1;
3317 }
3318
3319
3320 int
3321 sys_bind (int s, const struct sockaddr * addr, int namelen)
3322 {
3323 if (winsock_lib == NULL)
3324 {
3325 h_errno = ENOTSOCK;
3326 return SOCKET_ERROR;
3327 }
3328
3329 check_errno ();
3330 if (fd_info[s].flags & FILE_SOCKET)
3331 {
3332 int rc = pfn_bind (SOCK_HANDLE (s), addr, namelen);
3333 if (rc == SOCKET_ERROR)
3334 set_errno ();
3335 return rc;
3336 }
3337 h_errno = ENOTSOCK;
3338 return SOCKET_ERROR;
3339 }
3340
3341
3342 int
3343 sys_connect (int s, const struct sockaddr * name, int namelen)
3344 {
3345 if (winsock_lib == NULL)
3346 {
3347 h_errno = ENOTSOCK;
3348 return SOCKET_ERROR;
3349 }
3350
3351 check_errno ();
3352 if (fd_info[s].flags & FILE_SOCKET)
3353 {
3354 int rc = pfn_connect (SOCK_HANDLE (s), name, namelen);
3355 if (rc == SOCKET_ERROR)
3356 set_errno ();
3357 return rc;
3358 }
3359 h_errno = ENOTSOCK;
3360 return SOCKET_ERROR;
3361 }
3362
3363 u_short
3364 sys_htons (u_short hostshort)
3365 {
3366 return (winsock_lib != NULL) ?
3367 pfn_htons (hostshort) : hostshort;
3368 }
3369
3370 u_short
3371 sys_ntohs (u_short netshort)
3372 {
3373 return (winsock_lib != NULL) ?
3374 pfn_ntohs (netshort) : netshort;
3375 }
3376
3377 unsigned long
3378 sys_inet_addr (const char * cp)
3379 {
3380 return (winsock_lib != NULL) ?
3381 pfn_inet_addr (cp) : INADDR_NONE;
3382 }
3383
3384 int
3385 sys_gethostname (char * name, int namelen)
3386 {
3387 if (winsock_lib != NULL)
3388 return pfn_gethostname (name, namelen);
3389
3390 if (namelen > MAX_COMPUTERNAME_LENGTH)
3391 return !GetComputerName (name, (DWORD *)&namelen);
3392
3393 h_errno = EFAULT;
3394 return SOCKET_ERROR;
3395 }
3396
3397 struct hostent *
3398 sys_gethostbyname(const char * name)
3399 {
3400 struct hostent * host;
3401
3402 if (winsock_lib == NULL)
3403 {
3404 h_errno = ENETDOWN;
3405 return NULL;
3406 }
3407
3408 check_errno ();
3409 host = pfn_gethostbyname (name);
3410 if (!host)
3411 set_errno ();
3412 return host;
3413 }
3414
3415 struct servent *
3416 sys_getservbyname(const char * name, const char * proto)
3417 {
3418 struct servent * serv;
3419
3420 if (winsock_lib == NULL)
3421 {
3422 h_errno = ENETDOWN;
3423 return NULL;
3424 }
3425
3426 check_errno ();
3427 serv = pfn_getservbyname (name, proto);
3428 if (!serv)
3429 set_errno ();
3430 return serv;
3431 }
3432
3433 int
3434 sys_getpeername (int s, struct sockaddr *addr, int * namelen)
3435 {
3436 if (winsock_lib == NULL)
3437 {
3438 h_errno = ENETDOWN;
3439 return SOCKET_ERROR;
3440 }
3441
3442 check_errno ();
3443 if (fd_info[s].flags & FILE_SOCKET)
3444 {
3445 int rc = pfn_getpeername (SOCK_HANDLE (s), addr, namelen);
3446 if (rc == SOCKET_ERROR)
3447 set_errno ();
3448 return rc;
3449 }
3450 h_errno = ENOTSOCK;
3451 return SOCKET_ERROR;
3452 }
3453
3454
3455 int
3456 sys_shutdown (int s, int how)
3457 {
3458 if (winsock_lib == NULL)
3459 {
3460 h_errno = ENETDOWN;
3461 return SOCKET_ERROR;
3462 }
3463
3464 check_errno ();
3465 if (fd_info[s].flags & FILE_SOCKET)
3466 {
3467 int rc = pfn_shutdown (SOCK_HANDLE (s), how);
3468 if (rc == SOCKET_ERROR)
3469 set_errno ();
3470 return rc;
3471 }
3472 h_errno = ENOTSOCK;
3473 return SOCKET_ERROR;
3474 }
3475
3476 int
3477 sys_setsockopt (int s, int level, int optname, const void * optval, int optlen)
3478 {
3479 if (winsock_lib == NULL)
3480 {
3481 h_errno = ENETDOWN;
3482 return SOCKET_ERROR;
3483 }
3484
3485 check_errno ();
3486 if (fd_info[s].flags & FILE_SOCKET)
3487 {
3488 int rc = pfn_setsockopt (SOCK_HANDLE (s), level, optname,
3489 (const char *)optval, optlen);
3490 if (rc == SOCKET_ERROR)
3491 set_errno ();
3492 return rc;
3493 }
3494 h_errno = ENOTSOCK;
3495 return SOCKET_ERROR;
3496 }
3497
3498 int
3499 sys_listen (int s, int backlog)
3500 {
3501 if (winsock_lib == NULL)
3502 {
3503 h_errno = ENETDOWN;
3504 return SOCKET_ERROR;
3505 }
3506
3507 check_errno ();
3508 if (fd_info[s].flags & FILE_SOCKET)
3509 {
3510 int rc = pfn_listen (SOCK_HANDLE (s), backlog);
3511 if (rc == SOCKET_ERROR)
3512 set_errno ();
3513 else
3514 fd_info[s].flags |= FILE_LISTEN;
3515 return rc;
3516 }
3517 h_errno = ENOTSOCK;
3518 return SOCKET_ERROR;
3519 }
3520
3521 int
3522 sys_getsockname (int s, struct sockaddr * name, int * namelen)
3523 {
3524 if (winsock_lib == NULL)
3525 {
3526 h_errno = ENETDOWN;
3527 return SOCKET_ERROR;
3528 }
3529
3530 check_errno ();
3531 if (fd_info[s].flags & FILE_SOCKET)
3532 {
3533 int rc = pfn_getsockname (SOCK_HANDLE (s), name, namelen);
3534 if (rc == SOCKET_ERROR)
3535 set_errno ();
3536 return rc;
3537 }
3538 h_errno = ENOTSOCK;
3539 return SOCKET_ERROR;
3540 }
3541
3542 int
3543 sys_accept (int s, struct sockaddr * addr, int * addrlen)
3544 {
3545 if (winsock_lib == NULL)
3546 {
3547 h_errno = ENETDOWN;
3548 return -1;
3549 }
3550
3551 check_errno ();
3552 if (fd_info[s].flags & FILE_LISTEN)
3553 {
3554 SOCKET t = pfn_accept (SOCK_HANDLE (s), addr, addrlen);
3555 int fd = -1;
3556 if (t == INVALID_SOCKET)
3557 set_errno ();
3558 else
3559 fd = socket_to_fd (t);
3560
3561 fd_info[s].cp->status = STATUS_READ_ACKNOWLEDGED;
3562 ResetEvent (fd_info[s].cp->char_avail);
3563 return fd;
3564 }
3565 h_errno = ENOTSOCK;
3566 return -1;
3567 }
3568
3569 int
3570 sys_recvfrom (int s, char * buf, int len, int flags,
3571 struct sockaddr * from, int * fromlen)
3572 {
3573 if (winsock_lib == NULL)
3574 {
3575 h_errno = ENETDOWN;
3576 return SOCKET_ERROR;
3577 }
3578
3579 check_errno ();
3580 if (fd_info[s].flags & FILE_SOCKET)
3581 {
3582 int rc = pfn_recvfrom (SOCK_HANDLE (s), buf, len, flags, from, fromlen);
3583 if (rc == SOCKET_ERROR)
3584 set_errno ();
3585 return rc;
3586 }
3587 h_errno = ENOTSOCK;
3588 return SOCKET_ERROR;
3589 }
3590
3591 int
3592 sys_sendto (int s, const char * buf, int len, int flags,
3593 const struct sockaddr * to, int tolen)
3594 {
3595 if (winsock_lib == NULL)
3596 {
3597 h_errno = ENETDOWN;
3598 return SOCKET_ERROR;
3599 }
3600
3601 check_errno ();
3602 if (fd_info[s].flags & FILE_SOCKET)
3603 {
3604 int rc = pfn_sendto (SOCK_HANDLE (s), buf, len, flags, to, tolen);
3605 if (rc == SOCKET_ERROR)
3606 set_errno ();
3607 return rc;
3608 }
3609 h_errno = ENOTSOCK;
3610 return SOCKET_ERROR;
3611 }
3612
3613 /* Windows does not have an fcntl function. Provide an implementation
3614 solely for making sockets non-blocking. */
3615 int
3616 fcntl (int s, int cmd, int options)
3617 {
3618 if (winsock_lib == NULL)
3619 {
3620 h_errno = ENETDOWN;
3621 return -1;
3622 }
3623
3624 check_errno ();
3625 if (fd_info[s].flags & FILE_SOCKET)
3626 {
3627 if (cmd == F_SETFL && options == O_NDELAY)
3628 {
3629 unsigned long nblock = 1;
3630 int rc = pfn_ioctlsocket (SOCK_HANDLE (s), FIONBIO, &nblock);
3631 if (rc == SOCKET_ERROR)
3632 set_errno();
3633 /* Keep track of the fact that we set this to non-blocking. */
3634 fd_info[s].flags |= FILE_NDELAY;
3635 return rc;
3636 }
3637 else
3638 {
3639 h_errno = EINVAL;
3640 return SOCKET_ERROR;
3641 }
3642 }
3643 h_errno = ENOTSOCK;
3644 return SOCKET_ERROR;
3645 }
3646
3647 #endif /* HAVE_SOCKETS */
3648
3649
3650 /* Shadow main io functions: we need to handle pipes and sockets more
3651 intelligently, and implement non-blocking mode as well. */
3652
3653 int
3654 sys_close (int fd)
3655 {
3656 int rc;
3657
3658 if (fd < 0)
3659 {
3660 errno = EBADF;
3661 return -1;
3662 }
3663
3664 if (fd < MAXDESC && fd_info[fd].cp)
3665 {
3666 child_process * cp = fd_info[fd].cp;
3667
3668 fd_info[fd].cp = NULL;
3669
3670 if (CHILD_ACTIVE (cp))
3671 {
3672 /* if last descriptor to active child_process then cleanup */
3673 int i;
3674 for (i = 0; i < MAXDESC; i++)
3675 {
3676 if (i == fd)
3677 continue;
3678 if (fd_info[i].cp == cp)
3679 break;
3680 }
3681 if (i == MAXDESC)
3682 {
3683 #ifdef HAVE_SOCKETS
3684 if (fd_info[fd].flags & FILE_SOCKET)
3685 {
3686 #ifndef SOCK_REPLACE_HANDLE
3687 if (winsock_lib == NULL) abort ();
3688
3689 pfn_shutdown (SOCK_HANDLE (fd), 2);
3690 rc = pfn_closesocket (SOCK_HANDLE (fd));
3691 #endif
3692 winsock_inuse--; /* count open sockets */
3693 }
3694 #endif
3695 delete_child (cp);
3696 }
3697 }
3698 }
3699
3700 /* Note that sockets do not need special treatment here (at least on
3701 NT and Windows 95 using the standard tcp/ip stacks) - it appears that
3702 closesocket is equivalent to CloseHandle, which is to be expected
3703 because socket handles are fully fledged kernel handles. */
3704 rc = _close (fd);
3705
3706 if (rc == 0 && fd < MAXDESC)
3707 fd_info[fd].flags = 0;
3708
3709 return rc;
3710 }
3711
3712 int
3713 sys_dup (int fd)
3714 {
3715 int new_fd;
3716
3717 new_fd = _dup (fd);
3718 if (new_fd >= 0 && new_fd < MAXDESC)
3719 {
3720 /* duplicate our internal info as well */
3721 fd_info[new_fd] = fd_info[fd];
3722 }
3723 return new_fd;
3724 }
3725
3726
3727 int
3728 sys_dup2 (int src, int dst)
3729 {
3730 int rc;
3731
3732 if (dst < 0 || dst >= MAXDESC)
3733 {
3734 errno = EBADF;
3735 return -1;
3736 }
3737
3738 /* make sure we close the destination first if it's a pipe or socket */
3739 if (src != dst && fd_info[dst].flags != 0)
3740 sys_close (dst);
3741
3742 rc = _dup2 (src, dst);
3743 if (rc == 0)
3744 {
3745 /* duplicate our internal info as well */
3746 fd_info[dst] = fd_info[src];
3747 }
3748 return rc;
3749 }
3750
3751 /* Unix pipe() has only one arg */
3752 int
3753 sys_pipe (int * phandles)
3754 {
3755 int rc;
3756 unsigned flags;
3757
3758 /* make pipe handles non-inheritable; when we spawn a child, we
3759 replace the relevant handle with an inheritable one. Also put
3760 pipes into binary mode; we will do text mode translation ourselves
3761 if required. */
3762 rc = _pipe (phandles, 0, _O_NOINHERIT | _O_BINARY);
3763
3764 if (rc == 0)
3765 {
3766 /* Protect against overflow, since Windows can open more handles than
3767 our fd_info array has room for. */
3768 if (phandles[0] >= MAXDESC || phandles[1] >= MAXDESC)
3769 {
3770 _close (phandles[0]);
3771 _close (phandles[1]);
3772 rc = -1;
3773 }
3774 else
3775 {
3776 flags = FILE_PIPE | FILE_READ | FILE_BINARY;
3777 fd_info[phandles[0]].flags = flags;
3778
3779 flags = FILE_PIPE | FILE_WRITE | FILE_BINARY;
3780 fd_info[phandles[1]].flags = flags;
3781 }
3782 }
3783
3784 return rc;
3785 }
3786
3787 /* From ntproc.c */
3788 extern int w32_pipe_read_delay;
3789
3790 /* Function to do blocking read of one byte, needed to implement
3791 select. It is only allowed on sockets and pipes. */
3792 int
3793 _sys_read_ahead (int fd)
3794 {
3795 child_process * cp;
3796 int rc;
3797
3798 if (fd < 0 || fd >= MAXDESC)
3799 return STATUS_READ_ERROR;
3800
3801 cp = fd_info[fd].cp;
3802
3803 if (cp == NULL || cp->fd != fd || cp->status != STATUS_READ_READY)
3804 return STATUS_READ_ERROR;
3805
3806 if ((fd_info[fd].flags & (FILE_PIPE | FILE_SOCKET)) == 0
3807 || (fd_info[fd].flags & FILE_READ) == 0)
3808 {
3809 DebPrint (("_sys_read_ahead: internal error: fd %d is not a pipe or socket!\n", fd));
3810 abort ();
3811 }
3812
3813 cp->status = STATUS_READ_IN_PROGRESS;
3814
3815 if (fd_info[fd].flags & FILE_PIPE)
3816 {
3817 rc = _read (fd, &cp->chr, sizeof (char));
3818
3819 /* Give subprocess time to buffer some more output for us before
3820 reporting that input is available; we need this because Windows 95
3821 connects DOS programs to pipes by making the pipe appear to be
3822 the normal console stdout - as a result most DOS programs will
3823 write to stdout without buffering, ie. one character at a
3824 time. Even some W32 programs do this - "dir" in a command
3825 shell on NT is very slow if we don't do this. */
3826 if (rc > 0)
3827 {
3828 int wait = w32_pipe_read_delay;
3829
3830 if (wait > 0)
3831 Sleep (wait);
3832 else if (wait < 0)
3833 while (++wait <= 0)
3834 /* Yield remainder of our time slice, effectively giving a
3835 temporary priority boost to the child process. */
3836 Sleep (0);
3837 }
3838 }
3839 #ifdef HAVE_SOCKETS
3840 else if (fd_info[fd].flags & FILE_SOCKET)
3841 {
3842 unsigned long nblock = 0;
3843 /* We always want this to block, so temporarily disable NDELAY. */
3844 if (fd_info[fd].flags & FILE_NDELAY)
3845 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
3846
3847 rc = pfn_recv (SOCK_HANDLE (fd), &cp->chr, sizeof (char), 0);
3848
3849 if (fd_info[fd].flags & FILE_NDELAY)
3850 {
3851 nblock = 1;
3852 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
3853 }
3854 }
3855 #endif
3856
3857 if (rc == sizeof (char))
3858 cp->status = STATUS_READ_SUCCEEDED;
3859 else
3860 cp->status = STATUS_READ_FAILED;
3861
3862 return cp->status;
3863 }
3864
3865 int
3866 _sys_wait_accept (int fd)
3867 {
3868 HANDLE hEv;
3869 child_process * cp;
3870 int rc;
3871
3872 if (fd < 0 || fd >= MAXDESC)
3873 return STATUS_READ_ERROR;
3874
3875 cp = fd_info[fd].cp;
3876
3877 if (cp == NULL || cp->fd != fd || cp->status != STATUS_READ_READY)
3878 return STATUS_READ_ERROR;
3879
3880 cp->status = STATUS_READ_FAILED;
3881
3882 hEv = pfn_WSACreateEvent ();
3883 rc = pfn_WSAEventSelect (SOCK_HANDLE (fd), hEv, FD_ACCEPT);
3884 if (rc != SOCKET_ERROR)
3885 {
3886 rc = WaitForSingleObject (hEv, INFINITE);
3887 pfn_WSAEventSelect (SOCK_HANDLE (fd), NULL, 0);
3888 if (rc == WAIT_OBJECT_0)
3889 cp->status = STATUS_READ_SUCCEEDED;
3890 }
3891 pfn_WSACloseEvent (hEv);
3892
3893 return cp->status;
3894 }
3895
3896 int
3897 sys_read (int fd, char * buffer, unsigned int count)
3898 {
3899 int nchars;
3900 int to_read;
3901 DWORD waiting;
3902 char * orig_buffer = buffer;
3903
3904 if (fd < 0)
3905 {
3906 errno = EBADF;
3907 return -1;
3908 }
3909
3910 if (fd < MAXDESC && fd_info[fd].flags & (FILE_PIPE | FILE_SOCKET))
3911 {
3912 child_process *cp = fd_info[fd].cp;
3913
3914 if ((fd_info[fd].flags & FILE_READ) == 0)
3915 {
3916 errno = EBADF;
3917 return -1;
3918 }
3919
3920 nchars = 0;
3921
3922 /* re-read CR carried over from last read */
3923 if (fd_info[fd].flags & FILE_LAST_CR)
3924 {
3925 if (fd_info[fd].flags & FILE_BINARY) abort ();
3926 *buffer++ = 0x0d;
3927 count--;
3928 nchars++;
3929 fd_info[fd].flags &= ~FILE_LAST_CR;
3930 }
3931
3932 /* presence of a child_process structure means we are operating in
3933 non-blocking mode - otherwise we just call _read directly.
3934 Note that the child_process structure might be missing because
3935 reap_subprocess has been called; in this case the pipe is
3936 already broken, so calling _read on it is okay. */
3937 if (cp)
3938 {
3939 int current_status = cp->status;
3940
3941 switch (current_status)
3942 {
3943 case STATUS_READ_FAILED:
3944 case STATUS_READ_ERROR:
3945 /* report normal EOF if nothing in buffer */
3946 if (nchars <= 0)
3947 fd_info[fd].flags |= FILE_AT_EOF;
3948 return nchars;
3949
3950 case STATUS_READ_READY:
3951 case STATUS_READ_IN_PROGRESS:
3952 DebPrint (("sys_read called when read is in progress\n"));
3953 errno = EWOULDBLOCK;
3954 return -1;
3955
3956 case STATUS_READ_SUCCEEDED:
3957 /* consume read-ahead char */
3958 *buffer++ = cp->chr;
3959 count--;
3960 nchars++;
3961 cp->status = STATUS_READ_ACKNOWLEDGED;
3962 ResetEvent (cp->char_avail);
3963
3964 case STATUS_READ_ACKNOWLEDGED:
3965 break;
3966
3967 default:
3968 DebPrint (("sys_read: bad status %d\n", current_status));
3969 errno = EBADF;
3970 return -1;
3971 }
3972
3973 if (fd_info[fd].flags & FILE_PIPE)
3974 {
3975 PeekNamedPipe ((HANDLE) _get_osfhandle (fd), NULL, 0, NULL, &waiting, NULL);
3976 to_read = min (waiting, (DWORD) count);
3977
3978 if (to_read > 0)
3979 nchars += _read (fd, buffer, to_read);
3980 }
3981 #ifdef HAVE_SOCKETS
3982 else /* FILE_SOCKET */
3983 {
3984 if (winsock_lib == NULL) abort ();
3985
3986 /* do the equivalent of a non-blocking read */
3987 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONREAD, &waiting);
3988 if (waiting == 0 && nchars == 0)
3989 {
3990 h_errno = errno = EWOULDBLOCK;
3991 return -1;
3992 }
3993
3994 if (waiting)
3995 {
3996 /* always use binary mode for sockets */
3997 int res = pfn_recv (SOCK_HANDLE (fd), buffer, count, 0);
3998 if (res == SOCKET_ERROR)
3999 {
4000 DebPrint(("sys_read.recv failed with error %d on socket %ld\n",
4001 pfn_WSAGetLastError (), SOCK_HANDLE (fd)));
4002 set_errno ();
4003 return -1;
4004 }
4005 nchars += res;
4006 }
4007 }
4008 #endif
4009 }
4010 else
4011 {
4012 int nread = _read (fd, buffer, count);
4013 if (nread >= 0)
4014 nchars += nread;
4015 else if (nchars == 0)
4016 nchars = nread;
4017 }
4018
4019 if (nchars <= 0)
4020 fd_info[fd].flags |= FILE_AT_EOF;
4021 /* Perform text mode translation if required. */
4022 else if ((fd_info[fd].flags & FILE_BINARY) == 0)
4023 {
4024 nchars = crlf_to_lf (nchars, orig_buffer);
4025 /* If buffer contains only CR, return that. To be absolutely
4026 sure we should attempt to read the next char, but in
4027 practice a CR to be followed by LF would not appear by
4028 itself in the buffer. */
4029 if (nchars > 1 && orig_buffer[nchars - 1] == 0x0d)
4030 {
4031 fd_info[fd].flags |= FILE_LAST_CR;
4032 nchars--;
4033 }
4034 }
4035 }
4036 else
4037 nchars = _read (fd, buffer, count);
4038
4039 return nchars;
4040 }
4041
4042 /* For now, don't bother with a non-blocking mode */
4043 int
4044 sys_write (int fd, const void * buffer, unsigned int count)
4045 {
4046 int nchars;
4047
4048 if (fd < 0)
4049 {
4050 errno = EBADF;
4051 return -1;
4052 }
4053
4054 if (fd < MAXDESC && fd_info[fd].flags & (FILE_PIPE | FILE_SOCKET))
4055 {
4056 if ((fd_info[fd].flags & FILE_WRITE) == 0)
4057 {
4058 errno = EBADF;
4059 return -1;
4060 }
4061
4062 /* Perform text mode translation if required. */
4063 if ((fd_info[fd].flags & FILE_BINARY) == 0)
4064 {
4065 char * tmpbuf = alloca (count * 2);
4066 unsigned char * src = (void *)buffer;
4067 unsigned char * dst = tmpbuf;
4068 int nbytes = count;
4069
4070 while (1)
4071 {
4072 unsigned char *next;
4073 /* copy next line or remaining bytes */
4074 next = _memccpy (dst, src, '\n', nbytes);
4075 if (next)
4076 {
4077 /* copied one line ending with '\n' */
4078 int copied = next - dst;
4079 nbytes -= copied;
4080 src += copied;
4081 /* insert '\r' before '\n' */
4082 next[-1] = '\r';
4083 next[0] = '\n';
4084 dst = next + 1;
4085 count++;
4086 }
4087 else
4088 /* copied remaining partial line -> now finished */
4089 break;
4090 }
4091 buffer = tmpbuf;
4092 }
4093 }
4094
4095 #ifdef HAVE_SOCKETS
4096 if (fd < MAXDESC && fd_info[fd].flags & FILE_SOCKET)
4097 {
4098 unsigned long nblock = 0;
4099 if (winsock_lib == NULL) abort ();
4100
4101 /* TODO: implement select() properly so non-blocking I/O works. */
4102 /* For now, make sure the write blocks. */
4103 if (fd_info[fd].flags & FILE_NDELAY)
4104 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
4105
4106 nchars = pfn_send (SOCK_HANDLE (fd), buffer, count, 0);
4107
4108 /* Set the socket back to non-blocking if it was before,
4109 for other operations that support it. */
4110 if (fd_info[fd].flags & FILE_NDELAY)
4111 {
4112 nblock = 1;
4113 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
4114 }
4115
4116 if (nchars == SOCKET_ERROR)
4117 {
4118 DebPrint(("sys_write.send failed with error %d on socket %ld\n",
4119 pfn_WSAGetLastError (), SOCK_HANDLE (fd)));
4120 set_errno ();
4121 }
4122 }
4123 else
4124 #endif
4125 nchars = _write (fd, buffer, count);
4126
4127 return nchars;
4128 }
4129
4130 static void
4131 check_windows_init_file ()
4132 {
4133 extern int noninteractive, inhibit_window_system;
4134
4135 /* A common indication that Emacs is not installed properly is when
4136 it cannot find the Windows installation file. If this file does
4137 not exist in the expected place, tell the user. */
4138
4139 if (!noninteractive && !inhibit_window_system)
4140 {
4141 extern Lisp_Object Vwindow_system, Vload_path, Qfile_exists_p;
4142 Lisp_Object objs[2];
4143 Lisp_Object full_load_path;
4144 Lisp_Object init_file;
4145 int fd;
4146
4147 objs[0] = Vload_path;
4148 objs[1] = decode_env_path (0, (getenv ("EMACSLOADPATH")));
4149 full_load_path = Fappend (2, objs);
4150 init_file = build_string ("term/w32-win");
4151 fd = openp (full_load_path, init_file, Fget_load_suffixes (), NULL, Qnil);
4152 if (fd < 0)
4153 {
4154 Lisp_Object load_path_print = Fprin1_to_string (full_load_path, Qnil);
4155 char *init_file_name = SDATA (init_file);
4156 char *load_path = SDATA (load_path_print);
4157 char *buffer = alloca (1024
4158 + strlen (init_file_name)
4159 + strlen (load_path));
4160
4161 sprintf (buffer,
4162 "The Emacs Windows initialization file \"%s.el\" "
4163 "could not be found in your Emacs installation. "
4164 "Emacs checked the following directories for this file:\n"
4165 "\n%s\n\n"
4166 "When Emacs cannot find this file, it usually means that it "
4167 "was not installed properly, or its distribution file was "
4168 "not unpacked properly.\nSee the README.W32 file in the "
4169 "top-level Emacs directory for more information.",
4170 init_file_name, load_path);
4171 MessageBox (NULL,
4172 buffer,
4173 "Emacs Abort Dialog",
4174 MB_OK | MB_ICONEXCLAMATION | MB_TASKMODAL);
4175 /* Use the low-level Emacs abort. */
4176 #undef abort
4177 abort ();
4178 }
4179 else
4180 {
4181 _close (fd);
4182 }
4183 }
4184 }
4185
4186 void
4187 term_ntproc ()
4188 {
4189 #ifdef HAVE_SOCKETS
4190 /* shutdown the socket interface if necessary */
4191 term_winsock ();
4192 #endif
4193
4194 term_w32select ();
4195 }
4196
4197 void
4198 init_ntproc ()
4199 {
4200 #ifdef HAVE_SOCKETS
4201 /* Initialise the socket interface now if available and requested by
4202 the user by defining PRELOAD_WINSOCK; otherwise loading will be
4203 delayed until open-network-stream is called (w32-has-winsock can
4204 also be used to dynamically load or reload winsock).
4205
4206 Conveniently, init_environment is called before us, so
4207 PRELOAD_WINSOCK can be set in the registry. */
4208
4209 /* Always initialize this correctly. */
4210 winsock_lib = NULL;
4211
4212 if (getenv ("PRELOAD_WINSOCK") != NULL)
4213 init_winsock (TRUE);
4214 #endif
4215
4216 /* Initial preparation for subprocess support: replace our standard
4217 handles with non-inheritable versions. */
4218 {
4219 HANDLE parent;
4220 HANDLE stdin_save = INVALID_HANDLE_VALUE;
4221 HANDLE stdout_save = INVALID_HANDLE_VALUE;
4222 HANDLE stderr_save = INVALID_HANDLE_VALUE;
4223
4224 parent = GetCurrentProcess ();
4225
4226 /* ignore errors when duplicating and closing; typically the
4227 handles will be invalid when running as a gui program. */
4228 DuplicateHandle (parent,
4229 GetStdHandle (STD_INPUT_HANDLE),
4230 parent,
4231 &stdin_save,
4232 0,
4233 FALSE,
4234 DUPLICATE_SAME_ACCESS);
4235
4236 DuplicateHandle (parent,
4237 GetStdHandle (STD_OUTPUT_HANDLE),
4238 parent,
4239 &stdout_save,
4240 0,
4241 FALSE,
4242 DUPLICATE_SAME_ACCESS);
4243
4244 DuplicateHandle (parent,
4245 GetStdHandle (STD_ERROR_HANDLE),
4246 parent,
4247 &stderr_save,
4248 0,
4249 FALSE,
4250 DUPLICATE_SAME_ACCESS);
4251
4252 fclose (stdin);
4253 fclose (stdout);
4254 fclose (stderr);
4255
4256 if (stdin_save != INVALID_HANDLE_VALUE)
4257 _open_osfhandle ((long) stdin_save, O_TEXT);
4258 else
4259 _open ("nul", O_TEXT | O_NOINHERIT | O_RDONLY);
4260 _fdopen (0, "r");
4261
4262 if (stdout_save != INVALID_HANDLE_VALUE)
4263 _open_osfhandle ((long) stdout_save, O_TEXT);
4264 else
4265 _open ("nul", O_TEXT | O_NOINHERIT | O_WRONLY);
4266 _fdopen (1, "w");
4267
4268 if (stderr_save != INVALID_HANDLE_VALUE)
4269 _open_osfhandle ((long) stderr_save, O_TEXT);
4270 else
4271 _open ("nul", O_TEXT | O_NOINHERIT | O_WRONLY);
4272 _fdopen (2, "w");
4273 }
4274
4275 /* unfortunately, atexit depends on implementation of malloc */
4276 /* atexit (term_ntproc); */
4277 signal (SIGABRT, term_ntproc);
4278
4279 /* determine which drives are fixed, for GetCachedVolumeInformation */
4280 {
4281 /* GetDriveType must have trailing backslash. */
4282 char drive[] = "A:\\";
4283
4284 /* Loop over all possible drive letters */
4285 while (*drive <= 'Z')
4286 {
4287 /* Record if this drive letter refers to a fixed drive. */
4288 fixed_drives[DRIVE_INDEX (*drive)] =
4289 (GetDriveType (drive) == DRIVE_FIXED);
4290
4291 (*drive)++;
4292 }
4293
4294 /* Reset the volume info cache. */
4295 volume_cache = NULL;
4296 }
4297
4298 /* Check to see if Emacs has been installed correctly. */
4299 check_windows_init_file ();
4300 }
4301
4302 /*
4303 shutdown_handler ensures that buffers' autosave files are
4304 up to date when the user logs off, or the system shuts down.
4305 */
4306 BOOL WINAPI shutdown_handler(DWORD type)
4307 {
4308 /* Ctrl-C and Ctrl-Break are already suppressed, so don't handle them. */
4309 if (type == CTRL_CLOSE_EVENT /* User closes console window. */
4310 || type == CTRL_LOGOFF_EVENT /* User logs off. */
4311 || type == CTRL_SHUTDOWN_EVENT) /* User shutsdown. */
4312 {
4313 /* Shut down cleanly, making sure autosave files are up to date. */
4314 shut_down_emacs (0, 0, Qnil);
4315 }
4316
4317 /* Allow other handlers to handle this signal. */
4318 return FALSE;
4319 }
4320
4321 /*
4322 globals_of_w32 is used to initialize those global variables that
4323 must always be initialized on startup even when the global variable
4324 initialized is non zero (see the function main in emacs.c).
4325 */
4326 void
4327 globals_of_w32 ()
4328 {
4329 HMODULE kernel32 = GetModuleHandle ("kernel32.dll");
4330
4331 get_process_times_fn = (GetProcessTimes_Proc)
4332 GetProcAddress (kernel32, "GetProcessTimes");
4333
4334 g_b_init_is_windows_9x = 0;
4335 g_b_init_open_process_token = 0;
4336 g_b_init_get_token_information = 0;
4337 g_b_init_lookup_account_sid = 0;
4338 g_b_init_get_sid_identifier_authority = 0;
4339 g_b_init_get_sid_sub_authority = 0;
4340 g_b_init_get_sid_sub_authority_count = 0;
4341 /* The following sets a handler for shutdown notifications for
4342 console apps. This actually applies to Emacs in both console and
4343 GUI modes, since we had to fool windows into thinking emacs is a
4344 console application to get console mode to work. */
4345 SetConsoleCtrlHandler(shutdown_handler, TRUE);
4346 }
4347
4348 /* end of w32.c */
4349
4350 /* arch-tag: 90442dd3-37be-482b-b272-ac752e3049f1
4351 (do not change this comment) */