Merge from gnus--rel--5.10
[emacs.git] / src / w32.c
blob894160a275d55a59e08e656a9902fa1196189b96
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.
5 This file is part of GNU Emacs.
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.
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.
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.
22 Geoff Voelker (voelker@cs.washington.edu) 7-29-94
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 */
37 /* must include CRT headers *before* config.h */
39 #ifdef HAVE_CONFIG_H
40 #include <config.h>
41 #endif
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
57 #undef close
58 #undef dup
59 #undef dup2
60 #undef pipe
61 #undef read
62 #undef write
64 #undef strerror
66 #include "lisp.h"
68 #include <pwd.h>
69 #include <grp.h>
71 #ifdef __GNUC__
72 #define _ANONYMOUS_UNION
73 #define _ANONYMOUS_STRUCT
74 #endif
75 #include <windows.h>
76 #include <shlobj.h>
78 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
79 #include <sys/socket.h>
80 #undef socket
81 #undef bind
82 #undef connect
83 #undef htons
84 #undef ntohs
85 #undef inet_addr
86 #undef gethostname
87 #undef gethostbyname
88 #undef getservbyname
89 #undef getpeername
90 #undef shutdown
91 #undef setsockopt
92 #undef listen
93 #undef getsockname
94 #undef accept
95 #undef recvfrom
96 #undef sendto
97 #endif
99 #include "w32.h"
100 #include "ndir.h"
101 #include "w32heap.h"
102 #include "systime.h"
104 typedef HRESULT (WINAPI * ShGetFolderPath_fn)
105 (IN HWND, IN int, IN HANDLE, IN DWORD, OUT char *);
107 void globals_of_w32 ();
109 extern Lisp_Object Vw32_downcase_file_names;
110 extern Lisp_Object Vw32_generate_fake_inodes;
111 extern Lisp_Object Vw32_get_true_file_attributes;
112 /* Defined in process.c for its own purpose. */
113 extern Lisp_Object Qlocal;
115 extern int w32_num_mouse_buttons;
119 Initialization states
121 static BOOL g_b_init_is_windows_9x;
122 static BOOL g_b_init_open_process_token;
123 static BOOL g_b_init_get_token_information;
124 static BOOL g_b_init_lookup_account_sid;
125 static BOOL g_b_init_get_sid_identifier_authority;
128 BEGIN: Wrapper functions around OpenProcessToken
129 and other functions in advapi32.dll that are only
130 supported in Windows NT / 2k / XP
132 /* ** Function pointer typedefs ** */
133 typedef BOOL (WINAPI * OpenProcessToken_Proc) (
134 HANDLE ProcessHandle,
135 DWORD DesiredAccess,
136 PHANDLE TokenHandle);
137 typedef BOOL (WINAPI * GetTokenInformation_Proc) (
138 HANDLE TokenHandle,
139 TOKEN_INFORMATION_CLASS TokenInformationClass,
140 LPVOID TokenInformation,
141 DWORD TokenInformationLength,
142 PDWORD ReturnLength);
143 #ifdef _UNICODE
144 const char * const LookupAccountSid_Name = "LookupAccountSidW";
145 #else
146 const char * const LookupAccountSid_Name = "LookupAccountSidA";
147 #endif
148 typedef BOOL (WINAPI * LookupAccountSid_Proc) (
149 LPCTSTR lpSystemName,
150 PSID Sid,
151 LPTSTR Name,
152 LPDWORD cbName,
153 LPTSTR DomainName,
154 LPDWORD cbDomainName,
155 PSID_NAME_USE peUse);
156 typedef PSID_IDENTIFIER_AUTHORITY (WINAPI * GetSidIdentifierAuthority_Proc) (
157 PSID pSid);
159 /* ** A utility function ** */
160 static BOOL
161 is_windows_9x ()
163 static BOOL s_b_ret=0;
164 OSVERSIONINFO os_ver;
165 if (g_b_init_is_windows_9x == 0)
167 g_b_init_is_windows_9x = 1;
168 ZeroMemory(&os_ver, sizeof(OSVERSIONINFO));
169 os_ver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
170 if (GetVersionEx (&os_ver))
172 s_b_ret = (os_ver.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS);
175 return s_b_ret;
178 /* ** The wrapper functions ** */
180 BOOL WINAPI open_process_token (
181 HANDLE ProcessHandle,
182 DWORD DesiredAccess,
183 PHANDLE TokenHandle)
185 static OpenProcessToken_Proc s_pfn_Open_Process_Token = NULL;
186 HMODULE hm_advapi32 = NULL;
187 if (is_windows_9x () == TRUE)
189 return FALSE;
191 if (g_b_init_open_process_token == 0)
193 g_b_init_open_process_token = 1;
194 hm_advapi32 = LoadLibrary ("Advapi32.dll");
195 s_pfn_Open_Process_Token =
196 (OpenProcessToken_Proc) GetProcAddress (hm_advapi32, "OpenProcessToken");
198 if (s_pfn_Open_Process_Token == NULL)
200 return FALSE;
202 return (
203 s_pfn_Open_Process_Token (
204 ProcessHandle,
205 DesiredAccess,
206 TokenHandle)
210 BOOL WINAPI get_token_information (
211 HANDLE TokenHandle,
212 TOKEN_INFORMATION_CLASS TokenInformationClass,
213 LPVOID TokenInformation,
214 DWORD TokenInformationLength,
215 PDWORD ReturnLength)
217 static GetTokenInformation_Proc s_pfn_Get_Token_Information = NULL;
218 HMODULE hm_advapi32 = NULL;
219 if (is_windows_9x () == TRUE)
221 return FALSE;
223 if (g_b_init_get_token_information == 0)
225 g_b_init_get_token_information = 1;
226 hm_advapi32 = LoadLibrary ("Advapi32.dll");
227 s_pfn_Get_Token_Information =
228 (GetTokenInformation_Proc) GetProcAddress (hm_advapi32, "GetTokenInformation");
230 if (s_pfn_Get_Token_Information == NULL)
232 return FALSE;
234 return (
235 s_pfn_Get_Token_Information (
236 TokenHandle,
237 TokenInformationClass,
238 TokenInformation,
239 TokenInformationLength,
240 ReturnLength)
244 BOOL WINAPI lookup_account_sid (
245 LPCTSTR lpSystemName,
246 PSID Sid,
247 LPTSTR Name,
248 LPDWORD cbName,
249 LPTSTR DomainName,
250 LPDWORD cbDomainName,
251 PSID_NAME_USE peUse)
253 static LookupAccountSid_Proc s_pfn_Lookup_Account_Sid = NULL;
254 HMODULE hm_advapi32 = NULL;
255 if (is_windows_9x () == TRUE)
257 return FALSE;
259 if (g_b_init_lookup_account_sid == 0)
261 g_b_init_lookup_account_sid = 1;
262 hm_advapi32 = LoadLibrary ("Advapi32.dll");
263 s_pfn_Lookup_Account_Sid =
264 (LookupAccountSid_Proc) GetProcAddress (hm_advapi32, LookupAccountSid_Name);
266 if (s_pfn_Lookup_Account_Sid == NULL)
268 return FALSE;
270 return (
271 s_pfn_Lookup_Account_Sid (
272 lpSystemName,
273 Sid,
274 Name,
275 cbName,
276 DomainName,
277 cbDomainName,
278 peUse)
282 PSID_IDENTIFIER_AUTHORITY WINAPI get_sid_identifier_authority (
283 PSID pSid)
285 static GetSidIdentifierAuthority_Proc s_pfn_Get_Sid_Identifier_Authority = NULL;
286 HMODULE hm_advapi32 = NULL;
287 if (is_windows_9x () == TRUE)
289 return NULL;
291 if (g_b_init_get_sid_identifier_authority == 0)
293 g_b_init_get_sid_identifier_authority = 1;
294 hm_advapi32 = LoadLibrary ("Advapi32.dll");
295 s_pfn_Get_Sid_Identifier_Authority =
296 (GetSidIdentifierAuthority_Proc) GetProcAddress (
297 hm_advapi32, "GetSidIdentifierAuthority");
299 if (s_pfn_Get_Sid_Identifier_Authority == NULL)
301 return NULL;
303 return (s_pfn_Get_Sid_Identifier_Authority (pSid));
307 END: Wrapper functions around OpenProcessToken
308 and other functions in advapi32.dll that are only
309 supported in Windows NT / 2k / XP
313 /* Equivalent of strerror for W32 error codes. */
314 char *
315 w32_strerror (int error_no)
317 static char buf[500];
319 if (error_no == 0)
320 error_no = GetLastError ();
322 buf[0] = '\0';
323 if (!FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM, NULL,
324 error_no,
325 0, /* choose most suitable language */
326 buf, sizeof (buf), NULL))
327 sprintf (buf, "w32 error %u", error_no);
328 return buf;
331 /* Return 1 if P is a valid pointer to an object of size SIZE. Return
332 0 if P is NOT a valid pointer. Return -1 if we cannot validate P.
334 This is called from alloc.c:valid_pointer_p. */
336 w32_valid_pointer_p (void *p, int size)
338 SIZE_T done;
339 HANDLE h = OpenProcess (PROCESS_VM_READ, FALSE, GetCurrentProcessId ());
341 if (h)
343 unsigned char *buf = alloca (size);
344 int retval = ReadProcessMemory (h, p, buf, size, &done);
346 CloseHandle (h);
347 return retval;
349 else
350 return -1;
353 static char startup_dir[MAXPATHLEN];
355 /* Get the current working directory. */
356 char *
357 getwd (char *dir)
359 #if 0
360 if (GetCurrentDirectory (MAXPATHLEN, dir) > 0)
361 return dir;
362 return NULL;
363 #else
364 /* Emacs doesn't actually change directory itself, and we want to
365 force our real wd to be where emacs.exe is to avoid unnecessary
366 conflicts when trying to rename or delete directories. */
367 strcpy (dir, startup_dir);
368 return dir;
369 #endif
372 #ifndef HAVE_SOCKETS
373 /* Emulate gethostname. */
375 gethostname (char *buffer, int size)
377 /* NT only allows small host names, so the buffer is
378 certainly large enough. */
379 return !GetComputerName (buffer, &size);
381 #endif /* HAVE_SOCKETS */
383 /* Emulate getloadavg. */
385 getloadavg (double loadavg[], int nelem)
387 int i;
389 /* A faithful emulation is going to have to be saved for a rainy day. */
390 for (i = 0; i < nelem; i++)
392 loadavg[i] = 0.0;
394 return i;
397 /* Emulate getpwuid, getpwnam and others. */
399 #define PASSWD_FIELD_SIZE 256
401 static char the_passwd_name[PASSWD_FIELD_SIZE];
402 static char the_passwd_passwd[PASSWD_FIELD_SIZE];
403 static char the_passwd_gecos[PASSWD_FIELD_SIZE];
404 static char the_passwd_dir[PASSWD_FIELD_SIZE];
405 static char the_passwd_shell[PASSWD_FIELD_SIZE];
407 static struct passwd the_passwd =
409 the_passwd_name,
410 the_passwd_passwd,
414 the_passwd_gecos,
415 the_passwd_dir,
416 the_passwd_shell,
419 static struct group the_group =
421 /* There are no groups on NT, so we just return "root" as the
422 group name. */
423 "root",
427 getuid ()
429 return the_passwd.pw_uid;
433 geteuid ()
435 /* I could imagine arguing for checking to see whether the user is
436 in the Administrators group and returning a UID of 0 for that
437 case, but I don't know how wise that would be in the long run. */
438 return getuid ();
442 getgid ()
444 return the_passwd.pw_gid;
448 getegid ()
450 return getgid ();
453 struct passwd *
454 getpwuid (int uid)
456 if (uid == the_passwd.pw_uid)
457 return &the_passwd;
458 return NULL;
461 struct group *
462 getgrgid (gid_t gid)
464 return &the_group;
467 struct passwd *
468 getpwnam (char *name)
470 struct passwd *pw;
472 pw = getpwuid (getuid ());
473 if (!pw)
474 return pw;
476 if (stricmp (name, pw->pw_name))
477 return NULL;
479 return pw;
482 void
483 init_user_info ()
485 /* Find the user's real name by opening the process token and
486 looking up the name associated with the user-sid in that token.
488 Use the relative portion of the identifier authority value from
489 the user-sid as the user id value (same for group id using the
490 primary group sid from the process token). */
492 char user_sid[256], name[256], domain[256];
493 DWORD length = sizeof (name), dlength = sizeof (domain), trash;
494 HANDLE token = NULL;
495 SID_NAME_USE user_type;
497 if (open_process_token (GetCurrentProcess (), TOKEN_QUERY, &token)
498 && get_token_information (token, TokenUser,
499 (PVOID) user_sid, sizeof (user_sid), &trash)
500 && lookup_account_sid (NULL, *((PSID *) user_sid), name, &length,
501 domain, &dlength, &user_type))
503 strcpy (the_passwd.pw_name, name);
504 /* Determine a reasonable uid value. */
505 if (stricmp ("administrator", name) == 0)
507 the_passwd.pw_uid = 0;
508 the_passwd.pw_gid = 0;
510 else
512 SID_IDENTIFIER_AUTHORITY * pSIA;
514 pSIA = get_sid_identifier_authority (*((PSID *) user_sid));
515 /* I believe the relative portion is the last 4 bytes (of 6)
516 with msb first. */
517 the_passwd.pw_uid = ((pSIA->Value[2] << 24) +
518 (pSIA->Value[3] << 16) +
519 (pSIA->Value[4] << 8) +
520 (pSIA->Value[5] << 0));
521 /* restrict to conventional uid range for normal users */
522 the_passwd.pw_uid = the_passwd.pw_uid % 60001;
524 /* Get group id */
525 if (get_token_information (token, TokenPrimaryGroup,
526 (PVOID) user_sid, sizeof (user_sid), &trash))
528 SID_IDENTIFIER_AUTHORITY * pSIA;
530 pSIA = get_sid_identifier_authority (*((PSID *) user_sid));
531 the_passwd.pw_gid = ((pSIA->Value[2] << 24) +
532 (pSIA->Value[3] << 16) +
533 (pSIA->Value[4] << 8) +
534 (pSIA->Value[5] << 0));
535 /* I don't know if this is necessary, but for safety... */
536 the_passwd.pw_gid = the_passwd.pw_gid % 60001;
538 else
539 the_passwd.pw_gid = the_passwd.pw_uid;
542 /* If security calls are not supported (presumably because we
543 are running under Windows 95), fallback to this. */
544 else if (GetUserName (name, &length))
546 strcpy (the_passwd.pw_name, name);
547 if (stricmp ("administrator", name) == 0)
548 the_passwd.pw_uid = 0;
549 else
550 the_passwd.pw_uid = 123;
551 the_passwd.pw_gid = the_passwd.pw_uid;
553 else
555 strcpy (the_passwd.pw_name, "unknown");
556 the_passwd.pw_uid = 123;
557 the_passwd.pw_gid = 123;
560 /* Ensure HOME and SHELL are defined. */
561 if (getenv ("HOME") == NULL)
562 abort ();
563 if (getenv ("SHELL") == NULL)
564 abort ();
566 /* Set dir and shell from environment variables. */
567 strcpy (the_passwd.pw_dir, getenv ("HOME"));
568 strcpy (the_passwd.pw_shell, getenv ("SHELL"));
570 if (token)
571 CloseHandle (token);
575 random ()
577 /* rand () on NT gives us 15 random bits...hack together 30 bits. */
578 return ((rand () << 15) | rand ());
581 void
582 srandom (int seed)
584 srand (seed);
588 /* Normalize filename by converting all path separators to
589 the specified separator. Also conditionally convert upper
590 case path name components to lower case. */
592 static void
593 normalize_filename (fp, path_sep)
594 register char *fp;
595 char path_sep;
597 char sep;
598 char *elem;
600 /* Always lower-case drive letters a-z, even if the filesystem
601 preserves case in filenames.
602 This is so filenames can be compared by string comparison
603 functions that are case-sensitive. Even case-preserving filesystems
604 do not distinguish case in drive letters. */
605 if (fp[1] == ':' && *fp >= 'A' && *fp <= 'Z')
607 *fp += 'a' - 'A';
608 fp += 2;
611 if (NILP (Vw32_downcase_file_names))
613 while (*fp)
615 if (*fp == '/' || *fp == '\\')
616 *fp = path_sep;
617 fp++;
619 return;
622 sep = path_sep; /* convert to this path separator */
623 elem = fp; /* start of current path element */
625 do {
626 if (*fp >= 'a' && *fp <= 'z')
627 elem = 0; /* don't convert this element */
629 if (*fp == 0 || *fp == ':')
631 sep = *fp; /* restore current separator (or 0) */
632 *fp = '/'; /* after conversion of this element */
635 if (*fp == '/' || *fp == '\\')
637 if (elem && elem != fp)
639 *fp = 0; /* temporary end of string */
640 _strlwr (elem); /* while we convert to lower case */
642 *fp = sep; /* convert (or restore) path separator */
643 elem = fp + 1; /* next element starts after separator */
644 sep = path_sep;
646 } while (*fp++);
649 /* Destructively turn backslashes into slashes. */
650 void
651 dostounix_filename (p)
652 register char *p;
654 normalize_filename (p, '/');
657 /* Destructively turn slashes into backslashes. */
658 void
659 unixtodos_filename (p)
660 register char *p;
662 normalize_filename (p, '\\');
665 /* Remove all CR's that are followed by a LF.
666 (From msdos.c...probably should figure out a way to share it,
667 although this code isn't going to ever change.) */
669 crlf_to_lf (n, buf)
670 register int n;
671 register unsigned char *buf;
673 unsigned char *np = buf;
674 unsigned char *startp = buf;
675 unsigned char *endp = buf + n;
677 if (n == 0)
678 return n;
679 while (buf < endp - 1)
681 if (*buf == 0x0d)
683 if (*(++buf) != 0x0a)
684 *np++ = 0x0d;
686 else
687 *np++ = *buf++;
689 if (buf < endp)
690 *np++ = *buf++;
691 return np - startp;
694 /* Parse the root part of file name, if present. Return length and
695 optionally store pointer to char after root. */
696 static int
697 parse_root (char * name, char ** pPath)
699 char * start = name;
701 if (name == NULL)
702 return 0;
704 /* find the root name of the volume if given */
705 if (isalpha (name[0]) && name[1] == ':')
707 /* skip past drive specifier */
708 name += 2;
709 if (IS_DIRECTORY_SEP (name[0]))
710 name++;
712 else if (IS_DIRECTORY_SEP (name[0]) && IS_DIRECTORY_SEP (name[1]))
714 int slashes = 2;
715 name += 2;
718 if (IS_DIRECTORY_SEP (*name) && --slashes == 0)
719 break;
720 name++;
722 while ( *name );
723 if (IS_DIRECTORY_SEP (name[0]))
724 name++;
727 if (pPath)
728 *pPath = name;
730 return name - start;
733 /* Get long base name for name; name is assumed to be absolute. */
734 static int
735 get_long_basename (char * name, char * buf, int size)
737 WIN32_FIND_DATA find_data;
738 HANDLE dir_handle;
739 int len = 0;
741 /* must be valid filename, no wild cards or other invalid characters */
742 if (_mbspbrk (name, "*?|<>\""))
743 return 0;
745 dir_handle = FindFirstFile (name, &find_data);
746 if (dir_handle != INVALID_HANDLE_VALUE)
748 if ((len = strlen (find_data.cFileName)) < size)
749 memcpy (buf, find_data.cFileName, len + 1);
750 else
751 len = 0;
752 FindClose (dir_handle);
754 return len;
757 /* Get long name for file, if possible (assumed to be absolute). */
758 BOOL
759 w32_get_long_filename (char * name, char * buf, int size)
761 char * o = buf;
762 char * p;
763 char * q;
764 char full[ MAX_PATH ];
765 int len;
767 len = strlen (name);
768 if (len >= MAX_PATH)
769 return FALSE;
771 /* Use local copy for destructive modification. */
772 memcpy (full, name, len+1);
773 unixtodos_filename (full);
775 /* Copy root part verbatim. */
776 len = parse_root (full, &p);
777 memcpy (o, full, len);
778 o += len;
779 *o = '\0';
780 size -= len;
782 while (p != NULL && *p)
784 q = p;
785 p = strchr (q, '\\');
786 if (p) *p = '\0';
787 len = get_long_basename (full, o, size);
788 if (len > 0)
790 o += len;
791 size -= len;
792 if (p != NULL)
794 *p++ = '\\';
795 if (size < 2)
796 return FALSE;
797 *o++ = '\\';
798 size--;
799 *o = '\0';
802 else
803 return FALSE;
806 return TRUE;
810 is_unc_volume (const char *filename)
812 const char *ptr = filename;
814 if (!IS_DIRECTORY_SEP (ptr[0]) || !IS_DIRECTORY_SEP (ptr[1]) || !ptr[2])
815 return 0;
817 if (_mbspbrk (ptr + 2, "*?|<>\"\\/"))
818 return 0;
820 return 1;
823 /* Routines that are no-ops on NT but are defined to get Emacs to compile. */
826 sigsetmask (int signal_mask)
828 return 0;
832 sigmask (int sig)
834 return 0;
838 sigblock (int sig)
840 return 0;
844 sigunblock (int sig)
846 return 0;
850 setpgrp (int pid, int gid)
852 return 0;
856 alarm (int seconds)
858 return 0;
861 void
862 unrequest_sigio (void)
864 return;
867 void
868 request_sigio (void)
870 return;
873 #define REG_ROOT "SOFTWARE\\GNU\\Emacs"
875 LPBYTE
876 w32_get_resource (key, lpdwtype)
877 char *key;
878 LPDWORD lpdwtype;
880 LPBYTE lpvalue;
881 HKEY hrootkey = NULL;
882 DWORD cbData;
884 /* Check both the current user and the local machine to see if
885 we have any resources. */
887 if (RegOpenKeyEx (HKEY_CURRENT_USER, REG_ROOT, 0, KEY_READ, &hrootkey) == ERROR_SUCCESS)
889 lpvalue = NULL;
891 if (RegQueryValueEx (hrootkey, key, NULL, NULL, NULL, &cbData) == ERROR_SUCCESS
892 && (lpvalue = (LPBYTE) xmalloc (cbData)) != NULL
893 && RegQueryValueEx (hrootkey, key, NULL, lpdwtype, lpvalue, &cbData) == ERROR_SUCCESS)
895 RegCloseKey (hrootkey);
896 return (lpvalue);
899 if (lpvalue) xfree (lpvalue);
901 RegCloseKey (hrootkey);
904 if (RegOpenKeyEx (HKEY_LOCAL_MACHINE, REG_ROOT, 0, KEY_READ, &hrootkey) == ERROR_SUCCESS)
906 lpvalue = NULL;
908 if (RegQueryValueEx (hrootkey, key, NULL, NULL, NULL, &cbData) == ERROR_SUCCESS
909 && (lpvalue = (LPBYTE) xmalloc (cbData)) != NULL
910 && RegQueryValueEx (hrootkey, key, NULL, lpdwtype, lpvalue, &cbData) == ERROR_SUCCESS)
912 RegCloseKey (hrootkey);
913 return (lpvalue);
916 if (lpvalue) xfree (lpvalue);
918 RegCloseKey (hrootkey);
921 return (NULL);
924 char *get_emacs_configuration (void);
925 extern Lisp_Object Vsystem_configuration;
927 void
928 init_environment (char ** argv)
930 static const char * const tempdirs[] = {
931 "$TMPDIR", "$TEMP", "$TMP", "c:/"
934 int i;
936 const int imax = sizeof (tempdirs) / sizeof (tempdirs[0]);
938 /* Make sure they have a usable $TMPDIR. Many Emacs functions use
939 temporary files and assume "/tmp" if $TMPDIR is unset, which
940 will break on DOS/Windows. Refuse to work if we cannot find
941 a directory, not even "c:/", usable for that purpose. */
942 for (i = 0; i < imax ; i++)
944 const char *tmp = tempdirs[i];
946 if (*tmp == '$')
947 tmp = getenv (tmp + 1);
948 /* Note that `access' can lie to us if the directory resides on a
949 read-only filesystem, like CD-ROM or a write-protected floppy.
950 The only way to be really sure is to actually create a file and
951 see if it succeeds. But I think that's too much to ask. */
952 if (tmp && _access (tmp, D_OK) == 0)
954 char * var = alloca (strlen (tmp) + 8);
955 sprintf (var, "TMPDIR=%s", tmp);
956 _putenv (strdup (var));
957 break;
960 if (i >= imax)
961 cmd_error_internal
962 (Fcons (Qerror,
963 Fcons (build_string ("no usable temporary directories found!!"),
964 Qnil)),
965 "While setting TMPDIR: ");
967 /* Check for environment variables and use registry settings if they
968 don't exist. Fallback on default values where applicable. */
970 int i;
971 LPBYTE lpval;
972 DWORD dwType;
973 char locale_name[32];
974 struct stat ignored;
975 char default_home[MAX_PATH];
977 static const struct env_entry
979 char * name;
980 char * def_value;
981 } dflt_envvars[] =
983 {"HOME", "C:/"},
984 {"PRELOAD_WINSOCK", NULL},
985 {"emacs_dir", "C:/emacs"},
986 {"EMACSLOADPATH", "%emacs_dir%/site-lisp;%emacs_dir%/../site-lisp;%emacs_dir%/lisp;%emacs_dir%/leim"},
987 {"SHELL", "%emacs_dir%/bin/cmdproxy.exe"},
988 {"EMACSDATA", "%emacs_dir%/etc"},
989 {"EMACSPATH", "%emacs_dir%/bin"},
990 /* We no longer set INFOPATH because Info-default-directory-list
991 is then ignored. */
992 /* {"INFOPATH", "%emacs_dir%/info"}, */
993 {"EMACSDOC", "%emacs_dir%/etc"},
994 {"TERM", "cmd"},
995 {"LANG", NULL},
998 #define N_ENV_VARS sizeof(dflt_envvars)/sizeof(dflt_envvars[0])
1000 /* We need to copy dflt_envvars[] and work on the copy because we
1001 don't want the dumped Emacs to inherit the values of
1002 environment variables we saw during dumping (which could be on
1003 a different system). The defaults above must be left intact. */
1004 struct env_entry env_vars[N_ENV_VARS];
1006 for (i = 0; i < N_ENV_VARS; i++)
1007 env_vars[i] = dflt_envvars[i];
1009 /* For backwards compatibility, check if a .emacs file exists in C:/
1010 If not, then we can try to default to the appdata directory under the
1011 user's profile, which is more likely to be writable. */
1012 if (stat ("C:/.emacs", &ignored) < 0)
1014 HRESULT profile_result;
1015 /* Dynamically load ShGetFolderPath, as it won't exist on versions
1016 of Windows 95 and NT4 that have not been updated to include
1017 MSIE 5. Also we don't link with shell32.dll by default. */
1018 HMODULE shell32_dll;
1019 ShGetFolderPath_fn get_folder_path;
1020 shell32_dll = GetModuleHandle ("shell32.dll");
1021 get_folder_path = (ShGetFolderPath_fn)
1022 GetProcAddress (shell32_dll, "SHGetFolderPathA");
1024 if (get_folder_path != NULL)
1026 profile_result = get_folder_path (NULL, CSIDL_APPDATA, NULL,
1027 0, default_home);
1029 /* If we can't get the appdata dir, revert to old behaviour. */
1030 if (profile_result == S_OK)
1031 env_vars[0].def_value = default_home;
1034 /* Unload shell32.dll, it is not needed anymore. */
1035 FreeLibrary (shell32_dll);
1038 /* Get default locale info and use it for LANG. */
1039 if (GetLocaleInfo (LOCALE_USER_DEFAULT,
1040 LOCALE_SABBREVLANGNAME | LOCALE_USE_CP_ACP,
1041 locale_name, sizeof (locale_name)))
1043 for (i = 0; i < N_ENV_VARS; i++)
1045 if (strcmp (env_vars[i].name, "LANG") == 0)
1047 env_vars[i].def_value = locale_name;
1048 break;
1053 #define SET_ENV_BUF_SIZE (4 * MAX_PATH) /* to cover EMACSLOADPATH */
1055 /* Treat emacs_dir specially: set it unconditionally based on our
1056 location, if it appears that we are running from the bin subdir
1057 of a standard installation. */
1059 char *p;
1060 char modname[MAX_PATH];
1062 if (!GetModuleFileName (NULL, modname, MAX_PATH))
1063 abort ();
1064 if ((p = strrchr (modname, '\\')) == NULL)
1065 abort ();
1066 *p = 0;
1068 if ((p = strrchr (modname, '\\')) && stricmp (p, "\\bin") == 0)
1070 char buf[SET_ENV_BUF_SIZE];
1072 *p = 0;
1073 for (p = modname; *p; p++)
1074 if (*p == '\\') *p = '/';
1076 _snprintf (buf, sizeof(buf)-1, "emacs_dir=%s", modname);
1077 _putenv (strdup (buf));
1079 /* Handle running emacs from the build directory: src/oo-spd/i386/ */
1081 /* FIXME: should use substring of get_emacs_configuration ().
1082 But I don't think the Windows build supports alpha, mips etc
1083 anymore, so have taken the easy option for now. */
1084 else if (p && stricmp (p, "\\i386") == 0)
1086 *p = 0;
1087 p = strrchr (modname, '\\');
1088 if (p != NULL)
1090 *p = 0;
1091 p = strrchr (modname, '\\');
1092 if (p && stricmp (p, "\\src") == 0)
1094 char buf[SET_ENV_BUF_SIZE];
1096 *p = 0;
1097 for (p = modname; *p; p++)
1098 if (*p == '\\') *p = '/';
1100 _snprintf (buf, sizeof(buf)-1, "emacs_dir=%s", modname);
1101 _putenv (strdup (buf));
1107 for (i = 0; i < N_ENV_VARS; i++)
1109 if (!getenv (env_vars[i].name))
1111 int dont_free = 0;
1113 if ((lpval = w32_get_resource (env_vars[i].name, &dwType)) == NULL
1114 /* Also ignore empty environment variables. */
1115 || *lpval == 0)
1117 if (lpval) xfree (lpval);
1118 lpval = env_vars[i].def_value;
1119 dwType = REG_EXPAND_SZ;
1120 dont_free = 1;
1123 if (lpval)
1125 char buf1[SET_ENV_BUF_SIZE], buf2[SET_ENV_BUF_SIZE];
1127 if (dwType == REG_EXPAND_SZ)
1128 ExpandEnvironmentStrings ((LPSTR) lpval, buf1, sizeof(buf1));
1129 else if (dwType == REG_SZ)
1130 strcpy (buf1, lpval);
1131 if (dwType == REG_EXPAND_SZ || dwType == REG_SZ)
1133 _snprintf (buf2, sizeof(buf2)-1, "%s=%s", env_vars[i].name,
1134 buf1);
1135 _putenv (strdup (buf2));
1138 if (!dont_free)
1139 xfree (lpval);
1145 /* Rebuild system configuration to reflect invoking system. */
1146 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
1148 /* Another special case: on NT, the PATH variable is actually named
1149 "Path" although cmd.exe (perhaps NT itself) arranges for
1150 environment variable lookup and setting to be case insensitive.
1151 However, Emacs assumes a fully case sensitive environment, so we
1152 need to change "Path" to "PATH" to match the expectations of
1153 various elisp packages. We do this by the sneaky method of
1154 modifying the string in the C runtime environ entry.
1156 The same applies to COMSPEC. */
1158 char ** envp;
1160 for (envp = environ; *envp; envp++)
1161 if (_strnicmp (*envp, "PATH=", 5) == 0)
1162 memcpy (*envp, "PATH=", 5);
1163 else if (_strnicmp (*envp, "COMSPEC=", 8) == 0)
1164 memcpy (*envp, "COMSPEC=", 8);
1167 /* Remember the initial working directory for getwd, then make the
1168 real wd be the location of emacs.exe to avoid conflicts when
1169 renaming or deleting directories. (We also don't call chdir when
1170 running subprocesses for the same reason.) */
1171 if (!GetCurrentDirectory (MAXPATHLEN, startup_dir))
1172 abort ();
1175 char *p;
1176 static char modname[MAX_PATH];
1178 if (!GetModuleFileName (NULL, modname, MAX_PATH))
1179 abort ();
1180 if ((p = strrchr (modname, '\\')) == NULL)
1181 abort ();
1182 *p = 0;
1184 SetCurrentDirectory (modname);
1186 /* Ensure argv[0] has the full path to Emacs. */
1187 *p = '\\';
1188 argv[0] = modname;
1191 /* Determine if there is a middle mouse button, to allow parse_button
1192 to decide whether right mouse events should be mouse-2 or
1193 mouse-3. */
1194 w32_num_mouse_buttons = GetSystemMetrics (SM_CMOUSEBUTTONS);
1196 init_user_info ();
1199 char *
1200 emacs_root_dir (void)
1202 static char root_dir[FILENAME_MAX];
1203 const char *p;
1205 p = getenv ("emacs_dir");
1206 if (p == NULL)
1207 abort ();
1208 strcpy (root_dir, p);
1209 root_dir[parse_root (root_dir, NULL)] = '\0';
1210 dostounix_filename (root_dir);
1211 return root_dir;
1214 /* We don't have scripts to automatically determine the system configuration
1215 for Emacs before it's compiled, and we don't want to have to make the
1216 user enter it, so we define EMACS_CONFIGURATION to invoke this runtime
1217 routine. */
1219 char *
1220 get_emacs_configuration (void)
1222 char *arch, *oem, *os;
1223 int build_num;
1224 static char configuration_buffer[32];
1226 /* Determine the processor type. */
1227 switch (get_processor_type ())
1230 #ifdef PROCESSOR_INTEL_386
1231 case PROCESSOR_INTEL_386:
1232 case PROCESSOR_INTEL_486:
1233 case PROCESSOR_INTEL_PENTIUM:
1234 arch = "i386";
1235 break;
1236 #endif
1238 #ifdef PROCESSOR_INTEL_860
1239 case PROCESSOR_INTEL_860:
1240 arch = "i860";
1241 break;
1242 #endif
1244 #ifdef PROCESSOR_MIPS_R2000
1245 case PROCESSOR_MIPS_R2000:
1246 case PROCESSOR_MIPS_R3000:
1247 case PROCESSOR_MIPS_R4000:
1248 arch = "mips";
1249 break;
1250 #endif
1252 #ifdef PROCESSOR_ALPHA_21064
1253 case PROCESSOR_ALPHA_21064:
1254 arch = "alpha";
1255 break;
1256 #endif
1258 default:
1259 arch = "unknown";
1260 break;
1263 /* Use the OEM field to reflect the compiler/library combination. */
1264 #ifdef _MSC_VER
1265 #define COMPILER_NAME "msvc"
1266 #else
1267 #ifdef __GNUC__
1268 #define COMPILER_NAME "mingw"
1269 #else
1270 #define COMPILER_NAME "unknown"
1271 #endif
1272 #endif
1273 oem = COMPILER_NAME;
1275 switch (osinfo_cache.dwPlatformId) {
1276 case VER_PLATFORM_WIN32_NT:
1277 os = "nt";
1278 build_num = osinfo_cache.dwBuildNumber;
1279 break;
1280 case VER_PLATFORM_WIN32_WINDOWS:
1281 if (osinfo_cache.dwMinorVersion == 0) {
1282 os = "windows95";
1283 } else {
1284 os = "windows98";
1286 build_num = LOWORD (osinfo_cache.dwBuildNumber);
1287 break;
1288 case VER_PLATFORM_WIN32s:
1289 /* Not supported, should not happen. */
1290 os = "windows32s";
1291 build_num = LOWORD (osinfo_cache.dwBuildNumber);
1292 break;
1293 default:
1294 os = "unknown";
1295 build_num = 0;
1296 break;
1299 if (osinfo_cache.dwPlatformId == VER_PLATFORM_WIN32_NT) {
1300 sprintf (configuration_buffer, "%s-%s-%s%d.%d.%d", arch, oem, os,
1301 get_w32_major_version (), get_w32_minor_version (), build_num);
1302 } else {
1303 sprintf (configuration_buffer, "%s-%s-%s.%d", arch, oem, os, build_num);
1306 return configuration_buffer;
1309 char *
1310 get_emacs_configuration_options (void)
1312 static char options_buffer[256];
1314 /* Work out the effective configure options for this build. */
1315 #ifdef _MSC_VER
1316 #define COMPILER_VERSION "--with-msvc (%d.%02d)", _MSC_VER / 100, _MSC_VER % 100
1317 #else
1318 #ifdef __GNUC__
1319 #define COMPILER_VERSION "--with-gcc (%d.%d)", __GNUC__, __GNUC_MINOR__
1320 #else
1321 #define COMPILER_VERSION ""
1322 #endif
1323 #endif
1325 sprintf (options_buffer, COMPILER_VERSION);
1326 #ifdef EMACSDEBUG
1327 strcat (options_buffer, " --no-opt");
1328 #endif
1329 #ifdef USER_CFLAGS
1330 strcat (options_buffer, " --cflags");
1331 strcat (options_buffer, USER_CFLAGS);
1332 #endif
1333 #ifdef USER_LDFLAGS
1334 strcat (options_buffer, " --ldflags");
1335 strcat (options_buffer, USER_LDFLAGS);
1336 #endif
1337 return options_buffer;
1341 #include <sys/timeb.h>
1343 /* Emulate gettimeofday (Ulrich Leodolter, 1/11/95). */
1344 void
1345 gettimeofday (struct timeval *tv, struct timezone *tz)
1347 struct _timeb tb;
1348 _ftime (&tb);
1350 tv->tv_sec = tb.time;
1351 tv->tv_usec = tb.millitm * 1000L;
1352 if (tz)
1354 tz->tz_minuteswest = tb.timezone; /* minutes west of Greenwich */
1355 tz->tz_dsttime = tb.dstflag; /* type of dst correction */
1359 /* ------------------------------------------------------------------------- */
1360 /* IO support and wrapper functions for W32 API. */
1361 /* ------------------------------------------------------------------------- */
1363 /* Place a wrapper around the MSVC version of ctime. It returns NULL
1364 on network directories, so we handle that case here.
1365 (Ulrich Leodolter, 1/11/95). */
1366 char *
1367 sys_ctime (const time_t *t)
1369 char *str = (char *) ctime (t);
1370 return (str ? str : "Sun Jan 01 00:00:00 1970");
1373 /* Emulate sleep...we could have done this with a define, but that
1374 would necessitate including windows.h in the files that used it.
1375 This is much easier. */
1376 void
1377 sys_sleep (int seconds)
1379 Sleep (seconds * 1000);
1382 /* Internal MSVC functions for low-level descriptor munging */
1383 extern int __cdecl _set_osfhnd (int fd, long h);
1384 extern int __cdecl _free_osfhnd (int fd);
1386 /* parallel array of private info on file handles */
1387 filedesc fd_info [ MAXDESC ];
1389 typedef struct volume_info_data {
1390 struct volume_info_data * next;
1392 /* time when info was obtained */
1393 DWORD timestamp;
1395 /* actual volume info */
1396 char * root_dir;
1397 DWORD serialnum;
1398 DWORD maxcomp;
1399 DWORD flags;
1400 char * name;
1401 char * type;
1402 } volume_info_data;
1404 /* Global referenced by various functions. */
1405 static volume_info_data volume_info;
1407 /* Vector to indicate which drives are local and fixed (for which cached
1408 data never expires). */
1409 static BOOL fixed_drives[26];
1411 /* Consider cached volume information to be stale if older than 10s,
1412 at least for non-local drives. Info for fixed drives is never stale. */
1413 #define DRIVE_INDEX( c ) ( (c) <= 'Z' ? (c) - 'A' : (c) - 'a' )
1414 #define VOLINFO_STILL_VALID( root_dir, info ) \
1415 ( ( isalpha (root_dir[0]) && \
1416 fixed_drives[ DRIVE_INDEX (root_dir[0]) ] ) \
1417 || GetTickCount () - info->timestamp < 10000 )
1419 /* Cache support functions. */
1421 /* Simple linked list with linear search is sufficient. */
1422 static volume_info_data *volume_cache = NULL;
1424 static volume_info_data *
1425 lookup_volume_info (char * root_dir)
1427 volume_info_data * info;
1429 for (info = volume_cache; info; info = info->next)
1430 if (stricmp (info->root_dir, root_dir) == 0)
1431 break;
1432 return info;
1435 static void
1436 add_volume_info (char * root_dir, volume_info_data * info)
1438 info->root_dir = xstrdup (root_dir);
1439 info->next = volume_cache;
1440 volume_cache = info;
1444 /* Wrapper for GetVolumeInformation, which uses caching to avoid
1445 performance penalty (~2ms on 486 for local drives, 7.5ms for local
1446 cdrom drive, ~5-10ms or more for remote drives on LAN). */
1447 volume_info_data *
1448 GetCachedVolumeInformation (char * root_dir)
1450 volume_info_data * info;
1451 char default_root[ MAX_PATH ];
1453 /* NULL for root_dir means use root from current directory. */
1454 if (root_dir == NULL)
1456 if (GetCurrentDirectory (MAX_PATH, default_root) == 0)
1457 return NULL;
1458 parse_root (default_root, &root_dir);
1459 *root_dir = 0;
1460 root_dir = default_root;
1463 /* Local fixed drives can be cached permanently. Removable drives
1464 cannot be cached permanently, since the volume name and serial
1465 number (if nothing else) can change. Remote drives should be
1466 treated as if they are removable, since there is no sure way to
1467 tell whether they are or not. Also, the UNC association of drive
1468 letters mapped to remote volumes can be changed at any time (even
1469 by other processes) without notice.
1471 As a compromise, so we can benefit from caching info for remote
1472 volumes, we use a simple expiry mechanism to invalidate cache
1473 entries that are more than ten seconds old. */
1475 #if 0
1476 /* No point doing this, because WNetGetConnection is even slower than
1477 GetVolumeInformation, consistently taking ~50ms on a 486 (FWIW,
1478 GetDriveType is about the only call of this type which does not
1479 involve network access, and so is extremely quick). */
1481 /* Map drive letter to UNC if remote. */
1482 if ( isalpha( root_dir[0] ) && !fixed[ DRIVE_INDEX( root_dir[0] ) ] )
1484 char remote_name[ 256 ];
1485 char drive[3] = { root_dir[0], ':' };
1487 if (WNetGetConnection (drive, remote_name, sizeof (remote_name))
1488 == NO_ERROR)
1489 /* do something */ ;
1491 #endif
1493 info = lookup_volume_info (root_dir);
1495 if (info == NULL || ! VOLINFO_STILL_VALID (root_dir, info))
1497 char name[ 256 ];
1498 DWORD serialnum;
1499 DWORD maxcomp;
1500 DWORD flags;
1501 char type[ 256 ];
1503 /* Info is not cached, or is stale. */
1504 if (!GetVolumeInformation (root_dir,
1505 name, sizeof (name),
1506 &serialnum,
1507 &maxcomp,
1508 &flags,
1509 type, sizeof (type)))
1510 return NULL;
1512 /* Cache the volume information for future use, overwriting existing
1513 entry if present. */
1514 if (info == NULL)
1516 info = (volume_info_data *) xmalloc (sizeof (volume_info_data));
1517 add_volume_info (root_dir, info);
1519 else
1521 xfree (info->name);
1522 xfree (info->type);
1525 info->name = xstrdup (name);
1526 info->serialnum = serialnum;
1527 info->maxcomp = maxcomp;
1528 info->flags = flags;
1529 info->type = xstrdup (type);
1530 info->timestamp = GetTickCount ();
1533 return info;
1536 /* Get information on the volume where name is held; set path pointer to
1537 start of pathname in name (past UNC header\volume header if present). */
1539 get_volume_info (const char * name, const char ** pPath)
1541 char temp[MAX_PATH];
1542 char *rootname = NULL; /* default to current volume */
1543 volume_info_data * info;
1545 if (name == NULL)
1546 return FALSE;
1548 /* find the root name of the volume if given */
1549 if (isalpha (name[0]) && name[1] == ':')
1551 rootname = temp;
1552 temp[0] = *name++;
1553 temp[1] = *name++;
1554 temp[2] = '\\';
1555 temp[3] = 0;
1557 else if (IS_DIRECTORY_SEP (name[0]) && IS_DIRECTORY_SEP (name[1]))
1559 char *str = temp;
1560 int slashes = 4;
1561 rootname = temp;
1564 if (IS_DIRECTORY_SEP (*name) && --slashes == 0)
1565 break;
1566 *str++ = *name++;
1568 while ( *name );
1570 *str++ = '\\';
1571 *str = 0;
1574 if (pPath)
1575 *pPath = name;
1577 info = GetCachedVolumeInformation (rootname);
1578 if (info != NULL)
1580 /* Set global referenced by other functions. */
1581 volume_info = *info;
1582 return TRUE;
1584 return FALSE;
1587 /* Determine if volume is FAT format (ie. only supports short 8.3
1588 names); also set path pointer to start of pathname in name. */
1590 is_fat_volume (const char * name, const char ** pPath)
1592 if (get_volume_info (name, pPath))
1593 return (volume_info.maxcomp == 12);
1594 return FALSE;
1597 /* Map filename to a valid 8.3 name if necessary. */
1598 const char *
1599 map_w32_filename (const char * name, const char ** pPath)
1601 static char shortname[MAX_PATH];
1602 char * str = shortname;
1603 char c;
1604 char * path;
1605 const char * save_name = name;
1607 if (strlen (name) >= MAX_PATH)
1609 /* Return a filename which will cause callers to fail. */
1610 strcpy (shortname, "?");
1611 return shortname;
1614 if (is_fat_volume (name, (const char **)&path)) /* truncate to 8.3 */
1616 register int left = 8; /* maximum number of chars in part */
1617 register int extn = 0; /* extension added? */
1618 register int dots = 2; /* maximum number of dots allowed */
1620 while (name < path)
1621 *str++ = *name++; /* skip past UNC header */
1623 while ((c = *name++))
1625 switch ( c )
1627 case '\\':
1628 case '/':
1629 *str++ = '\\';
1630 extn = 0; /* reset extension flags */
1631 dots = 2; /* max 2 dots */
1632 left = 8; /* max length 8 for main part */
1633 break;
1634 case ':':
1635 *str++ = ':';
1636 extn = 0; /* reset extension flags */
1637 dots = 2; /* max 2 dots */
1638 left = 8; /* max length 8 for main part */
1639 break;
1640 case '.':
1641 if ( dots )
1643 /* Convert path components of the form .xxx to _xxx,
1644 but leave . and .. as they are. This allows .emacs
1645 to be read as _emacs, for example. */
1647 if (! *name ||
1648 *name == '.' ||
1649 IS_DIRECTORY_SEP (*name))
1651 *str++ = '.';
1652 dots--;
1654 else
1656 *str++ = '_';
1657 left--;
1658 dots = 0;
1661 else if ( !extn )
1663 *str++ = '.';
1664 extn = 1; /* we've got an extension */
1665 left = 3; /* 3 chars in extension */
1667 else
1669 /* any embedded dots after the first are converted to _ */
1670 *str++ = '_';
1672 break;
1673 case '~':
1674 case '#': /* don't lose these, they're important */
1675 if ( ! left )
1676 str[-1] = c; /* replace last character of part */
1677 /* FALLTHRU */
1678 default:
1679 if ( left )
1681 *str++ = tolower (c); /* map to lower case (looks nicer) */
1682 left--;
1683 dots = 0; /* started a path component */
1685 break;
1688 *str = '\0';
1690 else
1692 strcpy (shortname, name);
1693 unixtodos_filename (shortname);
1696 if (pPath)
1697 *pPath = shortname + (path - save_name);
1699 return shortname;
1702 static int
1703 is_exec (const char * name)
1705 char * p = strrchr (name, '.');
1706 return
1707 (p != NULL
1708 && (stricmp (p, ".exe") == 0 ||
1709 stricmp (p, ".com") == 0 ||
1710 stricmp (p, ".bat") == 0 ||
1711 stricmp (p, ".cmd") == 0));
1714 /* Emulate the Unix directory procedures opendir, closedir,
1715 and readdir. We can't use the procedures supplied in sysdep.c,
1716 so we provide them here. */
1718 struct direct dir_static; /* simulated directory contents */
1719 static HANDLE dir_find_handle = INVALID_HANDLE_VALUE;
1720 static int dir_is_fat;
1721 static char dir_pathname[MAXPATHLEN+1];
1722 static WIN32_FIND_DATA dir_find_data;
1724 /* Support shares on a network resource as subdirectories of a read-only
1725 root directory. */
1726 static HANDLE wnet_enum_handle = INVALID_HANDLE_VALUE;
1727 HANDLE open_unc_volume (const char *);
1728 char *read_unc_volume (HANDLE, char *, int);
1729 void close_unc_volume (HANDLE);
1731 DIR *
1732 opendir (char *filename)
1734 DIR *dirp;
1736 /* Opening is done by FindFirstFile. However, a read is inherent to
1737 this operation, so we defer the open until read time. */
1739 if (dir_find_handle != INVALID_HANDLE_VALUE)
1740 return NULL;
1741 if (wnet_enum_handle != INVALID_HANDLE_VALUE)
1742 return NULL;
1744 if (is_unc_volume (filename))
1746 wnet_enum_handle = open_unc_volume (filename);
1747 if (wnet_enum_handle == INVALID_HANDLE_VALUE)
1748 return NULL;
1751 if (!(dirp = (DIR *) malloc (sizeof (DIR))))
1752 return NULL;
1754 dirp->dd_fd = 0;
1755 dirp->dd_loc = 0;
1756 dirp->dd_size = 0;
1758 strncpy (dir_pathname, map_w32_filename (filename, NULL), MAXPATHLEN);
1759 dir_pathname[MAXPATHLEN] = '\0';
1760 dir_is_fat = is_fat_volume (filename, NULL);
1762 return dirp;
1765 void
1766 closedir (DIR *dirp)
1768 /* If we have a find-handle open, close it. */
1769 if (dir_find_handle != INVALID_HANDLE_VALUE)
1771 FindClose (dir_find_handle);
1772 dir_find_handle = INVALID_HANDLE_VALUE;
1774 else if (wnet_enum_handle != INVALID_HANDLE_VALUE)
1776 close_unc_volume (wnet_enum_handle);
1777 wnet_enum_handle = INVALID_HANDLE_VALUE;
1779 xfree ((char *) dirp);
1782 struct direct *
1783 readdir (DIR *dirp)
1785 int downcase = !NILP (Vw32_downcase_file_names);
1787 if (wnet_enum_handle != INVALID_HANDLE_VALUE)
1789 if (!read_unc_volume (wnet_enum_handle,
1790 dir_find_data.cFileName,
1791 MAX_PATH))
1792 return NULL;
1794 /* If we aren't dir_finding, do a find-first, otherwise do a find-next. */
1795 else if (dir_find_handle == INVALID_HANDLE_VALUE)
1797 char filename[MAXNAMLEN + 3];
1798 int ln;
1800 strcpy (filename, dir_pathname);
1801 ln = strlen (filename) - 1;
1802 if (!IS_DIRECTORY_SEP (filename[ln]))
1803 strcat (filename, "\\");
1804 strcat (filename, "*");
1806 dir_find_handle = FindFirstFile (filename, &dir_find_data);
1808 if (dir_find_handle == INVALID_HANDLE_VALUE)
1809 return NULL;
1811 else
1813 if (!FindNextFile (dir_find_handle, &dir_find_data))
1814 return NULL;
1817 /* Emacs never uses this value, so don't bother making it match
1818 value returned by stat(). */
1819 dir_static.d_ino = 1;
1821 dir_static.d_reclen = sizeof (struct direct) - MAXNAMLEN + 3 +
1822 dir_static.d_namlen - dir_static.d_namlen % 4;
1824 /* If the file name in cFileName[] includes `?' characters, it means
1825 the original file name used characters that cannot be represented
1826 by the current ANSI codepage. To avoid total lossage, retrieve
1827 the short 8+3 alias of the long file name. */
1828 if (_mbspbrk (dir_find_data.cFileName, "?"))
1830 strcpy (dir_static.d_name, dir_find_data.cAlternateFileName);
1831 /* 8+3 aliases are returned in all caps, which could break
1832 various alists that look at filenames' extensions. */
1833 downcase = 1;
1835 else
1836 strcpy (dir_static.d_name, dir_find_data.cFileName);
1837 dir_static.d_namlen = strlen (dir_static.d_name);
1838 if (dir_is_fat)
1839 _strlwr (dir_static.d_name);
1840 else if (downcase)
1842 register char *p;
1843 for (p = dir_static.d_name; *p; p++)
1844 if (*p >= 'a' && *p <= 'z')
1845 break;
1846 if (!*p)
1847 _strlwr (dir_static.d_name);
1850 return &dir_static;
1853 HANDLE
1854 open_unc_volume (const char *path)
1856 NETRESOURCE nr;
1857 HANDLE henum;
1858 int result;
1860 nr.dwScope = RESOURCE_GLOBALNET;
1861 nr.dwType = RESOURCETYPE_DISK;
1862 nr.dwDisplayType = RESOURCEDISPLAYTYPE_SERVER;
1863 nr.dwUsage = RESOURCEUSAGE_CONTAINER;
1864 nr.lpLocalName = NULL;
1865 nr.lpRemoteName = (LPSTR)map_w32_filename (path, NULL);
1866 nr.lpComment = NULL;
1867 nr.lpProvider = NULL;
1869 result = WNetOpenEnum(RESOURCE_GLOBALNET, RESOURCETYPE_DISK,
1870 RESOURCEUSAGE_CONNECTABLE, &nr, &henum);
1872 if (result == NO_ERROR)
1873 return henum;
1874 else
1875 return INVALID_HANDLE_VALUE;
1878 char *
1879 read_unc_volume (HANDLE henum, char *readbuf, int size)
1881 DWORD count;
1882 int result;
1883 DWORD bufsize = 512;
1884 char *buffer;
1885 char *ptr;
1887 count = 1;
1888 buffer = alloca (bufsize);
1889 result = WNetEnumResource (wnet_enum_handle, &count, buffer, &bufsize);
1890 if (result != NO_ERROR)
1891 return NULL;
1893 /* WNetEnumResource returns \\resource\share...skip forward to "share". */
1894 ptr = ((LPNETRESOURCE) buffer)->lpRemoteName;
1895 ptr += 2;
1896 while (*ptr && !IS_DIRECTORY_SEP (*ptr)) ptr++;
1897 ptr++;
1899 strncpy (readbuf, ptr, size);
1900 return readbuf;
1903 void
1904 close_unc_volume (HANDLE henum)
1906 if (henum != INVALID_HANDLE_VALUE)
1907 WNetCloseEnum (henum);
1910 DWORD
1911 unc_volume_file_attributes (const char *path)
1913 HANDLE henum;
1914 DWORD attrs;
1916 henum = open_unc_volume (path);
1917 if (henum == INVALID_HANDLE_VALUE)
1918 return -1;
1920 attrs = FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_DIRECTORY;
1922 close_unc_volume (henum);
1924 return attrs;
1928 /* Shadow some MSVC runtime functions to map requests for long filenames
1929 to reasonable short names if necessary. This was originally added to
1930 permit running Emacs on NT 3.1 on a FAT partition, which doesn't support
1931 long file names. */
1934 sys_access (const char * path, int mode)
1936 DWORD attributes;
1938 /* MSVC implementation doesn't recognize D_OK. */
1939 path = map_w32_filename (path, NULL);
1940 if (is_unc_volume (path))
1942 attributes = unc_volume_file_attributes (path);
1943 if (attributes == -1) {
1944 errno = EACCES;
1945 return -1;
1948 else if ((attributes = GetFileAttributes (path)) == -1)
1950 /* Should try mapping GetLastError to errno; for now just indicate
1951 that path doesn't exist. */
1952 errno = EACCES;
1953 return -1;
1955 if ((mode & X_OK) != 0 && !is_exec (path))
1957 errno = EACCES;
1958 return -1;
1960 if ((mode & W_OK) != 0 && (attributes & FILE_ATTRIBUTE_READONLY) != 0)
1962 errno = EACCES;
1963 return -1;
1965 if ((mode & D_OK) != 0 && (attributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
1967 errno = EACCES;
1968 return -1;
1970 return 0;
1974 sys_chdir (const char * path)
1976 return _chdir (map_w32_filename (path, NULL));
1980 sys_chmod (const char * path, int mode)
1982 return _chmod (map_w32_filename (path, NULL), mode);
1986 sys_chown (const char *path, uid_t owner, gid_t group)
1988 if (sys_chmod (path, _S_IREAD) == -1) /* check if file exists */
1989 return -1;
1990 return 0;
1994 sys_creat (const char * path, int mode)
1996 return _creat (map_w32_filename (path, NULL), mode);
1999 FILE *
2000 sys_fopen(const char * path, const char * mode)
2002 int fd;
2003 int oflag;
2004 const char * mode_save = mode;
2006 /* Force all file handles to be non-inheritable. This is necessary to
2007 ensure child processes don't unwittingly inherit handles that might
2008 prevent future file access. */
2010 if (mode[0] == 'r')
2011 oflag = O_RDONLY;
2012 else if (mode[0] == 'w' || mode[0] == 'a')
2013 oflag = O_WRONLY | O_CREAT | O_TRUNC;
2014 else
2015 return NULL;
2017 /* Only do simplistic option parsing. */
2018 while (*++mode)
2019 if (mode[0] == '+')
2021 oflag &= ~(O_RDONLY | O_WRONLY);
2022 oflag |= O_RDWR;
2024 else if (mode[0] == 'b')
2026 oflag &= ~O_TEXT;
2027 oflag |= O_BINARY;
2029 else if (mode[0] == 't')
2031 oflag &= ~O_BINARY;
2032 oflag |= O_TEXT;
2034 else break;
2036 fd = _open (map_w32_filename (path, NULL), oflag | _O_NOINHERIT, 0644);
2037 if (fd < 0)
2038 return NULL;
2040 return _fdopen (fd, mode_save);
2043 /* This only works on NTFS volumes, but is useful to have. */
2045 sys_link (const char * old, const char * new)
2047 HANDLE fileh;
2048 int result = -1;
2049 char oldname[MAX_PATH], newname[MAX_PATH];
2051 if (old == NULL || new == NULL)
2053 errno = ENOENT;
2054 return -1;
2057 strcpy (oldname, map_w32_filename (old, NULL));
2058 strcpy (newname, map_w32_filename (new, NULL));
2060 fileh = CreateFile (oldname, 0, 0, NULL, OPEN_EXISTING,
2061 FILE_FLAG_BACKUP_SEMANTICS, NULL);
2062 if (fileh != INVALID_HANDLE_VALUE)
2064 int wlen;
2066 /* Confusingly, the "alternate" stream name field does not apply
2067 when restoring a hard link, and instead contains the actual
2068 stream data for the link (ie. the name of the link to create).
2069 The WIN32_STREAM_ID structure before the cStreamName field is
2070 the stream header, which is then immediately followed by the
2071 stream data. */
2073 struct {
2074 WIN32_STREAM_ID wid;
2075 WCHAR wbuffer[MAX_PATH]; /* extra space for link name */
2076 } data;
2078 wlen = MultiByteToWideChar (CP_ACP, MB_PRECOMPOSED, newname, -1,
2079 data.wid.cStreamName, MAX_PATH);
2080 if (wlen > 0)
2082 LPVOID context = NULL;
2083 DWORD wbytes = 0;
2085 data.wid.dwStreamId = BACKUP_LINK;
2086 data.wid.dwStreamAttributes = 0;
2087 data.wid.Size.LowPart = wlen * sizeof(WCHAR);
2088 data.wid.Size.HighPart = 0;
2089 data.wid.dwStreamNameSize = 0;
2091 if (BackupWrite (fileh, (LPBYTE)&data,
2092 offsetof (WIN32_STREAM_ID, cStreamName)
2093 + data.wid.Size.LowPart,
2094 &wbytes, FALSE, FALSE, &context)
2095 && BackupWrite (fileh, NULL, 0, &wbytes, TRUE, FALSE, &context))
2097 /* succeeded */
2098 result = 0;
2100 else
2102 /* Should try mapping GetLastError to errno; for now just
2103 indicate a general error (eg. links not supported). */
2104 errno = EINVAL; // perhaps EMLINK?
2108 CloseHandle (fileh);
2110 else
2111 errno = ENOENT;
2113 return result;
2117 sys_mkdir (const char * path)
2119 return _mkdir (map_w32_filename (path, NULL));
2122 /* Because of long name mapping issues, we need to implement this
2123 ourselves. Also, MSVC's _mktemp returns NULL when it can't generate
2124 a unique name, instead of setting the input template to an empty
2125 string.
2127 Standard algorithm seems to be use pid or tid with a letter on the
2128 front (in place of the 6 X's) and cycle through the letters to find a
2129 unique name. We extend that to allow any reasonable character as the
2130 first of the 6 X's. */
2131 char *
2132 sys_mktemp (char * template)
2134 char * p;
2135 int i;
2136 unsigned uid = GetCurrentThreadId ();
2137 static char first_char[] = "abcdefghijklmnopqrstuvwyz0123456789!%-_@#";
2139 if (template == NULL)
2140 return NULL;
2141 p = template + strlen (template);
2142 i = 5;
2143 /* replace up to the last 5 X's with uid in decimal */
2144 while (--p >= template && p[0] == 'X' && --i >= 0)
2146 p[0] = '0' + uid % 10;
2147 uid /= 10;
2150 if (i < 0 && p[0] == 'X')
2152 i = 0;
2155 int save_errno = errno;
2156 p[0] = first_char[i];
2157 if (sys_access (template, 0) < 0)
2159 errno = save_errno;
2160 return template;
2163 while (++i < sizeof (first_char));
2166 /* Template is badly formed or else we can't generate a unique name,
2167 so return empty string */
2168 template[0] = 0;
2169 return template;
2173 sys_open (const char * path, int oflag, int mode)
2175 const char* mpath = map_w32_filename (path, NULL);
2176 /* Try to open file without _O_CREAT, to be able to write to hidden
2177 and system files. Force all file handles to be
2178 non-inheritable. */
2179 int res = _open (mpath, (oflag & ~_O_CREAT) | _O_NOINHERIT, mode);
2180 if (res >= 0)
2181 return res;
2182 return _open (mpath, oflag | _O_NOINHERIT, mode);
2186 sys_rename (const char * oldname, const char * newname)
2188 BOOL result;
2189 char temp[MAX_PATH];
2191 /* MoveFile on Windows 95 doesn't correctly change the short file name
2192 alias in a number of circumstances (it is not easy to predict when
2193 just by looking at oldname and newname, unfortunately). In these
2194 cases, renaming through a temporary name avoids the problem.
2196 A second problem on Windows 95 is that renaming through a temp name when
2197 newname is uppercase fails (the final long name ends up in
2198 lowercase, although the short alias might be uppercase) UNLESS the
2199 long temp name is not 8.3.
2201 So, on Windows 95 we always rename through a temp name, and we make sure
2202 the temp name has a long extension to ensure correct renaming. */
2204 strcpy (temp, map_w32_filename (oldname, NULL));
2206 if (os_subtype == OS_WIN95)
2208 char * o;
2209 char * p;
2210 int i = 0;
2212 oldname = map_w32_filename (oldname, NULL);
2213 if (o = strrchr (oldname, '\\'))
2214 o++;
2215 else
2216 o = (char *) oldname;
2218 if (p = strrchr (temp, '\\'))
2219 p++;
2220 else
2221 p = temp;
2225 /* Force temp name to require a manufactured 8.3 alias - this
2226 seems to make the second rename work properly. */
2227 sprintf (p, "_.%s.%u", o, i);
2228 i++;
2229 result = rename (oldname, temp);
2231 /* This loop must surely terminate! */
2232 while (result < 0 && errno == EEXIST);
2233 if (result < 0)
2234 return -1;
2237 /* Emulate Unix behaviour - newname is deleted if it already exists
2238 (at least if it is a file; don't do this for directories).
2240 Since we mustn't do this if we are just changing the case of the
2241 file name (we would end up deleting the file we are trying to
2242 rename!), we let rename detect if the destination file already
2243 exists - that way we avoid the possible pitfalls of trying to
2244 determine ourselves whether two names really refer to the same
2245 file, which is not always possible in the general case. (Consider
2246 all the permutations of shared or subst'd drives, etc.) */
2248 newname = map_w32_filename (newname, NULL);
2249 result = rename (temp, newname);
2251 if (result < 0
2252 && errno == EEXIST
2253 && _chmod (newname, 0666) == 0
2254 && _unlink (newname) == 0)
2255 result = rename (temp, newname);
2257 return result;
2261 sys_rmdir (const char * path)
2263 return _rmdir (map_w32_filename (path, NULL));
2267 sys_unlink (const char * path)
2269 path = map_w32_filename (path, NULL);
2271 /* On Unix, unlink works without write permission. */
2272 _chmod (path, 0666);
2273 return _unlink (path);
2276 static FILETIME utc_base_ft;
2277 static long double utc_base;
2278 static int init = 0;
2280 static time_t
2281 convert_time (FILETIME ft)
2283 long double ret;
2285 if (!init)
2287 /* Determine the delta between 1-Jan-1601 and 1-Jan-1970. */
2288 SYSTEMTIME st;
2290 st.wYear = 1970;
2291 st.wMonth = 1;
2292 st.wDay = 1;
2293 st.wHour = 0;
2294 st.wMinute = 0;
2295 st.wSecond = 0;
2296 st.wMilliseconds = 0;
2298 SystemTimeToFileTime (&st, &utc_base_ft);
2299 utc_base = (long double) utc_base_ft.dwHighDateTime
2300 * 4096.0L * 1024.0L * 1024.0L + utc_base_ft.dwLowDateTime;
2301 init = 1;
2304 if (CompareFileTime (&ft, &utc_base_ft) < 0)
2305 return 0;
2307 ret = (long double) ft.dwHighDateTime
2308 * 4096.0L * 1024.0L * 1024.0L + ft.dwLowDateTime;
2309 ret -= utc_base;
2310 return (time_t) (ret * 1e-7L);
2313 void
2314 convert_from_time_t (time_t time, FILETIME * pft)
2316 long double tmp;
2318 if (!init)
2320 /* Determine the delta between 1-Jan-1601 and 1-Jan-1970. */
2321 SYSTEMTIME st;
2323 st.wYear = 1970;
2324 st.wMonth = 1;
2325 st.wDay = 1;
2326 st.wHour = 0;
2327 st.wMinute = 0;
2328 st.wSecond = 0;
2329 st.wMilliseconds = 0;
2331 SystemTimeToFileTime (&st, &utc_base_ft);
2332 utc_base = (long double) utc_base_ft.dwHighDateTime
2333 * 4096 * 1024 * 1024 + utc_base_ft.dwLowDateTime;
2334 init = 1;
2337 /* time in 100ns units since 1-Jan-1601 */
2338 tmp = (long double) time * 1e7 + utc_base;
2339 pft->dwHighDateTime = (DWORD) (tmp / (4096.0 * 1024 * 1024));
2340 pft->dwLowDateTime = (DWORD) (tmp - (4096.0 * 1024 * 1024) * pft->dwHighDateTime);
2343 #if 0
2344 /* No reason to keep this; faking inode values either by hashing or even
2345 using the file index from GetInformationByHandle, is not perfect and
2346 so by default Emacs doesn't use the inode values on Windows.
2347 Instead, we now determine file-truename correctly (except for
2348 possible drive aliasing etc). */
2350 /* Modified version of "PJW" algorithm (see the "Dragon" compiler book). */
2351 static unsigned
2352 hashval (const unsigned char * str)
2354 unsigned h = 0;
2355 while (*str)
2357 h = (h << 4) + *str++;
2358 h ^= (h >> 28);
2360 return h;
2363 /* Return the hash value of the canonical pathname, excluding the
2364 drive/UNC header, to get a hopefully unique inode number. */
2365 static DWORD
2366 generate_inode_val (const char * name)
2368 char fullname[ MAX_PATH ];
2369 char * p;
2370 unsigned hash;
2372 /* Get the truly canonical filename, if it exists. (Note: this
2373 doesn't resolve aliasing due to subst commands, or recognise hard
2374 links. */
2375 if (!w32_get_long_filename ((char *)name, fullname, MAX_PATH))
2376 abort ();
2378 parse_root (fullname, &p);
2379 /* Normal W32 filesystems are still case insensitive. */
2380 _strlwr (p);
2381 return hashval (p);
2384 #endif
2386 /* MSVC stat function can't cope with UNC names and has other bugs, so
2387 replace it with our own. This also allows us to calculate consistent
2388 inode values without hacks in the main Emacs code. */
2390 stat (const char * path, struct stat * buf)
2392 char *name, *r;
2393 WIN32_FIND_DATA wfd;
2394 HANDLE fh;
2395 DWORD fake_inode;
2396 int permission;
2397 int len;
2398 int rootdir = FALSE;
2400 if (path == NULL || buf == NULL)
2402 errno = EFAULT;
2403 return -1;
2406 name = (char *) map_w32_filename (path, &path);
2407 /* Must be valid filename, no wild cards or other invalid
2408 characters. We use _mbspbrk to support multibyte strings that
2409 might look to strpbrk as if they included literal *, ?, and other
2410 characters mentioned below that are disallowed by Windows
2411 filesystems. */
2412 if (_mbspbrk (name, "*?|<>\""))
2414 errno = ENOENT;
2415 return -1;
2418 /* If name is "c:/.." or "/.." then stat "c:/" or "/". */
2419 r = IS_DEVICE_SEP (name[1]) ? &name[2] : name;
2420 if (IS_DIRECTORY_SEP (r[0]) && r[1] == '.' && r[2] == '.' && r[3] == '\0')
2422 r[1] = r[2] = '\0';
2425 /* Remove trailing directory separator, unless name is the root
2426 directory of a drive or UNC volume in which case ensure there
2427 is a trailing separator. */
2428 len = strlen (name);
2429 rootdir = (path >= name + len - 1
2430 && (IS_DIRECTORY_SEP (*path) || *path == 0));
2431 name = strcpy (alloca (len + 2), name);
2433 if (is_unc_volume (name))
2435 DWORD attrs = unc_volume_file_attributes (name);
2437 if (attrs == -1)
2438 return -1;
2440 memset (&wfd, 0, sizeof (wfd));
2441 wfd.dwFileAttributes = attrs;
2442 wfd.ftCreationTime = utc_base_ft;
2443 wfd.ftLastAccessTime = utc_base_ft;
2444 wfd.ftLastWriteTime = utc_base_ft;
2445 strcpy (wfd.cFileName, name);
2447 else if (rootdir)
2449 if (!IS_DIRECTORY_SEP (name[len-1]))
2450 strcat (name, "\\");
2451 if (GetDriveType (name) < 2)
2453 errno = ENOENT;
2454 return -1;
2456 memset (&wfd, 0, sizeof (wfd));
2457 wfd.dwFileAttributes = FILE_ATTRIBUTE_DIRECTORY;
2458 wfd.ftCreationTime = utc_base_ft;
2459 wfd.ftLastAccessTime = utc_base_ft;
2460 wfd.ftLastWriteTime = utc_base_ft;
2461 strcpy (wfd.cFileName, name);
2463 else
2465 if (IS_DIRECTORY_SEP (name[len-1]))
2466 name[len - 1] = 0;
2468 /* (This is hacky, but helps when doing file completions on
2469 network drives.) Optimize by using information available from
2470 active readdir if possible. */
2471 len = strlen (dir_pathname);
2472 if (IS_DIRECTORY_SEP (dir_pathname[len-1]))
2473 len--;
2474 if (dir_find_handle != INVALID_HANDLE_VALUE
2475 && strnicmp (name, dir_pathname, len) == 0
2476 && IS_DIRECTORY_SEP (name[len])
2477 && stricmp (name + len + 1, dir_static.d_name) == 0)
2479 /* This was the last entry returned by readdir. */
2480 wfd = dir_find_data;
2482 else
2484 fh = FindFirstFile (name, &wfd);
2485 if (fh == INVALID_HANDLE_VALUE)
2487 errno = ENOENT;
2488 return -1;
2490 FindClose (fh);
2494 if (!NILP (Vw32_get_true_file_attributes)
2495 && !(EQ (Vw32_get_true_file_attributes, Qlocal) &&
2496 GetDriveType (name) == DRIVE_FIXED)
2497 /* No access rights required to get info. */
2498 && (fh = CreateFile (name, 0, 0, NULL, OPEN_EXISTING,
2499 FILE_FLAG_BACKUP_SEMANTICS, NULL))
2500 != INVALID_HANDLE_VALUE)
2502 /* This is more accurate in terms of gettting the correct number
2503 of links, but is quite slow (it is noticeable when Emacs is
2504 making a list of file name completions). */
2505 BY_HANDLE_FILE_INFORMATION info;
2507 if (GetFileInformationByHandle (fh, &info))
2509 buf->st_nlink = info.nNumberOfLinks;
2510 /* Might as well use file index to fake inode values, but this
2511 is not guaranteed to be unique unless we keep a handle open
2512 all the time (even then there are situations where it is
2513 not unique). Reputedly, there are at most 48 bits of info
2514 (on NTFS, presumably less on FAT). */
2515 fake_inode = info.nFileIndexLow ^ info.nFileIndexHigh;
2517 else
2519 buf->st_nlink = 1;
2520 fake_inode = 0;
2523 if (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
2525 buf->st_mode = _S_IFDIR;
2527 else
2529 switch (GetFileType (fh))
2531 case FILE_TYPE_DISK:
2532 buf->st_mode = _S_IFREG;
2533 break;
2534 case FILE_TYPE_PIPE:
2535 buf->st_mode = _S_IFIFO;
2536 break;
2537 case FILE_TYPE_CHAR:
2538 case FILE_TYPE_UNKNOWN:
2539 default:
2540 buf->st_mode = _S_IFCHR;
2543 CloseHandle (fh);
2545 else
2547 /* Don't bother to make this information more accurate. */
2548 buf->st_mode = (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ?
2549 _S_IFDIR : _S_IFREG;
2550 buf->st_nlink = 1;
2551 fake_inode = 0;
2554 #if 0
2555 /* Not sure if there is any point in this. */
2556 if (!NILP (Vw32_generate_fake_inodes))
2557 fake_inode = generate_inode_val (name);
2558 else if (fake_inode == 0)
2560 /* For want of something better, try to make everything unique. */
2561 static DWORD gen_num = 0;
2562 fake_inode = ++gen_num;
2564 #endif
2566 /* MSVC defines _ino_t to be short; other libc's might not. */
2567 if (sizeof (buf->st_ino) == 2)
2568 buf->st_ino = fake_inode ^ (fake_inode >> 16);
2569 else
2570 buf->st_ino = fake_inode;
2572 /* consider files to belong to current user */
2573 buf->st_uid = the_passwd.pw_uid;
2574 buf->st_gid = the_passwd.pw_gid;
2576 /* volume_info is set indirectly by map_w32_filename */
2577 buf->st_dev = volume_info.serialnum;
2578 buf->st_rdev = volume_info.serialnum;
2581 buf->st_size = wfd.nFileSizeLow;
2583 /* Convert timestamps to Unix format. */
2584 buf->st_mtime = convert_time (wfd.ftLastWriteTime);
2585 buf->st_atime = convert_time (wfd.ftLastAccessTime);
2586 if (buf->st_atime == 0) buf->st_atime = buf->st_mtime;
2587 buf->st_ctime = convert_time (wfd.ftCreationTime);
2588 if (buf->st_ctime == 0) buf->st_ctime = buf->st_mtime;
2590 /* determine rwx permissions */
2591 if (wfd.dwFileAttributes & FILE_ATTRIBUTE_READONLY)
2592 permission = _S_IREAD;
2593 else
2594 permission = _S_IREAD | _S_IWRITE;
2596 if (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
2597 permission |= _S_IEXEC;
2598 else if (is_exec (name))
2599 permission |= _S_IEXEC;
2601 buf->st_mode |= permission | (permission >> 3) | (permission >> 6);
2603 return 0;
2606 /* Provide fstat and utime as well as stat for consistent handling of
2607 file timestamps. */
2609 fstat (int desc, struct stat * buf)
2611 HANDLE fh = (HANDLE) _get_osfhandle (desc);
2612 BY_HANDLE_FILE_INFORMATION info;
2613 DWORD fake_inode;
2614 int permission;
2616 switch (GetFileType (fh) & ~FILE_TYPE_REMOTE)
2618 case FILE_TYPE_DISK:
2619 buf->st_mode = _S_IFREG;
2620 if (!GetFileInformationByHandle (fh, &info))
2622 errno = EACCES;
2623 return -1;
2625 break;
2626 case FILE_TYPE_PIPE:
2627 buf->st_mode = _S_IFIFO;
2628 goto non_disk;
2629 case FILE_TYPE_CHAR:
2630 case FILE_TYPE_UNKNOWN:
2631 default:
2632 buf->st_mode = _S_IFCHR;
2633 non_disk:
2634 memset (&info, 0, sizeof (info));
2635 info.dwFileAttributes = 0;
2636 info.ftCreationTime = utc_base_ft;
2637 info.ftLastAccessTime = utc_base_ft;
2638 info.ftLastWriteTime = utc_base_ft;
2641 if (info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
2642 buf->st_mode = _S_IFDIR;
2644 buf->st_nlink = info.nNumberOfLinks;
2645 /* Might as well use file index to fake inode values, but this
2646 is not guaranteed to be unique unless we keep a handle open
2647 all the time (even then there are situations where it is
2648 not unique). Reputedly, there are at most 48 bits of info
2649 (on NTFS, presumably less on FAT). */
2650 fake_inode = info.nFileIndexLow ^ info.nFileIndexHigh;
2652 /* MSVC defines _ino_t to be short; other libc's might not. */
2653 if (sizeof (buf->st_ino) == 2)
2654 buf->st_ino = fake_inode ^ (fake_inode >> 16);
2655 else
2656 buf->st_ino = fake_inode;
2658 /* consider files to belong to current user */
2659 buf->st_uid = 0;
2660 buf->st_gid = 0;
2662 buf->st_dev = info.dwVolumeSerialNumber;
2663 buf->st_rdev = info.dwVolumeSerialNumber;
2665 buf->st_size = info.nFileSizeLow;
2667 /* Convert timestamps to Unix format. */
2668 buf->st_mtime = convert_time (info.ftLastWriteTime);
2669 buf->st_atime = convert_time (info.ftLastAccessTime);
2670 if (buf->st_atime == 0) buf->st_atime = buf->st_mtime;
2671 buf->st_ctime = convert_time (info.ftCreationTime);
2672 if (buf->st_ctime == 0) buf->st_ctime = buf->st_mtime;
2674 /* determine rwx permissions */
2675 if (info.dwFileAttributes & FILE_ATTRIBUTE_READONLY)
2676 permission = _S_IREAD;
2677 else
2678 permission = _S_IREAD | _S_IWRITE;
2680 if (info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
2681 permission |= _S_IEXEC;
2682 else
2684 #if 0 /* no way of knowing the filename */
2685 char * p = strrchr (name, '.');
2686 if (p != NULL &&
2687 (stricmp (p, ".exe") == 0 ||
2688 stricmp (p, ".com") == 0 ||
2689 stricmp (p, ".bat") == 0 ||
2690 stricmp (p, ".cmd") == 0))
2691 permission |= _S_IEXEC;
2692 #endif
2695 buf->st_mode |= permission | (permission >> 3) | (permission >> 6);
2697 return 0;
2701 utime (const char *name, struct utimbuf *times)
2703 struct utimbuf deftime;
2704 HANDLE fh;
2705 FILETIME mtime;
2706 FILETIME atime;
2708 if (times == NULL)
2710 deftime.modtime = deftime.actime = time (NULL);
2711 times = &deftime;
2714 /* Need write access to set times. */
2715 fh = CreateFile (name, GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE,
2716 0, OPEN_EXISTING, 0, NULL);
2717 if (fh)
2719 convert_from_time_t (times->actime, &atime);
2720 convert_from_time_t (times->modtime, &mtime);
2721 if (!SetFileTime (fh, NULL, &atime, &mtime))
2723 CloseHandle (fh);
2724 errno = EACCES;
2725 return -1;
2727 CloseHandle (fh);
2729 else
2731 errno = EINVAL;
2732 return -1;
2734 return 0;
2737 #ifdef HAVE_SOCKETS
2739 /* Wrappers for winsock functions to map between our file descriptors
2740 and winsock's handles; also set h_errno for convenience.
2742 To allow Emacs to run on systems which don't have winsock support
2743 installed, we dynamically link to winsock on startup if present, and
2744 otherwise provide the minimum necessary functionality
2745 (eg. gethostname). */
2747 /* function pointers for relevant socket functions */
2748 int (PASCAL *pfn_WSAStartup) (WORD wVersionRequired, LPWSADATA lpWSAData);
2749 void (PASCAL *pfn_WSASetLastError) (int iError);
2750 int (PASCAL *pfn_WSAGetLastError) (void);
2751 int (PASCAL *pfn_WSAEventSelect) (SOCKET s, HANDLE hEventObject, long lNetworkEvents);
2752 HANDLE (PASCAL *pfn_WSACreateEvent) (void);
2753 int (PASCAL *pfn_WSACloseEvent) (HANDLE hEvent);
2754 int (PASCAL *pfn_socket) (int af, int type, int protocol);
2755 int (PASCAL *pfn_bind) (SOCKET s, const struct sockaddr *addr, int namelen);
2756 int (PASCAL *pfn_connect) (SOCKET s, const struct sockaddr *addr, int namelen);
2757 int (PASCAL *pfn_ioctlsocket) (SOCKET s, long cmd, u_long *argp);
2758 int (PASCAL *pfn_recv) (SOCKET s, char * buf, int len, int flags);
2759 int (PASCAL *pfn_send) (SOCKET s, const char * buf, int len, int flags);
2760 int (PASCAL *pfn_closesocket) (SOCKET s);
2761 int (PASCAL *pfn_shutdown) (SOCKET s, int how);
2762 int (PASCAL *pfn_WSACleanup) (void);
2764 u_short (PASCAL *pfn_htons) (u_short hostshort);
2765 u_short (PASCAL *pfn_ntohs) (u_short netshort);
2766 unsigned long (PASCAL *pfn_inet_addr) (const char * cp);
2767 int (PASCAL *pfn_gethostname) (char * name, int namelen);
2768 struct hostent * (PASCAL *pfn_gethostbyname) (const char * name);
2769 struct servent * (PASCAL *pfn_getservbyname) (const char * name, const char * proto);
2770 int (PASCAL *pfn_getpeername) (SOCKET s, struct sockaddr *addr, int * namelen);
2771 int (PASCAL *pfn_setsockopt) (SOCKET s, int level, int optname,
2772 const char * optval, int optlen);
2773 int (PASCAL *pfn_listen) (SOCKET s, int backlog);
2774 int (PASCAL *pfn_getsockname) (SOCKET s, struct sockaddr * name,
2775 int * namelen);
2776 SOCKET (PASCAL *pfn_accept) (SOCKET s, struct sockaddr * addr, int * addrlen);
2777 int (PASCAL *pfn_recvfrom) (SOCKET s, char * buf, int len, int flags,
2778 struct sockaddr * from, int * fromlen);
2779 int (PASCAL *pfn_sendto) (SOCKET s, const char * buf, int len, int flags,
2780 const struct sockaddr * to, int tolen);
2782 /* SetHandleInformation is only needed to make sockets non-inheritable. */
2783 BOOL (WINAPI *pfn_SetHandleInformation) (HANDLE object, DWORD mask, DWORD flags);
2784 #ifndef HANDLE_FLAG_INHERIT
2785 #define HANDLE_FLAG_INHERIT 1
2786 #endif
2788 HANDLE winsock_lib;
2789 static int winsock_inuse;
2791 BOOL
2792 term_winsock (void)
2794 if (winsock_lib != NULL && winsock_inuse == 0)
2796 /* Not sure what would cause WSAENETDOWN, or even if it can happen
2797 after WSAStartup returns successfully, but it seems reasonable
2798 to allow unloading winsock anyway in that case. */
2799 if (pfn_WSACleanup () == 0 ||
2800 pfn_WSAGetLastError () == WSAENETDOWN)
2802 if (FreeLibrary (winsock_lib))
2803 winsock_lib = NULL;
2804 return TRUE;
2807 return FALSE;
2810 BOOL
2811 init_winsock (int load_now)
2813 WSADATA winsockData;
2815 if (winsock_lib != NULL)
2816 return TRUE;
2818 pfn_SetHandleInformation = NULL;
2819 pfn_SetHandleInformation
2820 = (void *) GetProcAddress (GetModuleHandle ("kernel32.dll"),
2821 "SetHandleInformation");
2823 winsock_lib = LoadLibrary ("Ws2_32.dll");
2825 if (winsock_lib != NULL)
2827 /* dynamically link to socket functions */
2829 #define LOAD_PROC(fn) \
2830 if ((pfn_##fn = (void *) GetProcAddress (winsock_lib, #fn)) == NULL) \
2831 goto fail;
2833 LOAD_PROC( WSAStartup );
2834 LOAD_PROC( WSASetLastError );
2835 LOAD_PROC( WSAGetLastError );
2836 LOAD_PROC( WSAEventSelect );
2837 LOAD_PROC( WSACreateEvent );
2838 LOAD_PROC( WSACloseEvent );
2839 LOAD_PROC( socket );
2840 LOAD_PROC( bind );
2841 LOAD_PROC( connect );
2842 LOAD_PROC( ioctlsocket );
2843 LOAD_PROC( recv );
2844 LOAD_PROC( send );
2845 LOAD_PROC( closesocket );
2846 LOAD_PROC( shutdown );
2847 LOAD_PROC( htons );
2848 LOAD_PROC( ntohs );
2849 LOAD_PROC( inet_addr );
2850 LOAD_PROC( gethostname );
2851 LOAD_PROC( gethostbyname );
2852 LOAD_PROC( getservbyname );
2853 LOAD_PROC( getpeername );
2854 LOAD_PROC( WSACleanup );
2855 LOAD_PROC( setsockopt );
2856 LOAD_PROC( listen );
2857 LOAD_PROC( getsockname );
2858 LOAD_PROC( accept );
2859 LOAD_PROC( recvfrom );
2860 LOAD_PROC( sendto );
2861 #undef LOAD_PROC
2863 /* specify version 1.1 of winsock */
2864 if (pfn_WSAStartup (0x101, &winsockData) == 0)
2866 if (winsockData.wVersion != 0x101)
2867 goto fail;
2869 if (!load_now)
2871 /* Report that winsock exists and is usable, but leave
2872 socket functions disabled. I am assuming that calling
2873 WSAStartup does not require any network interaction,
2874 and in particular does not cause or require a dial-up
2875 connection to be established. */
2877 pfn_WSACleanup ();
2878 FreeLibrary (winsock_lib);
2879 winsock_lib = NULL;
2881 winsock_inuse = 0;
2882 return TRUE;
2885 fail:
2886 FreeLibrary (winsock_lib);
2887 winsock_lib = NULL;
2890 return FALSE;
2894 int h_errno = 0;
2896 /* function to set h_errno for compatability; map winsock error codes to
2897 normal system codes where they overlap (non-overlapping definitions
2898 are already in <sys/socket.h> */
2899 static void
2900 set_errno ()
2902 if (winsock_lib == NULL)
2903 h_errno = EINVAL;
2904 else
2905 h_errno = pfn_WSAGetLastError ();
2907 switch (h_errno)
2909 case WSAEACCES: h_errno = EACCES; break;
2910 case WSAEBADF: h_errno = EBADF; break;
2911 case WSAEFAULT: h_errno = EFAULT; break;
2912 case WSAEINTR: h_errno = EINTR; break;
2913 case WSAEINVAL: h_errno = EINVAL; break;
2914 case WSAEMFILE: h_errno = EMFILE; break;
2915 case WSAENAMETOOLONG: h_errno = ENAMETOOLONG; break;
2916 case WSAENOTEMPTY: h_errno = ENOTEMPTY; break;
2918 errno = h_errno;
2921 static void
2922 check_errno ()
2924 if (h_errno == 0 && winsock_lib != NULL)
2925 pfn_WSASetLastError (0);
2928 /* Extend strerror to handle the winsock-specific error codes. */
2929 struct {
2930 int errnum;
2931 char * msg;
2932 } _wsa_errlist[] = {
2933 WSAEINTR , "Interrupted function call",
2934 WSAEBADF , "Bad file descriptor",
2935 WSAEACCES , "Permission denied",
2936 WSAEFAULT , "Bad address",
2937 WSAEINVAL , "Invalid argument",
2938 WSAEMFILE , "Too many open files",
2940 WSAEWOULDBLOCK , "Resource temporarily unavailable",
2941 WSAEINPROGRESS , "Operation now in progress",
2942 WSAEALREADY , "Operation already in progress",
2943 WSAENOTSOCK , "Socket operation on non-socket",
2944 WSAEDESTADDRREQ , "Destination address required",
2945 WSAEMSGSIZE , "Message too long",
2946 WSAEPROTOTYPE , "Protocol wrong type for socket",
2947 WSAENOPROTOOPT , "Bad protocol option",
2948 WSAEPROTONOSUPPORT , "Protocol not supported",
2949 WSAESOCKTNOSUPPORT , "Socket type not supported",
2950 WSAEOPNOTSUPP , "Operation not supported",
2951 WSAEPFNOSUPPORT , "Protocol family not supported",
2952 WSAEAFNOSUPPORT , "Address family not supported by protocol family",
2953 WSAEADDRINUSE , "Address already in use",
2954 WSAEADDRNOTAVAIL , "Cannot assign requested address",
2955 WSAENETDOWN , "Network is down",
2956 WSAENETUNREACH , "Network is unreachable",
2957 WSAENETRESET , "Network dropped connection on reset",
2958 WSAECONNABORTED , "Software caused connection abort",
2959 WSAECONNRESET , "Connection reset by peer",
2960 WSAENOBUFS , "No buffer space available",
2961 WSAEISCONN , "Socket is already connected",
2962 WSAENOTCONN , "Socket is not connected",
2963 WSAESHUTDOWN , "Cannot send after socket shutdown",
2964 WSAETOOMANYREFS , "Too many references", /* not sure */
2965 WSAETIMEDOUT , "Connection timed out",
2966 WSAECONNREFUSED , "Connection refused",
2967 WSAELOOP , "Network loop", /* not sure */
2968 WSAENAMETOOLONG , "Name is too long",
2969 WSAEHOSTDOWN , "Host is down",
2970 WSAEHOSTUNREACH , "No route to host",
2971 WSAENOTEMPTY , "Buffer not empty", /* not sure */
2972 WSAEPROCLIM , "Too many processes",
2973 WSAEUSERS , "Too many users", /* not sure */
2974 WSAEDQUOT , "Double quote in host name", /* really not sure */
2975 WSAESTALE , "Data is stale", /* not sure */
2976 WSAEREMOTE , "Remote error", /* not sure */
2978 WSASYSNOTREADY , "Network subsystem is unavailable",
2979 WSAVERNOTSUPPORTED , "WINSOCK.DLL version out of range",
2980 WSANOTINITIALISED , "Winsock not initialized successfully",
2981 WSAEDISCON , "Graceful shutdown in progress",
2982 #ifdef WSAENOMORE
2983 WSAENOMORE , "No more operations allowed", /* not sure */
2984 WSAECANCELLED , "Operation cancelled", /* not sure */
2985 WSAEINVALIDPROCTABLE , "Invalid procedure table from service provider",
2986 WSAEINVALIDPROVIDER , "Invalid service provider version number",
2987 WSAEPROVIDERFAILEDINIT , "Unable to initialize a service provider",
2988 WSASYSCALLFAILURE , "System call failure",
2989 WSASERVICE_NOT_FOUND , "Service not found", /* not sure */
2990 WSATYPE_NOT_FOUND , "Class type not found",
2991 WSA_E_NO_MORE , "No more resources available", /* really not sure */
2992 WSA_E_CANCELLED , "Operation already cancelled", /* really not sure */
2993 WSAEREFUSED , "Operation refused", /* not sure */
2994 #endif
2996 WSAHOST_NOT_FOUND , "Host not found",
2997 WSATRY_AGAIN , "Authoritative host not found during name lookup",
2998 WSANO_RECOVERY , "Non-recoverable error during name lookup",
2999 WSANO_DATA , "Valid name, no data record of requested type",
3001 -1, NULL
3004 char *
3005 sys_strerror(int error_no)
3007 int i;
3008 static char unknown_msg[40];
3010 if (error_no >= 0 && error_no < sys_nerr)
3011 return sys_errlist[error_no];
3013 for (i = 0; _wsa_errlist[i].errnum >= 0; i++)
3014 if (_wsa_errlist[i].errnum == error_no)
3015 return _wsa_errlist[i].msg;
3017 sprintf(unknown_msg, "Unidentified error: %d", error_no);
3018 return unknown_msg;
3021 /* [andrewi 3-May-96] I've had conflicting results using both methods,
3022 but I believe the method of keeping the socket handle separate (and
3023 insuring it is not inheritable) is the correct one. */
3025 //#define SOCK_REPLACE_HANDLE
3027 #ifdef SOCK_REPLACE_HANDLE
3028 #define SOCK_HANDLE(fd) ((SOCKET) _get_osfhandle (fd))
3029 #else
3030 #define SOCK_HANDLE(fd) ((SOCKET) fd_info[fd].hnd)
3031 #endif
3033 int socket_to_fd (SOCKET s);
3036 sys_socket(int af, int type, int protocol)
3038 SOCKET s;
3040 if (winsock_lib == NULL)
3042 h_errno = ENETDOWN;
3043 return INVALID_SOCKET;
3046 check_errno ();
3048 /* call the real socket function */
3049 s = pfn_socket (af, type, protocol);
3051 if (s != INVALID_SOCKET)
3052 return socket_to_fd (s);
3054 set_errno ();
3055 return -1;
3058 /* Convert a SOCKET to a file descriptor. */
3060 socket_to_fd (SOCKET s)
3062 int fd;
3063 child_process * cp;
3065 /* Although under NT 3.5 _open_osfhandle will accept a socket
3066 handle, if opened with SO_OPENTYPE == SO_SYNCHRONOUS_NONALERT,
3067 that does not work under NT 3.1. However, we can get the same
3068 effect by using a backdoor function to replace an existing
3069 descriptor handle with the one we want. */
3071 /* allocate a file descriptor (with appropriate flags) */
3072 fd = _open ("NUL:", _O_RDWR);
3073 if (fd >= 0)
3075 #ifdef SOCK_REPLACE_HANDLE
3076 /* now replace handle to NUL with our socket handle */
3077 CloseHandle ((HANDLE) _get_osfhandle (fd));
3078 _free_osfhnd (fd);
3079 _set_osfhnd (fd, s);
3080 /* setmode (fd, _O_BINARY); */
3081 #else
3082 /* Make a non-inheritable copy of the socket handle. Note
3083 that it is possible that sockets aren't actually kernel
3084 handles, which appears to be the case on Windows 9x when
3085 the MS Proxy winsock client is installed. */
3087 /* Apparently there is a bug in NT 3.51 with some service
3088 packs, which prevents using DuplicateHandle to make a
3089 socket handle non-inheritable (causes WSACleanup to
3090 hang). The work-around is to use SetHandleInformation
3091 instead if it is available and implemented. */
3092 if (pfn_SetHandleInformation)
3094 pfn_SetHandleInformation ((HANDLE) s, HANDLE_FLAG_INHERIT, 0);
3096 else
3098 HANDLE parent = GetCurrentProcess ();
3099 HANDLE new_s = INVALID_HANDLE_VALUE;
3101 if (DuplicateHandle (parent,
3102 (HANDLE) s,
3103 parent,
3104 &new_s,
3106 FALSE,
3107 DUPLICATE_SAME_ACCESS))
3109 /* It is possible that DuplicateHandle succeeds even
3110 though the socket wasn't really a kernel handle,
3111 because a real handle has the same value. So
3112 test whether the new handle really is a socket. */
3113 long nonblocking = 0;
3114 if (pfn_ioctlsocket ((SOCKET) new_s, FIONBIO, &nonblocking) == 0)
3116 pfn_closesocket (s);
3117 s = (SOCKET) new_s;
3119 else
3121 CloseHandle (new_s);
3126 fd_info[fd].hnd = (HANDLE) s;
3127 #endif
3129 /* set our own internal flags */
3130 fd_info[fd].flags = FILE_SOCKET | FILE_BINARY | FILE_READ | FILE_WRITE;
3132 cp = new_child ();
3133 if (cp)
3135 cp->fd = fd;
3136 cp->status = STATUS_READ_ACKNOWLEDGED;
3138 /* attach child_process to fd_info */
3139 if (fd_info[ fd ].cp != NULL)
3141 DebPrint (("sys_socket: fd_info[%d] apparently in use!\n", fd));
3142 abort ();
3145 fd_info[ fd ].cp = cp;
3147 /* success! */
3148 winsock_inuse++; /* count open sockets */
3149 return fd;
3152 /* clean up */
3153 _close (fd);
3155 pfn_closesocket (s);
3156 h_errno = EMFILE;
3157 return -1;
3162 sys_bind (int s, const struct sockaddr * addr, int namelen)
3164 if (winsock_lib == NULL)
3166 h_errno = ENOTSOCK;
3167 return SOCKET_ERROR;
3170 check_errno ();
3171 if (fd_info[s].flags & FILE_SOCKET)
3173 int rc = pfn_bind (SOCK_HANDLE (s), addr, namelen);
3174 if (rc == SOCKET_ERROR)
3175 set_errno ();
3176 return rc;
3178 h_errno = ENOTSOCK;
3179 return SOCKET_ERROR;
3184 sys_connect (int s, const struct sockaddr * name, int namelen)
3186 if (winsock_lib == NULL)
3188 h_errno = ENOTSOCK;
3189 return SOCKET_ERROR;
3192 check_errno ();
3193 if (fd_info[s].flags & FILE_SOCKET)
3195 int rc = pfn_connect (SOCK_HANDLE (s), name, namelen);
3196 if (rc == SOCKET_ERROR)
3197 set_errno ();
3198 return rc;
3200 h_errno = ENOTSOCK;
3201 return SOCKET_ERROR;
3204 u_short
3205 sys_htons (u_short hostshort)
3207 return (winsock_lib != NULL) ?
3208 pfn_htons (hostshort) : hostshort;
3211 u_short
3212 sys_ntohs (u_short netshort)
3214 return (winsock_lib != NULL) ?
3215 pfn_ntohs (netshort) : netshort;
3218 unsigned long
3219 sys_inet_addr (const char * cp)
3221 return (winsock_lib != NULL) ?
3222 pfn_inet_addr (cp) : INADDR_NONE;
3226 sys_gethostname (char * name, int namelen)
3228 if (winsock_lib != NULL)
3229 return pfn_gethostname (name, namelen);
3231 if (namelen > MAX_COMPUTERNAME_LENGTH)
3232 return !GetComputerName (name, (DWORD *)&namelen);
3234 h_errno = EFAULT;
3235 return SOCKET_ERROR;
3238 struct hostent *
3239 sys_gethostbyname(const char * name)
3241 struct hostent * host;
3243 if (winsock_lib == NULL)
3245 h_errno = ENETDOWN;
3246 return NULL;
3249 check_errno ();
3250 host = pfn_gethostbyname (name);
3251 if (!host)
3252 set_errno ();
3253 return host;
3256 struct servent *
3257 sys_getservbyname(const char * name, const char * proto)
3259 struct servent * serv;
3261 if (winsock_lib == NULL)
3263 h_errno = ENETDOWN;
3264 return NULL;
3267 check_errno ();
3268 serv = pfn_getservbyname (name, proto);
3269 if (!serv)
3270 set_errno ();
3271 return serv;
3275 sys_getpeername (int s, struct sockaddr *addr, int * namelen)
3277 if (winsock_lib == NULL)
3279 h_errno = ENETDOWN;
3280 return SOCKET_ERROR;
3283 check_errno ();
3284 if (fd_info[s].flags & FILE_SOCKET)
3286 int rc = pfn_getpeername (SOCK_HANDLE (s), addr, namelen);
3287 if (rc == SOCKET_ERROR)
3288 set_errno ();
3289 return rc;
3291 h_errno = ENOTSOCK;
3292 return SOCKET_ERROR;
3297 sys_shutdown (int s, int how)
3299 if (winsock_lib == NULL)
3301 h_errno = ENETDOWN;
3302 return SOCKET_ERROR;
3305 check_errno ();
3306 if (fd_info[s].flags & FILE_SOCKET)
3308 int rc = pfn_shutdown (SOCK_HANDLE (s), how);
3309 if (rc == SOCKET_ERROR)
3310 set_errno ();
3311 return rc;
3313 h_errno = ENOTSOCK;
3314 return SOCKET_ERROR;
3318 sys_setsockopt (int s, int level, int optname, const void * optval, int optlen)
3320 if (winsock_lib == NULL)
3322 h_errno = ENETDOWN;
3323 return SOCKET_ERROR;
3326 check_errno ();
3327 if (fd_info[s].flags & FILE_SOCKET)
3329 int rc = pfn_setsockopt (SOCK_HANDLE (s), level, optname,
3330 (const char *)optval, optlen);
3331 if (rc == SOCKET_ERROR)
3332 set_errno ();
3333 return rc;
3335 h_errno = ENOTSOCK;
3336 return SOCKET_ERROR;
3340 sys_listen (int s, int backlog)
3342 if (winsock_lib == NULL)
3344 h_errno = ENETDOWN;
3345 return SOCKET_ERROR;
3348 check_errno ();
3349 if (fd_info[s].flags & FILE_SOCKET)
3351 int rc = pfn_listen (SOCK_HANDLE (s), backlog);
3352 if (rc == SOCKET_ERROR)
3353 set_errno ();
3354 else
3355 fd_info[s].flags |= FILE_LISTEN;
3356 return rc;
3358 h_errno = ENOTSOCK;
3359 return SOCKET_ERROR;
3363 sys_getsockname (int s, struct sockaddr * name, int * namelen)
3365 if (winsock_lib == NULL)
3367 h_errno = ENETDOWN;
3368 return SOCKET_ERROR;
3371 check_errno ();
3372 if (fd_info[s].flags & FILE_SOCKET)
3374 int rc = pfn_getsockname (SOCK_HANDLE (s), name, namelen);
3375 if (rc == SOCKET_ERROR)
3376 set_errno ();
3377 return rc;
3379 h_errno = ENOTSOCK;
3380 return SOCKET_ERROR;
3384 sys_accept (int s, struct sockaddr * addr, int * addrlen)
3386 if (winsock_lib == NULL)
3388 h_errno = ENETDOWN;
3389 return -1;
3392 check_errno ();
3393 if (fd_info[s].flags & FILE_LISTEN)
3395 SOCKET t = pfn_accept (SOCK_HANDLE (s), addr, addrlen);
3396 int fd = -1;
3397 if (t == INVALID_SOCKET)
3398 set_errno ();
3399 else
3400 fd = socket_to_fd (t);
3402 fd_info[s].cp->status = STATUS_READ_ACKNOWLEDGED;
3403 ResetEvent (fd_info[s].cp->char_avail);
3404 return fd;
3406 h_errno = ENOTSOCK;
3407 return -1;
3411 sys_recvfrom (int s, char * buf, int len, int flags,
3412 struct sockaddr * from, int * fromlen)
3414 if (winsock_lib == NULL)
3416 h_errno = ENETDOWN;
3417 return SOCKET_ERROR;
3420 check_errno ();
3421 if (fd_info[s].flags & FILE_SOCKET)
3423 int rc = pfn_recvfrom (SOCK_HANDLE (s), buf, len, flags, from, fromlen);
3424 if (rc == SOCKET_ERROR)
3425 set_errno ();
3426 return rc;
3428 h_errno = ENOTSOCK;
3429 return SOCKET_ERROR;
3433 sys_sendto (int s, const char * buf, int len, int flags,
3434 const struct sockaddr * to, int tolen)
3436 if (winsock_lib == NULL)
3438 h_errno = ENETDOWN;
3439 return SOCKET_ERROR;
3442 check_errno ();
3443 if (fd_info[s].flags & FILE_SOCKET)
3445 int rc = pfn_sendto (SOCK_HANDLE (s), buf, len, flags, to, tolen);
3446 if (rc == SOCKET_ERROR)
3447 set_errno ();
3448 return rc;
3450 h_errno = ENOTSOCK;
3451 return SOCKET_ERROR;
3454 /* Windows does not have an fcntl function. Provide an implementation
3455 solely for making sockets non-blocking. */
3457 fcntl (int s, int cmd, int options)
3459 if (winsock_lib == NULL)
3461 h_errno = ENETDOWN;
3462 return -1;
3465 check_errno ();
3466 if (fd_info[s].flags & FILE_SOCKET)
3468 if (cmd == F_SETFL && options == O_NDELAY)
3470 unsigned long nblock = 1;
3471 int rc = pfn_ioctlsocket (SOCK_HANDLE (s), FIONBIO, &nblock);
3472 if (rc == SOCKET_ERROR)
3473 set_errno();
3474 /* Keep track of the fact that we set this to non-blocking. */
3475 fd_info[s].flags |= FILE_NDELAY;
3476 return rc;
3478 else
3480 h_errno = EINVAL;
3481 return SOCKET_ERROR;
3484 h_errno = ENOTSOCK;
3485 return SOCKET_ERROR;
3488 #endif /* HAVE_SOCKETS */
3491 /* Shadow main io functions: we need to handle pipes and sockets more
3492 intelligently, and implement non-blocking mode as well. */
3495 sys_close (int fd)
3497 int rc;
3499 if (fd < 0)
3501 errno = EBADF;
3502 return -1;
3505 if (fd < MAXDESC && fd_info[fd].cp)
3507 child_process * cp = fd_info[fd].cp;
3509 fd_info[fd].cp = NULL;
3511 if (CHILD_ACTIVE (cp))
3513 /* if last descriptor to active child_process then cleanup */
3514 int i;
3515 for (i = 0; i < MAXDESC; i++)
3517 if (i == fd)
3518 continue;
3519 if (fd_info[i].cp == cp)
3520 break;
3522 if (i == MAXDESC)
3524 #ifdef HAVE_SOCKETS
3525 if (fd_info[fd].flags & FILE_SOCKET)
3527 #ifndef SOCK_REPLACE_HANDLE
3528 if (winsock_lib == NULL) abort ();
3530 pfn_shutdown (SOCK_HANDLE (fd), 2);
3531 rc = pfn_closesocket (SOCK_HANDLE (fd));
3532 #endif
3533 winsock_inuse--; /* count open sockets */
3535 #endif
3536 delete_child (cp);
3541 /* Note that sockets do not need special treatment here (at least on
3542 NT and Windows 95 using the standard tcp/ip stacks) - it appears that
3543 closesocket is equivalent to CloseHandle, which is to be expected
3544 because socket handles are fully fledged kernel handles. */
3545 rc = _close (fd);
3547 if (rc == 0 && fd < MAXDESC)
3548 fd_info[fd].flags = 0;
3550 return rc;
3554 sys_dup (int fd)
3556 int new_fd;
3558 new_fd = _dup (fd);
3559 if (new_fd >= 0 && new_fd < MAXDESC)
3561 /* duplicate our internal info as well */
3562 fd_info[new_fd] = fd_info[fd];
3564 return new_fd;
3569 sys_dup2 (int src, int dst)
3571 int rc;
3573 if (dst < 0 || dst >= MAXDESC)
3575 errno = EBADF;
3576 return -1;
3579 /* make sure we close the destination first if it's a pipe or socket */
3580 if (src != dst && fd_info[dst].flags != 0)
3581 sys_close (dst);
3583 rc = _dup2 (src, dst);
3584 if (rc == 0)
3586 /* duplicate our internal info as well */
3587 fd_info[dst] = fd_info[src];
3589 return rc;
3592 /* Unix pipe() has only one arg */
3594 sys_pipe (int * phandles)
3596 int rc;
3597 unsigned flags;
3599 /* make pipe handles non-inheritable; when we spawn a child, we
3600 replace the relevant handle with an inheritable one. Also put
3601 pipes into binary mode; we will do text mode translation ourselves
3602 if required. */
3603 rc = _pipe (phandles, 0, _O_NOINHERIT | _O_BINARY);
3605 if (rc == 0)
3607 /* Protect against overflow, since Windows can open more handles than
3608 our fd_info array has room for. */
3609 if (phandles[0] >= MAXDESC || phandles[1] >= MAXDESC)
3611 _close (phandles[0]);
3612 _close (phandles[1]);
3613 rc = -1;
3615 else
3617 flags = FILE_PIPE | FILE_READ | FILE_BINARY;
3618 fd_info[phandles[0]].flags = flags;
3620 flags = FILE_PIPE | FILE_WRITE | FILE_BINARY;
3621 fd_info[phandles[1]].flags = flags;
3625 return rc;
3628 /* From ntproc.c */
3629 extern int w32_pipe_read_delay;
3631 /* Function to do blocking read of one byte, needed to implement
3632 select. It is only allowed on sockets and pipes. */
3634 _sys_read_ahead (int fd)
3636 child_process * cp;
3637 int rc;
3639 if (fd < 0 || fd >= MAXDESC)
3640 return STATUS_READ_ERROR;
3642 cp = fd_info[fd].cp;
3644 if (cp == NULL || cp->fd != fd || cp->status != STATUS_READ_READY)
3645 return STATUS_READ_ERROR;
3647 if ((fd_info[fd].flags & (FILE_PIPE | FILE_SOCKET)) == 0
3648 || (fd_info[fd].flags & FILE_READ) == 0)
3650 DebPrint (("_sys_read_ahead: internal error: fd %d is not a pipe or socket!\n", fd));
3651 abort ();
3654 cp->status = STATUS_READ_IN_PROGRESS;
3656 if (fd_info[fd].flags & FILE_PIPE)
3658 rc = _read (fd, &cp->chr, sizeof (char));
3660 /* Give subprocess time to buffer some more output for us before
3661 reporting that input is available; we need this because Windows 95
3662 connects DOS programs to pipes by making the pipe appear to be
3663 the normal console stdout - as a result most DOS programs will
3664 write to stdout without buffering, ie. one character at a
3665 time. Even some W32 programs do this - "dir" in a command
3666 shell on NT is very slow if we don't do this. */
3667 if (rc > 0)
3669 int wait = w32_pipe_read_delay;
3671 if (wait > 0)
3672 Sleep (wait);
3673 else if (wait < 0)
3674 while (++wait <= 0)
3675 /* Yield remainder of our time slice, effectively giving a
3676 temporary priority boost to the child process. */
3677 Sleep (0);
3680 #ifdef HAVE_SOCKETS
3681 else if (fd_info[fd].flags & FILE_SOCKET)
3683 unsigned long nblock = 0;
3684 /* We always want this to block, so temporarily disable NDELAY. */
3685 if (fd_info[fd].flags & FILE_NDELAY)
3686 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
3688 rc = pfn_recv (SOCK_HANDLE (fd), &cp->chr, sizeof (char), 0);
3690 if (fd_info[fd].flags & FILE_NDELAY)
3692 nblock = 1;
3693 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
3696 #endif
3698 if (rc == sizeof (char))
3699 cp->status = STATUS_READ_SUCCEEDED;
3700 else
3701 cp->status = STATUS_READ_FAILED;
3703 return cp->status;
3707 _sys_wait_accept (int fd)
3709 HANDLE hEv;
3710 child_process * cp;
3711 int rc;
3713 if (fd < 0 || fd >= MAXDESC)
3714 return STATUS_READ_ERROR;
3716 cp = fd_info[fd].cp;
3718 if (cp == NULL || cp->fd != fd || cp->status != STATUS_READ_READY)
3719 return STATUS_READ_ERROR;
3721 cp->status = STATUS_READ_FAILED;
3723 hEv = pfn_WSACreateEvent ();
3724 rc = pfn_WSAEventSelect (SOCK_HANDLE (fd), hEv, FD_ACCEPT);
3725 if (rc != SOCKET_ERROR)
3727 rc = WaitForSingleObject (hEv, INFINITE);
3728 pfn_WSAEventSelect (SOCK_HANDLE (fd), NULL, 0);
3729 if (rc == WAIT_OBJECT_0)
3730 cp->status = STATUS_READ_SUCCEEDED;
3732 pfn_WSACloseEvent (hEv);
3734 return cp->status;
3738 sys_read (int fd, char * buffer, unsigned int count)
3740 int nchars;
3741 int to_read;
3742 DWORD waiting;
3743 char * orig_buffer = buffer;
3745 if (fd < 0)
3747 errno = EBADF;
3748 return -1;
3751 if (fd < MAXDESC && fd_info[fd].flags & (FILE_PIPE | FILE_SOCKET))
3753 child_process *cp = fd_info[fd].cp;
3755 if ((fd_info[fd].flags & FILE_READ) == 0)
3757 errno = EBADF;
3758 return -1;
3761 nchars = 0;
3763 /* re-read CR carried over from last read */
3764 if (fd_info[fd].flags & FILE_LAST_CR)
3766 if (fd_info[fd].flags & FILE_BINARY) abort ();
3767 *buffer++ = 0x0d;
3768 count--;
3769 nchars++;
3770 fd_info[fd].flags &= ~FILE_LAST_CR;
3773 /* presence of a child_process structure means we are operating in
3774 non-blocking mode - otherwise we just call _read directly.
3775 Note that the child_process structure might be missing because
3776 reap_subprocess has been called; in this case the pipe is
3777 already broken, so calling _read on it is okay. */
3778 if (cp)
3780 int current_status = cp->status;
3782 switch (current_status)
3784 case STATUS_READ_FAILED:
3785 case STATUS_READ_ERROR:
3786 /* report normal EOF if nothing in buffer */
3787 if (nchars <= 0)
3788 fd_info[fd].flags |= FILE_AT_EOF;
3789 return nchars;
3791 case STATUS_READ_READY:
3792 case STATUS_READ_IN_PROGRESS:
3793 DebPrint (("sys_read called when read is in progress\n"));
3794 errno = EWOULDBLOCK;
3795 return -1;
3797 case STATUS_READ_SUCCEEDED:
3798 /* consume read-ahead char */
3799 *buffer++ = cp->chr;
3800 count--;
3801 nchars++;
3802 cp->status = STATUS_READ_ACKNOWLEDGED;
3803 ResetEvent (cp->char_avail);
3805 case STATUS_READ_ACKNOWLEDGED:
3806 break;
3808 default:
3809 DebPrint (("sys_read: bad status %d\n", current_status));
3810 errno = EBADF;
3811 return -1;
3814 if (fd_info[fd].flags & FILE_PIPE)
3816 PeekNamedPipe ((HANDLE) _get_osfhandle (fd), NULL, 0, NULL, &waiting, NULL);
3817 to_read = min (waiting, (DWORD) count);
3819 if (to_read > 0)
3820 nchars += _read (fd, buffer, to_read);
3822 #ifdef HAVE_SOCKETS
3823 else /* FILE_SOCKET */
3825 if (winsock_lib == NULL) abort ();
3827 /* do the equivalent of a non-blocking read */
3828 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONREAD, &waiting);
3829 if (waiting == 0 && nchars == 0)
3831 h_errno = errno = EWOULDBLOCK;
3832 return -1;
3835 if (waiting)
3837 /* always use binary mode for sockets */
3838 int res = pfn_recv (SOCK_HANDLE (fd), buffer, count, 0);
3839 if (res == SOCKET_ERROR)
3841 DebPrint(("sys_read.recv failed with error %d on socket %ld\n",
3842 pfn_WSAGetLastError (), SOCK_HANDLE (fd)));
3843 set_errno ();
3844 return -1;
3846 nchars += res;
3849 #endif
3851 else
3853 int nread = _read (fd, buffer, count);
3854 if (nread >= 0)
3855 nchars += nread;
3856 else if (nchars == 0)
3857 nchars = nread;
3860 if (nchars <= 0)
3861 fd_info[fd].flags |= FILE_AT_EOF;
3862 /* Perform text mode translation if required. */
3863 else if ((fd_info[fd].flags & FILE_BINARY) == 0)
3865 nchars = crlf_to_lf (nchars, orig_buffer);
3866 /* If buffer contains only CR, return that. To be absolutely
3867 sure we should attempt to read the next char, but in
3868 practice a CR to be followed by LF would not appear by
3869 itself in the buffer. */
3870 if (nchars > 1 && orig_buffer[nchars - 1] == 0x0d)
3872 fd_info[fd].flags |= FILE_LAST_CR;
3873 nchars--;
3877 else
3878 nchars = _read (fd, buffer, count);
3880 return nchars;
3883 /* For now, don't bother with a non-blocking mode */
3885 sys_write (int fd, const void * buffer, unsigned int count)
3887 int nchars;
3889 if (fd < 0)
3891 errno = EBADF;
3892 return -1;
3895 if (fd < MAXDESC && fd_info[fd].flags & (FILE_PIPE | FILE_SOCKET))
3897 if ((fd_info[fd].flags & FILE_WRITE) == 0)
3899 errno = EBADF;
3900 return -1;
3903 /* Perform text mode translation if required. */
3904 if ((fd_info[fd].flags & FILE_BINARY) == 0)
3906 char * tmpbuf = alloca (count * 2);
3907 unsigned char * src = (void *)buffer;
3908 unsigned char * dst = tmpbuf;
3909 int nbytes = count;
3911 while (1)
3913 unsigned char *next;
3914 /* copy next line or remaining bytes */
3915 next = _memccpy (dst, src, '\n', nbytes);
3916 if (next)
3918 /* copied one line ending with '\n' */
3919 int copied = next - dst;
3920 nbytes -= copied;
3921 src += copied;
3922 /* insert '\r' before '\n' */
3923 next[-1] = '\r';
3924 next[0] = '\n';
3925 dst = next + 1;
3926 count++;
3928 else
3929 /* copied remaining partial line -> now finished */
3930 break;
3932 buffer = tmpbuf;
3936 #ifdef HAVE_SOCKETS
3937 if (fd < MAXDESC && fd_info[fd].flags & FILE_SOCKET)
3939 unsigned long nblock = 0;
3940 if (winsock_lib == NULL) abort ();
3942 /* TODO: implement select() properly so non-blocking I/O works. */
3943 /* For now, make sure the write blocks. */
3944 if (fd_info[fd].flags & FILE_NDELAY)
3945 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
3947 nchars = pfn_send (SOCK_HANDLE (fd), buffer, count, 0);
3949 /* Set the socket back to non-blocking if it was before,
3950 for other operations that support it. */
3951 if (fd_info[fd].flags & FILE_NDELAY)
3953 nblock = 1;
3954 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
3957 if (nchars == SOCKET_ERROR)
3959 DebPrint(("sys_write.send failed with error %d on socket %ld\n",
3960 pfn_WSAGetLastError (), SOCK_HANDLE (fd)));
3961 set_errno ();
3964 else
3965 #endif
3966 nchars = _write (fd, buffer, count);
3968 return nchars;
3971 static void
3972 check_windows_init_file ()
3974 extern int noninteractive, inhibit_window_system;
3976 /* A common indication that Emacs is not installed properly is when
3977 it cannot find the Windows installation file. If this file does
3978 not exist in the expected place, tell the user. */
3980 if (!noninteractive && !inhibit_window_system)
3982 extern Lisp_Object Vwindow_system, Vload_path, Qfile_exists_p;
3983 Lisp_Object objs[2];
3984 Lisp_Object full_load_path;
3985 Lisp_Object init_file;
3986 int fd;
3988 objs[0] = Vload_path;
3989 objs[1] = decode_env_path (0, (getenv ("EMACSLOADPATH")));
3990 full_load_path = Fappend (2, objs);
3991 init_file = build_string ("term/w32-win");
3992 fd = openp (full_load_path, init_file, Fget_load_suffixes (), NULL, Qnil);
3993 if (fd < 0)
3995 Lisp_Object load_path_print = Fprin1_to_string (full_load_path, Qnil);
3996 char *init_file_name = SDATA (init_file);
3997 char *load_path = SDATA (load_path_print);
3998 char *buffer = alloca (1024
3999 + strlen (init_file_name)
4000 + strlen (load_path));
4002 sprintf (buffer,
4003 "The Emacs Windows initialization file \"%s.el\" "
4004 "could not be found in your Emacs installation. "
4005 "Emacs checked the following directories for this file:\n"
4006 "\n%s\n\n"
4007 "When Emacs cannot find this file, it usually means that it "
4008 "was not installed properly, or its distribution file was "
4009 "not unpacked properly.\nSee the README.W32 file in the "
4010 "top-level Emacs directory for more information.",
4011 init_file_name, load_path);
4012 MessageBox (NULL,
4013 buffer,
4014 "Emacs Abort Dialog",
4015 MB_OK | MB_ICONEXCLAMATION | MB_TASKMODAL);
4016 /* Use the low-level Emacs abort. */
4017 #undef abort
4018 abort ();
4020 else
4022 _close (fd);
4027 void
4028 term_ntproc ()
4030 #ifdef HAVE_SOCKETS
4031 /* shutdown the socket interface if necessary */
4032 term_winsock ();
4033 #endif
4035 term_w32select ();
4038 void
4039 init_ntproc ()
4041 #ifdef HAVE_SOCKETS
4042 /* Initialise the socket interface now if available and requested by
4043 the user by defining PRELOAD_WINSOCK; otherwise loading will be
4044 delayed until open-network-stream is called (w32-has-winsock can
4045 also be used to dynamically load or reload winsock).
4047 Conveniently, init_environment is called before us, so
4048 PRELOAD_WINSOCK can be set in the registry. */
4050 /* Always initialize this correctly. */
4051 winsock_lib = NULL;
4053 if (getenv ("PRELOAD_WINSOCK") != NULL)
4054 init_winsock (TRUE);
4055 #endif
4057 /* Initial preparation for subprocess support: replace our standard
4058 handles with non-inheritable versions. */
4060 HANDLE parent;
4061 HANDLE stdin_save = INVALID_HANDLE_VALUE;
4062 HANDLE stdout_save = INVALID_HANDLE_VALUE;
4063 HANDLE stderr_save = INVALID_HANDLE_VALUE;
4065 parent = GetCurrentProcess ();
4067 /* ignore errors when duplicating and closing; typically the
4068 handles will be invalid when running as a gui program. */
4069 DuplicateHandle (parent,
4070 GetStdHandle (STD_INPUT_HANDLE),
4071 parent,
4072 &stdin_save,
4074 FALSE,
4075 DUPLICATE_SAME_ACCESS);
4077 DuplicateHandle (parent,
4078 GetStdHandle (STD_OUTPUT_HANDLE),
4079 parent,
4080 &stdout_save,
4082 FALSE,
4083 DUPLICATE_SAME_ACCESS);
4085 DuplicateHandle (parent,
4086 GetStdHandle (STD_ERROR_HANDLE),
4087 parent,
4088 &stderr_save,
4090 FALSE,
4091 DUPLICATE_SAME_ACCESS);
4093 fclose (stdin);
4094 fclose (stdout);
4095 fclose (stderr);
4097 if (stdin_save != INVALID_HANDLE_VALUE)
4098 _open_osfhandle ((long) stdin_save, O_TEXT);
4099 else
4100 _open ("nul", O_TEXT | O_NOINHERIT | O_RDONLY);
4101 _fdopen (0, "r");
4103 if (stdout_save != INVALID_HANDLE_VALUE)
4104 _open_osfhandle ((long) stdout_save, O_TEXT);
4105 else
4106 _open ("nul", O_TEXT | O_NOINHERIT | O_WRONLY);
4107 _fdopen (1, "w");
4109 if (stderr_save != INVALID_HANDLE_VALUE)
4110 _open_osfhandle ((long) stderr_save, O_TEXT);
4111 else
4112 _open ("nul", O_TEXT | O_NOINHERIT | O_WRONLY);
4113 _fdopen (2, "w");
4116 /* unfortunately, atexit depends on implementation of malloc */
4117 /* atexit (term_ntproc); */
4118 signal (SIGABRT, term_ntproc);
4120 /* determine which drives are fixed, for GetCachedVolumeInformation */
4122 /* GetDriveType must have trailing backslash. */
4123 char drive[] = "A:\\";
4125 /* Loop over all possible drive letters */
4126 while (*drive <= 'Z')
4128 /* Record if this drive letter refers to a fixed drive. */
4129 fixed_drives[DRIVE_INDEX (*drive)] =
4130 (GetDriveType (drive) == DRIVE_FIXED);
4132 (*drive)++;
4135 /* Reset the volume info cache. */
4136 volume_cache = NULL;
4139 /* Check to see if Emacs has been installed correctly. */
4140 check_windows_init_file ();
4144 shutdown_handler ensures that buffers' autosave files are
4145 up to date when the user logs off, or the system shuts down.
4147 BOOL WINAPI shutdown_handler(DWORD type)
4149 /* Ctrl-C and Ctrl-Break are already suppressed, so don't handle them. */
4150 if (type == CTRL_CLOSE_EVENT /* User closes console window. */
4151 || type == CTRL_LOGOFF_EVENT /* User logs off. */
4152 || type == CTRL_SHUTDOWN_EVENT) /* User shutsdown. */
4154 /* Shut down cleanly, making sure autosave files are up to date. */
4155 shut_down_emacs (0, 0, Qnil);
4158 /* Allow other handlers to handle this signal. */
4159 return FALSE;
4163 globals_of_w32 is used to initialize those global variables that
4164 must always be initialized on startup even when the global variable
4165 initialized is non zero (see the function main in emacs.c).
4167 void
4168 globals_of_w32 ()
4170 g_b_init_is_windows_9x = 0;
4171 g_b_init_open_process_token = 0;
4172 g_b_init_get_token_information = 0;
4173 g_b_init_lookup_account_sid = 0;
4174 g_b_init_get_sid_identifier_authority = 0;
4175 /* The following sets a handler for shutdown notifications for
4176 console apps. This actually applies to Emacs in both console and
4177 GUI modes, since we had to fool windows into thinking emacs is a
4178 console application to get console mode to work. */
4179 SetConsoleCtrlHandler(shutdown_handler, TRUE);
4182 /* end of w32.c */
4184 /* arch-tag: 90442dd3-37be-482b-b272-ac752e3049f1
4185 (do not change this comment) */