1 /* Utility and Unix shadow routines for GNU Emacs on the Microsoft Windows API.
2 Copyright (C) 1994-1995, 2000-2012 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 Geoff Voelker (voelker@cs.washington.edu) 7-29-94
22 #include <stddef.h> /* for offsetof */
25 #include <float.h> /* for DBL_EPSILON */
33 #include <sys/utime.h>
37 /* must include CRT headers *before* config.h */
40 #include <mbstring.h> /* for _mbspbrk */
73 #define _ANONYMOUS_UNION
74 #define _ANONYMOUS_STRUCT
77 /* Some versions of compiler define MEMORYSTATUSEX, some don't, so we
78 use a different name to avoid compilation problems. */
79 typedef struct _MEMORY_STATUS_EX
{
82 DWORDLONG ullTotalPhys
;
83 DWORDLONG ullAvailPhys
;
84 DWORDLONG ullTotalPageFile
;
85 DWORDLONG ullAvailPageFile
;
86 DWORDLONG ullTotalVirtual
;
87 DWORDLONG ullAvailVirtual
;
88 DWORDLONG ullAvailExtendedVirtual
;
89 } MEMORY_STATUS_EX
,*LPMEMORY_STATUS_EX
;
99 #if !defined (__MINGW32__) || __W32API_MAJOR_VERSION < 3 || (__W32API_MAJOR_VERSION == 3 && __W32API_MINOR_VERSION < 15)
100 /* This either is not in psapi.h or guarded by higher value of
101 _WIN32_WINNT than what we use. w32api supplied with MinGW 3.15
102 defines it in psapi.h */
103 typedef struct _PROCESS_MEMORY_COUNTERS_EX
{
105 DWORD PageFaultCount
;
106 DWORD PeakWorkingSetSize
;
107 DWORD WorkingSetSize
;
108 DWORD QuotaPeakPagedPoolUsage
;
109 DWORD QuotaPagedPoolUsage
;
110 DWORD QuotaPeakNonPagedPoolUsage
;
111 DWORD QuotaNonPagedPoolUsage
;
113 DWORD PeakPagefileUsage
;
115 } PROCESS_MEMORY_COUNTERS_EX
,*PPROCESS_MEMORY_COUNTERS_EX
;
118 #include <winioctl.h>
122 /* MSVC doesn't provide the definition of REPARSE_DATA_BUFFER, except
123 on ntifs.h, which cannot be included because it triggers conflicts
124 with other Windows API headers. So we define it here by hand. */
126 typedef struct _REPARSE_DATA_BUFFER
{
128 USHORT ReparseDataLength
;
132 USHORT SubstituteNameOffset
;
133 USHORT SubstituteNameLength
;
134 USHORT PrintNameOffset
;
135 USHORT PrintNameLength
;
138 } SymbolicLinkReparseBuffer
;
140 USHORT SubstituteNameOffset
;
141 USHORT SubstituteNameLength
;
142 USHORT PrintNameOffset
;
143 USHORT PrintNameLength
;
145 } MountPointReparseBuffer
;
148 } GenericReparseBuffer
;
150 } REPARSE_DATA_BUFFER
, *PREPARSE_DATA_BUFFER
;
154 /* TCP connection support. */
155 #include <sys/socket.h>
178 #include "dispextern.h" /* for xstrcasecmp */
179 #include "coding.h" /* for Vlocale_coding_system */
181 #include "careadlinkat.h"
182 #include "allocator.h"
184 /* For serial_configure and serial_open. */
187 typedef HRESULT (WINAPI
* ShGetFolderPath_fn
)
188 (IN HWND
, IN
int, IN HANDLE
, IN DWORD
, OUT
char *);
190 Lisp_Object QCloaded_from
;
192 void globals_of_w32 (void);
193 static DWORD
get_rid (PSID
);
194 static int is_symlink (const char *);
195 static char * chase_symlinks (const char *);
196 static int enable_privilege (LPCTSTR
, BOOL
, TOKEN_PRIVILEGES
*);
197 static int restore_privilege (TOKEN_PRIVILEGES
*);
198 static BOOL WINAPI
revert_to_self (void);
201 /* Initialization states.
203 WARNING: If you add any more such variables for additional APIs,
204 you MUST add initialization for them to globals_of_w32
205 below. This is because these variables might get set
206 to non-NULL values during dumping, but the dumped Emacs
207 cannot reuse those values, because it could be run on a
208 different version of the OS, where API addresses are
210 static BOOL g_b_init_is_windows_9x
;
211 static BOOL g_b_init_open_process_token
;
212 static BOOL g_b_init_get_token_information
;
213 static BOOL g_b_init_lookup_account_sid
;
214 static BOOL g_b_init_get_sid_sub_authority
;
215 static BOOL g_b_init_get_sid_sub_authority_count
;
216 static BOOL g_b_init_get_security_info
;
217 static BOOL g_b_init_get_file_security
;
218 static BOOL g_b_init_get_security_descriptor_owner
;
219 static BOOL g_b_init_get_security_descriptor_group
;
220 static BOOL g_b_init_is_valid_sid
;
221 static BOOL g_b_init_create_toolhelp32_snapshot
;
222 static BOOL g_b_init_process32_first
;
223 static BOOL g_b_init_process32_next
;
224 static BOOL g_b_init_open_thread_token
;
225 static BOOL g_b_init_impersonate_self
;
226 static BOOL g_b_init_revert_to_self
;
227 static BOOL g_b_init_get_process_memory_info
;
228 static BOOL g_b_init_get_process_working_set_size
;
229 static BOOL g_b_init_global_memory_status
;
230 static BOOL g_b_init_global_memory_status_ex
;
231 static BOOL g_b_init_get_length_sid
;
232 static BOOL g_b_init_equal_sid
;
233 static BOOL g_b_init_copy_sid
;
234 static BOOL g_b_init_get_native_system_info
;
235 static BOOL g_b_init_get_system_times
;
236 static BOOL g_b_init_create_symbolic_link
;
239 BEGIN: Wrapper functions around OpenProcessToken
240 and other functions in advapi32.dll that are only
241 supported in Windows NT / 2k / XP
243 /* ** Function pointer typedefs ** */
244 typedef BOOL (WINAPI
* OpenProcessToken_Proc
) (
245 HANDLE ProcessHandle
,
247 PHANDLE TokenHandle
);
248 typedef BOOL (WINAPI
* GetTokenInformation_Proc
) (
250 TOKEN_INFORMATION_CLASS TokenInformationClass
,
251 LPVOID TokenInformation
,
252 DWORD TokenInformationLength
,
253 PDWORD ReturnLength
);
254 typedef BOOL (WINAPI
* GetProcessTimes_Proc
) (
255 HANDLE process_handle
,
256 LPFILETIME creation_time
,
257 LPFILETIME exit_time
,
258 LPFILETIME kernel_time
,
259 LPFILETIME user_time
);
261 GetProcessTimes_Proc get_process_times_fn
= NULL
;
264 const char * const LookupAccountSid_Name
= "LookupAccountSidW";
265 const char * const GetFileSecurity_Name
= "GetFileSecurityW";
267 const char * const LookupAccountSid_Name
= "LookupAccountSidA";
268 const char * const GetFileSecurity_Name
= "GetFileSecurityA";
270 typedef BOOL (WINAPI
* LookupAccountSid_Proc
) (
271 LPCTSTR lpSystemName
,
276 LPDWORD cbDomainName
,
277 PSID_NAME_USE peUse
);
278 typedef PDWORD (WINAPI
* GetSidSubAuthority_Proc
) (
281 typedef PUCHAR (WINAPI
* GetSidSubAuthorityCount_Proc
) (
283 typedef DWORD (WINAPI
* GetSecurityInfo_Proc
) (
285 SE_OBJECT_TYPE ObjectType
,
286 SECURITY_INFORMATION SecurityInfo
,
291 PSECURITY_DESCRIPTOR
*ppSecurityDescriptor
);
292 typedef BOOL (WINAPI
* GetFileSecurity_Proc
) (
294 SECURITY_INFORMATION RequestedInformation
,
295 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
297 LPDWORD lpnLengthNeeded
);
298 typedef BOOL (WINAPI
* GetSecurityDescriptorOwner_Proc
) (
299 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
301 LPBOOL lpbOwnerDefaulted
);
302 typedef BOOL (WINAPI
* GetSecurityDescriptorGroup_Proc
) (
303 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
305 LPBOOL lpbGroupDefaulted
);
306 typedef BOOL (WINAPI
* IsValidSid_Proc
) (
308 typedef HANDLE (WINAPI
* CreateToolhelp32Snapshot_Proc
) (
310 DWORD th32ProcessID
);
311 typedef BOOL (WINAPI
* Process32First_Proc
) (
313 LPPROCESSENTRY32 lppe
);
314 typedef BOOL (WINAPI
* Process32Next_Proc
) (
316 LPPROCESSENTRY32 lppe
);
317 typedef BOOL (WINAPI
* OpenThreadToken_Proc
) (
321 PHANDLE TokenHandle
);
322 typedef BOOL (WINAPI
* ImpersonateSelf_Proc
) (
323 SECURITY_IMPERSONATION_LEVEL ImpersonationLevel
);
324 typedef BOOL (WINAPI
* RevertToSelf_Proc
) (void);
325 typedef BOOL (WINAPI
* GetProcessMemoryInfo_Proc
) (
327 PPROCESS_MEMORY_COUNTERS ppsmemCounters
,
329 typedef BOOL (WINAPI
* GetProcessWorkingSetSize_Proc
) (
331 DWORD
* lpMinimumWorkingSetSize
,
332 DWORD
* lpMaximumWorkingSetSize
);
333 typedef BOOL (WINAPI
* GlobalMemoryStatus_Proc
) (
334 LPMEMORYSTATUS lpBuffer
);
335 typedef BOOL (WINAPI
* GlobalMemoryStatusEx_Proc
) (
336 LPMEMORY_STATUS_EX lpBuffer
);
337 typedef BOOL (WINAPI
* CopySid_Proc
) (
338 DWORD nDestinationSidLength
,
339 PSID pDestinationSid
,
341 typedef BOOL (WINAPI
* EqualSid_Proc
) (
344 typedef DWORD (WINAPI
* GetLengthSid_Proc
) (
346 typedef void (WINAPI
* GetNativeSystemInfo_Proc
) (
347 LPSYSTEM_INFO lpSystemInfo
);
348 typedef BOOL (WINAPI
* GetSystemTimes_Proc
) (
349 LPFILETIME lpIdleTime
,
350 LPFILETIME lpKernelTime
,
351 LPFILETIME lpUserTime
);
352 typedef BOOLEAN (WINAPI
*CreateSymbolicLink_Proc
) (
353 LPTSTR lpSymlinkFileName
,
354 LPTSTR lpTargetFileName
,
357 /* ** A utility function ** */
361 static BOOL s_b_ret
= 0;
362 OSVERSIONINFO os_ver
;
363 if (g_b_init_is_windows_9x
== 0)
365 g_b_init_is_windows_9x
= 1;
366 ZeroMemory (&os_ver
, sizeof (OSVERSIONINFO
));
367 os_ver
.dwOSVersionInfoSize
= sizeof (OSVERSIONINFO
);
368 if (GetVersionEx (&os_ver
))
370 s_b_ret
= (os_ver
.dwPlatformId
== VER_PLATFORM_WIN32_WINDOWS
);
376 static Lisp_Object
ltime (ULONGLONG
);
378 /* Get total user and system times for get-internal-run-time.
379 Returns a list of integers if the times are provided by the OS
380 (NT derivatives), otherwise it returns the result of current-time. */
382 w32_get_internal_run_time (void)
384 if (get_process_times_fn
)
386 FILETIME create
, exit
, kernel
, user
;
387 HANDLE proc
= GetCurrentProcess ();
388 if ((*get_process_times_fn
) (proc
, &create
, &exit
, &kernel
, &user
))
390 LARGE_INTEGER user_int
, kernel_int
, total
;
391 user_int
.LowPart
= user
.dwLowDateTime
;
392 user_int
.HighPart
= user
.dwHighDateTime
;
393 kernel_int
.LowPart
= kernel
.dwLowDateTime
;
394 kernel_int
.HighPart
= kernel
.dwHighDateTime
;
395 total
.QuadPart
= user_int
.QuadPart
+ kernel_int
.QuadPart
;
396 return ltime (total
.QuadPart
);
400 return Fcurrent_time ();
403 /* ** The wrapper functions ** */
406 open_process_token (HANDLE ProcessHandle
,
410 static OpenProcessToken_Proc s_pfn_Open_Process_Token
= NULL
;
411 HMODULE hm_advapi32
= NULL
;
412 if (is_windows_9x () == TRUE
)
416 if (g_b_init_open_process_token
== 0)
418 g_b_init_open_process_token
= 1;
419 hm_advapi32
= LoadLibrary ("Advapi32.dll");
420 s_pfn_Open_Process_Token
=
421 (OpenProcessToken_Proc
) GetProcAddress (hm_advapi32
, "OpenProcessToken");
423 if (s_pfn_Open_Process_Token
== NULL
)
428 s_pfn_Open_Process_Token (
436 get_token_information (HANDLE TokenHandle
,
437 TOKEN_INFORMATION_CLASS TokenInformationClass
,
438 LPVOID TokenInformation
,
439 DWORD TokenInformationLength
,
442 static GetTokenInformation_Proc s_pfn_Get_Token_Information
= NULL
;
443 HMODULE hm_advapi32
= NULL
;
444 if (is_windows_9x () == TRUE
)
448 if (g_b_init_get_token_information
== 0)
450 g_b_init_get_token_information
= 1;
451 hm_advapi32
= LoadLibrary ("Advapi32.dll");
452 s_pfn_Get_Token_Information
=
453 (GetTokenInformation_Proc
) GetProcAddress (hm_advapi32
, "GetTokenInformation");
455 if (s_pfn_Get_Token_Information
== NULL
)
460 s_pfn_Get_Token_Information (
462 TokenInformationClass
,
464 TokenInformationLength
,
470 lookup_account_sid (LPCTSTR lpSystemName
,
475 LPDWORD cbDomainName
,
478 static LookupAccountSid_Proc s_pfn_Lookup_Account_Sid
= NULL
;
479 HMODULE hm_advapi32
= NULL
;
480 if (is_windows_9x () == TRUE
)
484 if (g_b_init_lookup_account_sid
== 0)
486 g_b_init_lookup_account_sid
= 1;
487 hm_advapi32
= LoadLibrary ("Advapi32.dll");
488 s_pfn_Lookup_Account_Sid
=
489 (LookupAccountSid_Proc
) GetProcAddress (hm_advapi32
, LookupAccountSid_Name
);
491 if (s_pfn_Lookup_Account_Sid
== NULL
)
496 s_pfn_Lookup_Account_Sid (
508 get_sid_sub_authority (PSID pSid
, DWORD n
)
510 static GetSidSubAuthority_Proc s_pfn_Get_Sid_Sub_Authority
= NULL
;
511 static DWORD zero
= 0U;
512 HMODULE hm_advapi32
= NULL
;
513 if (is_windows_9x () == TRUE
)
517 if (g_b_init_get_sid_sub_authority
== 0)
519 g_b_init_get_sid_sub_authority
= 1;
520 hm_advapi32
= LoadLibrary ("Advapi32.dll");
521 s_pfn_Get_Sid_Sub_Authority
=
522 (GetSidSubAuthority_Proc
) GetProcAddress (
523 hm_advapi32
, "GetSidSubAuthority");
525 if (s_pfn_Get_Sid_Sub_Authority
== NULL
)
529 return (s_pfn_Get_Sid_Sub_Authority (pSid
, n
));
533 get_sid_sub_authority_count (PSID pSid
)
535 static GetSidSubAuthorityCount_Proc s_pfn_Get_Sid_Sub_Authority_Count
= NULL
;
536 static UCHAR zero
= 0U;
537 HMODULE hm_advapi32
= NULL
;
538 if (is_windows_9x () == TRUE
)
542 if (g_b_init_get_sid_sub_authority_count
== 0)
544 g_b_init_get_sid_sub_authority_count
= 1;
545 hm_advapi32
= LoadLibrary ("Advapi32.dll");
546 s_pfn_Get_Sid_Sub_Authority_Count
=
547 (GetSidSubAuthorityCount_Proc
) GetProcAddress (
548 hm_advapi32
, "GetSidSubAuthorityCount");
550 if (s_pfn_Get_Sid_Sub_Authority_Count
== NULL
)
554 return (s_pfn_Get_Sid_Sub_Authority_Count (pSid
));
558 get_security_info (HANDLE handle
,
559 SE_OBJECT_TYPE ObjectType
,
560 SECURITY_INFORMATION SecurityInfo
,
565 PSECURITY_DESCRIPTOR
*ppSecurityDescriptor
)
567 static GetSecurityInfo_Proc s_pfn_Get_Security_Info
= NULL
;
568 HMODULE hm_advapi32
= NULL
;
569 if (is_windows_9x () == TRUE
)
573 if (g_b_init_get_security_info
== 0)
575 g_b_init_get_security_info
= 1;
576 hm_advapi32
= LoadLibrary ("Advapi32.dll");
577 s_pfn_Get_Security_Info
=
578 (GetSecurityInfo_Proc
) GetProcAddress (
579 hm_advapi32
, "GetSecurityInfo");
581 if (s_pfn_Get_Security_Info
== NULL
)
585 return (s_pfn_Get_Security_Info (handle
, ObjectType
, SecurityInfo
,
586 ppsidOwner
, ppsidGroup
, ppDacl
, ppSacl
,
587 ppSecurityDescriptor
));
591 get_file_security (LPCTSTR lpFileName
,
592 SECURITY_INFORMATION RequestedInformation
,
593 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
595 LPDWORD lpnLengthNeeded
)
597 static GetFileSecurity_Proc s_pfn_Get_File_Security
= NULL
;
598 HMODULE hm_advapi32
= NULL
;
599 if (is_windows_9x () == TRUE
)
603 if (g_b_init_get_file_security
== 0)
605 g_b_init_get_file_security
= 1;
606 hm_advapi32
= LoadLibrary ("Advapi32.dll");
607 s_pfn_Get_File_Security
=
608 (GetFileSecurity_Proc
) GetProcAddress (
609 hm_advapi32
, GetFileSecurity_Name
);
611 if (s_pfn_Get_File_Security
== NULL
)
615 return (s_pfn_Get_File_Security (lpFileName
, RequestedInformation
,
616 pSecurityDescriptor
, nLength
,
621 get_security_descriptor_owner (PSECURITY_DESCRIPTOR pSecurityDescriptor
,
623 LPBOOL lpbOwnerDefaulted
)
625 static GetSecurityDescriptorOwner_Proc s_pfn_Get_Security_Descriptor_Owner
= NULL
;
626 HMODULE hm_advapi32
= NULL
;
627 if (is_windows_9x () == TRUE
)
631 if (g_b_init_get_security_descriptor_owner
== 0)
633 g_b_init_get_security_descriptor_owner
= 1;
634 hm_advapi32
= LoadLibrary ("Advapi32.dll");
635 s_pfn_Get_Security_Descriptor_Owner
=
636 (GetSecurityDescriptorOwner_Proc
) GetProcAddress (
637 hm_advapi32
, "GetSecurityDescriptorOwner");
639 if (s_pfn_Get_Security_Descriptor_Owner
== NULL
)
643 return (s_pfn_Get_Security_Descriptor_Owner (pSecurityDescriptor
, pOwner
,
648 get_security_descriptor_group (PSECURITY_DESCRIPTOR pSecurityDescriptor
,
650 LPBOOL lpbGroupDefaulted
)
652 static GetSecurityDescriptorGroup_Proc s_pfn_Get_Security_Descriptor_Group
= NULL
;
653 HMODULE hm_advapi32
= NULL
;
654 if (is_windows_9x () == TRUE
)
658 if (g_b_init_get_security_descriptor_group
== 0)
660 g_b_init_get_security_descriptor_group
= 1;
661 hm_advapi32
= LoadLibrary ("Advapi32.dll");
662 s_pfn_Get_Security_Descriptor_Group
=
663 (GetSecurityDescriptorGroup_Proc
) GetProcAddress (
664 hm_advapi32
, "GetSecurityDescriptorGroup");
666 if (s_pfn_Get_Security_Descriptor_Group
== NULL
)
670 return (s_pfn_Get_Security_Descriptor_Group (pSecurityDescriptor
, pGroup
,
675 is_valid_sid (PSID sid
)
677 static IsValidSid_Proc s_pfn_Is_Valid_Sid
= NULL
;
678 HMODULE hm_advapi32
= NULL
;
679 if (is_windows_9x () == TRUE
)
683 if (g_b_init_is_valid_sid
== 0)
685 g_b_init_is_valid_sid
= 1;
686 hm_advapi32
= LoadLibrary ("Advapi32.dll");
688 (IsValidSid_Proc
) GetProcAddress (
689 hm_advapi32
, "IsValidSid");
691 if (s_pfn_Is_Valid_Sid
== NULL
)
695 return (s_pfn_Is_Valid_Sid (sid
));
699 equal_sid (PSID sid1
, PSID sid2
)
701 static EqualSid_Proc s_pfn_Equal_Sid
= NULL
;
702 HMODULE hm_advapi32
= NULL
;
703 if (is_windows_9x () == TRUE
)
707 if (g_b_init_equal_sid
== 0)
709 g_b_init_equal_sid
= 1;
710 hm_advapi32
= LoadLibrary ("Advapi32.dll");
712 (EqualSid_Proc
) GetProcAddress (
713 hm_advapi32
, "EqualSid");
715 if (s_pfn_Equal_Sid
== NULL
)
719 return (s_pfn_Equal_Sid (sid1
, sid2
));
723 get_length_sid (PSID sid
)
725 static GetLengthSid_Proc s_pfn_Get_Length_Sid
= NULL
;
726 HMODULE hm_advapi32
= NULL
;
727 if (is_windows_9x () == TRUE
)
731 if (g_b_init_get_length_sid
== 0)
733 g_b_init_get_length_sid
= 1;
734 hm_advapi32
= LoadLibrary ("Advapi32.dll");
735 s_pfn_Get_Length_Sid
=
736 (GetLengthSid_Proc
) GetProcAddress (
737 hm_advapi32
, "GetLengthSid");
739 if (s_pfn_Get_Length_Sid
== NULL
)
743 return (s_pfn_Get_Length_Sid (sid
));
747 copy_sid (DWORD destlen
, PSID dest
, PSID src
)
749 static CopySid_Proc s_pfn_Copy_Sid
= NULL
;
750 HMODULE hm_advapi32
= NULL
;
751 if (is_windows_9x () == TRUE
)
755 if (g_b_init_copy_sid
== 0)
757 g_b_init_copy_sid
= 1;
758 hm_advapi32
= LoadLibrary ("Advapi32.dll");
760 (CopySid_Proc
) GetProcAddress (
761 hm_advapi32
, "CopySid");
763 if (s_pfn_Copy_Sid
== NULL
)
767 return (s_pfn_Copy_Sid (destlen
, dest
, src
));
771 END: Wrapper functions around OpenProcessToken
772 and other functions in advapi32.dll that are only
773 supported in Windows NT / 2k / XP
777 get_native_system_info (LPSYSTEM_INFO lpSystemInfo
)
779 static GetNativeSystemInfo_Proc s_pfn_Get_Native_System_Info
= NULL
;
780 if (is_windows_9x () != TRUE
)
782 if (g_b_init_get_native_system_info
== 0)
784 g_b_init_get_native_system_info
= 1;
785 s_pfn_Get_Native_System_Info
=
786 (GetNativeSystemInfo_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
787 "GetNativeSystemInfo");
789 if (s_pfn_Get_Native_System_Info
!= NULL
)
790 s_pfn_Get_Native_System_Info (lpSystemInfo
);
793 lpSystemInfo
->dwNumberOfProcessors
= -1;
797 get_system_times (LPFILETIME lpIdleTime
,
798 LPFILETIME lpKernelTime
,
799 LPFILETIME lpUserTime
)
801 static GetSystemTimes_Proc s_pfn_Get_System_times
= NULL
;
802 if (is_windows_9x () == TRUE
)
806 if (g_b_init_get_system_times
== 0)
808 g_b_init_get_system_times
= 1;
809 s_pfn_Get_System_times
=
810 (GetSystemTimes_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
813 if (s_pfn_Get_System_times
== NULL
)
815 return (s_pfn_Get_System_times (lpIdleTime
, lpKernelTime
, lpUserTime
));
818 static BOOLEAN WINAPI
819 create_symbolic_link (LPTSTR lpSymlinkFilename
,
820 LPTSTR lpTargetFileName
,
823 static CreateSymbolicLink_Proc s_pfn_Create_Symbolic_Link
= NULL
;
826 if (is_windows_9x () == TRUE
)
831 if (g_b_init_create_symbolic_link
== 0)
833 g_b_init_create_symbolic_link
= 1;
835 s_pfn_Create_Symbolic_Link
=
836 (CreateSymbolicLink_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
837 "CreateSymbolicLinkW");
839 s_pfn_Create_Symbolic_Link
=
840 (CreateSymbolicLink_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
841 "CreateSymbolicLinkA");
844 if (s_pfn_Create_Symbolic_Link
== NULL
)
850 retval
= s_pfn_Create_Symbolic_Link (lpSymlinkFilename
, lpTargetFileName
,
852 /* If we were denied creation of the symlink, try again after
853 enabling the SeCreateSymbolicLinkPrivilege for our process. */
856 TOKEN_PRIVILEGES priv_current
;
858 if (enable_privilege (SE_CREATE_SYMBOLIC_LINK_NAME
, TRUE
, &priv_current
))
860 retval
= s_pfn_Create_Symbolic_Link (lpSymlinkFilename
, lpTargetFileName
,
862 restore_privilege (&priv_current
);
870 /* Return 1 if P is a valid pointer to an object of size SIZE. Return
871 0 if P is NOT a valid pointer. Return -1 if we cannot validate P.
873 This is called from alloc.c:valid_pointer_p. */
875 w32_valid_pointer_p (void *p
, int size
)
878 HANDLE h
= OpenProcess (PROCESS_VM_READ
, FALSE
, GetCurrentProcessId ());
882 unsigned char *buf
= alloca (size
);
883 int retval
= ReadProcessMemory (h
, p
, buf
, size
, &done
);
892 static char startup_dir
[MAXPATHLEN
];
894 /* Get the current working directory. */
899 if (GetCurrentDirectory (MAXPATHLEN
, dir
) > 0)
903 /* Emacs doesn't actually change directory itself, it stays in the
904 same directory where it was started. */
905 strcpy (dir
, startup_dir
);
910 /* Emulate getloadavg. */
919 /* Number of processors on this machine. */
920 static unsigned num_of_processors
;
922 /* We maintain 1-sec samples for the last 16 minutes in a circular buffer. */
923 static struct load_sample samples
[16*60];
924 static int first_idx
= -1, last_idx
= -1;
925 static int max_idx
= sizeof (samples
) / sizeof (samples
[0]);
930 int next_idx
= from
+ 1;
932 if (next_idx
>= max_idx
)
941 int prev_idx
= from
- 1;
944 prev_idx
= max_idx
- 1;
950 sample_system_load (ULONGLONG
*idle
, ULONGLONG
*kernel
, ULONGLONG
*user
)
953 FILETIME ft_idle
, ft_user
, ft_kernel
;
955 /* Initialize the number of processors on this machine. */
956 if (num_of_processors
<= 0)
958 get_native_system_info (&sysinfo
);
959 num_of_processors
= sysinfo
.dwNumberOfProcessors
;
960 if (num_of_processors
<= 0)
962 GetSystemInfo (&sysinfo
);
963 num_of_processors
= sysinfo
.dwNumberOfProcessors
;
965 if (num_of_processors
<= 0)
966 num_of_processors
= 1;
969 /* TODO: Take into account threads that are ready to run, by
970 sampling the "\System\Processor Queue Length" performance
971 counter. The code below accounts only for threads that are
974 if (get_system_times (&ft_idle
, &ft_kernel
, &ft_user
))
976 ULARGE_INTEGER uidle
, ukernel
, uuser
;
978 memcpy (&uidle
, &ft_idle
, sizeof (ft_idle
));
979 memcpy (&ukernel
, &ft_kernel
, sizeof (ft_kernel
));
980 memcpy (&uuser
, &ft_user
, sizeof (ft_user
));
981 *idle
= uidle
.QuadPart
;
982 *kernel
= ukernel
.QuadPart
;
983 *user
= uuser
.QuadPart
;
993 /* Produce the load average for a given time interval, using the
994 samples in the samples[] array. WHICH can be 0, 1, or 2, meaning
995 1-minute, 5-minute, or 15-minute average, respectively. */
999 double retval
= -1.0;
1002 double span
= (which
== 0 ? 1.0 : (which
== 1 ? 5.0 : 15.0)) * 60;
1003 time_t now
= samples
[last_idx
].sample_time
;
1005 if (first_idx
!= last_idx
)
1007 for (idx
= buf_prev (last_idx
); ; idx
= buf_prev (idx
))
1009 tdiff
= difftime (now
, samples
[idx
].sample_time
);
1010 if (tdiff
>= span
- 2*DBL_EPSILON
*now
)
1013 samples
[last_idx
].kernel
+ samples
[last_idx
].user
1014 - (samples
[idx
].kernel
+ samples
[idx
].user
);
1015 long double idl
= samples
[last_idx
].idle
- samples
[idx
].idle
;
1017 retval
= (1.0 - idl
/ sys
) * num_of_processors
;
1020 if (idx
== first_idx
)
1029 getloadavg (double loadavg
[], int nelem
)
1032 ULONGLONG idle
, kernel
, user
;
1033 time_t now
= time (NULL
);
1035 /* Store another sample. We ignore samples that are less than 1 sec
1037 if (difftime (now
, samples
[last_idx
].sample_time
) >= 1.0 - 2*DBL_EPSILON
*now
)
1039 sample_system_load (&idle
, &kernel
, &user
);
1040 last_idx
= buf_next (last_idx
);
1041 samples
[last_idx
].sample_time
= now
;
1042 samples
[last_idx
].idle
= idle
;
1043 samples
[last_idx
].kernel
= kernel
;
1044 samples
[last_idx
].user
= user
;
1045 /* If the buffer has more that 15 min worth of samples, discard
1047 if (first_idx
== -1)
1048 first_idx
= last_idx
;
1049 while (first_idx
!= last_idx
1050 && (difftime (now
, samples
[first_idx
].sample_time
)
1051 >= 15.0*60 + 2*DBL_EPSILON
*now
))
1052 first_idx
= buf_next (first_idx
);
1055 for (elem
= 0; elem
< nelem
; elem
++)
1057 double avg
= getavg (elem
);
1061 loadavg
[elem
] = avg
;
1067 /* Emulate getpwuid, getpwnam and others. */
1069 #define PASSWD_FIELD_SIZE 256
1071 static char dflt_passwd_name
[PASSWD_FIELD_SIZE
];
1072 static char dflt_passwd_passwd
[PASSWD_FIELD_SIZE
];
1073 static char dflt_passwd_gecos
[PASSWD_FIELD_SIZE
];
1074 static char dflt_passwd_dir
[PASSWD_FIELD_SIZE
];
1075 static char dflt_passwd_shell
[PASSWD_FIELD_SIZE
];
1077 static struct passwd dflt_passwd
=
1089 static char dflt_group_name
[GNLEN
+1];
1091 static struct group dflt_group
=
1093 /* When group information is not available, we return this as the
1094 group for all files. */
1102 return dflt_passwd
.pw_uid
;
1108 /* I could imagine arguing for checking to see whether the user is
1109 in the Administrators group and returning a UID of 0 for that
1110 case, but I don't know how wise that would be in the long run. */
1117 return dflt_passwd
.pw_gid
;
1127 getpwuid (unsigned uid
)
1129 if (uid
== dflt_passwd
.pw_uid
)
1130 return &dflt_passwd
;
1135 getgrgid (gid_t gid
)
1141 getpwnam (char *name
)
1145 pw
= getpwuid (getuid ());
1149 if (xstrcasecmp (name
, pw
->pw_name
))
1156 init_user_info (void)
1158 /* Find the user's real name by opening the process token and
1159 looking up the name associated with the user-sid in that token.
1161 Use the relative portion of the identifier authority value from
1162 the user-sid as the user id value (same for group id using the
1163 primary group sid from the process token). */
1165 char uname
[UNLEN
+1], gname
[GNLEN
+1], domain
[1025];
1166 DWORD ulength
= sizeof (uname
), dlength
= sizeof (domain
), needed
;
1167 DWORD glength
= sizeof (gname
);
1168 HANDLE token
= NULL
;
1169 SID_NAME_USE user_type
;
1170 unsigned char *buf
= NULL
;
1172 TOKEN_USER user_token
;
1173 TOKEN_PRIMARY_GROUP group_token
;
1176 result
= open_process_token (GetCurrentProcess (), TOKEN_QUERY
, &token
);
1179 result
= get_token_information (token
, TokenUser
, NULL
, 0, &blen
);
1180 if (!result
&& GetLastError () == ERROR_INSUFFICIENT_BUFFER
)
1182 buf
= xmalloc (blen
);
1183 result
= get_token_information (token
, TokenUser
,
1184 (LPVOID
)buf
, blen
, &needed
);
1187 memcpy (&user_token
, buf
, sizeof (user_token
));
1188 result
= lookup_account_sid (NULL
, user_token
.User
.Sid
,
1190 domain
, &dlength
, &user_type
);
1198 strcpy (dflt_passwd
.pw_name
, uname
);
1199 /* Determine a reasonable uid value. */
1200 if (xstrcasecmp ("administrator", uname
) == 0)
1202 dflt_passwd
.pw_uid
= 500; /* well-known Administrator uid */
1203 dflt_passwd
.pw_gid
= 513; /* well-known None gid */
1207 /* Use the last sub-authority value of the RID, the relative
1208 portion of the SID, as user/group ID. */
1209 dflt_passwd
.pw_uid
= get_rid (user_token
.User
.Sid
);
1211 /* Get group id and name. */
1212 result
= get_token_information (token
, TokenPrimaryGroup
,
1213 (LPVOID
)buf
, blen
, &needed
);
1214 if (!result
&& GetLastError () == ERROR_INSUFFICIENT_BUFFER
)
1216 buf
= xrealloc (buf
, blen
= needed
);
1217 result
= get_token_information (token
, TokenPrimaryGroup
,
1218 (LPVOID
)buf
, blen
, &needed
);
1222 memcpy (&group_token
, buf
, sizeof (group_token
));
1223 dflt_passwd
.pw_gid
= get_rid (group_token
.PrimaryGroup
);
1224 dlength
= sizeof (domain
);
1225 /* If we can get at the real Primary Group name, use that.
1226 Otherwise, the default group name was already set to
1227 "None" in globals_of_w32. */
1228 if (lookup_account_sid (NULL
, group_token
.PrimaryGroup
,
1229 gname
, &glength
, NULL
, &dlength
,
1231 strcpy (dflt_group_name
, gname
);
1234 dflt_passwd
.pw_gid
= dflt_passwd
.pw_uid
;
1237 /* If security calls are not supported (presumably because we
1238 are running under Windows 9X), fallback to this: */
1239 else if (GetUserName (uname
, &ulength
))
1241 strcpy (dflt_passwd
.pw_name
, uname
);
1242 if (xstrcasecmp ("administrator", uname
) == 0)
1243 dflt_passwd
.pw_uid
= 0;
1245 dflt_passwd
.pw_uid
= 123;
1246 dflt_passwd
.pw_gid
= dflt_passwd
.pw_uid
;
1250 strcpy (dflt_passwd
.pw_name
, "unknown");
1251 dflt_passwd
.pw_uid
= 123;
1252 dflt_passwd
.pw_gid
= 123;
1254 dflt_group
.gr_gid
= dflt_passwd
.pw_gid
;
1256 /* Ensure HOME and SHELL are defined. */
1257 if (getenv ("HOME") == NULL
)
1259 if (getenv ("SHELL") == NULL
)
1262 /* Set dir and shell from environment variables. */
1263 strcpy (dflt_passwd
.pw_dir
, getenv ("HOME"));
1264 strcpy (dflt_passwd
.pw_shell
, getenv ("SHELL"));
1268 CloseHandle (token
);
1274 /* rand () on NT gives us 15 random bits...hack together 30 bits. */
1275 return ((rand () << 15) | rand ());
1285 /* Normalize filename by converting all path separators to
1286 the specified separator. Also conditionally convert upper
1287 case path name components to lower case. */
1290 normalize_filename (register char *fp
, char path_sep
)
1295 /* Always lower-case drive letters a-z, even if the filesystem
1296 preserves case in filenames.
1297 This is so filenames can be compared by string comparison
1298 functions that are case-sensitive. Even case-preserving filesystems
1299 do not distinguish case in drive letters. */
1300 if (fp
[1] == ':' && *fp
>= 'A' && *fp
<= 'Z')
1306 if (NILP (Vw32_downcase_file_names
))
1310 if (*fp
== '/' || *fp
== '\\')
1317 sep
= path_sep
; /* convert to this path separator */
1318 elem
= fp
; /* start of current path element */
1321 if (*fp
>= 'a' && *fp
<= 'z')
1322 elem
= 0; /* don't convert this element */
1324 if (*fp
== 0 || *fp
== ':')
1326 sep
= *fp
; /* restore current separator (or 0) */
1327 *fp
= '/'; /* after conversion of this element */
1330 if (*fp
== '/' || *fp
== '\\')
1332 if (elem
&& elem
!= fp
)
1334 *fp
= 0; /* temporary end of string */
1335 _strlwr (elem
); /* while we convert to lower case */
1337 *fp
= sep
; /* convert (or restore) path separator */
1338 elem
= fp
+ 1; /* next element starts after separator */
1344 /* Destructively turn backslashes into slashes. */
1346 dostounix_filename (register char *p
)
1348 normalize_filename (p
, '/');
1351 /* Destructively turn slashes into backslashes. */
1353 unixtodos_filename (register char *p
)
1355 normalize_filename (p
, '\\');
1358 /* Remove all CR's that are followed by a LF.
1359 (From msdos.c...probably should figure out a way to share it,
1360 although this code isn't going to ever change.) */
1362 crlf_to_lf (register int n
, register unsigned char *buf
)
1364 unsigned char *np
= buf
;
1365 unsigned char *startp
= buf
;
1366 unsigned char *endp
= buf
+ n
;
1370 while (buf
< endp
- 1)
1374 if (*(++buf
) != 0x0a)
1385 /* Parse the root part of file name, if present. Return length and
1386 optionally store pointer to char after root. */
1388 parse_root (char * name
, char ** pPath
)
1390 char * start
= name
;
1395 /* find the root name of the volume if given */
1396 if (isalpha (name
[0]) && name
[1] == ':')
1398 /* skip past drive specifier */
1400 if (IS_DIRECTORY_SEP (name
[0]))
1403 else if (IS_DIRECTORY_SEP (name
[0]) && IS_DIRECTORY_SEP (name
[1]))
1409 if (IS_DIRECTORY_SEP (*name
) && --slashes
== 0)
1414 if (IS_DIRECTORY_SEP (name
[0]))
1421 return name
- start
;
1424 /* Get long base name for name; name is assumed to be absolute. */
1426 get_long_basename (char * name
, char * buf
, int size
)
1428 WIN32_FIND_DATA find_data
;
1432 /* must be valid filename, no wild cards or other invalid characters */
1433 if (_mbspbrk (name
, "*?|<>\""))
1436 dir_handle
= FindFirstFile (name
, &find_data
);
1437 if (dir_handle
!= INVALID_HANDLE_VALUE
)
1439 if ((len
= strlen (find_data
.cFileName
)) < size
)
1440 memcpy (buf
, find_data
.cFileName
, len
+ 1);
1443 FindClose (dir_handle
);
1448 /* Get long name for file, if possible (assumed to be absolute). */
1450 w32_get_long_filename (char * name
, char * buf
, int size
)
1455 char full
[ MAX_PATH
];
1458 len
= strlen (name
);
1459 if (len
>= MAX_PATH
)
1462 /* Use local copy for destructive modification. */
1463 memcpy (full
, name
, len
+1);
1464 unixtodos_filename (full
);
1466 /* Copy root part verbatim. */
1467 len
= parse_root (full
, &p
);
1468 memcpy (o
, full
, len
);
1473 while (p
!= NULL
&& *p
)
1476 p
= strchr (q
, '\\');
1478 len
= get_long_basename (full
, o
, size
);
1501 is_unc_volume (const char *filename
)
1503 const char *ptr
= filename
;
1505 if (!IS_DIRECTORY_SEP (ptr
[0]) || !IS_DIRECTORY_SEP (ptr
[1]) || !ptr
[2])
1508 if (_mbspbrk (ptr
+ 2, "*?|<>\"\\/"))
1514 #define REG_ROOT "SOFTWARE\\GNU\\Emacs"
1517 w32_get_resource (char *key
, LPDWORD lpdwtype
)
1520 HKEY hrootkey
= NULL
;
1523 /* Check both the current user and the local machine to see if
1524 we have any resources. */
1526 if (RegOpenKeyEx (HKEY_CURRENT_USER
, REG_ROOT
, 0, KEY_READ
, &hrootkey
) == ERROR_SUCCESS
)
1530 if (RegQueryValueEx (hrootkey
, key
, NULL
, NULL
, NULL
, &cbData
) == ERROR_SUCCESS
1531 && (lpvalue
= xmalloc (cbData
)) != NULL
1532 && RegQueryValueEx (hrootkey
, key
, NULL
, lpdwtype
, lpvalue
, &cbData
) == ERROR_SUCCESS
)
1534 RegCloseKey (hrootkey
);
1540 RegCloseKey (hrootkey
);
1543 if (RegOpenKeyEx (HKEY_LOCAL_MACHINE
, REG_ROOT
, 0, KEY_READ
, &hrootkey
) == ERROR_SUCCESS
)
1547 if (RegQueryValueEx (hrootkey
, key
, NULL
, NULL
, NULL
, &cbData
) == ERROR_SUCCESS
1548 && (lpvalue
= xmalloc (cbData
)) != NULL
1549 && RegQueryValueEx (hrootkey
, key
, NULL
, lpdwtype
, lpvalue
, &cbData
) == ERROR_SUCCESS
)
1551 RegCloseKey (hrootkey
);
1557 RegCloseKey (hrootkey
);
1563 char *get_emacs_configuration (void);
1566 init_environment (char ** argv
)
1568 static const char * const tempdirs
[] = {
1569 "$TMPDIR", "$TEMP", "$TMP", "c:/"
1574 const int imax
= sizeof (tempdirs
) / sizeof (tempdirs
[0]);
1576 /* Make sure they have a usable $TMPDIR. Many Emacs functions use
1577 temporary files and assume "/tmp" if $TMPDIR is unset, which
1578 will break on DOS/Windows. Refuse to work if we cannot find
1579 a directory, not even "c:/", usable for that purpose. */
1580 for (i
= 0; i
< imax
; i
++)
1582 const char *tmp
= tempdirs
[i
];
1585 tmp
= getenv (tmp
+ 1);
1586 /* Note that `access' can lie to us if the directory resides on a
1587 read-only filesystem, like CD-ROM or a write-protected floppy.
1588 The only way to be really sure is to actually create a file and
1589 see if it succeeds. But I think that's too much to ask. */
1591 /* MSVCRT's _access crashes with D_OK. */
1592 if (tmp
&& sys_access (tmp
, D_OK
) == 0)
1594 char * var
= alloca (strlen (tmp
) + 8);
1595 sprintf (var
, "TMPDIR=%s", tmp
);
1596 _putenv (strdup (var
));
1603 Fcons (build_string ("no usable temporary directories found!!"),
1605 "While setting TMPDIR: ");
1607 /* Check for environment variables and use registry settings if they
1608 don't exist. Fallback on default values where applicable. */
1613 char locale_name
[32];
1614 struct stat ignored
;
1615 char default_home
[MAX_PATH
];
1618 static const struct env_entry
1624 /* If the default value is NULL, we will use the value from the
1625 outside environment or the Registry, but will not push the
1626 variable into the Emacs environment if it is defined neither
1627 in the Registry nor in the outside environment. */
1629 {"PRELOAD_WINSOCK", NULL
},
1630 {"emacs_dir", "C:/emacs"},
1631 {"EMACSLOADPATH", NULL
},
1632 {"SHELL", "%emacs_dir%/bin/cmdproxy.exe"},
1633 {"EMACSDATA", NULL
},
1634 {"EMACSPATH", NULL
},
1641 #define N_ENV_VARS sizeof (dflt_envvars)/sizeof (dflt_envvars[0])
1643 /* We need to copy dflt_envvars[] and work on the copy because we
1644 don't want the dumped Emacs to inherit the values of
1645 environment variables we saw during dumping (which could be on
1646 a different system). The defaults above must be left intact. */
1647 struct env_entry env_vars
[N_ENV_VARS
];
1649 for (i
= 0; i
< N_ENV_VARS
; i
++)
1650 env_vars
[i
] = dflt_envvars
[i
];
1652 /* For backwards compatibility, check if a .emacs file exists in C:/
1653 If not, then we can try to default to the appdata directory under the
1654 user's profile, which is more likely to be writable. */
1655 if (stat ("C:/.emacs", &ignored
) < 0)
1657 HRESULT profile_result
;
1658 /* Dynamically load ShGetFolderPath, as it won't exist on versions
1659 of Windows 95 and NT4 that have not been updated to include
1661 ShGetFolderPath_fn get_folder_path
;
1662 get_folder_path
= (ShGetFolderPath_fn
)
1663 GetProcAddress (GetModuleHandle ("shell32.dll"), "SHGetFolderPathA");
1665 if (get_folder_path
!= NULL
)
1667 profile_result
= get_folder_path (NULL
, CSIDL_APPDATA
, NULL
,
1670 /* If we can't get the appdata dir, revert to old behavior. */
1671 if (profile_result
== S_OK
)
1673 env_vars
[0].def_value
= default_home
;
1679 /* Get default locale info and use it for LANG. */
1680 if (GetLocaleInfo (LOCALE_USER_DEFAULT
,
1681 LOCALE_SABBREVLANGNAME
| LOCALE_USE_CP_ACP
,
1682 locale_name
, sizeof (locale_name
)))
1684 for (i
= 0; i
< N_ENV_VARS
; i
++)
1686 if (strcmp (env_vars
[i
].name
, "LANG") == 0)
1688 env_vars
[i
].def_value
= locale_name
;
1694 #define SET_ENV_BUF_SIZE (4 * MAX_PATH) /* to cover EMACSLOADPATH */
1696 /* Treat emacs_dir specially: set it unconditionally based on our
1700 char modname
[MAX_PATH
];
1702 if (!GetModuleFileName (NULL
, modname
, MAX_PATH
))
1704 if ((p
= strrchr (modname
, '\\')) == NULL
)
1708 if ((p
= strrchr (modname
, '\\')) && xstrcasecmp (p
, "\\bin") == 0)
1710 char buf
[SET_ENV_BUF_SIZE
];
1713 for (p
= modname
; *p
; p
++)
1714 if (*p
== '\\') *p
= '/';
1716 _snprintf (buf
, sizeof (buf
)-1, "emacs_dir=%s", modname
);
1717 _putenv (strdup (buf
));
1719 /* Handle running emacs from the build directory: src/oo-spd/i386/ */
1721 /* FIXME: should use substring of get_emacs_configuration ().
1722 But I don't think the Windows build supports alpha, mips etc
1723 anymore, so have taken the easy option for now. */
1724 else if (p
&& (xstrcasecmp (p
, "\\i386") == 0
1725 || xstrcasecmp (p
, "\\AMD64") == 0))
1728 p
= strrchr (modname
, '\\');
1732 p
= strrchr (modname
, '\\');
1733 if (p
&& xstrcasecmp (p
, "\\src") == 0)
1735 char buf
[SET_ENV_BUF_SIZE
];
1738 for (p
= modname
; *p
; p
++)
1739 if (*p
== '\\') *p
= '/';
1741 _snprintf (buf
, sizeof (buf
)-1, "emacs_dir=%s", modname
);
1742 _putenv (strdup (buf
));
1748 for (i
= 0; i
< N_ENV_VARS
; i
++)
1750 if (!getenv (env_vars
[i
].name
))
1754 if ((lpval
= w32_get_resource (env_vars
[i
].name
, &dwType
)) == NULL
1755 /* Also ignore empty environment variables. */
1759 lpval
= env_vars
[i
].def_value
;
1760 dwType
= REG_EXPAND_SZ
;
1762 if (!strcmp (env_vars
[i
].name
, "HOME") && !appdata
)
1763 Vdelayed_warnings_list
1764 = Fcons (listn (CONSTYPE_HEAP
, 2,
1765 intern ("initialization"),
1766 build_string ("Setting HOME to C:\\ by default is deprecated")),
1767 Vdelayed_warnings_list
);
1772 char buf1
[SET_ENV_BUF_SIZE
], buf2
[SET_ENV_BUF_SIZE
];
1774 if (dwType
== REG_EXPAND_SZ
)
1775 ExpandEnvironmentStrings ((LPSTR
) lpval
, buf1
, sizeof (buf1
));
1776 else if (dwType
== REG_SZ
)
1777 strcpy (buf1
, lpval
);
1778 if (dwType
== REG_EXPAND_SZ
|| dwType
== REG_SZ
)
1780 _snprintf (buf2
, sizeof (buf2
)-1, "%s=%s", env_vars
[i
].name
,
1782 _putenv (strdup (buf2
));
1792 /* Rebuild system configuration to reflect invoking system. */
1793 Vsystem_configuration
= build_string (EMACS_CONFIGURATION
);
1795 /* Another special case: on NT, the PATH variable is actually named
1796 "Path" although cmd.exe (perhaps NT itself) arranges for
1797 environment variable lookup and setting to be case insensitive.
1798 However, Emacs assumes a fully case sensitive environment, so we
1799 need to change "Path" to "PATH" to match the expectations of
1800 various elisp packages. We do this by the sneaky method of
1801 modifying the string in the C runtime environ entry.
1803 The same applies to COMSPEC. */
1807 for (envp
= environ
; *envp
; envp
++)
1808 if (_strnicmp (*envp
, "PATH=", 5) == 0)
1809 memcpy (*envp
, "PATH=", 5);
1810 else if (_strnicmp (*envp
, "COMSPEC=", 8) == 0)
1811 memcpy (*envp
, "COMSPEC=", 8);
1814 /* Remember the initial working directory for getwd. */
1815 /* FIXME: Do we need to resolve possible symlinks in startup_dir?
1816 Does it matter anywhere in Emacs? */
1817 if (!GetCurrentDirectory (MAXPATHLEN
, startup_dir
))
1821 static char modname
[MAX_PATH
];
1823 if (!GetModuleFileName (NULL
, modname
, MAX_PATH
))
1828 /* Determine if there is a middle mouse button, to allow parse_button
1829 to decide whether right mouse events should be mouse-2 or
1831 w32_num_mouse_buttons
= GetSystemMetrics (SM_CMOUSEBUTTONS
);
1836 /* Called from expand-file-name when default-directory is not a string. */
1839 emacs_root_dir (void)
1841 static char root_dir
[FILENAME_MAX
];
1844 p
= getenv ("emacs_dir");
1847 strcpy (root_dir
, p
);
1848 root_dir
[parse_root (root_dir
, NULL
)] = '\0';
1849 dostounix_filename (root_dir
);
1853 /* We don't have scripts to automatically determine the system configuration
1854 for Emacs before it's compiled, and we don't want to have to make the
1855 user enter it, so we define EMACS_CONFIGURATION to invoke this runtime
1859 get_emacs_configuration (void)
1861 char *arch
, *oem
, *os
;
1863 static char configuration_buffer
[32];
1865 /* Determine the processor type. */
1866 switch (get_processor_type ())
1869 #ifdef PROCESSOR_INTEL_386
1870 case PROCESSOR_INTEL_386
:
1871 case PROCESSOR_INTEL_486
:
1872 case PROCESSOR_INTEL_PENTIUM
:
1880 #ifdef PROCESSOR_AMD_X8664
1881 case PROCESSOR_AMD_X8664
:
1886 #ifdef PROCESSOR_MIPS_R2000
1887 case PROCESSOR_MIPS_R2000
:
1888 case PROCESSOR_MIPS_R3000
:
1889 case PROCESSOR_MIPS_R4000
:
1894 #ifdef PROCESSOR_ALPHA_21064
1895 case PROCESSOR_ALPHA_21064
:
1905 /* Use the OEM field to reflect the compiler/library combination. */
1907 #define COMPILER_NAME "msvc"
1910 #define COMPILER_NAME "mingw"
1912 #define COMPILER_NAME "unknown"
1915 oem
= COMPILER_NAME
;
1917 switch (osinfo_cache
.dwPlatformId
) {
1918 case VER_PLATFORM_WIN32_NT
:
1920 build_num
= osinfo_cache
.dwBuildNumber
;
1922 case VER_PLATFORM_WIN32_WINDOWS
:
1923 if (osinfo_cache
.dwMinorVersion
== 0) {
1928 build_num
= LOWORD (osinfo_cache
.dwBuildNumber
);
1930 case VER_PLATFORM_WIN32s
:
1931 /* Not supported, should not happen. */
1933 build_num
= LOWORD (osinfo_cache
.dwBuildNumber
);
1941 if (osinfo_cache
.dwPlatformId
== VER_PLATFORM_WIN32_NT
) {
1942 sprintf (configuration_buffer
, "%s-%s-%s%d.%d.%d", arch
, oem
, os
,
1943 get_w32_major_version (), get_w32_minor_version (), build_num
);
1945 sprintf (configuration_buffer
, "%s-%s-%s.%d", arch
, oem
, os
, build_num
);
1948 return configuration_buffer
;
1952 get_emacs_configuration_options (void)
1954 static char *options_buffer
;
1955 char cv
[32]; /* Enough for COMPILER_VERSION. */
1957 cv
, /* To be filled later. */
1961 #ifdef ENABLE_CHECKING
1962 " --enable-checking",
1964 /* configure.bat already sets USER_CFLAGS and USER_LDFLAGS
1965 with a starting space to save work here. */
1967 " --cflags", USER_CFLAGS
,
1970 " --ldflags", USER_LDFLAGS
,
1977 /* Work out the effective configure options for this build. */
1979 #define COMPILER_VERSION "--with-msvc (%d.%02d)", _MSC_VER / 100, _MSC_VER % 100
1982 #define COMPILER_VERSION "--with-gcc (%d.%d)", __GNUC__, __GNUC_MINOR__
1984 #define COMPILER_VERSION ""
1988 if (_snprintf (cv
, sizeof (cv
) - 1, COMPILER_VERSION
) < 0)
1989 return "Error: not enough space for compiler version";
1990 cv
[sizeof (cv
) - 1] = '\0';
1992 for (i
= 0; options
[i
]; i
++)
1993 size
+= strlen (options
[i
]);
1995 options_buffer
= xmalloc (size
+ 1);
1996 options_buffer
[0] = '\0';
1998 for (i
= 0; options
[i
]; i
++)
1999 strcat (options_buffer
, options
[i
]);
2001 return options_buffer
;
2005 #include <sys/timeb.h>
2007 /* Emulate gettimeofday (Ulrich Leodolter, 1/11/95). */
2009 gettimeofday (struct timeval
*tv
, struct timezone
*tz
)
2014 tv
->tv_sec
= tb
.time
;
2015 tv
->tv_usec
= tb
.millitm
* 1000L;
2016 /* Implementation note: _ftime sometimes doesn't update the dstflag
2017 according to the new timezone when the system timezone is
2018 changed. We could fix that by using GetSystemTime and
2019 GetTimeZoneInformation, but that doesn't seem necessary, since
2020 Emacs always calls gettimeofday with the 2nd argument NULL (see
2021 current_emacs_time). */
2024 tz
->tz_minuteswest
= tb
.timezone
; /* minutes west of Greenwich */
2025 tz
->tz_dsttime
= tb
.dstflag
; /* type of dst correction */
2029 /* Emulate fdutimens. */
2031 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2032 TIMESPEC[0] and TIMESPEC[1], respectively.
2033 FD must be either negative -- in which case it is ignored --
2034 or a file descriptor that is open on FILE.
2035 If FD is nonnegative, then FILE can be NULL, which means
2036 use just futimes instead of utimes.
2037 If TIMESPEC is null, FAIL.
2038 Return 0 on success, -1 (setting errno) on failure. */
2041 fdutimens (int fd
, char const *file
, struct timespec
const timespec
[2])
2050 if (fd
< 0 && !file
)
2055 ut
.actime
= timespec
[0].tv_sec
;
2056 ut
.modtime
= timespec
[1].tv_sec
;
2058 return _futime (fd
, &ut
);
2060 return _utime (file
, &ut
);
2064 /* ------------------------------------------------------------------------- */
2065 /* IO support and wrapper functions for the Windows API. */
2066 /* ------------------------------------------------------------------------- */
2068 /* Place a wrapper around the MSVC version of ctime. It returns NULL
2069 on network directories, so we handle that case here.
2070 (Ulrich Leodolter, 1/11/95). */
2072 sys_ctime (const time_t *t
)
2074 char *str
= (char *) ctime (t
);
2075 return (str
? str
: "Sun Jan 01 00:00:00 1970");
2078 /* Emulate sleep...we could have done this with a define, but that
2079 would necessitate including windows.h in the files that used it.
2080 This is much easier. */
2082 sys_sleep (int seconds
)
2084 Sleep (seconds
* 1000);
2087 /* Internal MSVC functions for low-level descriptor munging */
2088 extern int __cdecl
_set_osfhnd (int fd
, long h
);
2089 extern int __cdecl
_free_osfhnd (int fd
);
2091 /* parallel array of private info on file handles */
2092 filedesc fd_info
[ MAXDESC
];
2094 typedef struct volume_info_data
{
2095 struct volume_info_data
* next
;
2097 /* time when info was obtained */
2100 /* actual volume info */
2109 /* Global referenced by various functions. */
2110 static volume_info_data volume_info
;
2112 /* Vector to indicate which drives are local and fixed (for which cached
2113 data never expires). */
2114 static BOOL fixed_drives
[26];
2116 /* Consider cached volume information to be stale if older than 10s,
2117 at least for non-local drives. Info for fixed drives is never stale. */
2118 #define DRIVE_INDEX( c ) ( (c) <= 'Z' ? (c) - 'A' : (c) - 'a' )
2119 #define VOLINFO_STILL_VALID( root_dir, info ) \
2120 ( ( isalpha (root_dir[0]) && \
2121 fixed_drives[ DRIVE_INDEX (root_dir[0]) ] ) \
2122 || GetTickCount () - info->timestamp < 10000 )
2124 /* Cache support functions. */
2126 /* Simple linked list with linear search is sufficient. */
2127 static volume_info_data
*volume_cache
= NULL
;
2129 static volume_info_data
*
2130 lookup_volume_info (char * root_dir
)
2132 volume_info_data
* info
;
2134 for (info
= volume_cache
; info
; info
= info
->next
)
2135 if (xstrcasecmp (info
->root_dir
, root_dir
) == 0)
2141 add_volume_info (char * root_dir
, volume_info_data
* info
)
2143 info
->root_dir
= xstrdup (root_dir
);
2144 info
->next
= volume_cache
;
2145 volume_cache
= info
;
2149 /* Wrapper for GetVolumeInformation, which uses caching to avoid
2150 performance penalty (~2ms on 486 for local drives, 7.5ms for local
2151 cdrom drive, ~5-10ms or more for remote drives on LAN). */
2152 static volume_info_data
*
2153 GetCachedVolumeInformation (char * root_dir
)
2155 volume_info_data
* info
;
2156 char default_root
[ MAX_PATH
];
2158 /* NULL for root_dir means use root from current directory. */
2159 if (root_dir
== NULL
)
2161 if (GetCurrentDirectory (MAX_PATH
, default_root
) == 0)
2163 parse_root (default_root
, &root_dir
);
2165 root_dir
= default_root
;
2168 /* Local fixed drives can be cached permanently. Removable drives
2169 cannot be cached permanently, since the volume name and serial
2170 number (if nothing else) can change. Remote drives should be
2171 treated as if they are removable, since there is no sure way to
2172 tell whether they are or not. Also, the UNC association of drive
2173 letters mapped to remote volumes can be changed at any time (even
2174 by other processes) without notice.
2176 As a compromise, so we can benefit from caching info for remote
2177 volumes, we use a simple expiry mechanism to invalidate cache
2178 entries that are more than ten seconds old. */
2181 /* No point doing this, because WNetGetConnection is even slower than
2182 GetVolumeInformation, consistently taking ~50ms on a 486 (FWIW,
2183 GetDriveType is about the only call of this type which does not
2184 involve network access, and so is extremely quick). */
2186 /* Map drive letter to UNC if remote. */
2187 if (isalpha (root_dir
[0]) && !fixed
[DRIVE_INDEX (root_dir
[0])])
2189 char remote_name
[ 256 ];
2190 char drive
[3] = { root_dir
[0], ':' };
2192 if (WNetGetConnection (drive
, remote_name
, sizeof (remote_name
))
2194 /* do something */ ;
2198 info
= lookup_volume_info (root_dir
);
2200 if (info
== NULL
|| ! VOLINFO_STILL_VALID (root_dir
, info
))
2208 /* Info is not cached, or is stale. */
2209 if (!GetVolumeInformation (root_dir
,
2210 name
, sizeof (name
),
2214 type
, sizeof (type
)))
2217 /* Cache the volume information for future use, overwriting existing
2218 entry if present. */
2221 info
= xmalloc (sizeof (volume_info_data
));
2222 add_volume_info (root_dir
, info
);
2230 info
->name
= xstrdup (name
);
2231 info
->serialnum
= serialnum
;
2232 info
->maxcomp
= maxcomp
;
2233 info
->flags
= flags
;
2234 info
->type
= xstrdup (type
);
2235 info
->timestamp
= GetTickCount ();
2241 /* Get information on the volume where NAME is held; set path pointer to
2242 start of pathname in NAME (past UNC header\volume header if present),
2243 if pPath is non-NULL.
2245 Note: if NAME includes symlinks, the information is for the volume
2246 of the symlink, not of its target. That's because, even though
2247 GetVolumeInformation returns information about the symlink target
2248 of its argument, we only pass the root directory to
2249 GetVolumeInformation, not the full NAME. */
2251 get_volume_info (const char * name
, const char ** pPath
)
2253 char temp
[MAX_PATH
];
2254 char *rootname
= NULL
; /* default to current volume */
2255 volume_info_data
* info
;
2260 /* Find the root name of the volume if given. */
2261 if (isalpha (name
[0]) && name
[1] == ':')
2269 else if (IS_DIRECTORY_SEP (name
[0]) && IS_DIRECTORY_SEP (name
[1]))
2276 if (IS_DIRECTORY_SEP (*name
) && --slashes
== 0)
2289 info
= GetCachedVolumeInformation (rootname
);
2292 /* Set global referenced by other functions. */
2293 volume_info
= *info
;
2299 /* Determine if volume is FAT format (ie. only supports short 8.3
2300 names); also set path pointer to start of pathname in name, if
2301 pPath is non-NULL. */
2303 is_fat_volume (const char * name
, const char ** pPath
)
2305 if (get_volume_info (name
, pPath
))
2306 return (volume_info
.maxcomp
== 12);
2310 /* Map filename to a valid 8.3 name if necessary.
2311 The result is a pointer to a static buffer, so CAVEAT EMPTOR! */
2313 map_w32_filename (const char * name
, const char ** pPath
)
2315 static char shortname
[MAX_PATH
];
2316 char * str
= shortname
;
2319 const char * save_name
= name
;
2321 if (strlen (name
) >= MAX_PATH
)
2323 /* Return a filename which will cause callers to fail. */
2324 strcpy (shortname
, "?");
2328 if (is_fat_volume (name
, (const char **)&path
)) /* truncate to 8.3 */
2330 register int left
= 8; /* maximum number of chars in part */
2331 register int extn
= 0; /* extension added? */
2332 register int dots
= 2; /* maximum number of dots allowed */
2335 *str
++ = *name
++; /* skip past UNC header */
2337 while ((c
= *name
++))
2344 *str
++ = (c
== ':' ? ':' : '\\');
2345 extn
= 0; /* reset extension flags */
2346 dots
= 2; /* max 2 dots */
2347 left
= 8; /* max length 8 for main part */
2352 /* Convert path components of the form .xxx to _xxx,
2353 but leave . and .. as they are. This allows .emacs
2354 to be read as _emacs, for example. */
2358 IS_DIRECTORY_SEP (*name
))
2373 extn
= 1; /* we've got an extension */
2374 left
= 3; /* 3 chars in extension */
2378 /* any embedded dots after the first are converted to _ */
2383 case '#': /* don't lose these, they're important */
2385 str
[-1] = c
; /* replace last character of part */
2390 *str
++ = tolower (c
); /* map to lower case (looks nicer) */
2392 dots
= 0; /* started a path component */
2401 strcpy (shortname
, name
);
2402 unixtodos_filename (shortname
);
2406 *pPath
= shortname
+ (path
- save_name
);
2412 is_exec (const char * name
)
2414 char * p
= strrchr (name
, '.');
2417 && (xstrcasecmp (p
, ".exe") == 0 ||
2418 xstrcasecmp (p
, ".com") == 0 ||
2419 xstrcasecmp (p
, ".bat") == 0 ||
2420 xstrcasecmp (p
, ".cmd") == 0));
2423 /* Emulate the Unix directory procedures opendir, closedir,
2424 and readdir. We can't use the procedures supplied in sysdep.c,
2425 so we provide them here. */
2427 struct direct dir_static
; /* simulated directory contents */
2428 static HANDLE dir_find_handle
= INVALID_HANDLE_VALUE
;
2429 static int dir_is_fat
;
2430 static char dir_pathname
[MAXPATHLEN
+1];
2431 static WIN32_FIND_DATA dir_find_data
;
2433 /* Support shares on a network resource as subdirectories of a read-only
2435 static HANDLE wnet_enum_handle
= INVALID_HANDLE_VALUE
;
2436 static HANDLE
open_unc_volume (const char *);
2437 static char *read_unc_volume (HANDLE
, char *, int);
2438 static void close_unc_volume (HANDLE
);
2441 opendir (char *filename
)
2445 /* Opening is done by FindFirstFile. However, a read is inherent to
2446 this operation, so we defer the open until read time. */
2448 if (dir_find_handle
!= INVALID_HANDLE_VALUE
)
2450 if (wnet_enum_handle
!= INVALID_HANDLE_VALUE
)
2453 /* Note: We don't support traversal of UNC volumes via symlinks.
2454 Doing so would mean punishing 99.99% of use cases by resolving
2455 all the possible symlinks in FILENAME, recursively. */
2456 if (is_unc_volume (filename
))
2458 wnet_enum_handle
= open_unc_volume (filename
);
2459 if (wnet_enum_handle
== INVALID_HANDLE_VALUE
)
2463 if (!(dirp
= (DIR *) malloc (sizeof (DIR))))
2470 strncpy (dir_pathname
, map_w32_filename (filename
, NULL
), MAXPATHLEN
);
2471 dir_pathname
[MAXPATHLEN
] = '\0';
2472 /* Note: We don't support symlinks to file names on FAT volumes.
2473 Doing so would mean punishing 99.99% of use cases by resolving
2474 all the possible symlinks in FILENAME, recursively. */
2475 dir_is_fat
= is_fat_volume (filename
, NULL
);
2481 closedir (DIR *dirp
)
2483 /* If we have a find-handle open, close it. */
2484 if (dir_find_handle
!= INVALID_HANDLE_VALUE
)
2486 FindClose (dir_find_handle
);
2487 dir_find_handle
= INVALID_HANDLE_VALUE
;
2489 else if (wnet_enum_handle
!= INVALID_HANDLE_VALUE
)
2491 close_unc_volume (wnet_enum_handle
);
2492 wnet_enum_handle
= INVALID_HANDLE_VALUE
;
2494 xfree ((char *) dirp
);
2500 int downcase
= !NILP (Vw32_downcase_file_names
);
2502 if (wnet_enum_handle
!= INVALID_HANDLE_VALUE
)
2504 if (!read_unc_volume (wnet_enum_handle
,
2505 dir_find_data
.cFileName
,
2509 /* If we aren't dir_finding, do a find-first, otherwise do a find-next. */
2510 else if (dir_find_handle
== INVALID_HANDLE_VALUE
)
2512 char filename
[MAXNAMLEN
+ 3];
2515 strcpy (filename
, dir_pathname
);
2516 ln
= strlen (filename
) - 1;
2517 if (!IS_DIRECTORY_SEP (filename
[ln
]))
2518 strcat (filename
, "\\");
2519 strcat (filename
, "*");
2521 /* Note: No need to resolve symlinks in FILENAME, because
2522 FindFirst opens the directory that is the target of a
2524 dir_find_handle
= FindFirstFile (filename
, &dir_find_data
);
2526 if (dir_find_handle
== INVALID_HANDLE_VALUE
)
2531 if (!FindNextFile (dir_find_handle
, &dir_find_data
))
2535 /* Emacs never uses this value, so don't bother making it match
2536 value returned by stat(). */
2537 dir_static
.d_ino
= 1;
2539 strcpy (dir_static
.d_name
, dir_find_data
.cFileName
);
2541 /* If the file name in cFileName[] includes `?' characters, it means
2542 the original file name used characters that cannot be represented
2543 by the current ANSI codepage. To avoid total lossage, retrieve
2544 the short 8+3 alias of the long file name. */
2545 if (_mbspbrk (dir_static
.d_name
, "?"))
2547 strcpy (dir_static
.d_name
, dir_find_data
.cAlternateFileName
);
2548 downcase
= 1; /* 8+3 aliases are returned in all caps */
2550 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
2551 dir_static
.d_reclen
= sizeof (struct direct
) - MAXNAMLEN
+ 3 +
2552 dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
2554 /* If the file name in cFileName[] includes `?' characters, it means
2555 the original file name used characters that cannot be represented
2556 by the current ANSI codepage. To avoid total lossage, retrieve
2557 the short 8+3 alias of the long file name. */
2558 if (_mbspbrk (dir_find_data
.cFileName
, "?"))
2560 strcpy (dir_static
.d_name
, dir_find_data
.cAlternateFileName
);
2561 /* 8+3 aliases are returned in all caps, which could break
2562 various alists that look at filenames' extensions. */
2566 strcpy (dir_static
.d_name
, dir_find_data
.cFileName
);
2567 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
2569 _strlwr (dir_static
.d_name
);
2573 for (p
= dir_static
.d_name
; *p
; p
++)
2574 if (*p
>= 'a' && *p
<= 'z')
2577 _strlwr (dir_static
.d_name
);
2584 open_unc_volume (const char *path
)
2590 nr
.dwScope
= RESOURCE_GLOBALNET
;
2591 nr
.dwType
= RESOURCETYPE_DISK
;
2592 nr
.dwDisplayType
= RESOURCEDISPLAYTYPE_SERVER
;
2593 nr
.dwUsage
= RESOURCEUSAGE_CONTAINER
;
2594 nr
.lpLocalName
= NULL
;
2595 nr
.lpRemoteName
= (LPSTR
)map_w32_filename (path
, NULL
);
2596 nr
.lpComment
= NULL
;
2597 nr
.lpProvider
= NULL
;
2599 result
= WNetOpenEnum (RESOURCE_GLOBALNET
, RESOURCETYPE_DISK
,
2600 RESOURCEUSAGE_CONNECTABLE
, &nr
, &henum
);
2602 if (result
== NO_ERROR
)
2605 return INVALID_HANDLE_VALUE
;
2609 read_unc_volume (HANDLE henum
, char *readbuf
, int size
)
2613 DWORD bufsize
= 512;
2618 buffer
= alloca (bufsize
);
2619 result
= WNetEnumResource (henum
, &count
, buffer
, &bufsize
);
2620 if (result
!= NO_ERROR
)
2623 /* WNetEnumResource returns \\resource\share...skip forward to "share". */
2624 ptr
= ((LPNETRESOURCE
) buffer
)->lpRemoteName
;
2626 while (*ptr
&& !IS_DIRECTORY_SEP (*ptr
)) ptr
++;
2629 strncpy (readbuf
, ptr
, size
);
2634 close_unc_volume (HANDLE henum
)
2636 if (henum
!= INVALID_HANDLE_VALUE
)
2637 WNetCloseEnum (henum
);
2641 unc_volume_file_attributes (const char *path
)
2646 henum
= open_unc_volume (path
);
2647 if (henum
== INVALID_HANDLE_VALUE
)
2650 attrs
= FILE_ATTRIBUTE_READONLY
| FILE_ATTRIBUTE_DIRECTORY
;
2652 close_unc_volume (henum
);
2657 /* Ensure a network connection is authenticated. */
2659 logon_network_drive (const char *path
)
2661 NETRESOURCE resource
;
2662 char share
[MAX_PATH
];
2667 if (IS_DIRECTORY_SEP (path
[0]) && IS_DIRECTORY_SEP (path
[1]))
2668 drvtype
= DRIVE_REMOTE
;
2669 else if (path
[0] == '\0' || path
[1] != ':')
2670 drvtype
= GetDriveType (NULL
);
2677 drvtype
= GetDriveType (drive
);
2680 /* Only logon to networked drives. */
2681 if (drvtype
!= DRIVE_REMOTE
)
2685 strncpy (share
, path
, MAX_PATH
);
2686 /* Truncate to just server and share name. */
2687 for (i
= 2; i
< MAX_PATH
; i
++)
2689 if (IS_DIRECTORY_SEP (share
[i
]) && ++n_slashes
> 3)
2696 resource
.dwType
= RESOURCETYPE_DISK
;
2697 resource
.lpLocalName
= NULL
;
2698 resource
.lpRemoteName
= share
;
2699 resource
.lpProvider
= NULL
;
2701 WNetAddConnection2 (&resource
, NULL
, NULL
, CONNECT_INTERACTIVE
);
2704 /* Shadow some MSVC runtime functions to map requests for long filenames
2705 to reasonable short names if necessary. This was originally added to
2706 permit running Emacs on NT 3.1 on a FAT partition, which doesn't support
2710 sys_access (const char * path
, int mode
)
2714 /* MSVCRT implementation of 'access' doesn't recognize D_OK, and its
2715 newer versions blow up when passed D_OK. */
2716 path
= map_w32_filename (path
, NULL
);
2717 /* If the last element of PATH is a symlink, we need to resolve it
2718 to get the attributes of its target file. Note: any symlinks in
2719 PATH elements other than the last one are transparently resolved
2720 by GetFileAttributes below. */
2721 if ((volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) != 0)
2722 path
= chase_symlinks (path
);
2724 if ((attributes
= GetFileAttributes (path
)) == -1)
2726 DWORD w32err
= GetLastError ();
2730 case ERROR_INVALID_NAME
:
2731 case ERROR_BAD_PATHNAME
:
2732 if (is_unc_volume (path
))
2734 attributes
= unc_volume_file_attributes (path
);
2735 if (attributes
== -1)
2743 case ERROR_FILE_NOT_FOUND
:
2744 case ERROR_BAD_NETPATH
:
2753 if ((mode
& X_OK
) != 0 && !is_exec (path
))
2758 if ((mode
& W_OK
) != 0 && (attributes
& FILE_ATTRIBUTE_READONLY
) != 0)
2763 if ((mode
& D_OK
) != 0 && (attributes
& FILE_ATTRIBUTE_DIRECTORY
) == 0)
2772 sys_chdir (const char * path
)
2774 return _chdir (map_w32_filename (path
, NULL
));
2778 sys_chmod (const char * path
, int mode
)
2780 path
= chase_symlinks (map_w32_filename (path
, NULL
));
2781 return _chmod (path
, mode
);
2785 sys_chown (const char *path
, uid_t owner
, gid_t group
)
2787 if (sys_chmod (path
, S_IREAD
) == -1) /* check if file exists */
2793 sys_creat (const char * path
, int mode
)
2795 return _creat (map_w32_filename (path
, NULL
), mode
);
2799 sys_fopen (const char * path
, const char * mode
)
2803 const char * mode_save
= mode
;
2805 /* Force all file handles to be non-inheritable. This is necessary to
2806 ensure child processes don't unwittingly inherit handles that might
2807 prevent future file access. */
2811 else if (mode
[0] == 'w' || mode
[0] == 'a')
2812 oflag
= O_WRONLY
| O_CREAT
| O_TRUNC
;
2816 /* Only do simplistic option parsing. */
2820 oflag
&= ~(O_RDONLY
| O_WRONLY
);
2823 else if (mode
[0] == 'b')
2828 else if (mode
[0] == 't')
2835 fd
= _open (map_w32_filename (path
, NULL
), oflag
| _O_NOINHERIT
, 0644);
2839 return _fdopen (fd
, mode_save
);
2842 /* This only works on NTFS volumes, but is useful to have. */
2844 sys_link (const char * old
, const char * new)
2848 char oldname
[MAX_PATH
], newname
[MAX_PATH
];
2850 if (old
== NULL
|| new == NULL
)
2856 strcpy (oldname
, map_w32_filename (old
, NULL
));
2857 strcpy (newname
, map_w32_filename (new, NULL
));
2859 fileh
= CreateFile (oldname
, 0, 0, NULL
, OPEN_EXISTING
,
2860 FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
2861 if (fileh
!= INVALID_HANDLE_VALUE
)
2865 /* Confusingly, the "alternate" stream name field does not apply
2866 when restoring a hard link, and instead contains the actual
2867 stream data for the link (ie. the name of the link to create).
2868 The WIN32_STREAM_ID structure before the cStreamName field is
2869 the stream header, which is then immediately followed by the
2873 WIN32_STREAM_ID wid
;
2874 WCHAR wbuffer
[MAX_PATH
]; /* extra space for link name */
2877 wlen
= MultiByteToWideChar (CP_ACP
, MB_PRECOMPOSED
, newname
, -1,
2878 data
.wid
.cStreamName
, MAX_PATH
);
2881 LPVOID context
= NULL
;
2884 data
.wid
.dwStreamId
= BACKUP_LINK
;
2885 data
.wid
.dwStreamAttributes
= 0;
2886 data
.wid
.Size
.LowPart
= wlen
* sizeof (WCHAR
);
2887 data
.wid
.Size
.HighPart
= 0;
2888 data
.wid
.dwStreamNameSize
= 0;
2890 if (BackupWrite (fileh
, (LPBYTE
)&data
,
2891 offsetof (WIN32_STREAM_ID
, cStreamName
)
2892 + data
.wid
.Size
.LowPart
,
2893 &wbytes
, FALSE
, FALSE
, &context
)
2894 && BackupWrite (fileh
, NULL
, 0, &wbytes
, TRUE
, FALSE
, &context
))
2901 /* Should try mapping GetLastError to errno; for now just
2902 indicate a general error (eg. links not supported). */
2903 errno
= EINVAL
; // perhaps EMLINK?
2907 CloseHandle (fileh
);
2916 sys_mkdir (const char * path
)
2918 return _mkdir (map_w32_filename (path
, NULL
));
2921 /* Because of long name mapping issues, we need to implement this
2922 ourselves. Also, MSVC's _mktemp returns NULL when it can't generate
2923 a unique name, instead of setting the input template to an empty
2926 Standard algorithm seems to be use pid or tid with a letter on the
2927 front (in place of the 6 X's) and cycle through the letters to find a
2928 unique name. We extend that to allow any reasonable character as the
2929 first of the 6 X's. */
2931 sys_mktemp (char * template)
2935 unsigned uid
= GetCurrentThreadId ();
2936 static char first_char
[] = "abcdefghijklmnopqrstuvwyz0123456789!%-_@#";
2938 if (template == NULL
)
2940 p
= template + strlen (template);
2942 /* replace up to the last 5 X's with uid in decimal */
2943 while (--p
>= template && p
[0] == 'X' && --i
>= 0)
2945 p
[0] = '0' + uid
% 10;
2949 if (i
< 0 && p
[0] == 'X')
2954 int save_errno
= errno
;
2955 p
[0] = first_char
[i
];
2956 if (sys_access (template, 0) < 0)
2962 while (++i
< sizeof (first_char
));
2965 /* Template is badly formed or else we can't generate a unique name,
2966 so return empty string */
2972 sys_open (const char * path
, int oflag
, int mode
)
2974 const char* mpath
= map_w32_filename (path
, NULL
);
2975 /* Try to open file without _O_CREAT, to be able to write to hidden
2976 and system files. Force all file handles to be
2978 int res
= _open (mpath
, (oflag
& ~_O_CREAT
) | _O_NOINHERIT
, mode
);
2981 return _open (mpath
, oflag
| _O_NOINHERIT
, mode
);
2985 sys_rename (const char * oldname
, const char * newname
)
2988 char temp
[MAX_PATH
];
2992 /* MoveFile on Windows 95 doesn't correctly change the short file name
2993 alias in a number of circumstances (it is not easy to predict when
2994 just by looking at oldname and newname, unfortunately). In these
2995 cases, renaming through a temporary name avoids the problem.
2997 A second problem on Windows 95 is that renaming through a temp name when
2998 newname is uppercase fails (the final long name ends up in
2999 lowercase, although the short alias might be uppercase) UNLESS the
3000 long temp name is not 8.3.
3002 So, on Windows 95 we always rename through a temp name, and we make sure
3003 the temp name has a long extension to ensure correct renaming. */
3005 strcpy (temp
, map_w32_filename (oldname
, NULL
));
3007 /* volume_info is set indirectly by map_w32_filename. */
3008 oldname_dev
= volume_info
.serialnum
;
3010 if (os_subtype
== OS_9X
)
3016 oldname
= map_w32_filename (oldname
, NULL
);
3017 if ((o
= strrchr (oldname
, '\\')))
3020 o
= (char *) oldname
;
3022 if ((p
= strrchr (temp
, '\\')))
3029 /* Force temp name to require a manufactured 8.3 alias - this
3030 seems to make the second rename work properly. */
3031 sprintf (p
, "_.%s.%u", o
, i
);
3033 result
= rename (oldname
, temp
);
3035 /* This loop must surely terminate! */
3036 while (result
< 0 && errno
== EEXIST
);
3041 /* Emulate Unix behavior - newname is deleted if it already exists
3042 (at least if it is a file; don't do this for directories).
3044 Since we mustn't do this if we are just changing the case of the
3045 file name (we would end up deleting the file we are trying to
3046 rename!), we let rename detect if the destination file already
3047 exists - that way we avoid the possible pitfalls of trying to
3048 determine ourselves whether two names really refer to the same
3049 file, which is not always possible in the general case. (Consider
3050 all the permutations of shared or subst'd drives, etc.) */
3052 newname
= map_w32_filename (newname
, NULL
);
3054 /* volume_info is set indirectly by map_w32_filename. */
3055 newname_dev
= volume_info
.serialnum
;
3057 result
= rename (temp
, newname
);
3061 DWORD w32err
= GetLastError ();
3064 && newname_dev
!= oldname_dev
)
3066 /* The implementation of `rename' on Windows does not return
3067 errno = EXDEV when you are moving a directory to a
3068 different storage device (ex. logical disk). It returns
3069 EACCES instead. So here we handle such situations and
3073 if ((attributes
= GetFileAttributes (temp
)) != -1
3074 && (attributes
& FILE_ATTRIBUTE_DIRECTORY
))
3077 else if (errno
== EEXIST
)
3079 if (_chmod (newname
, 0666) != 0)
3081 if (_unlink (newname
) != 0)
3083 result
= rename (temp
, newname
);
3085 else if (w32err
== ERROR_PRIVILEGE_NOT_HELD
3086 && is_symlink (temp
))
3088 /* This is Windows prohibiting the user from creating a
3089 symlink in another place, since that requires
3099 sys_rmdir (const char * path
)
3101 return _rmdir (map_w32_filename (path
, NULL
));
3105 sys_unlink (const char * path
)
3107 path
= map_w32_filename (path
, NULL
);
3109 /* On Unix, unlink works without write permission. */
3110 _chmod (path
, 0666);
3111 return _unlink (path
);
3114 static FILETIME utc_base_ft
;
3115 static ULONGLONG utc_base
; /* In 100ns units */
3116 static int init
= 0;
3118 #define FILETIME_TO_U64(result, ft) \
3120 ULARGE_INTEGER uiTemp; \
3121 uiTemp.LowPart = (ft).dwLowDateTime; \
3122 uiTemp.HighPart = (ft).dwHighDateTime; \
3123 result = uiTemp.QuadPart; \
3127 initialize_utc_base (void)
3129 /* Determine the delta between 1-Jan-1601 and 1-Jan-1970. */
3138 st
.wMilliseconds
= 0;
3140 SystemTimeToFileTime (&st
, &utc_base_ft
);
3141 FILETIME_TO_U64 (utc_base
, utc_base_ft
);
3145 convert_time (FILETIME ft
)
3151 initialize_utc_base ();
3155 if (CompareFileTime (&ft
, &utc_base_ft
) < 0)
3158 FILETIME_TO_U64 (tmp
, ft
);
3159 return (time_t) ((tmp
- utc_base
) / 10000000L);
3163 convert_from_time_t (time_t time
, FILETIME
* pft
)
3169 initialize_utc_base ();
3173 /* time in 100ns units since 1-Jan-1601 */
3174 tmp
.QuadPart
= (ULONGLONG
) time
* 10000000L + utc_base
;
3175 pft
->dwHighDateTime
= tmp
.HighPart
;
3176 pft
->dwLowDateTime
= tmp
.LowPart
;
3180 /* No reason to keep this; faking inode values either by hashing or even
3181 using the file index from GetInformationByHandle, is not perfect and
3182 so by default Emacs doesn't use the inode values on Windows.
3183 Instead, we now determine file-truename correctly (except for
3184 possible drive aliasing etc). */
3186 /* Modified version of "PJW" algorithm (see the "Dragon" compiler book). */
3188 hashval (const unsigned char * str
)
3193 h
= (h
<< 4) + *str
++;
3199 /* Return the hash value of the canonical pathname, excluding the
3200 drive/UNC header, to get a hopefully unique inode number. */
3202 generate_inode_val (const char * name
)
3204 char fullname
[ MAX_PATH
];
3208 /* Get the truly canonical filename, if it exists. (Note: this
3209 doesn't resolve aliasing due to subst commands, or recognize hard
3211 if (!w32_get_long_filename ((char *)name
, fullname
, MAX_PATH
))
3214 parse_root (fullname
, &p
);
3215 /* Normal W32 filesystems are still case insensitive. */
3222 static PSECURITY_DESCRIPTOR
3223 get_file_security_desc_by_handle (HANDLE h
)
3225 PSECURITY_DESCRIPTOR psd
= NULL
;
3227 SECURITY_INFORMATION si
= OWNER_SECURITY_INFORMATION
3228 | GROUP_SECURITY_INFORMATION
/* | DACL_SECURITY_INFORMATION */ ;
3230 err
= get_security_info (h
, SE_FILE_OBJECT
, si
,
3231 NULL
, NULL
, NULL
, NULL
, &psd
);
3232 if (err
!= ERROR_SUCCESS
)
3238 static PSECURITY_DESCRIPTOR
3239 get_file_security_desc_by_name (const char *fname
)
3241 PSECURITY_DESCRIPTOR psd
= NULL
;
3243 SECURITY_INFORMATION si
= OWNER_SECURITY_INFORMATION
3244 | GROUP_SECURITY_INFORMATION
/* | DACL_SECURITY_INFORMATION */ ;
3246 if (!get_file_security (fname
, si
, psd
, 0, &sd_len
))
3248 err
= GetLastError ();
3249 if (err
!= ERROR_INSUFFICIENT_BUFFER
)
3253 psd
= xmalloc (sd_len
);
3254 if (!get_file_security (fname
, si
, psd
, sd_len
, &sd_len
))
3266 unsigned n_subauthorities
;
3268 /* Use the last sub-authority value of the RID, the relative
3269 portion of the SID, as user/group ID. */
3270 n_subauthorities
= *get_sid_sub_authority_count (sid
);
3271 if (n_subauthorities
< 1)
3272 return 0; /* the "World" RID */
3273 return *get_sid_sub_authority (sid
, n_subauthorities
- 1);
3276 /* Caching SID and account values for faster lokup. */
3279 # define FLEXIBLE_ARRAY_MEMBER
3281 # define FLEXIBLE_ARRAY_MEMBER 1
3286 struct w32_id
*next
;
3288 unsigned char sid
[FLEXIBLE_ARRAY_MEMBER
];
3291 static struct w32_id
*w32_idlist
;
3294 w32_cached_id (PSID sid
, unsigned *id
, char *name
)
3296 struct w32_id
*tail
, *found
;
3298 for (found
= NULL
, tail
= w32_idlist
; tail
; tail
= tail
->next
)
3300 if (equal_sid ((PSID
)tail
->sid
, sid
))
3309 strcpy (name
, found
->name
);
3317 w32_add_to_cache (PSID sid
, unsigned id
, char *name
)
3320 struct w32_id
*new_entry
;
3322 /* We don't want to leave behind stale cache from when Emacs was
3326 sid_len
= get_length_sid (sid
);
3327 new_entry
= xmalloc (offsetof (struct w32_id
, sid
) + sid_len
);
3330 new_entry
->rid
= id
;
3331 strcpy (new_entry
->name
, name
);
3332 copy_sid (sid_len
, (PSID
)new_entry
->sid
, sid
);
3333 new_entry
->next
= w32_idlist
;
3334 w32_idlist
= new_entry
;
3343 get_name_and_id (PSECURITY_DESCRIPTOR psd
, const char *fname
,
3344 unsigned *id
, char *nm
, int what
)
3347 char machine
[MAX_COMPUTERNAME_LENGTH
+1];
3349 SID_NAME_USE ignore
;
3351 DWORD name_len
= sizeof (name
);
3353 DWORD domain_len
= sizeof (domain
);
3359 result
= get_security_descriptor_owner (psd
, &sid
, &dflt
);
3360 else if (what
== GID
)
3361 result
= get_security_descriptor_group (psd
, &sid
, &dflt
);
3365 if (!result
|| !is_valid_sid (sid
))
3367 else if (!w32_cached_id (sid
, id
, nm
))
3369 /* If FNAME is a UNC, we need to lookup account on the
3370 specified machine. */
3371 if (IS_DIRECTORY_SEP (fname
[0]) && IS_DIRECTORY_SEP (fname
[1])
3372 && fname
[2] != '\0')
3377 for (s
= fname
+ 2, p
= machine
;
3378 *s
&& !IS_DIRECTORY_SEP (*s
); s
++, p
++)
3384 if (!lookup_account_sid (mp
, sid
, name
, &name_len
,
3385 domain
, &domain_len
, &ignore
)
3386 || name_len
> UNLEN
+1)
3390 *id
= get_rid (sid
);
3392 w32_add_to_cache (sid
, *id
, name
);
3399 get_file_owner_and_group (PSECURITY_DESCRIPTOR psd
,
3403 int dflt_usr
= 0, dflt_grp
= 0;
3412 if (get_name_and_id (psd
, fname
, &st
->st_uid
, st
->st_uname
, UID
))
3414 if (get_name_and_id (psd
, fname
, &st
->st_gid
, st
->st_gname
, GID
))
3417 /* Consider files to belong to current user/group, if we cannot get
3418 more accurate information. */
3421 st
->st_uid
= dflt_passwd
.pw_uid
;
3422 strcpy (st
->st_uname
, dflt_passwd
.pw_name
);
3426 st
->st_gid
= dflt_passwd
.pw_gid
;
3427 strcpy (st
->st_gname
, dflt_group
.gr_name
);
3431 /* Return non-zero if NAME is a potentially slow filesystem. */
3433 is_slow_fs (const char *name
)
3438 if (IS_DIRECTORY_SEP (name
[0]) && IS_DIRECTORY_SEP (name
[1]))
3439 devtype
= DRIVE_REMOTE
; /* assume UNC name is remote */
3440 else if (!(strlen (name
) >= 2 && IS_DEVICE_SEP (name
[1])))
3441 devtype
= GetDriveType (NULL
); /* use root of current drive */
3444 /* GetDriveType needs the root directory of the drive. */
3445 strncpy (drive_root
, name
, 2);
3446 drive_root
[2] = '\\';
3447 drive_root
[3] = '\0';
3448 devtype
= GetDriveType (drive_root
);
3450 return !(devtype
== DRIVE_FIXED
|| devtype
== DRIVE_RAMDISK
);
3453 /* MSVC stat function can't cope with UNC names and has other bugs, so
3454 replace it with our own. This also allows us to calculate consistent
3455 inode values and owner/group without hacks in the main Emacs code. */
3458 stat_worker (const char * path
, struct stat
* buf
, int follow_symlinks
)
3460 char *name
, *save_name
, *r
;
3461 WIN32_FIND_DATA wfd
;
3463 unsigned __int64 fake_inode
= 0;
3466 int rootdir
= FALSE
;
3467 PSECURITY_DESCRIPTOR psd
= NULL
;
3468 int is_a_symlink
= 0;
3469 DWORD file_flags
= FILE_FLAG_BACKUP_SEMANTICS
;
3470 DWORD access_rights
= 0;
3471 DWORD fattrs
= 0, serialnum
= 0, fs_high
= 0, fs_low
= 0, nlinks
= 1;
3472 FILETIME ctime
, atime
, wtime
;
3474 if (path
== NULL
|| buf
== NULL
)
3480 save_name
= name
= (char *) map_w32_filename (path
, &path
);
3481 /* Must be valid filename, no wild cards or other invalid
3482 characters. We use _mbspbrk to support multibyte strings that
3483 might look to strpbrk as if they included literal *, ?, and other
3484 characters mentioned below that are disallowed by Windows
3486 if (_mbspbrk (name
, "*?|<>\""))
3492 /* Remove trailing directory separator, unless name is the root
3493 directory of a drive or UNC volume in which case ensure there
3494 is a trailing separator. */
3495 len
= strlen (name
);
3496 name
= strcpy (alloca (len
+ 2), name
);
3498 /* Avoid a somewhat costly call to is_symlink if the filesystem
3499 doesn't support symlinks. */
3500 if ((volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) != 0)
3501 is_a_symlink
= is_symlink (name
);
3503 /* Plan A: Open the file and get all the necessary information via
3504 the resulting handle. This solves several issues in one blow:
3506 . retrieves attributes for the target of a symlink, if needed
3507 . gets attributes of root directories and symlinks pointing to
3508 root directories, thus avoiding the need for special-casing
3509 these and detecting them by examining the file-name format
3510 . retrieves more accurate attributes (e.g., non-zero size for
3511 some directories, esp. directories that are junction points)
3512 . correctly resolves "c:/..", "/.." and similar file names
3513 . avoids run-time penalties for 99% of use cases
3515 Plan A is always tried first, unless the user asked not to (but
3516 if the file is a symlink and we need to follow links, we try Plan
3517 A even if the user asked not to).
3519 If Plan A fails, we go to Plan B (below), where various
3520 potentially expensive techniques must be used to handle "special"
3521 files such as UNC volumes etc. */
3522 if (!(NILP (Vw32_get_true_file_attributes
)
3523 || (EQ (Vw32_get_true_file_attributes
, Qlocal
) && is_slow_fs (name
)))
3524 /* Following symlinks requires getting the info by handle. */
3525 || (is_a_symlink
&& follow_symlinks
))
3527 BY_HANDLE_FILE_INFORMATION info
;
3529 if (is_a_symlink
&& !follow_symlinks
)
3530 file_flags
|= FILE_FLAG_OPEN_REPARSE_POINT
;
3531 /* READ_CONTROL access rights are required to get security info
3532 by handle. But if the OS doesn't support security in the
3533 first place, we don't need to try. */
3534 if (is_windows_9x () != TRUE
)
3535 access_rights
|= READ_CONTROL
;
3537 fh
= CreateFile (name
, access_rights
, 0, NULL
, OPEN_EXISTING
,
3539 /* If CreateFile fails with READ_CONTROL, try again with zero as
3541 if (fh
== INVALID_HANDLE_VALUE
&& access_rights
)
3542 fh
= CreateFile (name
, 0, 0, NULL
, OPEN_EXISTING
,
3544 if (fh
== INVALID_HANDLE_VALUE
)
3545 goto no_true_file_attributes
;
3547 /* This is more accurate in terms of getting the correct number
3548 of links, but is quite slow (it is noticeable when Emacs is
3549 making a list of file name completions). */
3550 if (GetFileInformationByHandle (fh
, &info
))
3552 nlinks
= info
.nNumberOfLinks
;
3553 /* Might as well use file index to fake inode values, but this
3554 is not guaranteed to be unique unless we keep a handle open
3555 all the time (even then there are situations where it is
3556 not unique). Reputedly, there are at most 48 bits of info
3557 (on NTFS, presumably less on FAT). */
3558 fake_inode
= info
.nFileIndexHigh
;
3560 fake_inode
+= info
.nFileIndexLow
;
3561 serialnum
= info
.dwVolumeSerialNumber
;
3562 fs_high
= info
.nFileSizeHigh
;
3563 fs_low
= info
.nFileSizeLow
;
3564 ctime
= info
.ftCreationTime
;
3565 atime
= info
.ftLastAccessTime
;
3566 wtime
= info
.ftLastWriteTime
;
3567 fattrs
= info
.dwFileAttributes
;
3571 /* We don't go to Plan B here, because it's not clear that
3572 it's a good idea. The only known use case where
3573 CreateFile succeeds, but GetFileInformationByHandle fails
3574 (with ERROR_INVALID_FUNCTION) is for character devices
3575 such as NUL, PRN, etc. For these, switching to Plan B is
3576 a net loss, because we lose the character device
3577 attribute returned by GetFileType below (FindFirstFile
3578 doesn't set that bit in the attributes), and the other
3579 fields don't make sense for character devices anyway.
3580 Emacs doesn't really care for non-file entities in the
3581 context of l?stat, so neither do we. */
3583 /* w32err is assigned so one could put a breakpoint here and
3584 examine its value, when GetFileInformationByHandle
3586 DWORD w32err
= GetLastError ();
3590 case ERROR_FILE_NOT_FOUND
: /* can this ever happen? */
3596 /* Test for a symlink before testing for a directory, since
3597 symlinks to directories have the directory bit set, but we
3598 don't want them to appear as directories. */
3599 if (is_a_symlink
&& !follow_symlinks
)
3600 buf
->st_mode
= S_IFLNK
;
3601 else if (fattrs
& FILE_ATTRIBUTE_DIRECTORY
)
3602 buf
->st_mode
= S_IFDIR
;
3605 DWORD ftype
= GetFileType (fh
);
3609 case FILE_TYPE_DISK
:
3610 buf
->st_mode
= S_IFREG
;
3612 case FILE_TYPE_PIPE
:
3613 buf
->st_mode
= S_IFIFO
;
3615 case FILE_TYPE_CHAR
:
3616 case FILE_TYPE_UNKNOWN
:
3618 buf
->st_mode
= S_IFCHR
;
3621 /* We produce the fallback owner and group data, based on the
3622 current user that runs Emacs, in the following cases:
3624 . this is Windows 9X
3625 . getting security by handle failed, and we need to produce
3626 information for the target of a symlink (this is better
3627 than producing a potentially misleading info about the
3630 If getting security by handle fails, and we don't need to
3631 resolve symlinks, we try getting security by name. */
3632 if (is_windows_9x () != TRUE
)
3633 psd
= get_file_security_desc_by_handle (fh
);
3636 get_file_owner_and_group (psd
, name
, buf
);
3639 else if (is_windows_9x () == TRUE
)
3640 get_file_owner_and_group (NULL
, name
, buf
);
3641 else if (!(is_a_symlink
&& follow_symlinks
))
3643 psd
= get_file_security_desc_by_name (name
);
3644 get_file_owner_and_group (psd
, name
, buf
);
3648 get_file_owner_and_group (NULL
, name
, buf
);
3653 no_true_file_attributes
:
3654 /* Plan B: Either getting a handle on the file failed, or the
3655 caller explicitly asked us to not bother making this
3656 information more accurate.
3658 Implementation note: In Plan B, we never bother to resolve
3659 symlinks, even if we got here because we tried Plan A and
3660 failed. That's because, even if the caller asked for extra
3661 precision by setting Vw32_get_true_file_attributes to t,
3662 resolving symlinks requires acquiring a file handle to the
3663 symlink, which we already know will fail. And if the user
3664 did not ask for extra precision, resolving symlinks will fly
3665 in the face of that request, since the user then wants the
3666 lightweight version of the code. */
3667 rootdir
= (path
>= save_name
+ len
- 1
3668 && (IS_DIRECTORY_SEP (*path
) || *path
== 0));
3670 /* If name is "c:/.." or "/.." then stat "c:/" or "/". */
3671 r
= IS_DEVICE_SEP (name
[1]) ? &name
[2] : name
;
3672 if (IS_DIRECTORY_SEP (r
[0])
3673 && r
[1] == '.' && r
[2] == '.' && r
[3] == '\0')
3676 /* Note: If NAME is a symlink to the root of a UNC volume
3677 (i.e. "\\SERVER"), we will not detect that here, and we will
3678 return data about the symlink as result of FindFirst below.
3679 This is unfortunate, but that marginal use case does not
3680 justify a call to chase_symlinks which would impose a penalty
3681 on all the other use cases. (We get here for symlinks to
3682 roots of UNC volumes because CreateFile above fails for them,
3683 unlike with symlinks to root directories X:\ of drives.) */
3684 if (is_unc_volume (name
))
3686 fattrs
= unc_volume_file_attributes (name
);
3690 ctime
= atime
= wtime
= utc_base_ft
;
3694 if (!IS_DIRECTORY_SEP (name
[len
-1]))
3695 strcat (name
, "\\");
3696 if (GetDriveType (name
) < 2)
3702 fattrs
= FILE_ATTRIBUTE_DIRECTORY
;
3703 ctime
= atime
= wtime
= utc_base_ft
;
3707 if (IS_DIRECTORY_SEP (name
[len
-1]))
3710 /* (This is hacky, but helps when doing file completions on
3711 network drives.) Optimize by using information available from
3712 active readdir if possible. */
3713 len
= strlen (dir_pathname
);
3714 if (IS_DIRECTORY_SEP (dir_pathname
[len
-1]))
3716 if (dir_find_handle
!= INVALID_HANDLE_VALUE
3717 && !(is_a_symlink
&& follow_symlinks
)
3718 && strnicmp (save_name
, dir_pathname
, len
) == 0
3719 && IS_DIRECTORY_SEP (name
[len
])
3720 && xstrcasecmp (name
+ len
+ 1, dir_static
.d_name
) == 0)
3722 /* This was the last entry returned by readdir. */
3723 wfd
= dir_find_data
;
3727 logon_network_drive (name
);
3729 fh
= FindFirstFile (name
, &wfd
);
3730 if (fh
== INVALID_HANDLE_VALUE
)
3737 /* Note: if NAME is a symlink, the information we get from
3738 FindFirstFile is for the symlink, not its target. */
3739 fattrs
= wfd
.dwFileAttributes
;
3740 ctime
= wfd
.ftCreationTime
;
3741 atime
= wfd
.ftLastAccessTime
;
3742 wtime
= wfd
.ftLastWriteTime
;
3743 fs_high
= wfd
.nFileSizeHigh
;
3744 fs_low
= wfd
.nFileSizeLow
;
3747 serialnum
= volume_info
.serialnum
;
3749 if (is_a_symlink
&& !follow_symlinks
)
3750 buf
->st_mode
= S_IFLNK
;
3751 else if (fattrs
& FILE_ATTRIBUTE_DIRECTORY
)
3752 buf
->st_mode
= S_IFDIR
;
3754 buf
->st_mode
= S_IFREG
;
3756 get_file_owner_and_group (NULL
, name
, buf
);
3760 /* Not sure if there is any point in this. */
3761 if (!NILP (Vw32_generate_fake_inodes
))
3762 fake_inode
= generate_inode_val (name
);
3763 else if (fake_inode
== 0)
3765 /* For want of something better, try to make everything unique. */
3766 static DWORD gen_num
= 0;
3767 fake_inode
= ++gen_num
;
3771 buf
->st_ino
= fake_inode
;
3773 buf
->st_dev
= serialnum
;
3774 buf
->st_rdev
= serialnum
;
3776 buf
->st_size
= fs_high
;
3777 buf
->st_size
<<= 32;
3778 buf
->st_size
+= fs_low
;
3779 buf
->st_nlink
= nlinks
;
3781 /* Convert timestamps to Unix format. */
3782 buf
->st_mtime
= convert_time (wtime
);
3783 buf
->st_atime
= convert_time (atime
);
3784 if (buf
->st_atime
== 0) buf
->st_atime
= buf
->st_mtime
;
3785 buf
->st_ctime
= convert_time (ctime
);
3786 if (buf
->st_ctime
== 0) buf
->st_ctime
= buf
->st_mtime
;
3788 /* determine rwx permissions */
3789 if (is_a_symlink
&& !follow_symlinks
)
3790 permission
= S_IREAD
| S_IWRITE
| S_IEXEC
; /* Posix expectations */
3793 if (fattrs
& FILE_ATTRIBUTE_READONLY
)
3794 permission
= S_IREAD
;
3796 permission
= S_IREAD
| S_IWRITE
;
3798 if (fattrs
& FILE_ATTRIBUTE_DIRECTORY
)
3799 permission
|= S_IEXEC
;
3800 else if (is_exec (name
))
3801 permission
|= S_IEXEC
;
3804 buf
->st_mode
|= permission
| (permission
>> 3) | (permission
>> 6);
3810 stat (const char * path
, struct stat
* buf
)
3812 return stat_worker (path
, buf
, 1);
3816 lstat (const char * path
, struct stat
* buf
)
3818 return stat_worker (path
, buf
, 0);
3821 /* Provide fstat and utime as well as stat for consistent handling of
3824 fstat (int desc
, struct stat
* buf
)
3826 HANDLE fh
= (HANDLE
) _get_osfhandle (desc
);
3827 BY_HANDLE_FILE_INFORMATION info
;
3828 unsigned __int64 fake_inode
;
3831 switch (GetFileType (fh
) & ~FILE_TYPE_REMOTE
)
3833 case FILE_TYPE_DISK
:
3834 buf
->st_mode
= S_IFREG
;
3835 if (!GetFileInformationByHandle (fh
, &info
))
3841 case FILE_TYPE_PIPE
:
3842 buf
->st_mode
= S_IFIFO
;
3844 case FILE_TYPE_CHAR
:
3845 case FILE_TYPE_UNKNOWN
:
3847 buf
->st_mode
= S_IFCHR
;
3849 memset (&info
, 0, sizeof (info
));
3850 info
.dwFileAttributes
= 0;
3851 info
.ftCreationTime
= utc_base_ft
;
3852 info
.ftLastAccessTime
= utc_base_ft
;
3853 info
.ftLastWriteTime
= utc_base_ft
;
3856 if (info
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)
3857 buf
->st_mode
= S_IFDIR
;
3859 buf
->st_nlink
= info
.nNumberOfLinks
;
3860 /* Might as well use file index to fake inode values, but this
3861 is not guaranteed to be unique unless we keep a handle open
3862 all the time (even then there are situations where it is
3863 not unique). Reputedly, there are at most 48 bits of info
3864 (on NTFS, presumably less on FAT). */
3865 fake_inode
= info
.nFileIndexHigh
;
3867 fake_inode
+= info
.nFileIndexLow
;
3869 /* MSVC defines _ino_t to be short; other libc's might not. */
3870 if (sizeof (buf
->st_ino
) == 2)
3871 buf
->st_ino
= fake_inode
^ (fake_inode
>> 16);
3873 buf
->st_ino
= fake_inode
;
3875 /* Consider files to belong to current user.
3876 FIXME: this should use GetSecurityInfo API, but it is only
3877 available for _WIN32_WINNT >= 0x501. */
3878 buf
->st_uid
= dflt_passwd
.pw_uid
;
3879 buf
->st_gid
= dflt_passwd
.pw_gid
;
3880 strcpy (buf
->st_uname
, dflt_passwd
.pw_name
);
3881 strcpy (buf
->st_gname
, dflt_group
.gr_name
);
3883 buf
->st_dev
= info
.dwVolumeSerialNumber
;
3884 buf
->st_rdev
= info
.dwVolumeSerialNumber
;
3886 buf
->st_size
= info
.nFileSizeHigh
;
3887 buf
->st_size
<<= 32;
3888 buf
->st_size
+= info
.nFileSizeLow
;
3890 /* Convert timestamps to Unix format. */
3891 buf
->st_mtime
= convert_time (info
.ftLastWriteTime
);
3892 buf
->st_atime
= convert_time (info
.ftLastAccessTime
);
3893 if (buf
->st_atime
== 0) buf
->st_atime
= buf
->st_mtime
;
3894 buf
->st_ctime
= convert_time (info
.ftCreationTime
);
3895 if (buf
->st_ctime
== 0) buf
->st_ctime
= buf
->st_mtime
;
3897 /* determine rwx permissions */
3898 if (info
.dwFileAttributes
& FILE_ATTRIBUTE_READONLY
)
3899 permission
= S_IREAD
;
3901 permission
= S_IREAD
| S_IWRITE
;
3903 if (info
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)
3904 permission
|= S_IEXEC
;
3907 #if 0 /* no way of knowing the filename */
3908 char * p
= strrchr (name
, '.');
3910 (xstrcasecmp (p
, ".exe") == 0 ||
3911 xstrcasecmp (p
, ".com") == 0 ||
3912 xstrcasecmp (p
, ".bat") == 0 ||
3913 xstrcasecmp (p
, ".cmd") == 0))
3914 permission
|= S_IEXEC
;
3918 buf
->st_mode
|= permission
| (permission
>> 3) | (permission
>> 6);
3924 utime (const char *name
, struct utimbuf
*times
)
3926 struct utimbuf deftime
;
3933 deftime
.modtime
= deftime
.actime
= time (NULL
);
3937 /* Need write access to set times. */
3938 fh
= CreateFile (name
, FILE_WRITE_ATTRIBUTES
,
3939 /* If NAME specifies a directory, FILE_SHARE_DELETE
3940 allows other processes to delete files inside it,
3941 while we have the directory open. */
3942 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
,
3943 0, OPEN_EXISTING
, FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
3944 if (fh
!= INVALID_HANDLE_VALUE
)
3946 convert_from_time_t (times
->actime
, &atime
);
3947 convert_from_time_t (times
->modtime
, &mtime
);
3948 if (!SetFileTime (fh
, NULL
, &atime
, &mtime
))
3965 /* Symlink-related functions. */
3966 #ifndef SYMBOLIC_LINK_FLAG_DIRECTORY
3967 #define SYMBOLIC_LINK_FLAG_DIRECTORY 0x1
3971 symlink (char const *filename
, char const *linkname
)
3973 char linkfn
[MAX_PATH
], *tgtfn
;
3975 int dir_access
, filename_ends_in_slash
;
3977 /* Diagnostics follows Posix as much as possible. */
3978 if (filename
== NULL
|| linkname
== NULL
)
3988 if (strlen (filename
) > MAX_PATH
|| strlen (linkname
) > MAX_PATH
)
3990 errno
= ENAMETOOLONG
;
3994 strcpy (linkfn
, map_w32_filename (linkname
, NULL
));
3995 if ((volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) == 0)
4001 /* Note: since empty FILENAME was already rejected, we can safely
4002 refer to FILENAME[1]. */
4003 if (!(IS_DIRECTORY_SEP (filename
[0]) || IS_DEVICE_SEP (filename
[1])))
4005 /* Non-absolute FILENAME is understood as being relative to
4006 LINKNAME's directory. We need to prepend that directory to
4007 FILENAME to get correct results from sys_access below, since
4008 otherwise it will interpret FILENAME relative to the
4009 directory where the Emacs process runs. Note that
4010 make-symbolic-link always makes sure LINKNAME is a fully
4011 expanded file name. */
4013 char *p
= linkfn
+ strlen (linkfn
);
4015 while (p
> linkfn
&& !IS_ANY_SEP (p
[-1]))
4018 strncpy (tem
, linkfn
, p
- linkfn
);
4019 tem
[p
- linkfn
] = '\0';
4020 strcat (tem
, filename
);
4021 dir_access
= sys_access (tem
, D_OK
);
4024 dir_access
= sys_access (filename
, D_OK
);
4026 /* Since Windows distinguishes between symlinks to directories and
4027 to files, we provide a kludgy feature: if FILENAME doesn't
4028 exist, but ends in a slash, we create a symlink to directory. If
4029 FILENAME exists and is a directory, we always create a symlink to
4031 filename_ends_in_slash
= IS_DIRECTORY_SEP (filename
[strlen (filename
) - 1]);
4032 if (dir_access
== 0 || filename_ends_in_slash
)
4033 flags
= SYMBOLIC_LINK_FLAG_DIRECTORY
;
4035 tgtfn
= (char *)map_w32_filename (filename
, NULL
);
4036 if (filename_ends_in_slash
)
4037 tgtfn
[strlen (tgtfn
) - 1] = '\0';
4040 if (!create_symbolic_link (linkfn
, tgtfn
, flags
))
4042 /* ENOSYS is set by create_symbolic_link, when it detects that
4043 the OS doesn't support the CreateSymbolicLink API. */
4044 if (errno
!= ENOSYS
)
4046 DWORD w32err
= GetLastError ();
4050 /* ERROR_SUCCESS is sometimes returned when LINKFN and
4051 TGTFN point to the same file name, go figure. */
4053 case ERROR_FILE_EXISTS
:
4056 case ERROR_ACCESS_DENIED
:
4059 case ERROR_FILE_NOT_FOUND
:
4060 case ERROR_PATH_NOT_FOUND
:
4061 case ERROR_BAD_NETPATH
:
4062 case ERROR_INVALID_REPARSE_DATA
:
4065 case ERROR_DIRECTORY
:
4068 case ERROR_PRIVILEGE_NOT_HELD
:
4069 case ERROR_NOT_ALL_ASSIGNED
:
4072 case ERROR_DISK_FULL
:
4085 /* A quick inexpensive test of whether FILENAME identifies a file that
4086 is a symlink. Returns non-zero if it is, zero otherwise. FILENAME
4087 must already be in the normalized form returned by
4090 Note: for repeated operations on many files, it is best to test
4091 whether the underlying volume actually supports symlinks, by
4092 testing the FILE_SUPPORTS_REPARSE_POINTS bit in volume's flags, and
4093 avoid the call to this function if it doesn't. That's because the
4094 call to GetFileAttributes takes a non-negligible time, especially
4095 on non-local or removable filesystems. See stat_worker for an
4096 example of how to do that. */
4098 is_symlink (const char *filename
)
4101 WIN32_FIND_DATA wfd
;
4104 attrs
= GetFileAttributes (filename
);
4107 DWORD w32err
= GetLastError ();
4111 case ERROR_BAD_NETPATH
: /* network share, can't be a symlink */
4113 case ERROR_ACCESS_DENIED
:
4116 case ERROR_FILE_NOT_FOUND
:
4117 case ERROR_PATH_NOT_FOUND
:
4124 if ((attrs
& FILE_ATTRIBUTE_REPARSE_POINT
) == 0)
4126 logon_network_drive (filename
);
4127 fh
= FindFirstFile (filename
, &wfd
);
4128 if (fh
== INVALID_HANDLE_VALUE
)
4131 return (wfd
.dwFileAttributes
& FILE_ATTRIBUTE_REPARSE_POINT
) != 0
4132 && (wfd
.dwReserved0
& IO_REPARSE_TAG_SYMLINK
) == IO_REPARSE_TAG_SYMLINK
;
4135 /* If NAME identifies a symbolic link, copy into BUF the file name of
4136 the symlink's target. Copy at most BUF_SIZE bytes, and do NOT
4137 null-terminate the target name, even if it fits. Return the number
4138 of bytes copied, or -1 if NAME is not a symlink or any error was
4139 encountered while resolving it. The file name copied into BUF is
4140 encoded in the current ANSI codepage. */
4142 readlink (const char *name
, char *buf
, size_t buf_size
)
4145 TOKEN_PRIVILEGES privs
;
4146 int restore_privs
= 0;
4161 path
= map_w32_filename (name
, NULL
);
4163 if (strlen (path
) > MAX_PATH
)
4165 errno
= ENAMETOOLONG
;
4170 if (is_windows_9x () == TRUE
4171 || (volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) == 0
4172 || !is_symlink (path
))
4175 errno
= EINVAL
; /* not a symlink */
4179 /* Done with simple tests, now we're in for some _real_ work. */
4180 if (enable_privilege (SE_BACKUP_NAME
, TRUE
, &privs
))
4182 /* Implementation note: From here and onward, don't return early,
4183 since that will fail to restore the original set of privileges of
4184 the calling thread. */
4186 retval
= -1; /* not too optimistic, are we? */
4188 /* Note: In the next call to CreateFile, we use zero as the 2nd
4189 argument because, when the symlink is a hidden/system file,
4190 e.g. 'C:\Users\All Users', GENERIC_READ fails with
4191 ERROR_ACCESS_DENIED. Zero seems to work just fine, both for file
4192 and directory symlinks. */
4193 sh
= CreateFile (path
, 0, 0, NULL
, OPEN_EXISTING
,
4194 FILE_FLAG_OPEN_REPARSE_POINT
| FILE_FLAG_BACKUP_SEMANTICS
,
4196 if (sh
!= INVALID_HANDLE_VALUE
)
4198 BYTE reparse_buf
[MAXIMUM_REPARSE_DATA_BUFFER_SIZE
];
4199 REPARSE_DATA_BUFFER
*reparse_data
= (REPARSE_DATA_BUFFER
*)&reparse_buf
[0];
4202 if (!DeviceIoControl (sh
, FSCTL_GET_REPARSE_POINT
, NULL
, 0,
4203 reparse_buf
, MAXIMUM_REPARSE_DATA_BUFFER_SIZE
,
4206 else if (reparse_data
->ReparseTag
!= IO_REPARSE_TAG_SYMLINK
)
4210 /* Copy the link target name, in wide characters, fro
4211 reparse_data, then convert it to multibyte encoding in
4212 the current locale's codepage. */
4214 BYTE lname
[MAX_PATH
];
4217 reparse_data
->SymbolicLinkReparseBuffer
.PrintNameLength
;
4219 reparse_data
->SymbolicLinkReparseBuffer
.PathBuffer
4220 + reparse_data
->SymbolicLinkReparseBuffer
.PrintNameOffset
/sizeof(WCHAR
);
4222 /* According to MSDN, PrintNameLength does not include the
4223 terminating null character. */
4224 lwname
= alloca ((lwname_len
+ 1) * sizeof(WCHAR
));
4225 memcpy (lwname
, lwname_src
, lwname_len
);
4226 lwname
[lwname_len
/sizeof(WCHAR
)] = 0; /* null-terminate */
4228 /* FIXME: Should we use the current file-name coding system
4229 instead of the fixed value of the ANSI codepage? */
4230 lname_len
= WideCharToMultiByte (w32_ansi_code_page
, 0, lwname
, -1,
4231 lname
, MAX_PATH
, NULL
, NULL
);
4234 /* WideCharToMultiByte failed. */
4235 DWORD w32err1
= GetLastError ();
4239 case ERROR_INSUFFICIENT_BUFFER
:
4240 errno
= ENAMETOOLONG
;
4242 case ERROR_INVALID_PARAMETER
:
4245 case ERROR_NO_UNICODE_TRANSLATION
:
4255 size_t size_to_copy
= buf_size
;
4257 BYTE
*pend
= p
+ lname_len
;
4259 /* Normalize like dostounix_filename does, but we don't
4260 want to assume that lname is null-terminated. */
4261 if (*p
&& p
[1] == ':' && *p
>= 'A' && *p
<= 'Z')
4269 /* Testing for null-terminated LNAME is paranoia:
4270 WideCharToMultiByte should always return a
4271 null-terminated string when its 4th argument is -1
4272 and its 3rd argument is null-terminated (which they
4274 if (lname
[lname_len
- 1] == '\0')
4276 if (lname_len
<= buf_size
)
4277 size_to_copy
= lname_len
;
4278 strncpy (buf
, lname
, size_to_copy
);
4280 retval
= size_to_copy
;
4287 /* CreateFile failed. */
4288 DWORD w32err2
= GetLastError ();
4292 case ERROR_FILE_NOT_FOUND
:
4293 case ERROR_PATH_NOT_FOUND
:
4296 case ERROR_ACCESS_DENIED
:
4297 case ERROR_TOO_MANY_OPEN_FILES
:
4307 restore_privilege (&privs
);
4314 /* If FILE is a symlink, return its target (stored in a static
4315 buffer); otherwise return FILE.
4317 This function repeatedly resolves symlinks in the last component of
4318 a chain of symlink file names, as in foo -> bar -> baz -> ...,
4319 until it arrives at a file whose last component is not a symlink,
4320 or some error occurs. It returns the target of the last
4321 successfully resolved symlink in the chain. If it succeeds to
4322 resolve even a single symlink, the value returned is an absolute
4323 file name with backslashes (result of GetFullPathName). By
4324 contrast, if the original FILE is returned, it is unaltered.
4326 Note: This function can set errno even if it succeeds.
4328 Implementation note: we only resolve the last portion ("basename")
4329 of the argument FILE and of each following file in the chain,
4330 disregarding any possible symlinks in its leading directories.
4331 This is because Windows system calls and library functions
4332 transparently resolve symlinks in leading directories and return
4333 correct information, as long as the basename is not a symlink. */
4335 chase_symlinks (const char *file
)
4337 static char target
[MAX_PATH
];
4338 char link
[MAX_PATH
];
4339 ssize_t res
, link_len
;
4342 if (is_windows_9x () == TRUE
|| !is_symlink (file
))
4343 return (char *)file
;
4345 if ((link_len
= GetFullPathName (file
, MAX_PATH
, link
, NULL
)) == 0)
4346 return (char *)file
;
4351 /* Remove trailing slashes, as we want to resolve the last
4352 non-trivial part of the link name. */
4353 while (link_len
> 3 && IS_DIRECTORY_SEP (link
[link_len
-1]))
4354 link
[link_len
--] = '\0';
4356 res
= readlink (link
, target
, MAX_PATH
);
4360 if (!(IS_DEVICE_SEP (target
[1])
4361 || (IS_DIRECTORY_SEP (target
[0]) && IS_DIRECTORY_SEP (target
[1]))))
4363 /* Target is relative. Append it to the directory part of
4364 the symlink, then copy the result back to target. */
4365 char *p
= link
+ link_len
;
4367 while (p
> link
&& !IS_ANY_SEP (p
[-1]))
4370 strcpy (target
, link
);
4372 /* Resolve any "." and ".." to get a fully-qualified file name
4374 link_len
= GetFullPathName (target
, MAX_PATH
, link
, NULL
);
4376 } while (res
> 0 && link_len
> 0 && ++loop_count
<= 100);
4378 if (loop_count
> 100)
4381 if (target
[0] == '\0') /* not a single call to readlink succeeded */
4382 return (char *)file
;
4386 /* MS-Windows version of careadlinkat (cf. ../lib/careadlinkat.c). We
4387 have a fixed max size for file names, so we don't need the kind of
4388 alloc/malloc/realloc dance the gnulib version does. We also don't
4389 support FD-relative symlinks. */
4391 careadlinkat (int fd
, char const *filename
,
4392 char *buffer
, size_t buffer_size
,
4393 struct allocator
const *alloc
,
4394 ssize_t (*preadlinkat
) (int, char const *, char *, size_t))
4396 char linkname
[MAX_PATH
];
4405 link_size
= preadlinkat (fd
, filename
, linkname
, sizeof(linkname
));
4409 char *retval
= buffer
;
4411 linkname
[link_size
++] = '\0';
4412 if (link_size
> buffer_size
)
4413 retval
= (char *)(alloc
? alloc
->allocate
: xmalloc
) (link_size
);
4415 memcpy (retval
, linkname
, link_size
);
4423 careadlinkatcwd (int fd
, char const *filename
, char *buffer
,
4427 return readlink (filename
, buffer
, buffer_size
);
4431 /* Support for browsing other processes and their attributes. See
4432 process.c for the Lisp bindings. */
4434 /* Helper wrapper functions. */
4436 static HANDLE WINAPI
4437 create_toolhelp32_snapshot (DWORD Flags
, DWORD Ignored
)
4439 static CreateToolhelp32Snapshot_Proc s_pfn_Create_Toolhelp32_Snapshot
= NULL
;
4441 if (g_b_init_create_toolhelp32_snapshot
== 0)
4443 g_b_init_create_toolhelp32_snapshot
= 1;
4444 s_pfn_Create_Toolhelp32_Snapshot
= (CreateToolhelp32Snapshot_Proc
)
4445 GetProcAddress (GetModuleHandle ("kernel32.dll"),
4446 "CreateToolhelp32Snapshot");
4448 if (s_pfn_Create_Toolhelp32_Snapshot
== NULL
)
4450 return INVALID_HANDLE_VALUE
;
4452 return (s_pfn_Create_Toolhelp32_Snapshot (Flags
, Ignored
));
4456 process32_first (HANDLE hSnapshot
, LPPROCESSENTRY32 lppe
)
4458 static Process32First_Proc s_pfn_Process32_First
= NULL
;
4460 if (g_b_init_process32_first
== 0)
4462 g_b_init_process32_first
= 1;
4463 s_pfn_Process32_First
= (Process32First_Proc
)
4464 GetProcAddress (GetModuleHandle ("kernel32.dll"),
4467 if (s_pfn_Process32_First
== NULL
)
4471 return (s_pfn_Process32_First (hSnapshot
, lppe
));
4475 process32_next (HANDLE hSnapshot
, LPPROCESSENTRY32 lppe
)
4477 static Process32Next_Proc s_pfn_Process32_Next
= NULL
;
4479 if (g_b_init_process32_next
== 0)
4481 g_b_init_process32_next
= 1;
4482 s_pfn_Process32_Next
= (Process32Next_Proc
)
4483 GetProcAddress (GetModuleHandle ("kernel32.dll"),
4486 if (s_pfn_Process32_Next
== NULL
)
4490 return (s_pfn_Process32_Next (hSnapshot
, lppe
));
4494 open_thread_token (HANDLE ThreadHandle
,
4495 DWORD DesiredAccess
,
4497 PHANDLE TokenHandle
)
4499 static OpenThreadToken_Proc s_pfn_Open_Thread_Token
= NULL
;
4500 HMODULE hm_advapi32
= NULL
;
4501 if (is_windows_9x () == TRUE
)
4503 SetLastError (ERROR_NOT_SUPPORTED
);
4506 if (g_b_init_open_thread_token
== 0)
4508 g_b_init_open_thread_token
= 1;
4509 hm_advapi32
= LoadLibrary ("Advapi32.dll");
4510 s_pfn_Open_Thread_Token
=
4511 (OpenThreadToken_Proc
) GetProcAddress (hm_advapi32
, "OpenThreadToken");
4513 if (s_pfn_Open_Thread_Token
== NULL
)
4515 SetLastError (ERROR_NOT_SUPPORTED
);
4519 s_pfn_Open_Thread_Token (
4528 impersonate_self (SECURITY_IMPERSONATION_LEVEL ImpersonationLevel
)
4530 static ImpersonateSelf_Proc s_pfn_Impersonate_Self
= NULL
;
4531 HMODULE hm_advapi32
= NULL
;
4532 if (is_windows_9x () == TRUE
)
4536 if (g_b_init_impersonate_self
== 0)
4538 g_b_init_impersonate_self
= 1;
4539 hm_advapi32
= LoadLibrary ("Advapi32.dll");
4540 s_pfn_Impersonate_Self
=
4541 (ImpersonateSelf_Proc
) GetProcAddress (hm_advapi32
, "ImpersonateSelf");
4543 if (s_pfn_Impersonate_Self
== NULL
)
4547 return s_pfn_Impersonate_Self (ImpersonationLevel
);
4551 revert_to_self (void)
4553 static RevertToSelf_Proc s_pfn_Revert_To_Self
= NULL
;
4554 HMODULE hm_advapi32
= NULL
;
4555 if (is_windows_9x () == TRUE
)
4559 if (g_b_init_revert_to_self
== 0)
4561 g_b_init_revert_to_self
= 1;
4562 hm_advapi32
= LoadLibrary ("Advapi32.dll");
4563 s_pfn_Revert_To_Self
=
4564 (RevertToSelf_Proc
) GetProcAddress (hm_advapi32
, "RevertToSelf");
4566 if (s_pfn_Revert_To_Self
== NULL
)
4570 return s_pfn_Revert_To_Self ();
4574 get_process_memory_info (HANDLE h_proc
,
4575 PPROCESS_MEMORY_COUNTERS mem_counters
,
4578 static GetProcessMemoryInfo_Proc s_pfn_Get_Process_Memory_Info
= NULL
;
4579 HMODULE hm_psapi
= NULL
;
4580 if (is_windows_9x () == TRUE
)
4584 if (g_b_init_get_process_memory_info
== 0)
4586 g_b_init_get_process_memory_info
= 1;
4587 hm_psapi
= LoadLibrary ("Psapi.dll");
4589 s_pfn_Get_Process_Memory_Info
= (GetProcessMemoryInfo_Proc
)
4590 GetProcAddress (hm_psapi
, "GetProcessMemoryInfo");
4592 if (s_pfn_Get_Process_Memory_Info
== NULL
)
4596 return s_pfn_Get_Process_Memory_Info (h_proc
, mem_counters
, bufsize
);
4600 get_process_working_set_size (HANDLE h_proc
,
4604 static GetProcessWorkingSetSize_Proc
4605 s_pfn_Get_Process_Working_Set_Size
= NULL
;
4607 if (is_windows_9x () == TRUE
)
4611 if (g_b_init_get_process_working_set_size
== 0)
4613 g_b_init_get_process_working_set_size
= 1;
4614 s_pfn_Get_Process_Working_Set_Size
= (GetProcessWorkingSetSize_Proc
)
4615 GetProcAddress (GetModuleHandle ("kernel32.dll"),
4616 "GetProcessWorkingSetSize");
4618 if (s_pfn_Get_Process_Working_Set_Size
== NULL
)
4622 return s_pfn_Get_Process_Working_Set_Size (h_proc
, minrss
, maxrss
);
4626 global_memory_status (MEMORYSTATUS
*buf
)
4628 static GlobalMemoryStatus_Proc s_pfn_Global_Memory_Status
= NULL
;
4630 if (is_windows_9x () == TRUE
)
4634 if (g_b_init_global_memory_status
== 0)
4636 g_b_init_global_memory_status
= 1;
4637 s_pfn_Global_Memory_Status
= (GlobalMemoryStatus_Proc
)
4638 GetProcAddress (GetModuleHandle ("kernel32.dll"),
4639 "GlobalMemoryStatus");
4641 if (s_pfn_Global_Memory_Status
== NULL
)
4645 return s_pfn_Global_Memory_Status (buf
);
4649 global_memory_status_ex (MEMORY_STATUS_EX
*buf
)
4651 static GlobalMemoryStatusEx_Proc s_pfn_Global_Memory_Status_Ex
= NULL
;
4653 if (is_windows_9x () == TRUE
)
4657 if (g_b_init_global_memory_status_ex
== 0)
4659 g_b_init_global_memory_status_ex
= 1;
4660 s_pfn_Global_Memory_Status_Ex
= (GlobalMemoryStatusEx_Proc
)
4661 GetProcAddress (GetModuleHandle ("kernel32.dll"),
4662 "GlobalMemoryStatusEx");
4664 if (s_pfn_Global_Memory_Status_Ex
== NULL
)
4668 return s_pfn_Global_Memory_Status_Ex (buf
);
4672 list_system_processes (void)
4674 struct gcpro gcpro1
;
4675 Lisp_Object proclist
= Qnil
;
4678 h_snapshot
= create_toolhelp32_snapshot (TH32CS_SNAPPROCESS
, 0);
4680 if (h_snapshot
!= INVALID_HANDLE_VALUE
)
4682 PROCESSENTRY32 proc_entry
;
4688 proc_entry
.dwSize
= sizeof (PROCESSENTRY32
);
4689 for (res
= process32_first (h_snapshot
, &proc_entry
); res
;
4690 res
= process32_next (h_snapshot
, &proc_entry
))
4692 proc_id
= proc_entry
.th32ProcessID
;
4693 proclist
= Fcons (make_fixnum_or_float (proc_id
), proclist
);
4696 CloseHandle (h_snapshot
);
4698 proclist
= Fnreverse (proclist
);
4705 enable_privilege (LPCTSTR priv_name
, BOOL enable_p
, TOKEN_PRIVILEGES
*old_priv
)
4707 TOKEN_PRIVILEGES priv
;
4708 DWORD priv_size
= sizeof (priv
);
4709 DWORD opriv_size
= sizeof (*old_priv
);
4710 HANDLE h_token
= NULL
;
4711 HANDLE h_thread
= GetCurrentThread ();
4715 res
= open_thread_token (h_thread
,
4716 TOKEN_QUERY
| TOKEN_ADJUST_PRIVILEGES
,
4718 if (!res
&& GetLastError () == ERROR_NO_TOKEN
)
4720 if (impersonate_self (SecurityImpersonation
))
4721 res
= open_thread_token (h_thread
,
4722 TOKEN_QUERY
| TOKEN_ADJUST_PRIVILEGES
,
4727 priv
.PrivilegeCount
= 1;
4728 priv
.Privileges
[0].Attributes
= enable_p
? SE_PRIVILEGE_ENABLED
: 0;
4729 LookupPrivilegeValue (NULL
, priv_name
, &priv
.Privileges
[0].Luid
);
4730 if (AdjustTokenPrivileges (h_token
, FALSE
, &priv
, priv_size
,
4731 old_priv
, &opriv_size
)
4732 && GetLastError () != ERROR_NOT_ALL_ASSIGNED
)
4736 CloseHandle (h_token
);
4742 restore_privilege (TOKEN_PRIVILEGES
*priv
)
4744 DWORD priv_size
= sizeof (*priv
);
4745 HANDLE h_token
= NULL
;
4748 if (open_thread_token (GetCurrentThread (),
4749 TOKEN_QUERY
| TOKEN_ADJUST_PRIVILEGES
,
4752 if (AdjustTokenPrivileges (h_token
, FALSE
, priv
, priv_size
, NULL
, NULL
)
4753 && GetLastError () != ERROR_NOT_ALL_ASSIGNED
)
4757 CloseHandle (h_token
);
4763 ltime (ULONGLONG time_100ns
)
4765 ULONGLONG time_sec
= time_100ns
/ 10000000;
4766 int subsec
= time_100ns
% 10000000;
4767 return list4 (make_number (time_sec
>> 16),
4768 make_number (time_sec
& 0xffff),
4769 make_number (subsec
/ 10),
4770 make_number (subsec
% 10 * 100000));
4773 #define U64_TO_LISP_TIME(time) ltime (time)
4776 process_times (HANDLE h_proc
, Lisp_Object
*ctime
, Lisp_Object
*etime
,
4777 Lisp_Object
*stime
, Lisp_Object
*utime
, Lisp_Object
*ttime
,
4780 FILETIME ft_creation
, ft_exit
, ft_kernel
, ft_user
, ft_current
;
4781 ULONGLONG tem1
, tem2
, tem3
, tem
;
4784 || !get_process_times_fn
4785 || !(*get_process_times_fn
) (h_proc
, &ft_creation
, &ft_exit
,
4786 &ft_kernel
, &ft_user
))
4789 GetSystemTimeAsFileTime (&ft_current
);
4791 FILETIME_TO_U64 (tem1
, ft_kernel
);
4792 *stime
= U64_TO_LISP_TIME (tem1
);
4794 FILETIME_TO_U64 (tem2
, ft_user
);
4795 *utime
= U64_TO_LISP_TIME (tem2
);
4798 *ttime
= U64_TO_LISP_TIME (tem3
);
4800 FILETIME_TO_U64 (tem
, ft_creation
);
4801 /* Process no 4 (System) returns zero creation time. */
4804 *ctime
= U64_TO_LISP_TIME (tem
);
4808 FILETIME_TO_U64 (tem3
, ft_current
);
4809 tem
= (tem3
- utc_base
) - tem
;
4811 *etime
= U64_TO_LISP_TIME (tem
);
4815 *pcpu
= 100.0 * (tem1
+ tem2
) / tem
;
4826 system_process_attributes (Lisp_Object pid
)
4828 struct gcpro gcpro1
, gcpro2
, gcpro3
;
4829 Lisp_Object attrs
= Qnil
;
4830 Lisp_Object cmd_str
, decoded_cmd
, tem
;
4831 HANDLE h_snapshot
, h_proc
;
4834 char uname
[UNLEN
+1], gname
[GNLEN
+1], domain
[1025];
4835 DWORD ulength
= sizeof (uname
), dlength
= sizeof (domain
), needed
;
4836 DWORD glength
= sizeof (gname
);
4837 HANDLE token
= NULL
;
4838 SID_NAME_USE user_type
;
4839 unsigned char *buf
= NULL
;
4841 TOKEN_USER user_token
;
4842 TOKEN_PRIMARY_GROUP group_token
;
4845 PROCESS_MEMORY_COUNTERS mem
;
4846 PROCESS_MEMORY_COUNTERS_EX mem_ex
;
4847 DWORD minrss
, maxrss
;
4849 MEMORY_STATUS_EX memstex
;
4850 double totphys
= 0.0;
4851 Lisp_Object ctime
, stime
, utime
, etime
, ttime
;
4853 BOOL result
= FALSE
;
4855 CHECK_NUMBER_OR_FLOAT (pid
);
4856 proc_id
= FLOATP (pid
) ? XFLOAT_DATA (pid
) : XINT (pid
);
4858 h_snapshot
= create_toolhelp32_snapshot (TH32CS_SNAPPROCESS
, 0);
4860 GCPRO3 (attrs
, decoded_cmd
, tem
);
4862 if (h_snapshot
!= INVALID_HANDLE_VALUE
)
4867 pe
.dwSize
= sizeof (PROCESSENTRY32
);
4868 for (res
= process32_first (h_snapshot
, &pe
); res
;
4869 res
= process32_next (h_snapshot
, &pe
))
4871 if (proc_id
== pe
.th32ProcessID
)
4874 decoded_cmd
= build_string ("Idle");
4877 /* Decode the command name from locale-specific
4879 cmd_str
= make_unibyte_string (pe
.szExeFile
,
4880 strlen (pe
.szExeFile
));
4882 code_convert_string_norecord (cmd_str
,
4883 Vlocale_coding_system
, 0);
4885 attrs
= Fcons (Fcons (Qcomm
, decoded_cmd
), attrs
);
4886 attrs
= Fcons (Fcons (Qppid
,
4887 make_fixnum_or_float (pe
.th32ParentProcessID
)),
4889 attrs
= Fcons (Fcons (Qpri
, make_number (pe
.pcPriClassBase
)),
4891 attrs
= Fcons (Fcons (Qthcount
,
4892 make_fixnum_or_float (pe
.cntThreads
)),
4899 CloseHandle (h_snapshot
);
4908 h_proc
= OpenProcess (PROCESS_QUERY_INFORMATION
| PROCESS_VM_READ
,
4910 /* If we were denied a handle to the process, try again after
4911 enabling the SeDebugPrivilege in our process. */
4914 TOKEN_PRIVILEGES priv_current
;
4916 if (enable_privilege (SE_DEBUG_NAME
, TRUE
, &priv_current
))
4918 h_proc
= OpenProcess (PROCESS_QUERY_INFORMATION
| PROCESS_VM_READ
,
4920 restore_privilege (&priv_current
);
4926 result
= open_process_token (h_proc
, TOKEN_QUERY
, &token
);
4929 result
= get_token_information (token
, TokenUser
, NULL
, 0, &blen
);
4930 if (!result
&& GetLastError () == ERROR_INSUFFICIENT_BUFFER
)
4932 buf
= xmalloc (blen
);
4933 result
= get_token_information (token
, TokenUser
,
4934 (LPVOID
)buf
, blen
, &needed
);
4937 memcpy (&user_token
, buf
, sizeof (user_token
));
4938 if (!w32_cached_id (user_token
.User
.Sid
, &euid
, uname
))
4940 euid
= get_rid (user_token
.User
.Sid
);
4941 result
= lookup_account_sid (NULL
, user_token
.User
.Sid
,
4946 w32_add_to_cache (user_token
.User
.Sid
, euid
, uname
);
4949 strcpy (uname
, "unknown");
4953 ulength
= strlen (uname
);
4959 /* Determine a reasonable euid and gid values. */
4960 if (xstrcasecmp ("administrator", uname
) == 0)
4962 euid
= 500; /* well-known Administrator uid */
4963 egid
= 513; /* well-known None gid */
4967 /* Get group id and name. */
4968 result
= get_token_information (token
, TokenPrimaryGroup
,
4969 (LPVOID
)buf
, blen
, &needed
);
4970 if (!result
&& GetLastError () == ERROR_INSUFFICIENT_BUFFER
)
4972 buf
= xrealloc (buf
, blen
= needed
);
4973 result
= get_token_information (token
, TokenPrimaryGroup
,
4974 (LPVOID
)buf
, blen
, &needed
);
4978 memcpy (&group_token
, buf
, sizeof (group_token
));
4979 if (!w32_cached_id (group_token
.PrimaryGroup
, &egid
, gname
))
4981 egid
= get_rid (group_token
.PrimaryGroup
);
4982 dlength
= sizeof (domain
);
4984 lookup_account_sid (NULL
, group_token
.PrimaryGroup
,
4985 gname
, &glength
, NULL
, &dlength
,
4988 w32_add_to_cache (group_token
.PrimaryGroup
,
4992 strcpy (gname
, "None");
4996 glength
= strlen (gname
);
5004 if (!is_windows_9x ())
5006 /* We couldn't open the process token, presumably because of
5007 insufficient access rights. Assume this process is run
5009 strcpy (uname
, "SYSTEM");
5010 strcpy (gname
, "None");
5011 euid
= 18; /* SYSTEM */
5012 egid
= 513; /* None */
5013 glength
= strlen (gname
);
5014 ulength
= strlen (uname
);
5016 /* If we are running under Windows 9X, where security calls are
5017 not supported, we assume all processes are run by the current
5019 else if (GetUserName (uname
, &ulength
))
5021 if (xstrcasecmp ("administrator", uname
) == 0)
5026 strcpy (gname
, "None");
5027 glength
= strlen (gname
);
5028 ulength
= strlen (uname
);
5034 strcpy (uname
, "administrator");
5035 ulength
= strlen (uname
);
5036 strcpy (gname
, "None");
5037 glength
= strlen (gname
);
5040 CloseHandle (token
);
5043 attrs
= Fcons (Fcons (Qeuid
, make_fixnum_or_float (euid
)), attrs
);
5044 tem
= make_unibyte_string (uname
, ulength
);
5045 attrs
= Fcons (Fcons (Quser
,
5046 code_convert_string_norecord (tem
, Vlocale_coding_system
, 0)),
5048 attrs
= Fcons (Fcons (Qegid
, make_fixnum_or_float (egid
)), attrs
);
5049 tem
= make_unibyte_string (gname
, glength
);
5050 attrs
= Fcons (Fcons (Qgroup
,
5051 code_convert_string_norecord (tem
, Vlocale_coding_system
, 0)),
5054 if (global_memory_status_ex (&memstex
))
5055 #if __GNUC__ || (defined (_MSC_VER) && _MSC_VER >= 1300)
5056 totphys
= memstex
.ullTotalPhys
/ 1024.0;
5058 /* Visual Studio 6 cannot convert an unsigned __int64 type to
5059 double, so we need to do this for it... */
5061 DWORD tot_hi
= memstex
.ullTotalPhys
>> 32;
5062 DWORD tot_md
= (memstex
.ullTotalPhys
& 0x00000000ffffffff) >> 10;
5063 DWORD tot_lo
= memstex
.ullTotalPhys
% 1024;
5065 totphys
= tot_hi
* 4194304.0 + tot_md
+ tot_lo
/ 1024.0;
5067 #endif /* __GNUC__ || _MSC_VER >= 1300 */
5068 else if (global_memory_status (&memst
))
5069 totphys
= memst
.dwTotalPhys
/ 1024.0;
5072 && get_process_memory_info (h_proc
, (PROCESS_MEMORY_COUNTERS
*)&mem_ex
,
5075 DWORD rss
= mem_ex
.WorkingSetSize
/ 1024;
5077 attrs
= Fcons (Fcons (Qmajflt
,
5078 make_fixnum_or_float (mem_ex
.PageFaultCount
)),
5080 attrs
= Fcons (Fcons (Qvsize
,
5081 make_fixnum_or_float (mem_ex
.PrivateUsage
/ 1024)),
5083 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (rss
)), attrs
);
5085 attrs
= Fcons (Fcons (Qpmem
, make_float (100. * rss
/ totphys
)), attrs
);
5088 && get_process_memory_info (h_proc
, &mem
, sizeof (mem
)))
5090 DWORD rss
= mem_ex
.WorkingSetSize
/ 1024;
5092 attrs
= Fcons (Fcons (Qmajflt
,
5093 make_fixnum_or_float (mem
.PageFaultCount
)),
5095 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (rss
)), attrs
);
5097 attrs
= Fcons (Fcons (Qpmem
, make_float (100. * rss
/ totphys
)), attrs
);
5100 && get_process_working_set_size (h_proc
, &minrss
, &maxrss
))
5102 DWORD rss
= maxrss
/ 1024;
5104 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (maxrss
/ 1024)), attrs
);
5106 attrs
= Fcons (Fcons (Qpmem
, make_float (100. * rss
/ totphys
)), attrs
);
5109 if (process_times (h_proc
, &ctime
, &etime
, &stime
, &utime
, &ttime
, &pcpu
))
5111 attrs
= Fcons (Fcons (Qutime
, utime
), attrs
);
5112 attrs
= Fcons (Fcons (Qstime
, stime
), attrs
);
5113 attrs
= Fcons (Fcons (Qtime
, ttime
), attrs
);
5114 attrs
= Fcons (Fcons (Qstart
, ctime
), attrs
);
5115 attrs
= Fcons (Fcons (Qetime
, etime
), attrs
);
5116 attrs
= Fcons (Fcons (Qpcpu
, make_float (pcpu
)), attrs
);
5119 /* FIXME: Retrieve command line by walking the PEB of the process. */
5122 CloseHandle (h_proc
);
5128 /* Wrappers for winsock functions to map between our file descriptors
5129 and winsock's handles; also set h_errno for convenience.
5131 To allow Emacs to run on systems which don't have winsock support
5132 installed, we dynamically link to winsock on startup if present, and
5133 otherwise provide the minimum necessary functionality
5134 (eg. gethostname). */
5136 /* function pointers for relevant socket functions */
5137 int (PASCAL
*pfn_WSAStartup
) (WORD wVersionRequired
, LPWSADATA lpWSAData
);
5138 void (PASCAL
*pfn_WSASetLastError
) (int iError
);
5139 int (PASCAL
*pfn_WSAGetLastError
) (void);
5140 int (PASCAL
*pfn_WSAEventSelect
) (SOCKET s
, HANDLE hEventObject
, long lNetworkEvents
);
5141 HANDLE (PASCAL
*pfn_WSACreateEvent
) (void);
5142 int (PASCAL
*pfn_WSACloseEvent
) (HANDLE hEvent
);
5143 int (PASCAL
*pfn_socket
) (int af
, int type
, int protocol
);
5144 int (PASCAL
*pfn_bind
) (SOCKET s
, const struct sockaddr
*addr
, int namelen
);
5145 int (PASCAL
*pfn_connect
) (SOCKET s
, const struct sockaddr
*addr
, int namelen
);
5146 int (PASCAL
*pfn_ioctlsocket
) (SOCKET s
, long cmd
, u_long
*argp
);
5147 int (PASCAL
*pfn_recv
) (SOCKET s
, char * buf
, int len
, int flags
);
5148 int (PASCAL
*pfn_send
) (SOCKET s
, const char * buf
, int len
, int flags
);
5149 int (PASCAL
*pfn_closesocket
) (SOCKET s
);
5150 int (PASCAL
*pfn_shutdown
) (SOCKET s
, int how
);
5151 int (PASCAL
*pfn_WSACleanup
) (void);
5153 u_short (PASCAL
*pfn_htons
) (u_short hostshort
);
5154 u_short (PASCAL
*pfn_ntohs
) (u_short netshort
);
5155 unsigned long (PASCAL
*pfn_inet_addr
) (const char * cp
);
5156 int (PASCAL
*pfn_gethostname
) (char * name
, int namelen
);
5157 struct hostent
* (PASCAL
*pfn_gethostbyname
) (const char * name
);
5158 struct servent
* (PASCAL
*pfn_getservbyname
) (const char * name
, const char * proto
);
5159 int (PASCAL
*pfn_getpeername
) (SOCKET s
, struct sockaddr
*addr
, int * namelen
);
5160 int (PASCAL
*pfn_setsockopt
) (SOCKET s
, int level
, int optname
,
5161 const char * optval
, int optlen
);
5162 int (PASCAL
*pfn_listen
) (SOCKET s
, int backlog
);
5163 int (PASCAL
*pfn_getsockname
) (SOCKET s
, struct sockaddr
* name
,
5165 SOCKET (PASCAL
*pfn_accept
) (SOCKET s
, struct sockaddr
* addr
, int * addrlen
);
5166 int (PASCAL
*pfn_recvfrom
) (SOCKET s
, char * buf
, int len
, int flags
,
5167 struct sockaddr
* from
, int * fromlen
);
5168 int (PASCAL
*pfn_sendto
) (SOCKET s
, const char * buf
, int len
, int flags
,
5169 const struct sockaddr
* to
, int tolen
);
5171 /* SetHandleInformation is only needed to make sockets non-inheritable. */
5172 BOOL (WINAPI
*pfn_SetHandleInformation
) (HANDLE object
, DWORD mask
, DWORD flags
);
5173 #ifndef HANDLE_FLAG_INHERIT
5174 #define HANDLE_FLAG_INHERIT 1
5178 static int winsock_inuse
;
5183 if (winsock_lib
!= NULL
&& winsock_inuse
== 0)
5185 /* Not sure what would cause WSAENETDOWN, or even if it can happen
5186 after WSAStartup returns successfully, but it seems reasonable
5187 to allow unloading winsock anyway in that case. */
5188 if (pfn_WSACleanup () == 0 ||
5189 pfn_WSAGetLastError () == WSAENETDOWN
)
5191 if (FreeLibrary (winsock_lib
))
5200 init_winsock (int load_now
)
5202 WSADATA winsockData
;
5204 if (winsock_lib
!= NULL
)
5207 pfn_SetHandleInformation
5208 = (void *) GetProcAddress (GetModuleHandle ("kernel32.dll"),
5209 "SetHandleInformation");
5211 winsock_lib
= LoadLibrary ("Ws2_32.dll");
5213 if (winsock_lib
!= NULL
)
5215 /* dynamically link to socket functions */
5217 #define LOAD_PROC(fn) \
5218 if ((pfn_##fn = (void *) GetProcAddress (winsock_lib, #fn)) == NULL) \
5221 LOAD_PROC (WSAStartup
);
5222 LOAD_PROC (WSASetLastError
);
5223 LOAD_PROC (WSAGetLastError
);
5224 LOAD_PROC (WSAEventSelect
);
5225 LOAD_PROC (WSACreateEvent
);
5226 LOAD_PROC (WSACloseEvent
);
5229 LOAD_PROC (connect
);
5230 LOAD_PROC (ioctlsocket
);
5233 LOAD_PROC (closesocket
);
5234 LOAD_PROC (shutdown
);
5237 LOAD_PROC (inet_addr
);
5238 LOAD_PROC (gethostname
);
5239 LOAD_PROC (gethostbyname
);
5240 LOAD_PROC (getservbyname
);
5241 LOAD_PROC (getpeername
);
5242 LOAD_PROC (WSACleanup
);
5243 LOAD_PROC (setsockopt
);
5245 LOAD_PROC (getsockname
);
5247 LOAD_PROC (recvfrom
);
5251 /* specify version 1.1 of winsock */
5252 if (pfn_WSAStartup (0x101, &winsockData
) == 0)
5254 if (winsockData
.wVersion
!= 0x101)
5259 /* Report that winsock exists and is usable, but leave
5260 socket functions disabled. I am assuming that calling
5261 WSAStartup does not require any network interaction,
5262 and in particular does not cause or require a dial-up
5263 connection to be established. */
5266 FreeLibrary (winsock_lib
);
5274 FreeLibrary (winsock_lib
);
5284 /* function to set h_errno for compatibility; map winsock error codes to
5285 normal system codes where they overlap (non-overlapping definitions
5286 are already in <sys/socket.h> */
5290 if (winsock_lib
== NULL
)
5293 h_errno
= pfn_WSAGetLastError ();
5297 case WSAEACCES
: h_errno
= EACCES
; break;
5298 case WSAEBADF
: h_errno
= EBADF
; break;
5299 case WSAEFAULT
: h_errno
= EFAULT
; break;
5300 case WSAEINTR
: h_errno
= EINTR
; break;
5301 case WSAEINVAL
: h_errno
= EINVAL
; break;
5302 case WSAEMFILE
: h_errno
= EMFILE
; break;
5303 case WSAENAMETOOLONG
: h_errno
= ENAMETOOLONG
; break;
5304 case WSAENOTEMPTY
: h_errno
= ENOTEMPTY
; break;
5312 if (h_errno
== 0 && winsock_lib
!= NULL
)
5313 pfn_WSASetLastError (0);
5316 /* Extend strerror to handle the winsock-specific error codes. */
5320 } _wsa_errlist
[] = {
5321 {WSAEINTR
, "Interrupted function call"},
5322 {WSAEBADF
, "Bad file descriptor"},
5323 {WSAEACCES
, "Permission denied"},
5324 {WSAEFAULT
, "Bad address"},
5325 {WSAEINVAL
, "Invalid argument"},
5326 {WSAEMFILE
, "Too many open files"},
5328 {WSAEWOULDBLOCK
, "Resource temporarily unavailable"},
5329 {WSAEINPROGRESS
, "Operation now in progress"},
5330 {WSAEALREADY
, "Operation already in progress"},
5331 {WSAENOTSOCK
, "Socket operation on non-socket"},
5332 {WSAEDESTADDRREQ
, "Destination address required"},
5333 {WSAEMSGSIZE
, "Message too long"},
5334 {WSAEPROTOTYPE
, "Protocol wrong type for socket"},
5335 {WSAENOPROTOOPT
, "Bad protocol option"},
5336 {WSAEPROTONOSUPPORT
, "Protocol not supported"},
5337 {WSAESOCKTNOSUPPORT
, "Socket type not supported"},
5338 {WSAEOPNOTSUPP
, "Operation not supported"},
5339 {WSAEPFNOSUPPORT
, "Protocol family not supported"},
5340 {WSAEAFNOSUPPORT
, "Address family not supported by protocol family"},
5341 {WSAEADDRINUSE
, "Address already in use"},
5342 {WSAEADDRNOTAVAIL
, "Cannot assign requested address"},
5343 {WSAENETDOWN
, "Network is down"},
5344 {WSAENETUNREACH
, "Network is unreachable"},
5345 {WSAENETRESET
, "Network dropped connection on reset"},
5346 {WSAECONNABORTED
, "Software caused connection abort"},
5347 {WSAECONNRESET
, "Connection reset by peer"},
5348 {WSAENOBUFS
, "No buffer space available"},
5349 {WSAEISCONN
, "Socket is already connected"},
5350 {WSAENOTCONN
, "Socket is not connected"},
5351 {WSAESHUTDOWN
, "Cannot send after socket shutdown"},
5352 {WSAETOOMANYREFS
, "Too many references"}, /* not sure */
5353 {WSAETIMEDOUT
, "Connection timed out"},
5354 {WSAECONNREFUSED
, "Connection refused"},
5355 {WSAELOOP
, "Network loop"}, /* not sure */
5356 {WSAENAMETOOLONG
, "Name is too long"},
5357 {WSAEHOSTDOWN
, "Host is down"},
5358 {WSAEHOSTUNREACH
, "No route to host"},
5359 {WSAENOTEMPTY
, "Buffer not empty"}, /* not sure */
5360 {WSAEPROCLIM
, "Too many processes"},
5361 {WSAEUSERS
, "Too many users"}, /* not sure */
5362 {WSAEDQUOT
, "Double quote in host name"}, /* really not sure */
5363 {WSAESTALE
, "Data is stale"}, /* not sure */
5364 {WSAEREMOTE
, "Remote error"}, /* not sure */
5366 {WSASYSNOTREADY
, "Network subsystem is unavailable"},
5367 {WSAVERNOTSUPPORTED
, "WINSOCK.DLL version out of range"},
5368 {WSANOTINITIALISED
, "Winsock not initialized successfully"},
5369 {WSAEDISCON
, "Graceful shutdown in progress"},
5371 {WSAENOMORE
, "No more operations allowed"}, /* not sure */
5372 {WSAECANCELLED
, "Operation cancelled"}, /* not sure */
5373 {WSAEINVALIDPROCTABLE
, "Invalid procedure table from service provider"},
5374 {WSAEINVALIDPROVIDER
, "Invalid service provider version number"},
5375 {WSAEPROVIDERFAILEDINIT
, "Unable to initialize a service provider"},
5376 {WSASYSCALLFAILURE
, "System call failure"},
5377 {WSASERVICE_NOT_FOUND
, "Service not found"}, /* not sure */
5378 {WSATYPE_NOT_FOUND
, "Class type not found"},
5379 {WSA_E_NO_MORE
, "No more resources available"}, /* really not sure */
5380 {WSA_E_CANCELLED
, "Operation already cancelled"}, /* really not sure */
5381 {WSAEREFUSED
, "Operation refused"}, /* not sure */
5384 {WSAHOST_NOT_FOUND
, "Host not found"},
5385 {WSATRY_AGAIN
, "Authoritative host not found during name lookup"},
5386 {WSANO_RECOVERY
, "Non-recoverable error during name lookup"},
5387 {WSANO_DATA
, "Valid name, no data record of requested type"},
5393 sys_strerror (int error_no
)
5396 static char unknown_msg
[40];
5398 if (error_no
>= 0 && error_no
< sys_nerr
)
5399 return sys_errlist
[error_no
];
5401 for (i
= 0; _wsa_errlist
[i
].errnum
>= 0; i
++)
5402 if (_wsa_errlist
[i
].errnum
== error_no
)
5403 return _wsa_errlist
[i
].msg
;
5405 sprintf (unknown_msg
, "Unidentified error: %d", error_no
);
5409 /* [andrewi 3-May-96] I've had conflicting results using both methods,
5410 but I believe the method of keeping the socket handle separate (and
5411 insuring it is not inheritable) is the correct one. */
5413 #define SOCK_HANDLE(fd) ((SOCKET) fd_info[fd].hnd)
5415 static int socket_to_fd (SOCKET s
);
5418 sys_socket (int af
, int type
, int protocol
)
5422 if (winsock_lib
== NULL
)
5425 return INVALID_SOCKET
;
5430 /* call the real socket function */
5431 s
= pfn_socket (af
, type
, protocol
);
5433 if (s
!= INVALID_SOCKET
)
5434 return socket_to_fd (s
);
5440 /* Convert a SOCKET to a file descriptor. */
5442 socket_to_fd (SOCKET s
)
5447 /* Although under NT 3.5 _open_osfhandle will accept a socket
5448 handle, if opened with SO_OPENTYPE == SO_SYNCHRONOUS_NONALERT,
5449 that does not work under NT 3.1. However, we can get the same
5450 effect by using a backdoor function to replace an existing
5451 descriptor handle with the one we want. */
5453 /* allocate a file descriptor (with appropriate flags) */
5454 fd
= _open ("NUL:", _O_RDWR
);
5457 /* Make a non-inheritable copy of the socket handle. Note
5458 that it is possible that sockets aren't actually kernel
5459 handles, which appears to be the case on Windows 9x when
5460 the MS Proxy winsock client is installed. */
5462 /* Apparently there is a bug in NT 3.51 with some service
5463 packs, which prevents using DuplicateHandle to make a
5464 socket handle non-inheritable (causes WSACleanup to
5465 hang). The work-around is to use SetHandleInformation
5466 instead if it is available and implemented. */
5467 if (pfn_SetHandleInformation
)
5469 pfn_SetHandleInformation ((HANDLE
) s
, HANDLE_FLAG_INHERIT
, 0);
5473 HANDLE parent
= GetCurrentProcess ();
5474 HANDLE new_s
= INVALID_HANDLE_VALUE
;
5476 if (DuplicateHandle (parent
,
5482 DUPLICATE_SAME_ACCESS
))
5484 /* It is possible that DuplicateHandle succeeds even
5485 though the socket wasn't really a kernel handle,
5486 because a real handle has the same value. So
5487 test whether the new handle really is a socket. */
5488 long nonblocking
= 0;
5489 if (pfn_ioctlsocket ((SOCKET
) new_s
, FIONBIO
, &nonblocking
) == 0)
5491 pfn_closesocket (s
);
5496 CloseHandle (new_s
);
5501 fd_info
[fd
].hnd
= (HANDLE
) s
;
5503 /* set our own internal flags */
5504 fd_info
[fd
].flags
= FILE_SOCKET
| FILE_BINARY
| FILE_READ
| FILE_WRITE
;
5510 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
5512 /* attach child_process to fd_info */
5513 if (fd_info
[ fd
].cp
!= NULL
)
5515 DebPrint (("sys_socket: fd_info[%d] apparently in use!\n", fd
));
5519 fd_info
[ fd
].cp
= cp
;
5522 winsock_inuse
++; /* count open sockets */
5529 pfn_closesocket (s
);
5535 sys_bind (int s
, const struct sockaddr
* addr
, int namelen
)
5537 if (winsock_lib
== NULL
)
5540 return SOCKET_ERROR
;
5544 if (fd_info
[s
].flags
& FILE_SOCKET
)
5546 int rc
= pfn_bind (SOCK_HANDLE (s
), addr
, namelen
);
5547 if (rc
== SOCKET_ERROR
)
5552 return SOCKET_ERROR
;
5556 sys_connect (int s
, const struct sockaddr
* name
, int namelen
)
5558 if (winsock_lib
== NULL
)
5561 return SOCKET_ERROR
;
5565 if (fd_info
[s
].flags
& FILE_SOCKET
)
5567 int rc
= pfn_connect (SOCK_HANDLE (s
), name
, namelen
);
5568 if (rc
== SOCKET_ERROR
)
5573 return SOCKET_ERROR
;
5577 sys_htons (u_short hostshort
)
5579 return (winsock_lib
!= NULL
) ?
5580 pfn_htons (hostshort
) : hostshort
;
5584 sys_ntohs (u_short netshort
)
5586 return (winsock_lib
!= NULL
) ?
5587 pfn_ntohs (netshort
) : netshort
;
5591 sys_inet_addr (const char * cp
)
5593 return (winsock_lib
!= NULL
) ?
5594 pfn_inet_addr (cp
) : INADDR_NONE
;
5598 sys_gethostname (char * name
, int namelen
)
5600 if (winsock_lib
!= NULL
)
5601 return pfn_gethostname (name
, namelen
);
5603 if (namelen
> MAX_COMPUTERNAME_LENGTH
)
5604 return !GetComputerName (name
, (DWORD
*)&namelen
);
5607 return SOCKET_ERROR
;
5611 sys_gethostbyname (const char * name
)
5613 struct hostent
* host
;
5615 if (winsock_lib
== NULL
)
5622 host
= pfn_gethostbyname (name
);
5629 sys_getservbyname (const char * name
, const char * proto
)
5631 struct servent
* serv
;
5633 if (winsock_lib
== NULL
)
5640 serv
= pfn_getservbyname (name
, proto
);
5647 sys_getpeername (int s
, struct sockaddr
*addr
, int * namelen
)
5649 if (winsock_lib
== NULL
)
5652 return SOCKET_ERROR
;
5656 if (fd_info
[s
].flags
& FILE_SOCKET
)
5658 int rc
= pfn_getpeername (SOCK_HANDLE (s
), addr
, namelen
);
5659 if (rc
== SOCKET_ERROR
)
5664 return SOCKET_ERROR
;
5668 sys_shutdown (int s
, int how
)
5670 if (winsock_lib
== NULL
)
5673 return SOCKET_ERROR
;
5677 if (fd_info
[s
].flags
& FILE_SOCKET
)
5679 int rc
= pfn_shutdown (SOCK_HANDLE (s
), how
);
5680 if (rc
== SOCKET_ERROR
)
5685 return SOCKET_ERROR
;
5689 sys_setsockopt (int s
, int level
, int optname
, const void * optval
, int optlen
)
5691 if (winsock_lib
== NULL
)
5694 return SOCKET_ERROR
;
5698 if (fd_info
[s
].flags
& FILE_SOCKET
)
5700 int rc
= pfn_setsockopt (SOCK_HANDLE (s
), level
, optname
,
5701 (const char *)optval
, optlen
);
5702 if (rc
== SOCKET_ERROR
)
5707 return SOCKET_ERROR
;
5711 sys_listen (int s
, int backlog
)
5713 if (winsock_lib
== NULL
)
5716 return SOCKET_ERROR
;
5720 if (fd_info
[s
].flags
& FILE_SOCKET
)
5722 int rc
= pfn_listen (SOCK_HANDLE (s
), backlog
);
5723 if (rc
== SOCKET_ERROR
)
5726 fd_info
[s
].flags
|= FILE_LISTEN
;
5730 return SOCKET_ERROR
;
5734 sys_getsockname (int s
, struct sockaddr
* name
, int * namelen
)
5736 if (winsock_lib
== NULL
)
5739 return SOCKET_ERROR
;
5743 if (fd_info
[s
].flags
& FILE_SOCKET
)
5745 int rc
= pfn_getsockname (SOCK_HANDLE (s
), name
, namelen
);
5746 if (rc
== SOCKET_ERROR
)
5751 return SOCKET_ERROR
;
5755 sys_accept (int s
, struct sockaddr
* addr
, int * addrlen
)
5757 if (winsock_lib
== NULL
)
5764 if (fd_info
[s
].flags
& FILE_LISTEN
)
5766 SOCKET t
= pfn_accept (SOCK_HANDLE (s
), addr
, addrlen
);
5768 if (t
== INVALID_SOCKET
)
5771 fd
= socket_to_fd (t
);
5773 fd_info
[s
].cp
->status
= STATUS_READ_ACKNOWLEDGED
;
5774 ResetEvent (fd_info
[s
].cp
->char_avail
);
5782 sys_recvfrom (int s
, char * buf
, int len
, int flags
,
5783 struct sockaddr
* from
, int * fromlen
)
5785 if (winsock_lib
== NULL
)
5788 return SOCKET_ERROR
;
5792 if (fd_info
[s
].flags
& FILE_SOCKET
)
5794 int rc
= pfn_recvfrom (SOCK_HANDLE (s
), buf
, len
, flags
, from
, fromlen
);
5795 if (rc
== SOCKET_ERROR
)
5800 return SOCKET_ERROR
;
5804 sys_sendto (int s
, const char * buf
, int len
, int flags
,
5805 const struct sockaddr
* to
, int tolen
)
5807 if (winsock_lib
== NULL
)
5810 return SOCKET_ERROR
;
5814 if (fd_info
[s
].flags
& FILE_SOCKET
)
5816 int rc
= pfn_sendto (SOCK_HANDLE (s
), buf
, len
, flags
, to
, tolen
);
5817 if (rc
== SOCKET_ERROR
)
5822 return SOCKET_ERROR
;
5825 /* Windows does not have an fcntl function. Provide an implementation
5826 solely for making sockets non-blocking. */
5828 fcntl (int s
, int cmd
, int options
)
5830 if (winsock_lib
== NULL
)
5837 if (fd_info
[s
].flags
& FILE_SOCKET
)
5839 if (cmd
== F_SETFL
&& options
== O_NDELAY
)
5841 unsigned long nblock
= 1;
5842 int rc
= pfn_ioctlsocket (SOCK_HANDLE (s
), FIONBIO
, &nblock
);
5843 if (rc
== SOCKET_ERROR
)
5845 /* Keep track of the fact that we set this to non-blocking. */
5846 fd_info
[s
].flags
|= FILE_NDELAY
;
5852 return SOCKET_ERROR
;
5856 return SOCKET_ERROR
;
5860 /* Shadow main io functions: we need to handle pipes and sockets more
5861 intelligently, and implement non-blocking mode as well. */
5874 if (fd
< MAXDESC
&& fd_info
[fd
].cp
)
5876 child_process
* cp
= fd_info
[fd
].cp
;
5878 fd_info
[fd
].cp
= NULL
;
5880 if (CHILD_ACTIVE (cp
))
5882 /* if last descriptor to active child_process then cleanup */
5884 for (i
= 0; i
< MAXDESC
; i
++)
5888 if (fd_info
[i
].cp
== cp
)
5893 if (fd_info
[fd
].flags
& FILE_SOCKET
)
5895 if (winsock_lib
== NULL
) emacs_abort ();
5897 pfn_shutdown (SOCK_HANDLE (fd
), 2);
5898 rc
= pfn_closesocket (SOCK_HANDLE (fd
));
5900 winsock_inuse
--; /* count open sockets */
5907 /* Note that sockets do not need special treatment here (at least on
5908 NT and Windows 95 using the standard tcp/ip stacks) - it appears that
5909 closesocket is equivalent to CloseHandle, which is to be expected
5910 because socket handles are fully fledged kernel handles. */
5913 if (rc
== 0 && fd
< MAXDESC
)
5914 fd_info
[fd
].flags
= 0;
5925 if (new_fd
>= 0 && new_fd
< MAXDESC
)
5927 /* duplicate our internal info as well */
5928 fd_info
[new_fd
] = fd_info
[fd
];
5934 sys_dup2 (int src
, int dst
)
5938 if (dst
< 0 || dst
>= MAXDESC
)
5944 /* make sure we close the destination first if it's a pipe or socket */
5945 if (src
!= dst
&& fd_info
[dst
].flags
!= 0)
5948 rc
= _dup2 (src
, dst
);
5951 /* duplicate our internal info as well */
5952 fd_info
[dst
] = fd_info
[src
];
5957 /* Unix pipe() has only one arg */
5959 sys_pipe (int * phandles
)
5964 /* make pipe handles non-inheritable; when we spawn a child, we
5965 replace the relevant handle with an inheritable one. Also put
5966 pipes into binary mode; we will do text mode translation ourselves
5968 rc
= _pipe (phandles
, 0, _O_NOINHERIT
| _O_BINARY
);
5972 /* Protect against overflow, since Windows can open more handles than
5973 our fd_info array has room for. */
5974 if (phandles
[0] >= MAXDESC
|| phandles
[1] >= MAXDESC
)
5976 _close (phandles
[0]);
5977 _close (phandles
[1]);
5982 flags
= FILE_PIPE
| FILE_READ
| FILE_BINARY
;
5983 fd_info
[phandles
[0]].flags
= flags
;
5985 flags
= FILE_PIPE
| FILE_WRITE
| FILE_BINARY
;
5986 fd_info
[phandles
[1]].flags
= flags
;
5993 /* Function to do blocking read of one byte, needed to implement
5994 select. It is only allowed on sockets and pipes. */
5996 _sys_read_ahead (int fd
)
6001 if (fd
< 0 || fd
>= MAXDESC
)
6002 return STATUS_READ_ERROR
;
6004 cp
= fd_info
[fd
].cp
;
6006 if (cp
== NULL
|| cp
->fd
!= fd
|| cp
->status
!= STATUS_READ_READY
)
6007 return STATUS_READ_ERROR
;
6009 if ((fd_info
[fd
].flags
& (FILE_PIPE
| FILE_SERIAL
| FILE_SOCKET
)) == 0
6010 || (fd_info
[fd
].flags
& FILE_READ
) == 0)
6012 DebPrint (("_sys_read_ahead: internal error: fd %d is not a pipe, serial port, or socket!\n", fd
));
6016 cp
->status
= STATUS_READ_IN_PROGRESS
;
6018 if (fd_info
[fd
].flags
& FILE_PIPE
)
6020 rc
= _read (fd
, &cp
->chr
, sizeof (char));
6022 /* Give subprocess time to buffer some more output for us before
6023 reporting that input is available; we need this because Windows 95
6024 connects DOS programs to pipes by making the pipe appear to be
6025 the normal console stdout - as a result most DOS programs will
6026 write to stdout without buffering, ie. one character at a
6027 time. Even some W32 programs do this - "dir" in a command
6028 shell on NT is very slow if we don't do this. */
6031 int wait
= w32_pipe_read_delay
;
6037 /* Yield remainder of our time slice, effectively giving a
6038 temporary priority boost to the child process. */
6042 else if (fd_info
[fd
].flags
& FILE_SERIAL
)
6044 HANDLE hnd
= fd_info
[fd
].hnd
;
6045 OVERLAPPED
*ovl
= &fd_info
[fd
].cp
->ovl_read
;
6048 /* Configure timeouts for blocking read. */
6049 if (!GetCommTimeouts (hnd
, &ct
))
6050 return STATUS_READ_ERROR
;
6051 ct
.ReadIntervalTimeout
= 0;
6052 ct
.ReadTotalTimeoutMultiplier
= 0;
6053 ct
.ReadTotalTimeoutConstant
= 0;
6054 if (!SetCommTimeouts (hnd
, &ct
))
6055 return STATUS_READ_ERROR
;
6057 if (!ReadFile (hnd
, &cp
->chr
, sizeof (char), (DWORD
*) &rc
, ovl
))
6059 if (GetLastError () != ERROR_IO_PENDING
)
6060 return STATUS_READ_ERROR
;
6061 if (!GetOverlappedResult (hnd
, ovl
, (DWORD
*) &rc
, TRUE
))
6062 return STATUS_READ_ERROR
;
6065 else if (fd_info
[fd
].flags
& FILE_SOCKET
)
6067 unsigned long nblock
= 0;
6068 /* We always want this to block, so temporarily disable NDELAY. */
6069 if (fd_info
[fd
].flags
& FILE_NDELAY
)
6070 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
6072 rc
= pfn_recv (SOCK_HANDLE (fd
), &cp
->chr
, sizeof (char), 0);
6074 if (fd_info
[fd
].flags
& FILE_NDELAY
)
6077 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
6081 if (rc
== sizeof (char))
6082 cp
->status
= STATUS_READ_SUCCEEDED
;
6084 cp
->status
= STATUS_READ_FAILED
;
6090 _sys_wait_accept (int fd
)
6096 if (fd
< 0 || fd
>= MAXDESC
)
6097 return STATUS_READ_ERROR
;
6099 cp
= fd_info
[fd
].cp
;
6101 if (cp
== NULL
|| cp
->fd
!= fd
|| cp
->status
!= STATUS_READ_READY
)
6102 return STATUS_READ_ERROR
;
6104 cp
->status
= STATUS_READ_FAILED
;
6106 hEv
= pfn_WSACreateEvent ();
6107 rc
= pfn_WSAEventSelect (SOCK_HANDLE (fd
), hEv
, FD_ACCEPT
);
6108 if (rc
!= SOCKET_ERROR
)
6110 rc
= WaitForSingleObject (hEv
, INFINITE
);
6111 pfn_WSAEventSelect (SOCK_HANDLE (fd
), NULL
, 0);
6112 if (rc
== WAIT_OBJECT_0
)
6113 cp
->status
= STATUS_READ_SUCCEEDED
;
6115 pfn_WSACloseEvent (hEv
);
6121 sys_read (int fd
, char * buffer
, unsigned int count
)
6126 char * orig_buffer
= buffer
;
6134 if (fd
< MAXDESC
&& fd_info
[fd
].flags
& (FILE_PIPE
| FILE_SOCKET
| FILE_SERIAL
))
6136 child_process
*cp
= fd_info
[fd
].cp
;
6138 if ((fd_info
[fd
].flags
& FILE_READ
) == 0)
6146 /* re-read CR carried over from last read */
6147 if (fd_info
[fd
].flags
& FILE_LAST_CR
)
6149 if (fd_info
[fd
].flags
& FILE_BINARY
) emacs_abort ();
6153 fd_info
[fd
].flags
&= ~FILE_LAST_CR
;
6156 /* presence of a child_process structure means we are operating in
6157 non-blocking mode - otherwise we just call _read directly.
6158 Note that the child_process structure might be missing because
6159 reap_subprocess has been called; in this case the pipe is
6160 already broken, so calling _read on it is okay. */
6163 int current_status
= cp
->status
;
6165 switch (current_status
)
6167 case STATUS_READ_FAILED
:
6168 case STATUS_READ_ERROR
:
6169 /* report normal EOF if nothing in buffer */
6171 fd_info
[fd
].flags
|= FILE_AT_EOF
;
6174 case STATUS_READ_READY
:
6175 case STATUS_READ_IN_PROGRESS
:
6176 DebPrint (("sys_read called when read is in progress\n"));
6177 errno
= EWOULDBLOCK
;
6180 case STATUS_READ_SUCCEEDED
:
6181 /* consume read-ahead char */
6182 *buffer
++ = cp
->chr
;
6185 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
6186 ResetEvent (cp
->char_avail
);
6188 case STATUS_READ_ACKNOWLEDGED
:
6192 DebPrint (("sys_read: bad status %d\n", current_status
));
6197 if (fd_info
[fd
].flags
& FILE_PIPE
)
6199 PeekNamedPipe ((HANDLE
) _get_osfhandle (fd
), NULL
, 0, NULL
, &waiting
, NULL
);
6200 to_read
= min (waiting
, (DWORD
) count
);
6203 nchars
+= _read (fd
, buffer
, to_read
);
6205 else if (fd_info
[fd
].flags
& FILE_SERIAL
)
6207 HANDLE hnd
= fd_info
[fd
].hnd
;
6208 OVERLAPPED
*ovl
= &fd_info
[fd
].cp
->ovl_read
;
6214 /* Configure timeouts for non-blocking read. */
6215 if (!GetCommTimeouts (hnd
, &ct
))
6220 ct
.ReadIntervalTimeout
= MAXDWORD
;
6221 ct
.ReadTotalTimeoutMultiplier
= 0;
6222 ct
.ReadTotalTimeoutConstant
= 0;
6223 if (!SetCommTimeouts (hnd
, &ct
))
6229 if (!ResetEvent (ovl
->hEvent
))
6234 if (!ReadFile (hnd
, buffer
, count
, (DWORD
*) &rc
, ovl
))
6236 if (GetLastError () != ERROR_IO_PENDING
)
6241 if (!GetOverlappedResult (hnd
, ovl
, (DWORD
*) &rc
, TRUE
))
6250 else /* FILE_SOCKET */
6252 if (winsock_lib
== NULL
) emacs_abort ();
6254 /* do the equivalent of a non-blocking read */
6255 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONREAD
, &waiting
);
6256 if (waiting
== 0 && nchars
== 0)
6258 h_errno
= errno
= EWOULDBLOCK
;
6264 /* always use binary mode for sockets */
6265 int res
= pfn_recv (SOCK_HANDLE (fd
), buffer
, count
, 0);
6266 if (res
== SOCKET_ERROR
)
6268 DebPrint (("sys_read.recv failed with error %d on socket %ld\n",
6269 pfn_WSAGetLastError (), SOCK_HANDLE (fd
)));
6279 int nread
= _read (fd
, buffer
, count
);
6282 else if (nchars
== 0)
6287 fd_info
[fd
].flags
|= FILE_AT_EOF
;
6288 /* Perform text mode translation if required. */
6289 else if ((fd_info
[fd
].flags
& FILE_BINARY
) == 0)
6291 nchars
= crlf_to_lf (nchars
, orig_buffer
);
6292 /* If buffer contains only CR, return that. To be absolutely
6293 sure we should attempt to read the next char, but in
6294 practice a CR to be followed by LF would not appear by
6295 itself in the buffer. */
6296 if (nchars
> 1 && orig_buffer
[nchars
- 1] == 0x0d)
6298 fd_info
[fd
].flags
|= FILE_LAST_CR
;
6304 nchars
= _read (fd
, buffer
, count
);
6309 /* From w32xfns.c */
6310 extern HANDLE interrupt_handle
;
6312 /* For now, don't bother with a non-blocking mode */
6314 sys_write (int fd
, const void * buffer
, unsigned int count
)
6324 if (fd
< MAXDESC
&& fd_info
[fd
].flags
& (FILE_PIPE
| FILE_SOCKET
| FILE_SERIAL
))
6326 if ((fd_info
[fd
].flags
& FILE_WRITE
) == 0)
6332 /* Perform text mode translation if required. */
6333 if ((fd_info
[fd
].flags
& FILE_BINARY
) == 0)
6335 char * tmpbuf
= alloca (count
* 2);
6336 unsigned char * src
= (void *)buffer
;
6337 unsigned char * dst
= tmpbuf
;
6342 unsigned char *next
;
6343 /* copy next line or remaining bytes */
6344 next
= _memccpy (dst
, src
, '\n', nbytes
);
6347 /* copied one line ending with '\n' */
6348 int copied
= next
- dst
;
6351 /* insert '\r' before '\n' */
6358 /* copied remaining partial line -> now finished */
6365 if (fd
< MAXDESC
&& fd_info
[fd
].flags
& FILE_SERIAL
)
6367 HANDLE hnd
= (HANDLE
) _get_osfhandle (fd
);
6368 OVERLAPPED
*ovl
= &fd_info
[fd
].cp
->ovl_write
;
6369 HANDLE wait_hnd
[2] = { interrupt_handle
, ovl
->hEvent
};
6372 if (!WriteFile (hnd
, buffer
, count
, (DWORD
*) &nchars
, ovl
))
6374 if (GetLastError () != ERROR_IO_PENDING
)
6379 if (detect_input_pending ())
6380 active
= MsgWaitForMultipleObjects (2, wait_hnd
, FALSE
, INFINITE
,
6383 active
= WaitForMultipleObjects (2, wait_hnd
, FALSE
, INFINITE
);
6384 if (active
== WAIT_OBJECT_0
)
6385 { /* User pressed C-g, cancel write, then leave. Don't bother
6386 cleaning up as we may only get stuck in buggy drivers. */
6387 PurgeComm (hnd
, PURGE_TXABORT
| PURGE_TXCLEAR
);
6392 if (active
== WAIT_OBJECT_0
+ 1
6393 && !GetOverlappedResult (hnd
, ovl
, (DWORD
*) &nchars
, TRUE
))
6400 else if (fd
< MAXDESC
&& fd_info
[fd
].flags
& FILE_SOCKET
)
6402 unsigned long nblock
= 0;
6403 if (winsock_lib
== NULL
) emacs_abort ();
6405 /* TODO: implement select() properly so non-blocking I/O works. */
6406 /* For now, make sure the write blocks. */
6407 if (fd_info
[fd
].flags
& FILE_NDELAY
)
6408 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
6410 nchars
= pfn_send (SOCK_HANDLE (fd
), buffer
, count
, 0);
6412 /* Set the socket back to non-blocking if it was before,
6413 for other operations that support it. */
6414 if (fd_info
[fd
].flags
& FILE_NDELAY
)
6417 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
6420 if (nchars
== SOCKET_ERROR
)
6422 DebPrint (("sys_write.send failed with error %d on socket %ld\n",
6423 pfn_WSAGetLastError (), SOCK_HANDLE (fd
)));
6429 /* Some networked filesystems don't like too large writes, so
6430 break them into smaller chunks. See the Comments section of
6431 the MSDN documentation of WriteFile for details behind the
6432 choice of the value of CHUNK below. See also the thread
6433 http://thread.gmane.org/gmane.comp.version-control.git/145294
6434 in the git mailing list. */
6435 const unsigned char *p
= buffer
;
6436 const unsigned chunk
= 30 * 1024 * 1024;
6441 unsigned this_chunk
= count
< chunk
? count
: chunk
;
6442 int n
= _write (fd
, p
, this_chunk
);
6450 else if (n
< this_chunk
)
6460 /* The Windows CRT functions are "optimized for speed", so they don't
6461 check for timezone and DST changes if they were last called less
6462 than 1 minute ago (see http://support.microsoft.com/kb/821231). So
6463 all Emacs features that repeatedly call time functions (e.g.,
6464 display-time) are in real danger of missing timezone and DST
6465 changes. Calling tzset before each localtime call fixes that. */
6467 sys_localtime (const time_t *t
)
6470 return localtime (t
);
6475 /* Try loading LIBRARY_ID from the file(s) specified in
6476 Vdynamic_library_alist. If the library is loaded successfully,
6477 return the handle of the DLL, and record the filename in the
6478 property :loaded-from of LIBRARY_ID. If the library could not be
6479 found, or when it was already loaded (because the handle is not
6480 recorded anywhere, and so is lost after use), return NULL.
6482 We could also save the handle in :loaded-from, but currently
6483 there's no use case for it. */
6485 w32_delayed_load (Lisp_Object library_id
)
6487 HMODULE library_dll
= NULL
;
6489 CHECK_SYMBOL (library_id
);
6491 if (CONSP (Vdynamic_library_alist
)
6492 && NILP (Fassq (library_id
, Vlibrary_cache
)))
6494 Lisp_Object found
= Qnil
;
6495 Lisp_Object dlls
= Fassq (library_id
, Vdynamic_library_alist
);
6498 for (dlls
= XCDR (dlls
); CONSP (dlls
); dlls
= XCDR (dlls
))
6500 CHECK_STRING_CAR (dlls
);
6501 if ((library_dll
= LoadLibrary (SDATA (XCAR (dlls
)))))
6503 char name
[MAX_PATH
];
6506 len
= GetModuleFileNameA (library_dll
, name
, sizeof (name
));
6507 found
= Fcons (XCAR (dlls
),
6509 /* Possibly truncated */
6510 ? make_specified_string (name
, -1, len
, 1)
6516 Fput (library_id
, QCloaded_from
, found
);
6524 check_windows_init_file (void)
6526 /* A common indication that Emacs is not installed properly is when
6527 it cannot find the Windows installation file. If this file does
6528 not exist in the expected place, tell the user. */
6530 if (!noninteractive
&& !inhibit_window_system
6531 /* Vload_path is not yet initialized when we are loading
6533 && NILP (Vpurify_flag
))
6535 Lisp_Object init_file
;
6538 init_file
= build_string ("term/w32-win");
6539 fd
= openp (Vload_path
, init_file
, Fget_load_suffixes (), NULL
, Qnil
);
6542 Lisp_Object load_path_print
= Fprin1_to_string (Vload_path
, Qnil
);
6543 char *init_file_name
= SDATA (init_file
);
6544 char *load_path
= SDATA (load_path_print
);
6545 char *buffer
= alloca (1024
6546 + strlen (init_file_name
)
6547 + strlen (load_path
));
6550 "The Emacs Windows initialization file \"%s.el\" "
6551 "could not be found in your Emacs installation. "
6552 "Emacs checked the following directories for this file:\n"
6554 "When Emacs cannot find this file, it usually means that it "
6555 "was not installed properly, or its distribution file was "
6556 "not unpacked properly.\nSee the README.W32 file in the "
6557 "top-level Emacs directory for more information.",
6558 init_file_name
, load_path
);
6561 "Emacs Abort Dialog",
6562 MB_OK
| MB_ICONEXCLAMATION
| MB_TASKMODAL
);
6563 /* Use the low-level system abort. */
6574 term_ntproc (int ignored
)
6580 /* shutdown the socket interface if necessary */
6587 init_ntproc (int dumping
)
6589 sigset_t initial_mask
= 0;
6591 /* Initialize the socket interface now if available and requested by
6592 the user by defining PRELOAD_WINSOCK; otherwise loading will be
6593 delayed until open-network-stream is called (w32-has-winsock can
6594 also be used to dynamically load or reload winsock).
6596 Conveniently, init_environment is called before us, so
6597 PRELOAD_WINSOCK can be set in the registry. */
6599 /* Always initialize this correctly. */
6602 if (getenv ("PRELOAD_WINSOCK") != NULL
)
6603 init_winsock (TRUE
);
6605 /* Initial preparation for subprocess support: replace our standard
6606 handles with non-inheritable versions. */
6609 HANDLE stdin_save
= INVALID_HANDLE_VALUE
;
6610 HANDLE stdout_save
= INVALID_HANDLE_VALUE
;
6611 HANDLE stderr_save
= INVALID_HANDLE_VALUE
;
6613 parent
= GetCurrentProcess ();
6615 /* ignore errors when duplicating and closing; typically the
6616 handles will be invalid when running as a gui program. */
6617 DuplicateHandle (parent
,
6618 GetStdHandle (STD_INPUT_HANDLE
),
6623 DUPLICATE_SAME_ACCESS
);
6625 DuplicateHandle (parent
,
6626 GetStdHandle (STD_OUTPUT_HANDLE
),
6631 DUPLICATE_SAME_ACCESS
);
6633 DuplicateHandle (parent
,
6634 GetStdHandle (STD_ERROR_HANDLE
),
6639 DUPLICATE_SAME_ACCESS
);
6645 if (stdin_save
!= INVALID_HANDLE_VALUE
)
6646 _open_osfhandle ((intptr_t) stdin_save
, O_TEXT
);
6648 _open ("nul", O_TEXT
| O_NOINHERIT
| O_RDONLY
);
6651 if (stdout_save
!= INVALID_HANDLE_VALUE
)
6652 _open_osfhandle ((intptr_t) stdout_save
, O_TEXT
);
6654 _open ("nul", O_TEXT
| O_NOINHERIT
| O_WRONLY
);
6657 if (stderr_save
!= INVALID_HANDLE_VALUE
)
6658 _open_osfhandle ((intptr_t) stderr_save
, O_TEXT
);
6660 _open ("nul", O_TEXT
| O_NOINHERIT
| O_WRONLY
);
6664 /* unfortunately, atexit depends on implementation of malloc */
6665 /* atexit (term_ntproc); */
6668 /* Make sure we start with all signals unblocked. */
6669 sigprocmask (SIG_SETMASK
, &initial_mask
, NULL
);
6670 signal (SIGABRT
, term_ntproc
);
6674 /* determine which drives are fixed, for GetCachedVolumeInformation */
6676 /* GetDriveType must have trailing backslash. */
6677 char drive
[] = "A:\\";
6679 /* Loop over all possible drive letters */
6680 while (*drive
<= 'Z')
6682 /* Record if this drive letter refers to a fixed drive. */
6683 fixed_drives
[DRIVE_INDEX (*drive
)] =
6684 (GetDriveType (drive
) == DRIVE_FIXED
);
6689 /* Reset the volume info cache. */
6690 volume_cache
= NULL
;
6695 shutdown_handler ensures that buffers' autosave files are
6696 up to date when the user logs off, or the system shuts down.
6699 shutdown_handler (DWORD type
)
6701 /* Ctrl-C and Ctrl-Break are already suppressed, so don't handle them. */
6702 if (type
== CTRL_CLOSE_EVENT
/* User closes console window. */
6703 || type
== CTRL_LOGOFF_EVENT
/* User logs off. */
6704 || type
== CTRL_SHUTDOWN_EVENT
) /* User shutsdown. */
6706 /* Shut down cleanly, making sure autosave files are up to date. */
6707 shut_down_emacs (0, Qnil
);
6710 /* Allow other handlers to handle this signal. */
6715 globals_of_w32 is used to initialize those global variables that
6716 must always be initialized on startup even when the global variable
6717 initialized is non zero (see the function main in emacs.c).
6720 globals_of_w32 (void)
6722 HMODULE kernel32
= GetModuleHandle ("kernel32.dll");
6724 get_process_times_fn
= (GetProcessTimes_Proc
)
6725 GetProcAddress (kernel32
, "GetProcessTimes");
6727 DEFSYM (QCloaded_from
, ":loaded-from");
6729 g_b_init_is_windows_9x
= 0;
6730 g_b_init_open_process_token
= 0;
6731 g_b_init_get_token_information
= 0;
6732 g_b_init_lookup_account_sid
= 0;
6733 g_b_init_get_sid_sub_authority
= 0;
6734 g_b_init_get_sid_sub_authority_count
= 0;
6735 g_b_init_get_security_info
= 0;
6736 g_b_init_get_file_security
= 0;
6737 g_b_init_get_security_descriptor_owner
= 0;
6738 g_b_init_get_security_descriptor_group
= 0;
6739 g_b_init_is_valid_sid
= 0;
6740 g_b_init_create_toolhelp32_snapshot
= 0;
6741 g_b_init_process32_first
= 0;
6742 g_b_init_process32_next
= 0;
6743 g_b_init_open_thread_token
= 0;
6744 g_b_init_impersonate_self
= 0;
6745 g_b_init_revert_to_self
= 0;
6746 g_b_init_get_process_memory_info
= 0;
6747 g_b_init_get_process_working_set_size
= 0;
6748 g_b_init_global_memory_status
= 0;
6749 g_b_init_global_memory_status_ex
= 0;
6750 g_b_init_equal_sid
= 0;
6751 g_b_init_copy_sid
= 0;
6752 g_b_init_get_length_sid
= 0;
6753 g_b_init_get_native_system_info
= 0;
6754 g_b_init_get_system_times
= 0;
6755 g_b_init_create_symbolic_link
= 0;
6756 num_of_processors
= 0;
6757 /* The following sets a handler for shutdown notifications for
6758 console apps. This actually applies to Emacs in both console and
6759 GUI modes, since we had to fool windows into thinking emacs is a
6760 console application to get console mode to work. */
6761 SetConsoleCtrlHandler (shutdown_handler
, TRUE
);
6763 /* "None" is the default group name on standalone workstations. */
6764 strcpy (dflt_group_name
, "None");
6767 /* For make-serial-process */
6769 serial_open (char *port
)
6775 hnd
= CreateFile (port
, GENERIC_READ
| GENERIC_WRITE
, 0, 0,
6776 OPEN_EXISTING
, FILE_FLAG_OVERLAPPED
, 0);
6777 if (hnd
== INVALID_HANDLE_VALUE
)
6778 error ("Could not open %s", port
);
6779 fd
= (int) _open_osfhandle ((intptr_t) hnd
, 0);
6781 error ("Could not open %s", port
);
6785 error ("Could not create child process");
6787 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
6788 fd_info
[ fd
].hnd
= hnd
;
6789 fd_info
[ fd
].flags
|=
6790 FILE_READ
| FILE_WRITE
| FILE_BINARY
| FILE_SERIAL
;
6791 if (fd_info
[ fd
].cp
!= NULL
)
6793 error ("fd_info[fd = %d] is already in use", fd
);
6795 fd_info
[ fd
].cp
= cp
;
6796 cp
->ovl_read
.hEvent
= CreateEvent (NULL
, TRUE
, FALSE
, NULL
);
6797 if (cp
->ovl_read
.hEvent
== NULL
)
6798 error ("Could not create read event");
6799 cp
->ovl_write
.hEvent
= CreateEvent (NULL
, TRUE
, FALSE
, NULL
);
6800 if (cp
->ovl_write
.hEvent
== NULL
)
6801 error ("Could not create write event");
6806 /* For serial-process-configure */
6808 serial_configure (struct Lisp_Process
*p
, Lisp_Object contact
)
6810 Lisp_Object childp2
= Qnil
;
6811 Lisp_Object tem
= Qnil
;
6815 char summary
[4] = "???"; /* This usually becomes "8N1". */
6817 if ((fd_info
[ p
->outfd
].flags
& FILE_SERIAL
) == 0)
6818 error ("Not a serial process");
6819 hnd
= fd_info
[ p
->outfd
].hnd
;
6821 childp2
= Fcopy_sequence (p
->childp
);
6823 /* Initialize timeouts for blocking read and blocking write. */
6824 if (!GetCommTimeouts (hnd
, &ct
))
6825 error ("GetCommTimeouts() failed");
6826 ct
.ReadIntervalTimeout
= 0;
6827 ct
.ReadTotalTimeoutMultiplier
= 0;
6828 ct
.ReadTotalTimeoutConstant
= 0;
6829 ct
.WriteTotalTimeoutMultiplier
= 0;
6830 ct
.WriteTotalTimeoutConstant
= 0;
6831 if (!SetCommTimeouts (hnd
, &ct
))
6832 error ("SetCommTimeouts() failed");
6833 /* Read port attributes and prepare default configuration. */
6834 memset (&dcb
, 0, sizeof (dcb
));
6835 dcb
.DCBlength
= sizeof (DCB
);
6836 if (!GetCommState (hnd
, &dcb
))
6837 error ("GetCommState() failed");
6840 dcb
.fAbortOnError
= FALSE
;
6841 /* dcb.XonLim and dcb.XoffLim are set by GetCommState() */
6846 /* Configure speed. */
6847 if (!NILP (Fplist_member (contact
, QCspeed
)))
6848 tem
= Fplist_get (contact
, QCspeed
);
6850 tem
= Fplist_get (p
->childp
, QCspeed
);
6852 dcb
.BaudRate
= XINT (tem
);
6853 childp2
= Fplist_put (childp2
, QCspeed
, tem
);
6855 /* Configure bytesize. */
6856 if (!NILP (Fplist_member (contact
, QCbytesize
)))
6857 tem
= Fplist_get (contact
, QCbytesize
);
6859 tem
= Fplist_get (p
->childp
, QCbytesize
);
6861 tem
= make_number (8);
6863 if (XINT (tem
) != 7 && XINT (tem
) != 8)
6864 error (":bytesize must be nil (8), 7, or 8");
6865 dcb
.ByteSize
= XINT (tem
);
6866 summary
[0] = XINT (tem
) + '0';
6867 childp2
= Fplist_put (childp2
, QCbytesize
, tem
);
6869 /* Configure parity. */
6870 if (!NILP (Fplist_member (contact
, QCparity
)))
6871 tem
= Fplist_get (contact
, QCparity
);
6873 tem
= Fplist_get (p
->childp
, QCparity
);
6874 if (!NILP (tem
) && !EQ (tem
, Qeven
) && !EQ (tem
, Qodd
))
6875 error (":parity must be nil (no parity), `even', or `odd'");
6876 dcb
.fParity
= FALSE
;
6877 dcb
.Parity
= NOPARITY
;
6878 dcb
.fErrorChar
= FALSE
;
6883 else if (EQ (tem
, Qeven
))
6887 dcb
.Parity
= EVENPARITY
;
6888 dcb
.fErrorChar
= TRUE
;
6890 else if (EQ (tem
, Qodd
))
6894 dcb
.Parity
= ODDPARITY
;
6895 dcb
.fErrorChar
= TRUE
;
6897 childp2
= Fplist_put (childp2
, QCparity
, tem
);
6899 /* Configure stopbits. */
6900 if (!NILP (Fplist_member (contact
, QCstopbits
)))
6901 tem
= Fplist_get (contact
, QCstopbits
);
6903 tem
= Fplist_get (p
->childp
, QCstopbits
);
6905 tem
= make_number (1);
6907 if (XINT (tem
) != 1 && XINT (tem
) != 2)
6908 error (":stopbits must be nil (1 stopbit), 1, or 2");
6909 summary
[2] = XINT (tem
) + '0';
6910 if (XINT (tem
) == 1)
6911 dcb
.StopBits
= ONESTOPBIT
;
6912 else if (XINT (tem
) == 2)
6913 dcb
.StopBits
= TWOSTOPBITS
;
6914 childp2
= Fplist_put (childp2
, QCstopbits
, tem
);
6916 /* Configure flowcontrol. */
6917 if (!NILP (Fplist_member (contact
, QCflowcontrol
)))
6918 tem
= Fplist_get (contact
, QCflowcontrol
);
6920 tem
= Fplist_get (p
->childp
, QCflowcontrol
);
6921 if (!NILP (tem
) && !EQ (tem
, Qhw
) && !EQ (tem
, Qsw
))
6922 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
6923 dcb
.fOutxCtsFlow
= FALSE
;
6924 dcb
.fOutxDsrFlow
= FALSE
;
6925 dcb
.fDtrControl
= DTR_CONTROL_DISABLE
;
6926 dcb
.fDsrSensitivity
= FALSE
;
6927 dcb
.fTXContinueOnXoff
= FALSE
;
6930 dcb
.fRtsControl
= RTS_CONTROL_DISABLE
;
6931 dcb
.XonChar
= 17; /* Control-Q */
6932 dcb
.XoffChar
= 19; /* Control-S */
6935 /* Already configured. */
6937 else if (EQ (tem
, Qhw
))
6939 dcb
.fRtsControl
= RTS_CONTROL_HANDSHAKE
;
6940 dcb
.fOutxCtsFlow
= TRUE
;
6942 else if (EQ (tem
, Qsw
))
6947 childp2
= Fplist_put (childp2
, QCflowcontrol
, tem
);
6949 /* Activate configuration. */
6950 if (!SetCommState (hnd
, &dcb
))
6951 error ("SetCommState() failed");
6953 childp2
= Fplist_put (childp2
, QCsummary
, build_string (summary
));
6954 pset_childp (p
, childp2
);
6960 emacs_gnutls_pull (gnutls_transport_ptr_t p
, void* buf
, size_t sz
)
6964 struct timeval timeout
;
6965 struct Lisp_Process
*process
= (struct Lisp_Process
*)p
;
6966 int fd
= process
->infd
;
6970 n
= sys_read (fd
, (char*)buf
, sz
);
6977 if (err
== EWOULDBLOCK
)
6979 /* Set a small timeout. */
6981 timeout
.tv_usec
= 0;
6983 FD_SET ((int)fd
, &fdset
);
6985 /* Use select with the timeout to poll the selector. */
6986 sc
= select (fd
+ 1, &fdset
, (SELECT_TYPE
*)0, (SELECT_TYPE
*)0,
6990 continue; /* Try again. */
6992 /* Translate the WSAEWOULDBLOCK alias EWOULDBLOCK to EAGAIN.
6993 Also accept select return 0 as an indicator to EAGAIN. */
6994 if (sc
== 0 || errno
== EWOULDBLOCK
)
6997 err
= errno
; /* Other errors are just passed on. */
7000 emacs_gnutls_transport_set_errno (process
->gnutls_state
, err
);
7007 emacs_gnutls_push (gnutls_transport_ptr_t p
, const void* buf
, size_t sz
)
7009 struct Lisp_Process
*process
= (struct Lisp_Process
*)p
;
7010 int fd
= process
->outfd
;
7011 ssize_t n
= sys_write (fd
, buf
, sz
);
7013 /* 0 or more bytes written means everything went fine. */
7017 /* Negative bytes written means we got an error in errno.
7018 Translate the WSAEWOULDBLOCK alias EWOULDBLOCK to EAGAIN. */
7019 emacs_gnutls_transport_set_errno (process
->gnutls_state
,
7020 errno
== EWOULDBLOCK
? EAGAIN
: errno
);
7024 #endif /* HAVE_GNUTLS */