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)
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 */
34 #include <sys/utime.h>
35 #include <mbstring.h> /* for _mbspbrk */
37 /* must include CRT headers *before* config.h */
72 #define _ANONYMOUS_UNION
73 #define _ANONYMOUS_STRUCT
79 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
80 #include <sys/socket.h>
105 typedef HRESULT (WINAPI
* ShGetFolderPath_fn
)
106 (IN HWND
, IN
int, IN HANDLE
, IN DWORD
, OUT
char *);
108 void globals_of_w32 ();
110 extern Lisp_Object Vw32_downcase_file_names
;
111 extern Lisp_Object Vw32_generate_fake_inodes
;
112 extern Lisp_Object Vw32_get_true_file_attributes
;
113 /* Defined in process.c for its own purpose. */
114 extern Lisp_Object Qlocal
;
116 extern int w32_num_mouse_buttons
;
119 /* Initialization states.
121 WARNING: If you add any more such variables for additional APIs,
122 you MUST add initialization for them to globals_of_w32
123 below. This is because these variables might get set
124 to non-NULL values during dumping, but the dumped Emacs
125 cannot reuse those values, because it could be run on a
126 different version of the OS, where API addresses are
128 static BOOL g_b_init_is_windows_9x
;
129 static BOOL g_b_init_open_process_token
;
130 static BOOL g_b_init_get_token_information
;
131 static BOOL g_b_init_lookup_account_sid
;
132 static BOOL g_b_init_get_sid_identifier_authority
;
133 static BOOL g_b_init_get_sid_sub_authority
;
134 static BOOL g_b_init_get_sid_sub_authority_count
;
137 BEGIN: Wrapper functions around OpenProcessToken
138 and other functions in advapi32.dll that are only
139 supported in Windows NT / 2k / XP
141 /* ** Function pointer typedefs ** */
142 typedef BOOL (WINAPI
* OpenProcessToken_Proc
) (
143 HANDLE ProcessHandle
,
145 PHANDLE TokenHandle
);
146 typedef BOOL (WINAPI
* GetTokenInformation_Proc
) (
148 TOKEN_INFORMATION_CLASS TokenInformationClass
,
149 LPVOID TokenInformation
,
150 DWORD TokenInformationLength
,
151 PDWORD ReturnLength
);
152 typedef BOOL (WINAPI
* GetProcessTimes_Proc
) (
153 HANDLE process_handle
,
154 LPFILETIME creation_time
,
155 LPFILETIME exit_time
,
156 LPFILETIME kernel_time
,
157 LPFILETIME user_time
);
159 GetProcessTimes_Proc get_process_times_fn
= NULL
;
162 const char * const LookupAccountSid_Name
= "LookupAccountSidW";
164 const char * const LookupAccountSid_Name
= "LookupAccountSidA";
166 typedef BOOL (WINAPI
* LookupAccountSid_Proc
) (
167 LPCTSTR lpSystemName
,
172 LPDWORD cbDomainName
,
173 PSID_NAME_USE peUse
);
174 typedef PSID_IDENTIFIER_AUTHORITY (WINAPI
* GetSidIdentifierAuthority_Proc
) (
176 typedef PDWORD (WINAPI
* GetSidSubAuthority_Proc
) (
179 typedef PUCHAR (WINAPI
* GetSidSubAuthorityCount_Proc
) (
183 /* ** A utility function ** */
187 static BOOL s_b_ret
=0;
188 OSVERSIONINFO os_ver
;
189 if (g_b_init_is_windows_9x
== 0)
191 g_b_init_is_windows_9x
= 1;
192 ZeroMemory(&os_ver
, sizeof(OSVERSIONINFO
));
193 os_ver
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
194 if (GetVersionEx (&os_ver
))
196 s_b_ret
= (os_ver
.dwPlatformId
== VER_PLATFORM_WIN32_WINDOWS
);
202 /* Get total user and system times for get-internal-run-time.
203 Returns a list of three integers if the times are provided by the OS
204 (NT derivatives), otherwise it returns the result of current-time. */
206 w32_get_internal_run_time ()
208 if (get_process_times_fn
)
210 FILETIME create
, exit
, kernel
, user
;
211 HANDLE proc
= GetCurrentProcess();
212 if ((*get_process_times_fn
) (proc
, &create
, &exit
, &kernel
, &user
))
214 LARGE_INTEGER user_int
, kernel_int
, total
;
216 user_int
.LowPart
= user
.dwLowDateTime
;
217 user_int
.HighPart
= user
.dwHighDateTime
;
218 kernel_int
.LowPart
= kernel
.dwLowDateTime
;
219 kernel_int
.HighPart
= kernel
.dwHighDateTime
;
220 total
.QuadPart
= user_int
.QuadPart
+ kernel_int
.QuadPart
;
221 /* FILETIME is 100 nanosecond increments, Emacs only wants
222 microsecond resolution. */
223 total
.QuadPart
/= 10;
224 microseconds
= total
.QuadPart
% 1000000;
225 total
.QuadPart
/= 1000000;
227 /* Sanity check to make sure we can represent the result. */
228 if (total
.HighPart
== 0)
230 int secs
= total
.LowPart
;
232 return list3 (make_number ((secs
>> 16) & 0xffff),
233 make_number (secs
& 0xffff),
234 make_number (microseconds
));
239 return Fcurrent_time ();
242 /* ** The wrapper functions ** */
244 BOOL WINAPI
open_process_token (
245 HANDLE ProcessHandle
,
249 static OpenProcessToken_Proc s_pfn_Open_Process_Token
= NULL
;
250 HMODULE hm_advapi32
= NULL
;
251 if (is_windows_9x () == TRUE
)
255 if (g_b_init_open_process_token
== 0)
257 g_b_init_open_process_token
= 1;
258 hm_advapi32
= LoadLibrary ("Advapi32.dll");
259 s_pfn_Open_Process_Token
=
260 (OpenProcessToken_Proc
) GetProcAddress (hm_advapi32
, "OpenProcessToken");
262 if (s_pfn_Open_Process_Token
== NULL
)
267 s_pfn_Open_Process_Token (
274 BOOL WINAPI
get_token_information (
276 TOKEN_INFORMATION_CLASS TokenInformationClass
,
277 LPVOID TokenInformation
,
278 DWORD TokenInformationLength
,
281 static GetTokenInformation_Proc s_pfn_Get_Token_Information
= NULL
;
282 HMODULE hm_advapi32
= NULL
;
283 if (is_windows_9x () == TRUE
)
287 if (g_b_init_get_token_information
== 0)
289 g_b_init_get_token_information
= 1;
290 hm_advapi32
= LoadLibrary ("Advapi32.dll");
291 s_pfn_Get_Token_Information
=
292 (GetTokenInformation_Proc
) GetProcAddress (hm_advapi32
, "GetTokenInformation");
294 if (s_pfn_Get_Token_Information
== NULL
)
299 s_pfn_Get_Token_Information (
301 TokenInformationClass
,
303 TokenInformationLength
,
308 BOOL WINAPI
lookup_account_sid (
309 LPCTSTR lpSystemName
,
314 LPDWORD cbDomainName
,
317 static LookupAccountSid_Proc s_pfn_Lookup_Account_Sid
= NULL
;
318 HMODULE hm_advapi32
= NULL
;
319 if (is_windows_9x () == TRUE
)
323 if (g_b_init_lookup_account_sid
== 0)
325 g_b_init_lookup_account_sid
= 1;
326 hm_advapi32
= LoadLibrary ("Advapi32.dll");
327 s_pfn_Lookup_Account_Sid
=
328 (LookupAccountSid_Proc
) GetProcAddress (hm_advapi32
, LookupAccountSid_Name
);
330 if (s_pfn_Lookup_Account_Sid
== NULL
)
335 s_pfn_Lookup_Account_Sid (
346 PSID_IDENTIFIER_AUTHORITY WINAPI
get_sid_identifier_authority (
349 static GetSidIdentifierAuthority_Proc s_pfn_Get_Sid_Identifier_Authority
= NULL
;
350 HMODULE hm_advapi32
= NULL
;
351 if (is_windows_9x () == TRUE
)
355 if (g_b_init_get_sid_identifier_authority
== 0)
357 g_b_init_get_sid_identifier_authority
= 1;
358 hm_advapi32
= LoadLibrary ("Advapi32.dll");
359 s_pfn_Get_Sid_Identifier_Authority
=
360 (GetSidIdentifierAuthority_Proc
) GetProcAddress (
361 hm_advapi32
, "GetSidIdentifierAuthority");
363 if (s_pfn_Get_Sid_Identifier_Authority
== NULL
)
367 return (s_pfn_Get_Sid_Identifier_Authority (pSid
));
370 PDWORD WINAPI
get_sid_sub_authority (
374 static GetSidSubAuthority_Proc s_pfn_Get_Sid_Sub_Authority
= NULL
;
375 static DWORD zero
= 0U;
376 HMODULE hm_advapi32
= NULL
;
377 if (is_windows_9x () == TRUE
)
381 if (g_b_init_get_sid_sub_authority
== 0)
383 g_b_init_get_sid_sub_authority
= 1;
384 hm_advapi32
= LoadLibrary ("Advapi32.dll");
385 s_pfn_Get_Sid_Sub_Authority
=
386 (GetSidSubAuthority_Proc
) GetProcAddress (
387 hm_advapi32
, "GetSidSubAuthority");
389 if (s_pfn_Get_Sid_Sub_Authority
== NULL
)
393 return (s_pfn_Get_Sid_Sub_Authority (pSid
, n
));
396 PUCHAR WINAPI
get_sid_sub_authority_count (
399 static GetSidSubAuthorityCount_Proc s_pfn_Get_Sid_Sub_Authority_Count
= NULL
;
400 static UCHAR zero
= 0U;
401 HMODULE hm_advapi32
= NULL
;
402 if (is_windows_9x () == TRUE
)
406 if (g_b_init_get_sid_sub_authority_count
== 0)
408 g_b_init_get_sid_sub_authority_count
= 1;
409 hm_advapi32
= LoadLibrary ("Advapi32.dll");
410 s_pfn_Get_Sid_Sub_Authority_Count
=
411 (GetSidSubAuthorityCount_Proc
) GetProcAddress (
412 hm_advapi32
, "GetSidSubAuthorityCount");
414 if (s_pfn_Get_Sid_Sub_Authority_Count
== NULL
)
418 return (s_pfn_Get_Sid_Sub_Authority_Count (pSid
));
422 END: Wrapper functions around OpenProcessToken
423 and other functions in advapi32.dll that are only
424 supported in Windows NT / 2k / XP
428 /* Equivalent of strerror for W32 error codes. */
430 w32_strerror (int error_no
)
432 static char buf
[500];
435 error_no
= GetLastError ();
438 if (!FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM
, NULL
,
440 0, /* choose most suitable language */
441 buf
, sizeof (buf
), NULL
))
442 sprintf (buf
, "w32 error %u", error_no
);
446 /* Return 1 if P is a valid pointer to an object of size SIZE. Return
447 0 if P is NOT a valid pointer. Return -1 if we cannot validate P.
449 This is called from alloc.c:valid_pointer_p. */
451 w32_valid_pointer_p (void *p
, int size
)
454 HANDLE h
= OpenProcess (PROCESS_VM_READ
, FALSE
, GetCurrentProcessId ());
458 unsigned char *buf
= alloca (size
);
459 int retval
= ReadProcessMemory (h
, p
, buf
, size
, &done
);
468 static char startup_dir
[MAXPATHLEN
];
470 /* Get the current working directory. */
475 if (GetCurrentDirectory (MAXPATHLEN
, dir
) > 0)
479 /* Emacs doesn't actually change directory itself, and we want to
480 force our real wd to be where emacs.exe is to avoid unnecessary
481 conflicts when trying to rename or delete directories. */
482 strcpy (dir
, startup_dir
);
488 /* Emulate gethostname. */
490 gethostname (char *buffer
, int size
)
492 /* NT only allows small host names, so the buffer is
493 certainly large enough. */
494 return !GetComputerName (buffer
, &size
);
496 #endif /* HAVE_SOCKETS */
498 /* Emulate getloadavg. */
500 getloadavg (double loadavg
[], int nelem
)
504 /* A faithful emulation is going to have to be saved for a rainy day. */
505 for (i
= 0; i
< nelem
; i
++)
512 /* Emulate getpwuid, getpwnam and others. */
514 #define PASSWD_FIELD_SIZE 256
516 static char the_passwd_name
[PASSWD_FIELD_SIZE
];
517 static char the_passwd_passwd
[PASSWD_FIELD_SIZE
];
518 static char the_passwd_gecos
[PASSWD_FIELD_SIZE
];
519 static char the_passwd_dir
[PASSWD_FIELD_SIZE
];
520 static char the_passwd_shell
[PASSWD_FIELD_SIZE
];
522 static struct passwd the_passwd
=
534 static struct group the_group
=
536 /* There are no groups on NT, so we just return "root" as the
544 return the_passwd
.pw_uid
;
550 /* I could imagine arguing for checking to see whether the user is
551 in the Administrators group and returning a UID of 0 for that
552 case, but I don't know how wise that would be in the long run. */
559 return the_passwd
.pw_gid
;
571 if (uid
== the_passwd
.pw_uid
)
583 getpwnam (char *name
)
587 pw
= getpwuid (getuid ());
591 if (stricmp (name
, pw
->pw_name
))
600 /* Find the user's real name by opening the process token and
601 looking up the name associated with the user-sid in that token.
603 Use the relative portion of the identifier authority value from
604 the user-sid as the user id value (same for group id using the
605 primary group sid from the process token). */
607 char name
[UNLEN
+1], domain
[1025];
608 DWORD length
= sizeof (name
), dlength
= sizeof (domain
), trash
;
610 SID_NAME_USE user_type
;
611 unsigned char buf
[1024];
612 TOKEN_USER user_token
;
613 TOKEN_PRIMARY_GROUP group_token
;
615 if (open_process_token (GetCurrentProcess (), TOKEN_QUERY
, &token
)
616 && get_token_information (token
, TokenUser
,
617 (PVOID
)buf
, sizeof (buf
), &trash
)
618 && (memcpy (&user_token
, buf
, sizeof (user_token
)),
619 lookup_account_sid (NULL
, user_token
.User
.Sid
, name
, &length
,
620 domain
, &dlength
, &user_type
)))
622 strcpy (the_passwd
.pw_name
, name
);
623 /* Determine a reasonable uid value. */
624 if (stricmp ("administrator", name
) == 0)
626 the_passwd
.pw_uid
= 500; /* well-known Administrator uid */
627 the_passwd
.pw_gid
= 513; /* well-known None gid */
631 /* Use the last sub-authority value of the RID, the relative
632 portion of the SID, as user/group ID. */
633 DWORD n_subauthorities
=
634 *get_sid_sub_authority_count (user_token
.User
.Sid
);
636 if (n_subauthorities
< 1)
637 the_passwd
.pw_uid
= 0; /* the "World" RID */
641 *get_sid_sub_authority (user_token
.User
.Sid
,
642 n_subauthorities
- 1);
646 if (get_token_information (token
, TokenPrimaryGroup
,
647 (PVOID
)buf
, sizeof (buf
), &trash
))
649 memcpy (&group_token
, buf
, sizeof (group_token
));
651 *get_sid_sub_authority_count (group_token
.PrimaryGroup
);
653 if (n_subauthorities
< 1)
654 the_passwd
.pw_gid
= 0; /* the "World" RID */
658 *get_sid_sub_authority (group_token
.PrimaryGroup
,
659 n_subauthorities
- 1);
663 the_passwd
.pw_gid
= the_passwd
.pw_uid
;
666 /* If security calls are not supported (presumably because we
667 are running under Windows 95), fallback to this. */
668 else if (GetUserName (name
, &length
))
670 strcpy (the_passwd
.pw_name
, name
);
671 if (stricmp ("administrator", name
) == 0)
672 the_passwd
.pw_uid
= 0;
674 the_passwd
.pw_uid
= 123;
675 the_passwd
.pw_gid
= the_passwd
.pw_uid
;
679 strcpy (the_passwd
.pw_name
, "unknown");
680 the_passwd
.pw_uid
= 123;
681 the_passwd
.pw_gid
= 123;
684 /* Ensure HOME and SHELL are defined. */
685 if (getenv ("HOME") == NULL
)
687 if (getenv ("SHELL") == NULL
)
690 /* Set dir and shell from environment variables. */
691 strcpy (the_passwd
.pw_dir
, getenv ("HOME"));
692 strcpy (the_passwd
.pw_shell
, getenv ("SHELL"));
701 /* rand () on NT gives us 15 random bits...hack together 30 bits. */
702 return ((rand () << 15) | rand ());
712 /* Normalize filename by converting all path separators to
713 the specified separator. Also conditionally convert upper
714 case path name components to lower case. */
717 normalize_filename (fp
, path_sep
)
724 /* Always lower-case drive letters a-z, even if the filesystem
725 preserves case in filenames.
726 This is so filenames can be compared by string comparison
727 functions that are case-sensitive. Even case-preserving filesystems
728 do not distinguish case in drive letters. */
729 if (fp
[1] == ':' && *fp
>= 'A' && *fp
<= 'Z')
735 if (NILP (Vw32_downcase_file_names
))
739 if (*fp
== '/' || *fp
== '\\')
746 sep
= path_sep
; /* convert to this path separator */
747 elem
= fp
; /* start of current path element */
750 if (*fp
>= 'a' && *fp
<= 'z')
751 elem
= 0; /* don't convert this element */
753 if (*fp
== 0 || *fp
== ':')
755 sep
= *fp
; /* restore current separator (or 0) */
756 *fp
= '/'; /* after conversion of this element */
759 if (*fp
== '/' || *fp
== '\\')
761 if (elem
&& elem
!= fp
)
763 *fp
= 0; /* temporary end of string */
764 _strlwr (elem
); /* while we convert to lower case */
766 *fp
= sep
; /* convert (or restore) path separator */
767 elem
= fp
+ 1; /* next element starts after separator */
773 /* Destructively turn backslashes into slashes. */
775 dostounix_filename (p
)
778 normalize_filename (p
, '/');
781 /* Destructively turn slashes into backslashes. */
783 unixtodos_filename (p
)
786 normalize_filename (p
, '\\');
789 /* Remove all CR's that are followed by a LF.
790 (From msdos.c...probably should figure out a way to share it,
791 although this code isn't going to ever change.) */
795 register unsigned char *buf
;
797 unsigned char *np
= buf
;
798 unsigned char *startp
= buf
;
799 unsigned char *endp
= buf
+ n
;
803 while (buf
< endp
- 1)
807 if (*(++buf
) != 0x0a)
818 /* Parse the root part of file name, if present. Return length and
819 optionally store pointer to char after root. */
821 parse_root (char * name
, char ** pPath
)
828 /* find the root name of the volume if given */
829 if (isalpha (name
[0]) && name
[1] == ':')
831 /* skip past drive specifier */
833 if (IS_DIRECTORY_SEP (name
[0]))
836 else if (IS_DIRECTORY_SEP (name
[0]) && IS_DIRECTORY_SEP (name
[1]))
842 if (IS_DIRECTORY_SEP (*name
) && --slashes
== 0)
847 if (IS_DIRECTORY_SEP (name
[0]))
857 /* Get long base name for name; name is assumed to be absolute. */
859 get_long_basename (char * name
, char * buf
, int size
)
861 WIN32_FIND_DATA find_data
;
865 /* must be valid filename, no wild cards or other invalid characters */
866 if (_mbspbrk (name
, "*?|<>\""))
869 dir_handle
= FindFirstFile (name
, &find_data
);
870 if (dir_handle
!= INVALID_HANDLE_VALUE
)
872 if ((len
= strlen (find_data
.cFileName
)) < size
)
873 memcpy (buf
, find_data
.cFileName
, len
+ 1);
876 FindClose (dir_handle
);
881 /* Get long name for file, if possible (assumed to be absolute). */
883 w32_get_long_filename (char * name
, char * buf
, int size
)
888 char full
[ MAX_PATH
];
895 /* Use local copy for destructive modification. */
896 memcpy (full
, name
, len
+1);
897 unixtodos_filename (full
);
899 /* Copy root part verbatim. */
900 len
= parse_root (full
, &p
);
901 memcpy (o
, full
, len
);
906 while (p
!= NULL
&& *p
)
909 p
= strchr (q
, '\\');
911 len
= get_long_basename (full
, o
, size
);
934 is_unc_volume (const char *filename
)
936 const char *ptr
= filename
;
938 if (!IS_DIRECTORY_SEP (ptr
[0]) || !IS_DIRECTORY_SEP (ptr
[1]) || !ptr
[2])
941 if (_mbspbrk (ptr
+ 2, "*?|<>\"\\/"))
947 /* Routines that are no-ops on NT but are defined to get Emacs to compile. */
950 sigsetmask (int signal_mask
)
974 setpgrp (int pid
, int gid
)
985 #define REG_ROOT "SOFTWARE\\GNU\\Emacs"
988 w32_get_resource (key
, lpdwtype
)
993 HKEY hrootkey
= NULL
;
996 /* Check both the current user and the local machine to see if
997 we have any resources. */
999 if (RegOpenKeyEx (HKEY_CURRENT_USER
, REG_ROOT
, 0, KEY_READ
, &hrootkey
) == ERROR_SUCCESS
)
1003 if (RegQueryValueEx (hrootkey
, key
, NULL
, NULL
, NULL
, &cbData
) == ERROR_SUCCESS
1004 && (lpvalue
= (LPBYTE
) xmalloc (cbData
)) != NULL
1005 && RegQueryValueEx (hrootkey
, key
, NULL
, lpdwtype
, lpvalue
, &cbData
) == ERROR_SUCCESS
)
1007 RegCloseKey (hrootkey
);
1011 if (lpvalue
) xfree (lpvalue
);
1013 RegCloseKey (hrootkey
);
1016 if (RegOpenKeyEx (HKEY_LOCAL_MACHINE
, REG_ROOT
, 0, KEY_READ
, &hrootkey
) == ERROR_SUCCESS
)
1020 if (RegQueryValueEx (hrootkey
, key
, NULL
, NULL
, NULL
, &cbData
) == ERROR_SUCCESS
1021 && (lpvalue
= (LPBYTE
) xmalloc (cbData
)) != NULL
1022 && RegQueryValueEx (hrootkey
, key
, NULL
, lpdwtype
, lpvalue
, &cbData
) == ERROR_SUCCESS
)
1024 RegCloseKey (hrootkey
);
1028 if (lpvalue
) xfree (lpvalue
);
1030 RegCloseKey (hrootkey
);
1036 char *get_emacs_configuration (void);
1037 extern Lisp_Object Vsystem_configuration
;
1040 init_environment (char ** argv
)
1042 static const char * const tempdirs
[] = {
1043 "$TMPDIR", "$TEMP", "$TMP", "c:/"
1048 const int imax
= sizeof (tempdirs
) / sizeof (tempdirs
[0]);
1050 /* Make sure they have a usable $TMPDIR. Many Emacs functions use
1051 temporary files and assume "/tmp" if $TMPDIR is unset, which
1052 will break on DOS/Windows. Refuse to work if we cannot find
1053 a directory, not even "c:/", usable for that purpose. */
1054 for (i
= 0; i
< imax
; i
++)
1056 const char *tmp
= tempdirs
[i
];
1059 tmp
= getenv (tmp
+ 1);
1060 /* Note that `access' can lie to us if the directory resides on a
1061 read-only filesystem, like CD-ROM or a write-protected floppy.
1062 The only way to be really sure is to actually create a file and
1063 see if it succeeds. But I think that's too much to ask. */
1064 if (tmp
&& _access (tmp
, D_OK
) == 0)
1066 char * var
= alloca (strlen (tmp
) + 8);
1067 sprintf (var
, "TMPDIR=%s", tmp
);
1068 _putenv (strdup (var
));
1075 Fcons (build_string ("no usable temporary directories found!!"),
1077 "While setting TMPDIR: ");
1079 /* Check for environment variables and use registry settings if they
1080 don't exist. Fallback on default values where applicable. */
1085 char locale_name
[32];
1086 struct stat ignored
;
1087 char default_home
[MAX_PATH
];
1089 static const struct env_entry
1096 {"PRELOAD_WINSOCK", NULL
},
1097 {"emacs_dir", "C:/emacs"},
1098 {"EMACSLOADPATH", "%emacs_dir%/site-lisp;%emacs_dir%/../site-lisp;%emacs_dir%/lisp;%emacs_dir%/leim"},
1099 {"SHELL", "%emacs_dir%/bin/cmdproxy.exe"},
1100 {"EMACSDATA", "%emacs_dir%/etc"},
1101 {"EMACSPATH", "%emacs_dir%/bin"},
1102 /* We no longer set INFOPATH because Info-default-directory-list
1104 /* {"INFOPATH", "%emacs_dir%/info"}, */
1105 {"EMACSDOC", "%emacs_dir%/etc"},
1110 #define N_ENV_VARS sizeof(dflt_envvars)/sizeof(dflt_envvars[0])
1112 /* We need to copy dflt_envvars[] and work on the copy because we
1113 don't want the dumped Emacs to inherit the values of
1114 environment variables we saw during dumping (which could be on
1115 a different system). The defaults above must be left intact. */
1116 struct env_entry env_vars
[N_ENV_VARS
];
1118 for (i
= 0; i
< N_ENV_VARS
; i
++)
1119 env_vars
[i
] = dflt_envvars
[i
];
1121 /* For backwards compatibility, check if a .emacs file exists in C:/
1122 If not, then we can try to default to the appdata directory under the
1123 user's profile, which is more likely to be writable. */
1124 if (stat ("C:/.emacs", &ignored
) < 0)
1126 HRESULT profile_result
;
1127 /* Dynamically load ShGetFolderPath, as it won't exist on versions
1128 of Windows 95 and NT4 that have not been updated to include
1129 MSIE 5. Also we don't link with shell32.dll by default. */
1130 HMODULE shell32_dll
;
1131 ShGetFolderPath_fn get_folder_path
;
1132 shell32_dll
= GetModuleHandle ("shell32.dll");
1133 get_folder_path
= (ShGetFolderPath_fn
)
1134 GetProcAddress (shell32_dll
, "SHGetFolderPathA");
1136 if (get_folder_path
!= NULL
)
1138 profile_result
= get_folder_path (NULL
, CSIDL_APPDATA
, NULL
,
1141 /* If we can't get the appdata dir, revert to old behaviour. */
1142 if (profile_result
== S_OK
)
1143 env_vars
[0].def_value
= default_home
;
1146 /* Unload shell32.dll, it is not needed anymore. */
1147 FreeLibrary (shell32_dll
);
1150 /* Get default locale info and use it for LANG. */
1151 if (GetLocaleInfo (LOCALE_USER_DEFAULT
,
1152 LOCALE_SABBREVLANGNAME
| LOCALE_USE_CP_ACP
,
1153 locale_name
, sizeof (locale_name
)))
1155 for (i
= 0; i
< N_ENV_VARS
; i
++)
1157 if (strcmp (env_vars
[i
].name
, "LANG") == 0)
1159 env_vars
[i
].def_value
= locale_name
;
1165 #define SET_ENV_BUF_SIZE (4 * MAX_PATH) /* to cover EMACSLOADPATH */
1167 /* Treat emacs_dir specially: set it unconditionally based on our
1168 location, if it appears that we are running from the bin subdir
1169 of a standard installation. */
1172 char modname
[MAX_PATH
];
1174 if (!GetModuleFileName (NULL
, modname
, MAX_PATH
))
1176 if ((p
= strrchr (modname
, '\\')) == NULL
)
1180 if ((p
= strrchr (modname
, '\\')) && stricmp (p
, "\\bin") == 0)
1182 char buf
[SET_ENV_BUF_SIZE
];
1185 for (p
= modname
; *p
; p
++)
1186 if (*p
== '\\') *p
= '/';
1188 _snprintf (buf
, sizeof(buf
)-1, "emacs_dir=%s", modname
);
1189 _putenv (strdup (buf
));
1191 /* Handle running emacs from the build directory: src/oo-spd/i386/ */
1193 /* FIXME: should use substring of get_emacs_configuration ().
1194 But I don't think the Windows build supports alpha, mips etc
1195 anymore, so have taken the easy option for now. */
1196 else if (p
&& stricmp (p
, "\\i386") == 0)
1199 p
= strrchr (modname
, '\\');
1203 p
= strrchr (modname
, '\\');
1204 if (p
&& stricmp (p
, "\\src") == 0)
1206 char buf
[SET_ENV_BUF_SIZE
];
1209 for (p
= modname
; *p
; p
++)
1210 if (*p
== '\\') *p
= '/';
1212 _snprintf (buf
, sizeof(buf
)-1, "emacs_dir=%s", modname
);
1213 _putenv (strdup (buf
));
1219 for (i
= 0; i
< N_ENV_VARS
; i
++)
1221 if (!getenv (env_vars
[i
].name
))
1225 if ((lpval
= w32_get_resource (env_vars
[i
].name
, &dwType
)) == NULL
1226 /* Also ignore empty environment variables. */
1229 if (lpval
) xfree (lpval
);
1230 lpval
= env_vars
[i
].def_value
;
1231 dwType
= REG_EXPAND_SZ
;
1237 char buf1
[SET_ENV_BUF_SIZE
], buf2
[SET_ENV_BUF_SIZE
];
1239 if (dwType
== REG_EXPAND_SZ
)
1240 ExpandEnvironmentStrings ((LPSTR
) lpval
, buf1
, sizeof(buf1
));
1241 else if (dwType
== REG_SZ
)
1242 strcpy (buf1
, lpval
);
1243 if (dwType
== REG_EXPAND_SZ
|| dwType
== REG_SZ
)
1245 _snprintf (buf2
, sizeof(buf2
)-1, "%s=%s", env_vars
[i
].name
,
1247 _putenv (strdup (buf2
));
1257 /* Rebuild system configuration to reflect invoking system. */
1258 Vsystem_configuration
= build_string (EMACS_CONFIGURATION
);
1260 /* Another special case: on NT, the PATH variable is actually named
1261 "Path" although cmd.exe (perhaps NT itself) arranges for
1262 environment variable lookup and setting to be case insensitive.
1263 However, Emacs assumes a fully case sensitive environment, so we
1264 need to change "Path" to "PATH" to match the expectations of
1265 various elisp packages. We do this by the sneaky method of
1266 modifying the string in the C runtime environ entry.
1268 The same applies to COMSPEC. */
1272 for (envp
= environ
; *envp
; envp
++)
1273 if (_strnicmp (*envp
, "PATH=", 5) == 0)
1274 memcpy (*envp
, "PATH=", 5);
1275 else if (_strnicmp (*envp
, "COMSPEC=", 8) == 0)
1276 memcpy (*envp
, "COMSPEC=", 8);
1279 /* Remember the initial working directory for getwd, then make the
1280 real wd be the location of emacs.exe to avoid conflicts when
1281 renaming or deleting directories. (We also don't call chdir when
1282 running subprocesses for the same reason.) */
1283 if (!GetCurrentDirectory (MAXPATHLEN
, startup_dir
))
1288 static char modname
[MAX_PATH
];
1290 if (!GetModuleFileName (NULL
, modname
, MAX_PATH
))
1292 if ((p
= strrchr (modname
, '\\')) == NULL
)
1296 SetCurrentDirectory (modname
);
1298 /* Ensure argv[0] has the full path to Emacs. */
1303 /* Determine if there is a middle mouse button, to allow parse_button
1304 to decide whether right mouse events should be mouse-2 or
1306 w32_num_mouse_buttons
= GetSystemMetrics (SM_CMOUSEBUTTONS
);
1312 emacs_root_dir (void)
1314 static char root_dir
[FILENAME_MAX
];
1317 p
= getenv ("emacs_dir");
1320 strcpy (root_dir
, p
);
1321 root_dir
[parse_root (root_dir
, NULL
)] = '\0';
1322 dostounix_filename (root_dir
);
1326 /* We don't have scripts to automatically determine the system configuration
1327 for Emacs before it's compiled, and we don't want to have to make the
1328 user enter it, so we define EMACS_CONFIGURATION to invoke this runtime
1332 get_emacs_configuration (void)
1334 char *arch
, *oem
, *os
;
1336 static char configuration_buffer
[32];
1338 /* Determine the processor type. */
1339 switch (get_processor_type ())
1342 #ifdef PROCESSOR_INTEL_386
1343 case PROCESSOR_INTEL_386
:
1344 case PROCESSOR_INTEL_486
:
1345 case PROCESSOR_INTEL_PENTIUM
:
1350 #ifdef PROCESSOR_MIPS_R2000
1351 case PROCESSOR_MIPS_R2000
:
1352 case PROCESSOR_MIPS_R3000
:
1353 case PROCESSOR_MIPS_R4000
:
1358 #ifdef PROCESSOR_ALPHA_21064
1359 case PROCESSOR_ALPHA_21064
:
1369 /* Use the OEM field to reflect the compiler/library combination. */
1371 #define COMPILER_NAME "msvc"
1374 #define COMPILER_NAME "mingw"
1376 #define COMPILER_NAME "unknown"
1379 oem
= COMPILER_NAME
;
1381 switch (osinfo_cache
.dwPlatformId
) {
1382 case VER_PLATFORM_WIN32_NT
:
1384 build_num
= osinfo_cache
.dwBuildNumber
;
1386 case VER_PLATFORM_WIN32_WINDOWS
:
1387 if (osinfo_cache
.dwMinorVersion
== 0) {
1392 build_num
= LOWORD (osinfo_cache
.dwBuildNumber
);
1394 case VER_PLATFORM_WIN32s
:
1395 /* Not supported, should not happen. */
1397 build_num
= LOWORD (osinfo_cache
.dwBuildNumber
);
1405 if (osinfo_cache
.dwPlatformId
== VER_PLATFORM_WIN32_NT
) {
1406 sprintf (configuration_buffer
, "%s-%s-%s%d.%d.%d", arch
, oem
, os
,
1407 get_w32_major_version (), get_w32_minor_version (), build_num
);
1409 sprintf (configuration_buffer
, "%s-%s-%s.%d", arch
, oem
, os
, build_num
);
1412 return configuration_buffer
;
1416 get_emacs_configuration_options (void)
1418 static char options_buffer
[256];
1420 /* Work out the effective configure options for this build. */
1422 #define COMPILER_VERSION "--with-msvc (%d.%02d)", _MSC_VER / 100, _MSC_VER % 100
1425 #define COMPILER_VERSION "--with-gcc (%d.%d)", __GNUC__, __GNUC_MINOR__
1427 #define COMPILER_VERSION ""
1431 sprintf (options_buffer
, COMPILER_VERSION
);
1433 strcat (options_buffer
, " --no-opt");
1436 strcat (options_buffer
, " --cflags");
1437 strcat (options_buffer
, USER_CFLAGS
);
1440 strcat (options_buffer
, " --ldflags");
1441 strcat (options_buffer
, USER_LDFLAGS
);
1443 return options_buffer
;
1447 #include <sys/timeb.h>
1449 /* Emulate gettimeofday (Ulrich Leodolter, 1/11/95). */
1451 gettimeofday (struct timeval
*tv
, struct timezone
*tz
)
1456 tv
->tv_sec
= tb
.time
;
1457 tv
->tv_usec
= tb
.millitm
* 1000L;
1460 tz
->tz_minuteswest
= tb
.timezone
; /* minutes west of Greenwich */
1461 tz
->tz_dsttime
= tb
.dstflag
; /* type of dst correction */
1465 /* ------------------------------------------------------------------------- */
1466 /* IO support and wrapper functions for W32 API. */
1467 /* ------------------------------------------------------------------------- */
1469 /* Place a wrapper around the MSVC version of ctime. It returns NULL
1470 on network directories, so we handle that case here.
1471 (Ulrich Leodolter, 1/11/95). */
1473 sys_ctime (const time_t *t
)
1475 char *str
= (char *) ctime (t
);
1476 return (str
? str
: "Sun Jan 01 00:00:00 1970");
1479 /* Emulate sleep...we could have done this with a define, but that
1480 would necessitate including windows.h in the files that used it.
1481 This is much easier. */
1483 sys_sleep (int seconds
)
1485 Sleep (seconds
* 1000);
1488 /* Internal MSVC functions for low-level descriptor munging */
1489 extern int __cdecl
_set_osfhnd (int fd
, long h
);
1490 extern int __cdecl
_free_osfhnd (int fd
);
1492 /* parallel array of private info on file handles */
1493 filedesc fd_info
[ MAXDESC
];
1495 typedef struct volume_info_data
{
1496 struct volume_info_data
* next
;
1498 /* time when info was obtained */
1501 /* actual volume info */
1510 /* Global referenced by various functions. */
1511 static volume_info_data volume_info
;
1513 /* Vector to indicate which drives are local and fixed (for which cached
1514 data never expires). */
1515 static BOOL fixed_drives
[26];
1517 /* Consider cached volume information to be stale if older than 10s,
1518 at least for non-local drives. Info for fixed drives is never stale. */
1519 #define DRIVE_INDEX( c ) ( (c) <= 'Z' ? (c) - 'A' : (c) - 'a' )
1520 #define VOLINFO_STILL_VALID( root_dir, info ) \
1521 ( ( isalpha (root_dir[0]) && \
1522 fixed_drives[ DRIVE_INDEX (root_dir[0]) ] ) \
1523 || GetTickCount () - info->timestamp < 10000 )
1525 /* Cache support functions. */
1527 /* Simple linked list with linear search is sufficient. */
1528 static volume_info_data
*volume_cache
= NULL
;
1530 static volume_info_data
*
1531 lookup_volume_info (char * root_dir
)
1533 volume_info_data
* info
;
1535 for (info
= volume_cache
; info
; info
= info
->next
)
1536 if (stricmp (info
->root_dir
, root_dir
) == 0)
1542 add_volume_info (char * root_dir
, volume_info_data
* info
)
1544 info
->root_dir
= xstrdup (root_dir
);
1545 info
->next
= volume_cache
;
1546 volume_cache
= info
;
1550 /* Wrapper for GetVolumeInformation, which uses caching to avoid
1551 performance penalty (~2ms on 486 for local drives, 7.5ms for local
1552 cdrom drive, ~5-10ms or more for remote drives on LAN). */
1554 GetCachedVolumeInformation (char * root_dir
)
1556 volume_info_data
* info
;
1557 char default_root
[ MAX_PATH
];
1559 /* NULL for root_dir means use root from current directory. */
1560 if (root_dir
== NULL
)
1562 if (GetCurrentDirectory (MAX_PATH
, default_root
) == 0)
1564 parse_root (default_root
, &root_dir
);
1566 root_dir
= default_root
;
1569 /* Local fixed drives can be cached permanently. Removable drives
1570 cannot be cached permanently, since the volume name and serial
1571 number (if nothing else) can change. Remote drives should be
1572 treated as if they are removable, since there is no sure way to
1573 tell whether they are or not. Also, the UNC association of drive
1574 letters mapped to remote volumes can be changed at any time (even
1575 by other processes) without notice.
1577 As a compromise, so we can benefit from caching info for remote
1578 volumes, we use a simple expiry mechanism to invalidate cache
1579 entries that are more than ten seconds old. */
1582 /* No point doing this, because WNetGetConnection is even slower than
1583 GetVolumeInformation, consistently taking ~50ms on a 486 (FWIW,
1584 GetDriveType is about the only call of this type which does not
1585 involve network access, and so is extremely quick). */
1587 /* Map drive letter to UNC if remote. */
1588 if ( isalpha( root_dir
[0] ) && !fixed
[ DRIVE_INDEX( root_dir
[0] ) ] )
1590 char remote_name
[ 256 ];
1591 char drive
[3] = { root_dir
[0], ':' };
1593 if (WNetGetConnection (drive
, remote_name
, sizeof (remote_name
))
1595 /* do something */ ;
1599 info
= lookup_volume_info (root_dir
);
1601 if (info
== NULL
|| ! VOLINFO_STILL_VALID (root_dir
, info
))
1609 /* Info is not cached, or is stale. */
1610 if (!GetVolumeInformation (root_dir
,
1611 name
, sizeof (name
),
1615 type
, sizeof (type
)))
1618 /* Cache the volume information for future use, overwriting existing
1619 entry if present. */
1622 info
= (volume_info_data
*) xmalloc (sizeof (volume_info_data
));
1623 add_volume_info (root_dir
, info
);
1631 info
->name
= xstrdup (name
);
1632 info
->serialnum
= serialnum
;
1633 info
->maxcomp
= maxcomp
;
1634 info
->flags
= flags
;
1635 info
->type
= xstrdup (type
);
1636 info
->timestamp
= GetTickCount ();
1642 /* Get information on the volume where name is held; set path pointer to
1643 start of pathname in name (past UNC header\volume header if present). */
1645 get_volume_info (const char * name
, const char ** pPath
)
1647 char temp
[MAX_PATH
];
1648 char *rootname
= NULL
; /* default to current volume */
1649 volume_info_data
* info
;
1654 /* find the root name of the volume if given */
1655 if (isalpha (name
[0]) && name
[1] == ':')
1663 else if (IS_DIRECTORY_SEP (name
[0]) && IS_DIRECTORY_SEP (name
[1]))
1670 if (IS_DIRECTORY_SEP (*name
) && --slashes
== 0)
1683 info
= GetCachedVolumeInformation (rootname
);
1686 /* Set global referenced by other functions. */
1687 volume_info
= *info
;
1693 /* Determine if volume is FAT format (ie. only supports short 8.3
1694 names); also set path pointer to start of pathname in name. */
1696 is_fat_volume (const char * name
, const char ** pPath
)
1698 if (get_volume_info (name
, pPath
))
1699 return (volume_info
.maxcomp
== 12);
1703 /* Map filename to a valid 8.3 name if necessary. */
1705 map_w32_filename (const char * name
, const char ** pPath
)
1707 static char shortname
[MAX_PATH
];
1708 char * str
= shortname
;
1711 const char * save_name
= name
;
1713 if (strlen (name
) >= MAX_PATH
)
1715 /* Return a filename which will cause callers to fail. */
1716 strcpy (shortname
, "?");
1720 if (is_fat_volume (name
, (const char **)&path
)) /* truncate to 8.3 */
1722 register int left
= 8; /* maximum number of chars in part */
1723 register int extn
= 0; /* extension added? */
1724 register int dots
= 2; /* maximum number of dots allowed */
1727 *str
++ = *name
++; /* skip past UNC header */
1729 while ((c
= *name
++))
1736 extn
= 0; /* reset extension flags */
1737 dots
= 2; /* max 2 dots */
1738 left
= 8; /* max length 8 for main part */
1742 extn
= 0; /* reset extension flags */
1743 dots
= 2; /* max 2 dots */
1744 left
= 8; /* max length 8 for main part */
1749 /* Convert path components of the form .xxx to _xxx,
1750 but leave . and .. as they are. This allows .emacs
1751 to be read as _emacs, for example. */
1755 IS_DIRECTORY_SEP (*name
))
1770 extn
= 1; /* we've got an extension */
1771 left
= 3; /* 3 chars in extension */
1775 /* any embedded dots after the first are converted to _ */
1780 case '#': /* don't lose these, they're important */
1782 str
[-1] = c
; /* replace last character of part */
1787 *str
++ = tolower (c
); /* map to lower case (looks nicer) */
1789 dots
= 0; /* started a path component */
1798 strcpy (shortname
, name
);
1799 unixtodos_filename (shortname
);
1803 *pPath
= shortname
+ (path
- save_name
);
1809 is_exec (const char * name
)
1811 char * p
= strrchr (name
, '.');
1814 && (stricmp (p
, ".exe") == 0 ||
1815 stricmp (p
, ".com") == 0 ||
1816 stricmp (p
, ".bat") == 0 ||
1817 stricmp (p
, ".cmd") == 0));
1820 /* Emulate the Unix directory procedures opendir, closedir,
1821 and readdir. We can't use the procedures supplied in sysdep.c,
1822 so we provide them here. */
1824 struct direct dir_static
; /* simulated directory contents */
1825 static HANDLE dir_find_handle
= INVALID_HANDLE_VALUE
;
1826 static int dir_is_fat
;
1827 static char dir_pathname
[MAXPATHLEN
+1];
1828 static WIN32_FIND_DATA dir_find_data
;
1830 /* Support shares on a network resource as subdirectories of a read-only
1832 static HANDLE wnet_enum_handle
= INVALID_HANDLE_VALUE
;
1833 HANDLE
open_unc_volume (const char *);
1834 char *read_unc_volume (HANDLE
, char *, int);
1835 void close_unc_volume (HANDLE
);
1838 opendir (char *filename
)
1842 /* Opening is done by FindFirstFile. However, a read is inherent to
1843 this operation, so we defer the open until read time. */
1845 if (dir_find_handle
!= INVALID_HANDLE_VALUE
)
1847 if (wnet_enum_handle
!= INVALID_HANDLE_VALUE
)
1850 if (is_unc_volume (filename
))
1852 wnet_enum_handle
= open_unc_volume (filename
);
1853 if (wnet_enum_handle
== INVALID_HANDLE_VALUE
)
1857 if (!(dirp
= (DIR *) malloc (sizeof (DIR))))
1864 strncpy (dir_pathname
, map_w32_filename (filename
, NULL
), MAXPATHLEN
);
1865 dir_pathname
[MAXPATHLEN
] = '\0';
1866 dir_is_fat
= is_fat_volume (filename
, NULL
);
1872 closedir (DIR *dirp
)
1874 /* If we have a find-handle open, close it. */
1875 if (dir_find_handle
!= INVALID_HANDLE_VALUE
)
1877 FindClose (dir_find_handle
);
1878 dir_find_handle
= INVALID_HANDLE_VALUE
;
1880 else if (wnet_enum_handle
!= INVALID_HANDLE_VALUE
)
1882 close_unc_volume (wnet_enum_handle
);
1883 wnet_enum_handle
= INVALID_HANDLE_VALUE
;
1885 xfree ((char *) dirp
);
1891 int downcase
= !NILP (Vw32_downcase_file_names
);
1893 if (wnet_enum_handle
!= INVALID_HANDLE_VALUE
)
1895 if (!read_unc_volume (wnet_enum_handle
,
1896 dir_find_data
.cFileName
,
1900 /* If we aren't dir_finding, do a find-first, otherwise do a find-next. */
1901 else if (dir_find_handle
== INVALID_HANDLE_VALUE
)
1903 char filename
[MAXNAMLEN
+ 3];
1906 strcpy (filename
, dir_pathname
);
1907 ln
= strlen (filename
) - 1;
1908 if (!IS_DIRECTORY_SEP (filename
[ln
]))
1909 strcat (filename
, "\\");
1910 strcat (filename
, "*");
1912 dir_find_handle
= FindFirstFile (filename
, &dir_find_data
);
1914 if (dir_find_handle
== INVALID_HANDLE_VALUE
)
1919 if (!FindNextFile (dir_find_handle
, &dir_find_data
))
1923 /* Emacs never uses this value, so don't bother making it match
1924 value returned by stat(). */
1925 dir_static
.d_ino
= 1;
1927 strcpy (dir_static
.d_name
, dir_find_data
.cFileName
);
1929 /* If the file name in cFileName[] includes `?' characters, it means
1930 the original file name used characters that cannot be represented
1931 by the current ANSI codepage. To avoid total lossage, retrieve
1932 the short 8+3 alias of the long file name. */
1933 if (_mbspbrk (dir_static
.d_name
, "?"))
1935 strcpy (dir_static
.d_name
, dir_find_data
.cAlternateFileName
);
1936 downcase
= 1; /* 8+3 aliases are returned in all caps */
1938 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
1939 dir_static
.d_reclen
= sizeof (struct direct
) - MAXNAMLEN
+ 3 +
1940 dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
1942 /* If the file name in cFileName[] includes `?' characters, it means
1943 the original file name used characters that cannot be represented
1944 by the current ANSI codepage. To avoid total lossage, retrieve
1945 the short 8+3 alias of the long file name. */
1946 if (_mbspbrk (dir_find_data
.cFileName
, "?"))
1948 strcpy (dir_static
.d_name
, dir_find_data
.cAlternateFileName
);
1949 /* 8+3 aliases are returned in all caps, which could break
1950 various alists that look at filenames' extensions. */
1954 strcpy (dir_static
.d_name
, dir_find_data
.cFileName
);
1955 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
1957 _strlwr (dir_static
.d_name
);
1961 for (p
= dir_static
.d_name
; *p
; p
++)
1962 if (*p
>= 'a' && *p
<= 'z')
1965 _strlwr (dir_static
.d_name
);
1972 open_unc_volume (const char *path
)
1978 nr
.dwScope
= RESOURCE_GLOBALNET
;
1979 nr
.dwType
= RESOURCETYPE_DISK
;
1980 nr
.dwDisplayType
= RESOURCEDISPLAYTYPE_SERVER
;
1981 nr
.dwUsage
= RESOURCEUSAGE_CONTAINER
;
1982 nr
.lpLocalName
= NULL
;
1983 nr
.lpRemoteName
= (LPSTR
)map_w32_filename (path
, NULL
);
1984 nr
.lpComment
= NULL
;
1985 nr
.lpProvider
= NULL
;
1987 result
= WNetOpenEnum(RESOURCE_GLOBALNET
, RESOURCETYPE_DISK
,
1988 RESOURCEUSAGE_CONNECTABLE
, &nr
, &henum
);
1990 if (result
== NO_ERROR
)
1993 return INVALID_HANDLE_VALUE
;
1997 read_unc_volume (HANDLE henum
, char *readbuf
, int size
)
2001 DWORD bufsize
= 512;
2006 buffer
= alloca (bufsize
);
2007 result
= WNetEnumResource (wnet_enum_handle
, &count
, buffer
, &bufsize
);
2008 if (result
!= NO_ERROR
)
2011 /* WNetEnumResource returns \\resource\share...skip forward to "share". */
2012 ptr
= ((LPNETRESOURCE
) buffer
)->lpRemoteName
;
2014 while (*ptr
&& !IS_DIRECTORY_SEP (*ptr
)) ptr
++;
2017 strncpy (readbuf
, ptr
, size
);
2022 close_unc_volume (HANDLE henum
)
2024 if (henum
!= INVALID_HANDLE_VALUE
)
2025 WNetCloseEnum (henum
);
2029 unc_volume_file_attributes (const char *path
)
2034 henum
= open_unc_volume (path
);
2035 if (henum
== INVALID_HANDLE_VALUE
)
2038 attrs
= FILE_ATTRIBUTE_READONLY
| FILE_ATTRIBUTE_DIRECTORY
;
2040 close_unc_volume (henum
);
2045 /* Ensure a network connection is authenticated. */
2047 logon_network_drive (const char *path
)
2049 NETRESOURCE resource
;
2050 char share
[MAX_PATH
];
2054 sprintf (drive
, "%c:\\", path
[0]);
2056 /* Only logon to networked drives. */
2057 if ((!IS_DIRECTORY_SEP (path
[0]) || !IS_DIRECTORY_SEP (path
[1]))
2058 && GetDriveType (drive
) != DRIVE_REMOTE
)
2062 strncpy (share
, path
, MAX_PATH
);
2063 /* Truncate to just server and share name. */
2064 for (i
= 2; i
< MAX_PATH
; i
++)
2066 if (IS_DIRECTORY_SEP (share
[i
]) && ++n_slashes
> 3)
2073 resource
.dwType
= RESOURCETYPE_DISK
;
2074 resource
.lpLocalName
= NULL
;
2075 resource
.lpRemoteName
= share
;
2076 resource
.lpProvider
= NULL
;
2078 WNetAddConnection2 (&resource
, NULL
, NULL
, CONNECT_INTERACTIVE
);
2081 /* Shadow some MSVC runtime functions to map requests for long filenames
2082 to reasonable short names if necessary. This was originally added to
2083 permit running Emacs on NT 3.1 on a FAT partition, which doesn't support
2087 sys_access (const char * path
, int mode
)
2091 /* MSVC implementation doesn't recognize D_OK. */
2092 path
= map_w32_filename (path
, NULL
);
2093 if (is_unc_volume (path
))
2095 attributes
= unc_volume_file_attributes (path
);
2096 if (attributes
== -1) {
2101 else if ((attributes
= GetFileAttributes (path
)) == -1)
2103 /* Should try mapping GetLastError to errno; for now just indicate
2104 that path doesn't exist. */
2108 if ((mode
& X_OK
) != 0 && !is_exec (path
))
2113 if ((mode
& W_OK
) != 0 && (attributes
& FILE_ATTRIBUTE_READONLY
) != 0)
2118 if ((mode
& D_OK
) != 0 && (attributes
& FILE_ATTRIBUTE_DIRECTORY
) == 0)
2127 sys_chdir (const char * path
)
2129 return _chdir (map_w32_filename (path
, NULL
));
2133 sys_chmod (const char * path
, int mode
)
2135 return _chmod (map_w32_filename (path
, NULL
), mode
);
2139 sys_chown (const char *path
, uid_t owner
, gid_t group
)
2141 if (sys_chmod (path
, S_IREAD
) == -1) /* check if file exists */
2147 sys_creat (const char * path
, int mode
)
2149 return _creat (map_w32_filename (path
, NULL
), mode
);
2153 sys_fopen(const char * path
, const char * mode
)
2157 const char * mode_save
= mode
;
2159 /* Force all file handles to be non-inheritable. This is necessary to
2160 ensure child processes don't unwittingly inherit handles that might
2161 prevent future file access. */
2165 else if (mode
[0] == 'w' || mode
[0] == 'a')
2166 oflag
= O_WRONLY
| O_CREAT
| O_TRUNC
;
2170 /* Only do simplistic option parsing. */
2174 oflag
&= ~(O_RDONLY
| O_WRONLY
);
2177 else if (mode
[0] == 'b')
2182 else if (mode
[0] == 't')
2189 fd
= _open (map_w32_filename (path
, NULL
), oflag
| _O_NOINHERIT
, 0644);
2193 return _fdopen (fd
, mode_save
);
2196 /* This only works on NTFS volumes, but is useful to have. */
2198 sys_link (const char * old
, const char * new)
2202 char oldname
[MAX_PATH
], newname
[MAX_PATH
];
2204 if (old
== NULL
|| new == NULL
)
2210 strcpy (oldname
, map_w32_filename (old
, NULL
));
2211 strcpy (newname
, map_w32_filename (new, NULL
));
2213 fileh
= CreateFile (oldname
, 0, 0, NULL
, OPEN_EXISTING
,
2214 FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
2215 if (fileh
!= INVALID_HANDLE_VALUE
)
2219 /* Confusingly, the "alternate" stream name field does not apply
2220 when restoring a hard link, and instead contains the actual
2221 stream data for the link (ie. the name of the link to create).
2222 The WIN32_STREAM_ID structure before the cStreamName field is
2223 the stream header, which is then immediately followed by the
2227 WIN32_STREAM_ID wid
;
2228 WCHAR wbuffer
[MAX_PATH
]; /* extra space for link name */
2231 wlen
= MultiByteToWideChar (CP_ACP
, MB_PRECOMPOSED
, newname
, -1,
2232 data
.wid
.cStreamName
, MAX_PATH
);
2235 LPVOID context
= NULL
;
2238 data
.wid
.dwStreamId
= BACKUP_LINK
;
2239 data
.wid
.dwStreamAttributes
= 0;
2240 data
.wid
.Size
.LowPart
= wlen
* sizeof(WCHAR
);
2241 data
.wid
.Size
.HighPart
= 0;
2242 data
.wid
.dwStreamNameSize
= 0;
2244 if (BackupWrite (fileh
, (LPBYTE
)&data
,
2245 offsetof (WIN32_STREAM_ID
, cStreamName
)
2246 + data
.wid
.Size
.LowPart
,
2247 &wbytes
, FALSE
, FALSE
, &context
)
2248 && BackupWrite (fileh
, NULL
, 0, &wbytes
, TRUE
, FALSE
, &context
))
2255 /* Should try mapping GetLastError to errno; for now just
2256 indicate a general error (eg. links not supported). */
2257 errno
= EINVAL
; // perhaps EMLINK?
2261 CloseHandle (fileh
);
2270 sys_mkdir (const char * path
)
2272 return _mkdir (map_w32_filename (path
, NULL
));
2275 /* Because of long name mapping issues, we need to implement this
2276 ourselves. Also, MSVC's _mktemp returns NULL when it can't generate
2277 a unique name, instead of setting the input template to an empty
2280 Standard algorithm seems to be use pid or tid with a letter on the
2281 front (in place of the 6 X's) and cycle through the letters to find a
2282 unique name. We extend that to allow any reasonable character as the
2283 first of the 6 X's. */
2285 sys_mktemp (char * template)
2289 unsigned uid
= GetCurrentThreadId ();
2290 static char first_char
[] = "abcdefghijklmnopqrstuvwyz0123456789!%-_@#";
2292 if (template == NULL
)
2294 p
= template + strlen (template);
2296 /* replace up to the last 5 X's with uid in decimal */
2297 while (--p
>= template && p
[0] == 'X' && --i
>= 0)
2299 p
[0] = '0' + uid
% 10;
2303 if (i
< 0 && p
[0] == 'X')
2308 int save_errno
= errno
;
2309 p
[0] = first_char
[i
];
2310 if (sys_access (template, 0) < 0)
2316 while (++i
< sizeof (first_char
));
2319 /* Template is badly formed or else we can't generate a unique name,
2320 so return empty string */
2326 sys_open (const char * path
, int oflag
, int mode
)
2328 const char* mpath
= map_w32_filename (path
, NULL
);
2329 /* Try to open file without _O_CREAT, to be able to write to hidden
2330 and system files. Force all file handles to be
2332 int res
= _open (mpath
, (oflag
& ~_O_CREAT
) | _O_NOINHERIT
, mode
);
2335 return _open (mpath
, oflag
| _O_NOINHERIT
, mode
);
2339 sys_rename (const char * oldname
, const char * newname
)
2342 char temp
[MAX_PATH
];
2344 /* MoveFile on Windows 95 doesn't correctly change the short file name
2345 alias in a number of circumstances (it is not easy to predict when
2346 just by looking at oldname and newname, unfortunately). In these
2347 cases, renaming through a temporary name avoids the problem.
2349 A second problem on Windows 95 is that renaming through a temp name when
2350 newname is uppercase fails (the final long name ends up in
2351 lowercase, although the short alias might be uppercase) UNLESS the
2352 long temp name is not 8.3.
2354 So, on Windows 95 we always rename through a temp name, and we make sure
2355 the temp name has a long extension to ensure correct renaming. */
2357 strcpy (temp
, map_w32_filename (oldname
, NULL
));
2359 if (os_subtype
== OS_WIN95
)
2365 oldname
= map_w32_filename (oldname
, NULL
);
2366 if (o
= strrchr (oldname
, '\\'))
2369 o
= (char *) oldname
;
2371 if (p
= strrchr (temp
, '\\'))
2378 /* Force temp name to require a manufactured 8.3 alias - this
2379 seems to make the second rename work properly. */
2380 sprintf (p
, "_.%s.%u", o
, i
);
2382 result
= rename (oldname
, temp
);
2384 /* This loop must surely terminate! */
2385 while (result
< 0 && errno
== EEXIST
);
2390 /* Emulate Unix behaviour - newname is deleted if it already exists
2391 (at least if it is a file; don't do this for directories).
2393 Since we mustn't do this if we are just changing the case of the
2394 file name (we would end up deleting the file we are trying to
2395 rename!), we let rename detect if the destination file already
2396 exists - that way we avoid the possible pitfalls of trying to
2397 determine ourselves whether two names really refer to the same
2398 file, which is not always possible in the general case. (Consider
2399 all the permutations of shared or subst'd drives, etc.) */
2401 newname
= map_w32_filename (newname
, NULL
);
2402 result
= rename (temp
, newname
);
2406 && _chmod (newname
, 0666) == 0
2407 && _unlink (newname
) == 0)
2408 result
= rename (temp
, newname
);
2414 sys_rmdir (const char * path
)
2416 return _rmdir (map_w32_filename (path
, NULL
));
2420 sys_unlink (const char * path
)
2422 path
= map_w32_filename (path
, NULL
);
2424 /* On Unix, unlink works without write permission. */
2425 _chmod (path
, 0666);
2426 return _unlink (path
);
2429 static FILETIME utc_base_ft
;
2430 static long double utc_base
;
2431 static int init
= 0;
2434 convert_time (FILETIME ft
)
2440 /* Determine the delta between 1-Jan-1601 and 1-Jan-1970. */
2449 st
.wMilliseconds
= 0;
2451 SystemTimeToFileTime (&st
, &utc_base_ft
);
2452 utc_base
= (long double) utc_base_ft
.dwHighDateTime
2453 * 4096.0L * 1024.0L * 1024.0L + utc_base_ft
.dwLowDateTime
;
2457 if (CompareFileTime (&ft
, &utc_base_ft
) < 0)
2460 ret
= (long double) ft
.dwHighDateTime
2461 * 4096.0L * 1024.0L * 1024.0L + ft
.dwLowDateTime
;
2463 return (time_t) (ret
* 1e-7L);
2467 convert_from_time_t (time_t time
, FILETIME
* pft
)
2473 /* Determine the delta between 1-Jan-1601 and 1-Jan-1970. */
2482 st
.wMilliseconds
= 0;
2484 SystemTimeToFileTime (&st
, &utc_base_ft
);
2485 utc_base
= (long double) utc_base_ft
.dwHighDateTime
2486 * 4096 * 1024 * 1024 + utc_base_ft
.dwLowDateTime
;
2490 /* time in 100ns units since 1-Jan-1601 */
2491 tmp
= (long double) time
* 1e7
+ utc_base
;
2492 pft
->dwHighDateTime
= (DWORD
) (tmp
/ (4096.0 * 1024 * 1024));
2493 pft
->dwLowDateTime
= (DWORD
) (tmp
- (4096.0 * 1024 * 1024) * pft
->dwHighDateTime
);
2497 /* No reason to keep this; faking inode values either by hashing or even
2498 using the file index from GetInformationByHandle, is not perfect and
2499 so by default Emacs doesn't use the inode values on Windows.
2500 Instead, we now determine file-truename correctly (except for
2501 possible drive aliasing etc). */
2503 /* Modified version of "PJW" algorithm (see the "Dragon" compiler book). */
2505 hashval (const unsigned char * str
)
2510 h
= (h
<< 4) + *str
++;
2516 /* Return the hash value of the canonical pathname, excluding the
2517 drive/UNC header, to get a hopefully unique inode number. */
2519 generate_inode_val (const char * name
)
2521 char fullname
[ MAX_PATH
];
2525 /* Get the truly canonical filename, if it exists. (Note: this
2526 doesn't resolve aliasing due to subst commands, or recognise hard
2528 if (!w32_get_long_filename ((char *)name
, fullname
, MAX_PATH
))
2531 parse_root (fullname
, &p
);
2532 /* Normal W32 filesystems are still case insensitive. */
2539 /* MSVC stat function can't cope with UNC names and has other bugs, so
2540 replace it with our own. This also allows us to calculate consistent
2541 inode values without hacks in the main Emacs code. */
2543 stat (const char * path
, struct stat
* buf
)
2546 WIN32_FIND_DATA wfd
;
2548 unsigned __int64 fake_inode
;
2551 int rootdir
= FALSE
;
2553 if (path
== NULL
|| buf
== NULL
)
2559 name
= (char *) map_w32_filename (path
, &path
);
2560 /* Must be valid filename, no wild cards or other invalid
2561 characters. We use _mbspbrk to support multibyte strings that
2562 might look to strpbrk as if they included literal *, ?, and other
2563 characters mentioned below that are disallowed by Windows
2565 if (_mbspbrk (name
, "*?|<>\""))
2571 /* If name is "c:/.." or "/.." then stat "c:/" or "/". */
2572 r
= IS_DEVICE_SEP (name
[1]) ? &name
[2] : name
;
2573 if (IS_DIRECTORY_SEP (r
[0]) && r
[1] == '.' && r
[2] == '.' && r
[3] == '\0')
2578 /* Remove trailing directory separator, unless name is the root
2579 directory of a drive or UNC volume in which case ensure there
2580 is a trailing separator. */
2581 len
= strlen (name
);
2582 rootdir
= (path
>= name
+ len
- 1
2583 && (IS_DIRECTORY_SEP (*path
) || *path
== 0));
2584 name
= strcpy (alloca (len
+ 2), name
);
2586 if (is_unc_volume (name
))
2588 DWORD attrs
= unc_volume_file_attributes (name
);
2593 memset (&wfd
, 0, sizeof (wfd
));
2594 wfd
.dwFileAttributes
= attrs
;
2595 wfd
.ftCreationTime
= utc_base_ft
;
2596 wfd
.ftLastAccessTime
= utc_base_ft
;
2597 wfd
.ftLastWriteTime
= utc_base_ft
;
2598 strcpy (wfd
.cFileName
, name
);
2602 if (!IS_DIRECTORY_SEP (name
[len
-1]))
2603 strcat (name
, "\\");
2604 if (GetDriveType (name
) < 2)
2609 memset (&wfd
, 0, sizeof (wfd
));
2610 wfd
.dwFileAttributes
= FILE_ATTRIBUTE_DIRECTORY
;
2611 wfd
.ftCreationTime
= utc_base_ft
;
2612 wfd
.ftLastAccessTime
= utc_base_ft
;
2613 wfd
.ftLastWriteTime
= utc_base_ft
;
2614 strcpy (wfd
.cFileName
, name
);
2618 if (IS_DIRECTORY_SEP (name
[len
-1]))
2621 /* (This is hacky, but helps when doing file completions on
2622 network drives.) Optimize by using information available from
2623 active readdir if possible. */
2624 len
= strlen (dir_pathname
);
2625 if (IS_DIRECTORY_SEP (dir_pathname
[len
-1]))
2627 if (dir_find_handle
!= INVALID_HANDLE_VALUE
2628 && strnicmp (name
, dir_pathname
, len
) == 0
2629 && IS_DIRECTORY_SEP (name
[len
])
2630 && stricmp (name
+ len
+ 1, dir_static
.d_name
) == 0)
2632 /* This was the last entry returned by readdir. */
2633 wfd
= dir_find_data
;
2637 logon_network_drive (name
);
2639 fh
= FindFirstFile (name
, &wfd
);
2640 if (fh
== INVALID_HANDLE_VALUE
)
2649 if (!NILP (Vw32_get_true_file_attributes
)
2650 && !(EQ (Vw32_get_true_file_attributes
, Qlocal
) &&
2651 GetDriveType (name
) == DRIVE_FIXED
)
2652 /* No access rights required to get info. */
2653 && (fh
= CreateFile (name
, 0, 0, NULL
, OPEN_EXISTING
,
2654 FILE_FLAG_BACKUP_SEMANTICS
, NULL
))
2655 != INVALID_HANDLE_VALUE
)
2657 /* This is more accurate in terms of gettting the correct number
2658 of links, but is quite slow (it is noticeable when Emacs is
2659 making a list of file name completions). */
2660 BY_HANDLE_FILE_INFORMATION info
;
2662 if (GetFileInformationByHandle (fh
, &info
))
2664 buf
->st_nlink
= info
.nNumberOfLinks
;
2665 /* Might as well use file index to fake inode values, but this
2666 is not guaranteed to be unique unless we keep a handle open
2667 all the time (even then there are situations where it is
2668 not unique). Reputedly, there are at most 48 bits of info
2669 (on NTFS, presumably less on FAT). */
2670 fake_inode
= info
.nFileIndexHigh
;
2672 fake_inode
+= info
.nFileIndexLow
;
2680 if (wfd
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)
2682 buf
->st_mode
= S_IFDIR
;
2686 switch (GetFileType (fh
))
2688 case FILE_TYPE_DISK
:
2689 buf
->st_mode
= S_IFREG
;
2691 case FILE_TYPE_PIPE
:
2692 buf
->st_mode
= S_IFIFO
;
2694 case FILE_TYPE_CHAR
:
2695 case FILE_TYPE_UNKNOWN
:
2697 buf
->st_mode
= S_IFCHR
;
2704 /* Don't bother to make this information more accurate. */
2705 buf
->st_mode
= (wfd
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
) ?
2712 /* Not sure if there is any point in this. */
2713 if (!NILP (Vw32_generate_fake_inodes
))
2714 fake_inode
= generate_inode_val (name
);
2715 else if (fake_inode
== 0)
2717 /* For want of something better, try to make everything unique. */
2718 static DWORD gen_num
= 0;
2719 fake_inode
= ++gen_num
;
2723 /* MSVC defines _ino_t to be short; other libc's might not. */
2724 if (sizeof (buf
->st_ino
) == 2)
2725 buf
->st_ino
= fake_inode
^ (fake_inode
>> 16);
2727 buf
->st_ino
= fake_inode
;
2729 /* consider files to belong to current user */
2730 buf
->st_uid
= the_passwd
.pw_uid
;
2731 buf
->st_gid
= the_passwd
.pw_gid
;
2733 /* volume_info is set indirectly by map_w32_filename */
2734 buf
->st_dev
= volume_info
.serialnum
;
2735 buf
->st_rdev
= volume_info
.serialnum
;
2738 buf
->st_size
= wfd
.nFileSizeLow
;
2740 /* Convert timestamps to Unix format. */
2741 buf
->st_mtime
= convert_time (wfd
.ftLastWriteTime
);
2742 buf
->st_atime
= convert_time (wfd
.ftLastAccessTime
);
2743 if (buf
->st_atime
== 0) buf
->st_atime
= buf
->st_mtime
;
2744 buf
->st_ctime
= convert_time (wfd
.ftCreationTime
);
2745 if (buf
->st_ctime
== 0) buf
->st_ctime
= buf
->st_mtime
;
2747 /* determine rwx permissions */
2748 if (wfd
.dwFileAttributes
& FILE_ATTRIBUTE_READONLY
)
2749 permission
= S_IREAD
;
2751 permission
= S_IREAD
| S_IWRITE
;
2753 if (wfd
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)
2754 permission
|= S_IEXEC
;
2755 else if (is_exec (name
))
2756 permission
|= S_IEXEC
;
2758 buf
->st_mode
|= permission
| (permission
>> 3) | (permission
>> 6);
2763 /* Provide fstat and utime as well as stat for consistent handling of
2766 fstat (int desc
, struct stat
* buf
)
2768 HANDLE fh
= (HANDLE
) _get_osfhandle (desc
);
2769 BY_HANDLE_FILE_INFORMATION info
;
2770 unsigned __int64 fake_inode
;
2773 switch (GetFileType (fh
) & ~FILE_TYPE_REMOTE
)
2775 case FILE_TYPE_DISK
:
2776 buf
->st_mode
= S_IFREG
;
2777 if (!GetFileInformationByHandle (fh
, &info
))
2783 case FILE_TYPE_PIPE
:
2784 buf
->st_mode
= S_IFIFO
;
2786 case FILE_TYPE_CHAR
:
2787 case FILE_TYPE_UNKNOWN
:
2789 buf
->st_mode
= S_IFCHR
;
2791 memset (&info
, 0, sizeof (info
));
2792 info
.dwFileAttributes
= 0;
2793 info
.ftCreationTime
= utc_base_ft
;
2794 info
.ftLastAccessTime
= utc_base_ft
;
2795 info
.ftLastWriteTime
= utc_base_ft
;
2798 if (info
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)
2799 buf
->st_mode
= S_IFDIR
;
2801 buf
->st_nlink
= info
.nNumberOfLinks
;
2802 /* Might as well use file index to fake inode values, but this
2803 is not guaranteed to be unique unless we keep a handle open
2804 all the time (even then there are situations where it is
2805 not unique). Reputedly, there are at most 48 bits of info
2806 (on NTFS, presumably less on FAT). */
2807 fake_inode
= info
.nFileIndexHigh
;
2809 fake_inode
+= info
.nFileIndexLow
;
2811 /* MSVC defines _ino_t to be short; other libc's might not. */
2812 if (sizeof (buf
->st_ino
) == 2)
2813 buf
->st_ino
= fake_inode
^ (fake_inode
>> 16);
2815 buf
->st_ino
= fake_inode
;
2817 /* consider files to belong to current user */
2818 buf
->st_uid
= the_passwd
.pw_uid
;
2819 buf
->st_gid
= the_passwd
.pw_gid
;
2821 buf
->st_dev
= info
.dwVolumeSerialNumber
;
2822 buf
->st_rdev
= info
.dwVolumeSerialNumber
;
2824 buf
->st_size
= info
.nFileSizeLow
;
2826 /* Convert timestamps to Unix format. */
2827 buf
->st_mtime
= convert_time (info
.ftLastWriteTime
);
2828 buf
->st_atime
= convert_time (info
.ftLastAccessTime
);
2829 if (buf
->st_atime
== 0) buf
->st_atime
= buf
->st_mtime
;
2830 buf
->st_ctime
= convert_time (info
.ftCreationTime
);
2831 if (buf
->st_ctime
== 0) buf
->st_ctime
= buf
->st_mtime
;
2833 /* determine rwx permissions */
2834 if (info
.dwFileAttributes
& FILE_ATTRIBUTE_READONLY
)
2835 permission
= S_IREAD
;
2837 permission
= S_IREAD
| S_IWRITE
;
2839 if (info
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)
2840 permission
|= S_IEXEC
;
2843 #if 0 /* no way of knowing the filename */
2844 char * p
= strrchr (name
, '.');
2846 (stricmp (p
, ".exe") == 0 ||
2847 stricmp (p
, ".com") == 0 ||
2848 stricmp (p
, ".bat") == 0 ||
2849 stricmp (p
, ".cmd") == 0))
2850 permission
|= S_IEXEC
;
2854 buf
->st_mode
|= permission
| (permission
>> 3) | (permission
>> 6);
2860 utime (const char *name
, struct utimbuf
*times
)
2862 struct utimbuf deftime
;
2869 deftime
.modtime
= deftime
.actime
= time (NULL
);
2873 /* Need write access to set times. */
2874 fh
= CreateFile (name
, GENERIC_WRITE
, FILE_SHARE_READ
| FILE_SHARE_WRITE
,
2875 0, OPEN_EXISTING
, 0, NULL
);
2878 convert_from_time_t (times
->actime
, &atime
);
2879 convert_from_time_t (times
->modtime
, &mtime
);
2880 if (!SetFileTime (fh
, NULL
, &atime
, &mtime
))
2898 /* Wrappers for winsock functions to map between our file descriptors
2899 and winsock's handles; also set h_errno for convenience.
2901 To allow Emacs to run on systems which don't have winsock support
2902 installed, we dynamically link to winsock on startup if present, and
2903 otherwise provide the minimum necessary functionality
2904 (eg. gethostname). */
2906 /* function pointers for relevant socket functions */
2907 int (PASCAL
*pfn_WSAStartup
) (WORD wVersionRequired
, LPWSADATA lpWSAData
);
2908 void (PASCAL
*pfn_WSASetLastError
) (int iError
);
2909 int (PASCAL
*pfn_WSAGetLastError
) (void);
2910 int (PASCAL
*pfn_WSAEventSelect
) (SOCKET s
, HANDLE hEventObject
, long lNetworkEvents
);
2911 HANDLE (PASCAL
*pfn_WSACreateEvent
) (void);
2912 int (PASCAL
*pfn_WSACloseEvent
) (HANDLE hEvent
);
2913 int (PASCAL
*pfn_socket
) (int af
, int type
, int protocol
);
2914 int (PASCAL
*pfn_bind
) (SOCKET s
, const struct sockaddr
*addr
, int namelen
);
2915 int (PASCAL
*pfn_connect
) (SOCKET s
, const struct sockaddr
*addr
, int namelen
);
2916 int (PASCAL
*pfn_ioctlsocket
) (SOCKET s
, long cmd
, u_long
*argp
);
2917 int (PASCAL
*pfn_recv
) (SOCKET s
, char * buf
, int len
, int flags
);
2918 int (PASCAL
*pfn_send
) (SOCKET s
, const char * buf
, int len
, int flags
);
2919 int (PASCAL
*pfn_closesocket
) (SOCKET s
);
2920 int (PASCAL
*pfn_shutdown
) (SOCKET s
, int how
);
2921 int (PASCAL
*pfn_WSACleanup
) (void);
2923 u_short (PASCAL
*pfn_htons
) (u_short hostshort
);
2924 u_short (PASCAL
*pfn_ntohs
) (u_short netshort
);
2925 unsigned long (PASCAL
*pfn_inet_addr
) (const char * cp
);
2926 int (PASCAL
*pfn_gethostname
) (char * name
, int namelen
);
2927 struct hostent
* (PASCAL
*pfn_gethostbyname
) (const char * name
);
2928 struct servent
* (PASCAL
*pfn_getservbyname
) (const char * name
, const char * proto
);
2929 int (PASCAL
*pfn_getpeername
) (SOCKET s
, struct sockaddr
*addr
, int * namelen
);
2930 int (PASCAL
*pfn_setsockopt
) (SOCKET s
, int level
, int optname
,
2931 const char * optval
, int optlen
);
2932 int (PASCAL
*pfn_listen
) (SOCKET s
, int backlog
);
2933 int (PASCAL
*pfn_getsockname
) (SOCKET s
, struct sockaddr
* name
,
2935 SOCKET (PASCAL
*pfn_accept
) (SOCKET s
, struct sockaddr
* addr
, int * addrlen
);
2936 int (PASCAL
*pfn_recvfrom
) (SOCKET s
, char * buf
, int len
, int flags
,
2937 struct sockaddr
* from
, int * fromlen
);
2938 int (PASCAL
*pfn_sendto
) (SOCKET s
, const char * buf
, int len
, int flags
,
2939 const struct sockaddr
* to
, int tolen
);
2941 /* SetHandleInformation is only needed to make sockets non-inheritable. */
2942 BOOL (WINAPI
*pfn_SetHandleInformation
) (HANDLE object
, DWORD mask
, DWORD flags
);
2943 #ifndef HANDLE_FLAG_INHERIT
2944 #define HANDLE_FLAG_INHERIT 1
2948 static int winsock_inuse
;
2953 if (winsock_lib
!= NULL
&& winsock_inuse
== 0)
2955 /* Not sure what would cause WSAENETDOWN, or even if it can happen
2956 after WSAStartup returns successfully, but it seems reasonable
2957 to allow unloading winsock anyway in that case. */
2958 if (pfn_WSACleanup () == 0 ||
2959 pfn_WSAGetLastError () == WSAENETDOWN
)
2961 if (FreeLibrary (winsock_lib
))
2970 init_winsock (int load_now
)
2972 WSADATA winsockData
;
2974 if (winsock_lib
!= NULL
)
2977 pfn_SetHandleInformation
= NULL
;
2978 pfn_SetHandleInformation
2979 = (void *) GetProcAddress (GetModuleHandle ("kernel32.dll"),
2980 "SetHandleInformation");
2982 winsock_lib
= LoadLibrary ("Ws2_32.dll");
2984 if (winsock_lib
!= NULL
)
2986 /* dynamically link to socket functions */
2988 #define LOAD_PROC(fn) \
2989 if ((pfn_##fn = (void *) GetProcAddress (winsock_lib, #fn)) == NULL) \
2992 LOAD_PROC( WSAStartup
);
2993 LOAD_PROC( WSASetLastError
);
2994 LOAD_PROC( WSAGetLastError
);
2995 LOAD_PROC( WSAEventSelect
);
2996 LOAD_PROC( WSACreateEvent
);
2997 LOAD_PROC( WSACloseEvent
);
2998 LOAD_PROC( socket
);
3000 LOAD_PROC( connect
);
3001 LOAD_PROC( ioctlsocket
);
3004 LOAD_PROC( closesocket
);
3005 LOAD_PROC( shutdown
);
3008 LOAD_PROC( inet_addr
);
3009 LOAD_PROC( gethostname
);
3010 LOAD_PROC( gethostbyname
);
3011 LOAD_PROC( getservbyname
);
3012 LOAD_PROC( getpeername
);
3013 LOAD_PROC( WSACleanup
);
3014 LOAD_PROC( setsockopt
);
3015 LOAD_PROC( listen
);
3016 LOAD_PROC( getsockname
);
3017 LOAD_PROC( accept
);
3018 LOAD_PROC( recvfrom
);
3019 LOAD_PROC( sendto
);
3022 /* specify version 1.1 of winsock */
3023 if (pfn_WSAStartup (0x101, &winsockData
) == 0)
3025 if (winsockData
.wVersion
!= 0x101)
3030 /* Report that winsock exists and is usable, but leave
3031 socket functions disabled. I am assuming that calling
3032 WSAStartup does not require any network interaction,
3033 and in particular does not cause or require a dial-up
3034 connection to be established. */
3037 FreeLibrary (winsock_lib
);
3045 FreeLibrary (winsock_lib
);
3055 /* function to set h_errno for compatability; map winsock error codes to
3056 normal system codes where they overlap (non-overlapping definitions
3057 are already in <sys/socket.h> */
3061 if (winsock_lib
== NULL
)
3064 h_errno
= pfn_WSAGetLastError ();
3068 case WSAEACCES
: h_errno
= EACCES
; break;
3069 case WSAEBADF
: h_errno
= EBADF
; break;
3070 case WSAEFAULT
: h_errno
= EFAULT
; break;
3071 case WSAEINTR
: h_errno
= EINTR
; break;
3072 case WSAEINVAL
: h_errno
= EINVAL
; break;
3073 case WSAEMFILE
: h_errno
= EMFILE
; break;
3074 case WSAENAMETOOLONG
: h_errno
= ENAMETOOLONG
; break;
3075 case WSAENOTEMPTY
: h_errno
= ENOTEMPTY
; break;
3083 if (h_errno
== 0 && winsock_lib
!= NULL
)
3084 pfn_WSASetLastError (0);
3087 /* Extend strerror to handle the winsock-specific error codes. */
3091 } _wsa_errlist
[] = {
3092 WSAEINTR
, "Interrupted function call",
3093 WSAEBADF
, "Bad file descriptor",
3094 WSAEACCES
, "Permission denied",
3095 WSAEFAULT
, "Bad address",
3096 WSAEINVAL
, "Invalid argument",
3097 WSAEMFILE
, "Too many open files",
3099 WSAEWOULDBLOCK
, "Resource temporarily unavailable",
3100 WSAEINPROGRESS
, "Operation now in progress",
3101 WSAEALREADY
, "Operation already in progress",
3102 WSAENOTSOCK
, "Socket operation on non-socket",
3103 WSAEDESTADDRREQ
, "Destination address required",
3104 WSAEMSGSIZE
, "Message too long",
3105 WSAEPROTOTYPE
, "Protocol wrong type for socket",
3106 WSAENOPROTOOPT
, "Bad protocol option",
3107 WSAEPROTONOSUPPORT
, "Protocol not supported",
3108 WSAESOCKTNOSUPPORT
, "Socket type not supported",
3109 WSAEOPNOTSUPP
, "Operation not supported",
3110 WSAEPFNOSUPPORT
, "Protocol family not supported",
3111 WSAEAFNOSUPPORT
, "Address family not supported by protocol family",
3112 WSAEADDRINUSE
, "Address already in use",
3113 WSAEADDRNOTAVAIL
, "Cannot assign requested address",
3114 WSAENETDOWN
, "Network is down",
3115 WSAENETUNREACH
, "Network is unreachable",
3116 WSAENETRESET
, "Network dropped connection on reset",
3117 WSAECONNABORTED
, "Software caused connection abort",
3118 WSAECONNRESET
, "Connection reset by peer",
3119 WSAENOBUFS
, "No buffer space available",
3120 WSAEISCONN
, "Socket is already connected",
3121 WSAENOTCONN
, "Socket is not connected",
3122 WSAESHUTDOWN
, "Cannot send after socket shutdown",
3123 WSAETOOMANYREFS
, "Too many references", /* not sure */
3124 WSAETIMEDOUT
, "Connection timed out",
3125 WSAECONNREFUSED
, "Connection refused",
3126 WSAELOOP
, "Network loop", /* not sure */
3127 WSAENAMETOOLONG
, "Name is too long",
3128 WSAEHOSTDOWN
, "Host is down",
3129 WSAEHOSTUNREACH
, "No route to host",
3130 WSAENOTEMPTY
, "Buffer not empty", /* not sure */
3131 WSAEPROCLIM
, "Too many processes",
3132 WSAEUSERS
, "Too many users", /* not sure */
3133 WSAEDQUOT
, "Double quote in host name", /* really not sure */
3134 WSAESTALE
, "Data is stale", /* not sure */
3135 WSAEREMOTE
, "Remote error", /* not sure */
3137 WSASYSNOTREADY
, "Network subsystem is unavailable",
3138 WSAVERNOTSUPPORTED
, "WINSOCK.DLL version out of range",
3139 WSANOTINITIALISED
, "Winsock not initialized successfully",
3140 WSAEDISCON
, "Graceful shutdown in progress",
3142 WSAENOMORE
, "No more operations allowed", /* not sure */
3143 WSAECANCELLED
, "Operation cancelled", /* not sure */
3144 WSAEINVALIDPROCTABLE
, "Invalid procedure table from service provider",
3145 WSAEINVALIDPROVIDER
, "Invalid service provider version number",
3146 WSAEPROVIDERFAILEDINIT
, "Unable to initialize a service provider",
3147 WSASYSCALLFAILURE
, "System call failure",
3148 WSASERVICE_NOT_FOUND
, "Service not found", /* not sure */
3149 WSATYPE_NOT_FOUND
, "Class type not found",
3150 WSA_E_NO_MORE
, "No more resources available", /* really not sure */
3151 WSA_E_CANCELLED
, "Operation already cancelled", /* really not sure */
3152 WSAEREFUSED
, "Operation refused", /* not sure */
3155 WSAHOST_NOT_FOUND
, "Host not found",
3156 WSATRY_AGAIN
, "Authoritative host not found during name lookup",
3157 WSANO_RECOVERY
, "Non-recoverable error during name lookup",
3158 WSANO_DATA
, "Valid name, no data record of requested type",
3164 sys_strerror(int error_no
)
3167 static char unknown_msg
[40];
3169 if (error_no
>= 0 && error_no
< sys_nerr
)
3170 return sys_errlist
[error_no
];
3172 for (i
= 0; _wsa_errlist
[i
].errnum
>= 0; i
++)
3173 if (_wsa_errlist
[i
].errnum
== error_no
)
3174 return _wsa_errlist
[i
].msg
;
3176 sprintf(unknown_msg
, "Unidentified error: %d", error_no
);
3180 /* [andrewi 3-May-96] I've had conflicting results using both methods,
3181 but I believe the method of keeping the socket handle separate (and
3182 insuring it is not inheritable) is the correct one. */
3184 //#define SOCK_REPLACE_HANDLE
3186 #ifdef SOCK_REPLACE_HANDLE
3187 #define SOCK_HANDLE(fd) ((SOCKET) _get_osfhandle (fd))
3189 #define SOCK_HANDLE(fd) ((SOCKET) fd_info[fd].hnd)
3192 int socket_to_fd (SOCKET s
);
3195 sys_socket(int af
, int type
, int protocol
)
3199 if (winsock_lib
== NULL
)
3202 return INVALID_SOCKET
;
3207 /* call the real socket function */
3208 s
= pfn_socket (af
, type
, protocol
);
3210 if (s
!= INVALID_SOCKET
)
3211 return socket_to_fd (s
);
3217 /* Convert a SOCKET to a file descriptor. */
3219 socket_to_fd (SOCKET s
)
3224 /* Although under NT 3.5 _open_osfhandle will accept a socket
3225 handle, if opened with SO_OPENTYPE == SO_SYNCHRONOUS_NONALERT,
3226 that does not work under NT 3.1. However, we can get the same
3227 effect by using a backdoor function to replace an existing
3228 descriptor handle with the one we want. */
3230 /* allocate a file descriptor (with appropriate flags) */
3231 fd
= _open ("NUL:", _O_RDWR
);
3234 #ifdef SOCK_REPLACE_HANDLE
3235 /* now replace handle to NUL with our socket handle */
3236 CloseHandle ((HANDLE
) _get_osfhandle (fd
));
3238 _set_osfhnd (fd
, s
);
3239 /* setmode (fd, _O_BINARY); */
3241 /* Make a non-inheritable copy of the socket handle. Note
3242 that it is possible that sockets aren't actually kernel
3243 handles, which appears to be the case on Windows 9x when
3244 the MS Proxy winsock client is installed. */
3246 /* Apparently there is a bug in NT 3.51 with some service
3247 packs, which prevents using DuplicateHandle to make a
3248 socket handle non-inheritable (causes WSACleanup to
3249 hang). The work-around is to use SetHandleInformation
3250 instead if it is available and implemented. */
3251 if (pfn_SetHandleInformation
)
3253 pfn_SetHandleInformation ((HANDLE
) s
, HANDLE_FLAG_INHERIT
, 0);
3257 HANDLE parent
= GetCurrentProcess ();
3258 HANDLE new_s
= INVALID_HANDLE_VALUE
;
3260 if (DuplicateHandle (parent
,
3266 DUPLICATE_SAME_ACCESS
))
3268 /* It is possible that DuplicateHandle succeeds even
3269 though the socket wasn't really a kernel handle,
3270 because a real handle has the same value. So
3271 test whether the new handle really is a socket. */
3272 long nonblocking
= 0;
3273 if (pfn_ioctlsocket ((SOCKET
) new_s
, FIONBIO
, &nonblocking
) == 0)
3275 pfn_closesocket (s
);
3280 CloseHandle (new_s
);
3285 fd_info
[fd
].hnd
= (HANDLE
) s
;
3288 /* set our own internal flags */
3289 fd_info
[fd
].flags
= FILE_SOCKET
| FILE_BINARY
| FILE_READ
| FILE_WRITE
;
3295 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
3297 /* attach child_process to fd_info */
3298 if (fd_info
[ fd
].cp
!= NULL
)
3300 DebPrint (("sys_socket: fd_info[%d] apparently in use!\n", fd
));
3304 fd_info
[ fd
].cp
= cp
;
3307 winsock_inuse
++; /* count open sockets */
3314 pfn_closesocket (s
);
3321 sys_bind (int s
, const struct sockaddr
* addr
, int namelen
)
3323 if (winsock_lib
== NULL
)
3326 return SOCKET_ERROR
;
3330 if (fd_info
[s
].flags
& FILE_SOCKET
)
3332 int rc
= pfn_bind (SOCK_HANDLE (s
), addr
, namelen
);
3333 if (rc
== SOCKET_ERROR
)
3338 return SOCKET_ERROR
;
3343 sys_connect (int s
, const struct sockaddr
* name
, int namelen
)
3345 if (winsock_lib
== NULL
)
3348 return SOCKET_ERROR
;
3352 if (fd_info
[s
].flags
& FILE_SOCKET
)
3354 int rc
= pfn_connect (SOCK_HANDLE (s
), name
, namelen
);
3355 if (rc
== SOCKET_ERROR
)
3360 return SOCKET_ERROR
;
3364 sys_htons (u_short hostshort
)
3366 return (winsock_lib
!= NULL
) ?
3367 pfn_htons (hostshort
) : hostshort
;
3371 sys_ntohs (u_short netshort
)
3373 return (winsock_lib
!= NULL
) ?
3374 pfn_ntohs (netshort
) : netshort
;
3378 sys_inet_addr (const char * cp
)
3380 return (winsock_lib
!= NULL
) ?
3381 pfn_inet_addr (cp
) : INADDR_NONE
;
3385 sys_gethostname (char * name
, int namelen
)
3387 if (winsock_lib
!= NULL
)
3388 return pfn_gethostname (name
, namelen
);
3390 if (namelen
> MAX_COMPUTERNAME_LENGTH
)
3391 return !GetComputerName (name
, (DWORD
*)&namelen
);
3394 return SOCKET_ERROR
;
3398 sys_gethostbyname(const char * name
)
3400 struct hostent
* host
;
3402 if (winsock_lib
== NULL
)
3409 host
= pfn_gethostbyname (name
);
3416 sys_getservbyname(const char * name
, const char * proto
)
3418 struct servent
* serv
;
3420 if (winsock_lib
== NULL
)
3427 serv
= pfn_getservbyname (name
, proto
);
3434 sys_getpeername (int s
, struct sockaddr
*addr
, int * namelen
)
3436 if (winsock_lib
== NULL
)
3439 return SOCKET_ERROR
;
3443 if (fd_info
[s
].flags
& FILE_SOCKET
)
3445 int rc
= pfn_getpeername (SOCK_HANDLE (s
), addr
, namelen
);
3446 if (rc
== SOCKET_ERROR
)
3451 return SOCKET_ERROR
;
3456 sys_shutdown (int s
, int how
)
3458 if (winsock_lib
== NULL
)
3461 return SOCKET_ERROR
;
3465 if (fd_info
[s
].flags
& FILE_SOCKET
)
3467 int rc
= pfn_shutdown (SOCK_HANDLE (s
), how
);
3468 if (rc
== SOCKET_ERROR
)
3473 return SOCKET_ERROR
;
3477 sys_setsockopt (int s
, int level
, int optname
, const void * optval
, int optlen
)
3479 if (winsock_lib
== NULL
)
3482 return SOCKET_ERROR
;
3486 if (fd_info
[s
].flags
& FILE_SOCKET
)
3488 int rc
= pfn_setsockopt (SOCK_HANDLE (s
), level
, optname
,
3489 (const char *)optval
, optlen
);
3490 if (rc
== SOCKET_ERROR
)
3495 return SOCKET_ERROR
;
3499 sys_listen (int s
, int backlog
)
3501 if (winsock_lib
== NULL
)
3504 return SOCKET_ERROR
;
3508 if (fd_info
[s
].flags
& FILE_SOCKET
)
3510 int rc
= pfn_listen (SOCK_HANDLE (s
), backlog
);
3511 if (rc
== SOCKET_ERROR
)
3514 fd_info
[s
].flags
|= FILE_LISTEN
;
3518 return SOCKET_ERROR
;
3522 sys_getsockname (int s
, struct sockaddr
* name
, int * namelen
)
3524 if (winsock_lib
== NULL
)
3527 return SOCKET_ERROR
;
3531 if (fd_info
[s
].flags
& FILE_SOCKET
)
3533 int rc
= pfn_getsockname (SOCK_HANDLE (s
), name
, namelen
);
3534 if (rc
== SOCKET_ERROR
)
3539 return SOCKET_ERROR
;
3543 sys_accept (int s
, struct sockaddr
* addr
, int * addrlen
)
3545 if (winsock_lib
== NULL
)
3552 if (fd_info
[s
].flags
& FILE_LISTEN
)
3554 SOCKET t
= pfn_accept (SOCK_HANDLE (s
), addr
, addrlen
);
3556 if (t
== INVALID_SOCKET
)
3559 fd
= socket_to_fd (t
);
3561 fd_info
[s
].cp
->status
= STATUS_READ_ACKNOWLEDGED
;
3562 ResetEvent (fd_info
[s
].cp
->char_avail
);
3570 sys_recvfrom (int s
, char * buf
, int len
, int flags
,
3571 struct sockaddr
* from
, int * fromlen
)
3573 if (winsock_lib
== NULL
)
3576 return SOCKET_ERROR
;
3580 if (fd_info
[s
].flags
& FILE_SOCKET
)
3582 int rc
= pfn_recvfrom (SOCK_HANDLE (s
), buf
, len
, flags
, from
, fromlen
);
3583 if (rc
== SOCKET_ERROR
)
3588 return SOCKET_ERROR
;
3592 sys_sendto (int s
, const char * buf
, int len
, int flags
,
3593 const struct sockaddr
* to
, int tolen
)
3595 if (winsock_lib
== NULL
)
3598 return SOCKET_ERROR
;
3602 if (fd_info
[s
].flags
& FILE_SOCKET
)
3604 int rc
= pfn_sendto (SOCK_HANDLE (s
), buf
, len
, flags
, to
, tolen
);
3605 if (rc
== SOCKET_ERROR
)
3610 return SOCKET_ERROR
;
3613 /* Windows does not have an fcntl function. Provide an implementation
3614 solely for making sockets non-blocking. */
3616 fcntl (int s
, int cmd
, int options
)
3618 if (winsock_lib
== NULL
)
3625 if (fd_info
[s
].flags
& FILE_SOCKET
)
3627 if (cmd
== F_SETFL
&& options
== O_NDELAY
)
3629 unsigned long nblock
= 1;
3630 int rc
= pfn_ioctlsocket (SOCK_HANDLE (s
), FIONBIO
, &nblock
);
3631 if (rc
== SOCKET_ERROR
)
3633 /* Keep track of the fact that we set this to non-blocking. */
3634 fd_info
[s
].flags
|= FILE_NDELAY
;
3640 return SOCKET_ERROR
;
3644 return SOCKET_ERROR
;
3647 #endif /* HAVE_SOCKETS */
3650 /* Shadow main io functions: we need to handle pipes and sockets more
3651 intelligently, and implement non-blocking mode as well. */
3664 if (fd
< MAXDESC
&& fd_info
[fd
].cp
)
3666 child_process
* cp
= fd_info
[fd
].cp
;
3668 fd_info
[fd
].cp
= NULL
;
3670 if (CHILD_ACTIVE (cp
))
3672 /* if last descriptor to active child_process then cleanup */
3674 for (i
= 0; i
< MAXDESC
; i
++)
3678 if (fd_info
[i
].cp
== cp
)
3684 if (fd_info
[fd
].flags
& FILE_SOCKET
)
3686 #ifndef SOCK_REPLACE_HANDLE
3687 if (winsock_lib
== NULL
) abort ();
3689 pfn_shutdown (SOCK_HANDLE (fd
), 2);
3690 rc
= pfn_closesocket (SOCK_HANDLE (fd
));
3692 winsock_inuse
--; /* count open sockets */
3700 /* Note that sockets do not need special treatment here (at least on
3701 NT and Windows 95 using the standard tcp/ip stacks) - it appears that
3702 closesocket is equivalent to CloseHandle, which is to be expected
3703 because socket handles are fully fledged kernel handles. */
3706 if (rc
== 0 && fd
< MAXDESC
)
3707 fd_info
[fd
].flags
= 0;
3718 if (new_fd
>= 0 && new_fd
< MAXDESC
)
3720 /* duplicate our internal info as well */
3721 fd_info
[new_fd
] = fd_info
[fd
];
3728 sys_dup2 (int src
, int dst
)
3732 if (dst
< 0 || dst
>= MAXDESC
)
3738 /* make sure we close the destination first if it's a pipe or socket */
3739 if (src
!= dst
&& fd_info
[dst
].flags
!= 0)
3742 rc
= _dup2 (src
, dst
);
3745 /* duplicate our internal info as well */
3746 fd_info
[dst
] = fd_info
[src
];
3751 /* Unix pipe() has only one arg */
3753 sys_pipe (int * phandles
)
3758 /* make pipe handles non-inheritable; when we spawn a child, we
3759 replace the relevant handle with an inheritable one. Also put
3760 pipes into binary mode; we will do text mode translation ourselves
3762 rc
= _pipe (phandles
, 0, _O_NOINHERIT
| _O_BINARY
);
3766 /* Protect against overflow, since Windows can open more handles than
3767 our fd_info array has room for. */
3768 if (phandles
[0] >= MAXDESC
|| phandles
[1] >= MAXDESC
)
3770 _close (phandles
[0]);
3771 _close (phandles
[1]);
3776 flags
= FILE_PIPE
| FILE_READ
| FILE_BINARY
;
3777 fd_info
[phandles
[0]].flags
= flags
;
3779 flags
= FILE_PIPE
| FILE_WRITE
| FILE_BINARY
;
3780 fd_info
[phandles
[1]].flags
= flags
;
3788 extern int w32_pipe_read_delay
;
3790 /* Function to do blocking read of one byte, needed to implement
3791 select. It is only allowed on sockets and pipes. */
3793 _sys_read_ahead (int fd
)
3798 if (fd
< 0 || fd
>= MAXDESC
)
3799 return STATUS_READ_ERROR
;
3801 cp
= fd_info
[fd
].cp
;
3803 if (cp
== NULL
|| cp
->fd
!= fd
|| cp
->status
!= STATUS_READ_READY
)
3804 return STATUS_READ_ERROR
;
3806 if ((fd_info
[fd
].flags
& (FILE_PIPE
| FILE_SOCKET
)) == 0
3807 || (fd_info
[fd
].flags
& FILE_READ
) == 0)
3809 DebPrint (("_sys_read_ahead: internal error: fd %d is not a pipe or socket!\n", fd
));
3813 cp
->status
= STATUS_READ_IN_PROGRESS
;
3815 if (fd_info
[fd
].flags
& FILE_PIPE
)
3817 rc
= _read (fd
, &cp
->chr
, sizeof (char));
3819 /* Give subprocess time to buffer some more output for us before
3820 reporting that input is available; we need this because Windows 95
3821 connects DOS programs to pipes by making the pipe appear to be
3822 the normal console stdout - as a result most DOS programs will
3823 write to stdout without buffering, ie. one character at a
3824 time. Even some W32 programs do this - "dir" in a command
3825 shell on NT is very slow if we don't do this. */
3828 int wait
= w32_pipe_read_delay
;
3834 /* Yield remainder of our time slice, effectively giving a
3835 temporary priority boost to the child process. */
3840 else if (fd_info
[fd
].flags
& FILE_SOCKET
)
3842 unsigned long nblock
= 0;
3843 /* We always want this to block, so temporarily disable NDELAY. */
3844 if (fd_info
[fd
].flags
& FILE_NDELAY
)
3845 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
3847 rc
= pfn_recv (SOCK_HANDLE (fd
), &cp
->chr
, sizeof (char), 0);
3849 if (fd_info
[fd
].flags
& FILE_NDELAY
)
3852 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
3857 if (rc
== sizeof (char))
3858 cp
->status
= STATUS_READ_SUCCEEDED
;
3860 cp
->status
= STATUS_READ_FAILED
;
3866 _sys_wait_accept (int fd
)
3872 if (fd
< 0 || fd
>= MAXDESC
)
3873 return STATUS_READ_ERROR
;
3875 cp
= fd_info
[fd
].cp
;
3877 if (cp
== NULL
|| cp
->fd
!= fd
|| cp
->status
!= STATUS_READ_READY
)
3878 return STATUS_READ_ERROR
;
3880 cp
->status
= STATUS_READ_FAILED
;
3882 hEv
= pfn_WSACreateEvent ();
3883 rc
= pfn_WSAEventSelect (SOCK_HANDLE (fd
), hEv
, FD_ACCEPT
);
3884 if (rc
!= SOCKET_ERROR
)
3886 rc
= WaitForSingleObject (hEv
, INFINITE
);
3887 pfn_WSAEventSelect (SOCK_HANDLE (fd
), NULL
, 0);
3888 if (rc
== WAIT_OBJECT_0
)
3889 cp
->status
= STATUS_READ_SUCCEEDED
;
3891 pfn_WSACloseEvent (hEv
);
3897 sys_read (int fd
, char * buffer
, unsigned int count
)
3902 char * orig_buffer
= buffer
;
3910 if (fd
< MAXDESC
&& fd_info
[fd
].flags
& (FILE_PIPE
| FILE_SOCKET
))
3912 child_process
*cp
= fd_info
[fd
].cp
;
3914 if ((fd_info
[fd
].flags
& FILE_READ
) == 0)
3922 /* re-read CR carried over from last read */
3923 if (fd_info
[fd
].flags
& FILE_LAST_CR
)
3925 if (fd_info
[fd
].flags
& FILE_BINARY
) abort ();
3929 fd_info
[fd
].flags
&= ~FILE_LAST_CR
;
3932 /* presence of a child_process structure means we are operating in
3933 non-blocking mode - otherwise we just call _read directly.
3934 Note that the child_process structure might be missing because
3935 reap_subprocess has been called; in this case the pipe is
3936 already broken, so calling _read on it is okay. */
3939 int current_status
= cp
->status
;
3941 switch (current_status
)
3943 case STATUS_READ_FAILED
:
3944 case STATUS_READ_ERROR
:
3945 /* report normal EOF if nothing in buffer */
3947 fd_info
[fd
].flags
|= FILE_AT_EOF
;
3950 case STATUS_READ_READY
:
3951 case STATUS_READ_IN_PROGRESS
:
3952 DebPrint (("sys_read called when read is in progress\n"));
3953 errno
= EWOULDBLOCK
;
3956 case STATUS_READ_SUCCEEDED
:
3957 /* consume read-ahead char */
3958 *buffer
++ = cp
->chr
;
3961 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
3962 ResetEvent (cp
->char_avail
);
3964 case STATUS_READ_ACKNOWLEDGED
:
3968 DebPrint (("sys_read: bad status %d\n", current_status
));
3973 if (fd_info
[fd
].flags
& FILE_PIPE
)
3975 PeekNamedPipe ((HANDLE
) _get_osfhandle (fd
), NULL
, 0, NULL
, &waiting
, NULL
);
3976 to_read
= min (waiting
, (DWORD
) count
);
3979 nchars
+= _read (fd
, buffer
, to_read
);
3982 else /* FILE_SOCKET */
3984 if (winsock_lib
== NULL
) abort ();
3986 /* do the equivalent of a non-blocking read */
3987 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONREAD
, &waiting
);
3988 if (waiting
== 0 && nchars
== 0)
3990 h_errno
= errno
= EWOULDBLOCK
;
3996 /* always use binary mode for sockets */
3997 int res
= pfn_recv (SOCK_HANDLE (fd
), buffer
, count
, 0);
3998 if (res
== SOCKET_ERROR
)
4000 DebPrint(("sys_read.recv failed with error %d on socket %ld\n",
4001 pfn_WSAGetLastError (), SOCK_HANDLE (fd
)));
4012 int nread
= _read (fd
, buffer
, count
);
4015 else if (nchars
== 0)
4020 fd_info
[fd
].flags
|= FILE_AT_EOF
;
4021 /* Perform text mode translation if required. */
4022 else if ((fd_info
[fd
].flags
& FILE_BINARY
) == 0)
4024 nchars
= crlf_to_lf (nchars
, orig_buffer
);
4025 /* If buffer contains only CR, return that. To be absolutely
4026 sure we should attempt to read the next char, but in
4027 practice a CR to be followed by LF would not appear by
4028 itself in the buffer. */
4029 if (nchars
> 1 && orig_buffer
[nchars
- 1] == 0x0d)
4031 fd_info
[fd
].flags
|= FILE_LAST_CR
;
4037 nchars
= _read (fd
, buffer
, count
);
4042 /* For now, don't bother with a non-blocking mode */
4044 sys_write (int fd
, const void * buffer
, unsigned int count
)
4054 if (fd
< MAXDESC
&& fd_info
[fd
].flags
& (FILE_PIPE
| FILE_SOCKET
))
4056 if ((fd_info
[fd
].flags
& FILE_WRITE
) == 0)
4062 /* Perform text mode translation if required. */
4063 if ((fd_info
[fd
].flags
& FILE_BINARY
) == 0)
4065 char * tmpbuf
= alloca (count
* 2);
4066 unsigned char * src
= (void *)buffer
;
4067 unsigned char * dst
= tmpbuf
;
4072 unsigned char *next
;
4073 /* copy next line or remaining bytes */
4074 next
= _memccpy (dst
, src
, '\n', nbytes
);
4077 /* copied one line ending with '\n' */
4078 int copied
= next
- dst
;
4081 /* insert '\r' before '\n' */
4088 /* copied remaining partial line -> now finished */
4096 if (fd
< MAXDESC
&& fd_info
[fd
].flags
& FILE_SOCKET
)
4098 unsigned long nblock
= 0;
4099 if (winsock_lib
== NULL
) abort ();
4101 /* TODO: implement select() properly so non-blocking I/O works. */
4102 /* For now, make sure the write blocks. */
4103 if (fd_info
[fd
].flags
& FILE_NDELAY
)
4104 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
4106 nchars
= pfn_send (SOCK_HANDLE (fd
), buffer
, count
, 0);
4108 /* Set the socket back to non-blocking if it was before,
4109 for other operations that support it. */
4110 if (fd_info
[fd
].flags
& FILE_NDELAY
)
4113 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
4116 if (nchars
== SOCKET_ERROR
)
4118 DebPrint(("sys_write.send failed with error %d on socket %ld\n",
4119 pfn_WSAGetLastError (), SOCK_HANDLE (fd
)));
4125 nchars
= _write (fd
, buffer
, count
);
4131 check_windows_init_file ()
4133 extern int noninteractive
, inhibit_window_system
;
4135 /* A common indication that Emacs is not installed properly is when
4136 it cannot find the Windows installation file. If this file does
4137 not exist in the expected place, tell the user. */
4139 if (!noninteractive
&& !inhibit_window_system
)
4141 extern Lisp_Object Vwindow_system
, Vload_path
, Qfile_exists_p
;
4142 Lisp_Object objs
[2];
4143 Lisp_Object full_load_path
;
4144 Lisp_Object init_file
;
4147 objs
[0] = Vload_path
;
4148 objs
[1] = decode_env_path (0, (getenv ("EMACSLOADPATH")));
4149 full_load_path
= Fappend (2, objs
);
4150 init_file
= build_string ("term/w32-win");
4151 fd
= openp (full_load_path
, init_file
, Fget_load_suffixes (), NULL
, Qnil
);
4154 Lisp_Object load_path_print
= Fprin1_to_string (full_load_path
, Qnil
);
4155 char *init_file_name
= SDATA (init_file
);
4156 char *load_path
= SDATA (load_path_print
);
4157 char *buffer
= alloca (1024
4158 + strlen (init_file_name
)
4159 + strlen (load_path
));
4162 "The Emacs Windows initialization file \"%s.el\" "
4163 "could not be found in your Emacs installation. "
4164 "Emacs checked the following directories for this file:\n"
4166 "When Emacs cannot find this file, it usually means that it "
4167 "was not installed properly, or its distribution file was "
4168 "not unpacked properly.\nSee the README.W32 file in the "
4169 "top-level Emacs directory for more information.",
4170 init_file_name
, load_path
);
4173 "Emacs Abort Dialog",
4174 MB_OK
| MB_ICONEXCLAMATION
| MB_TASKMODAL
);
4175 /* Use the low-level Emacs abort. */
4190 /* shutdown the socket interface if necessary */
4201 /* Initialise the socket interface now if available and requested by
4202 the user by defining PRELOAD_WINSOCK; otherwise loading will be
4203 delayed until open-network-stream is called (w32-has-winsock can
4204 also be used to dynamically load or reload winsock).
4206 Conveniently, init_environment is called before us, so
4207 PRELOAD_WINSOCK can be set in the registry. */
4209 /* Always initialize this correctly. */
4212 if (getenv ("PRELOAD_WINSOCK") != NULL
)
4213 init_winsock (TRUE
);
4216 /* Initial preparation for subprocess support: replace our standard
4217 handles with non-inheritable versions. */
4220 HANDLE stdin_save
= INVALID_HANDLE_VALUE
;
4221 HANDLE stdout_save
= INVALID_HANDLE_VALUE
;
4222 HANDLE stderr_save
= INVALID_HANDLE_VALUE
;
4224 parent
= GetCurrentProcess ();
4226 /* ignore errors when duplicating and closing; typically the
4227 handles will be invalid when running as a gui program. */
4228 DuplicateHandle (parent
,
4229 GetStdHandle (STD_INPUT_HANDLE
),
4234 DUPLICATE_SAME_ACCESS
);
4236 DuplicateHandle (parent
,
4237 GetStdHandle (STD_OUTPUT_HANDLE
),
4242 DUPLICATE_SAME_ACCESS
);
4244 DuplicateHandle (parent
,
4245 GetStdHandle (STD_ERROR_HANDLE
),
4250 DUPLICATE_SAME_ACCESS
);
4256 if (stdin_save
!= INVALID_HANDLE_VALUE
)
4257 _open_osfhandle ((long) stdin_save
, O_TEXT
);
4259 _open ("nul", O_TEXT
| O_NOINHERIT
| O_RDONLY
);
4262 if (stdout_save
!= INVALID_HANDLE_VALUE
)
4263 _open_osfhandle ((long) stdout_save
, O_TEXT
);
4265 _open ("nul", O_TEXT
| O_NOINHERIT
| O_WRONLY
);
4268 if (stderr_save
!= INVALID_HANDLE_VALUE
)
4269 _open_osfhandle ((long) stderr_save
, O_TEXT
);
4271 _open ("nul", O_TEXT
| O_NOINHERIT
| O_WRONLY
);
4275 /* unfortunately, atexit depends on implementation of malloc */
4276 /* atexit (term_ntproc); */
4277 signal (SIGABRT
, term_ntproc
);
4279 /* determine which drives are fixed, for GetCachedVolumeInformation */
4281 /* GetDriveType must have trailing backslash. */
4282 char drive
[] = "A:\\";
4284 /* Loop over all possible drive letters */
4285 while (*drive
<= 'Z')
4287 /* Record if this drive letter refers to a fixed drive. */
4288 fixed_drives
[DRIVE_INDEX (*drive
)] =
4289 (GetDriveType (drive
) == DRIVE_FIXED
);
4294 /* Reset the volume info cache. */
4295 volume_cache
= NULL
;
4298 /* Check to see if Emacs has been installed correctly. */
4299 check_windows_init_file ();
4303 shutdown_handler ensures that buffers' autosave files are
4304 up to date when the user logs off, or the system shuts down.
4306 BOOL WINAPI
shutdown_handler(DWORD type
)
4308 /* Ctrl-C and Ctrl-Break are already suppressed, so don't handle them. */
4309 if (type
== CTRL_CLOSE_EVENT
/* User closes console window. */
4310 || type
== CTRL_LOGOFF_EVENT
/* User logs off. */
4311 || type
== CTRL_SHUTDOWN_EVENT
) /* User shutsdown. */
4313 /* Shut down cleanly, making sure autosave files are up to date. */
4314 shut_down_emacs (0, 0, Qnil
);
4317 /* Allow other handlers to handle this signal. */
4322 globals_of_w32 is used to initialize those global variables that
4323 must always be initialized on startup even when the global variable
4324 initialized is non zero (see the function main in emacs.c).
4329 HMODULE kernel32
= GetModuleHandle ("kernel32.dll");
4331 get_process_times_fn
= (GetProcessTimes_Proc
)
4332 GetProcAddress (kernel32
, "GetProcessTimes");
4334 g_b_init_is_windows_9x
= 0;
4335 g_b_init_open_process_token
= 0;
4336 g_b_init_get_token_information
= 0;
4337 g_b_init_lookup_account_sid
= 0;
4338 g_b_init_get_sid_identifier_authority
= 0;
4339 g_b_init_get_sid_sub_authority
= 0;
4340 g_b_init_get_sid_sub_authority_count
= 0;
4341 /* The following sets a handler for shutdown notifications for
4342 console apps. This actually applies to Emacs in both console and
4343 GUI modes, since we had to fool windows into thinking emacs is a
4344 console application to get console mode to work. */
4345 SetConsoleCtrlHandler(shutdown_handler
, TRUE
);
4350 /* arch-tag: 90442dd3-37be-482b-b272-ac752e3049f1
4351 (do not change this comment) */