1 /* Utility and Unix shadow routines for GNU Emacs on the Microsoft Windows API.
2 Copyright (C) 1994-1995, 2000-2013 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 */
32 #include <time.h> /* must be before nt/inc/sys/time.h, for MinGW64 */
34 #include <sys/utime.h>
37 /* must include CRT headers *before* config.h */
40 #include <mbstring.h> /* for _mbspbrk, _mbslwr, _mbsrchr, ... */
72 /* MinGW64 (_W64) defines these in its _mingw.h. */
73 #if defined(__GNUC__) && !defined(_W64)
74 #define _ANONYMOUS_UNION
75 #define _ANONYMOUS_STRUCT
78 /* Some versions of compiler define MEMORYSTATUSEX, some don't, so we
79 use a different name to avoid compilation problems. */
80 typedef struct _MEMORY_STATUS_EX
{
83 DWORDLONG ullTotalPhys
;
84 DWORDLONG ullAvailPhys
;
85 DWORDLONG ullTotalPageFile
;
86 DWORDLONG ullAvailPageFile
;
87 DWORDLONG ullTotalVirtual
;
88 DWORDLONG ullAvailVirtual
;
89 DWORDLONG ullAvailExtendedVirtual
;
90 } MEMORY_STATUS_EX
,*LPMEMORY_STATUS_EX
;
100 #if _WIN32_WINNT < 0x0500
101 #if !defined (__MINGW32__) || __W32API_MAJOR_VERSION < 3 || (__W32API_MAJOR_VERSION == 3 && __W32API_MINOR_VERSION < 15)
102 /* This either is not in psapi.h or guarded by higher value of
103 _WIN32_WINNT than what we use. w32api supplied with MinGW 3.15
104 defines it in psapi.h */
105 typedef struct _PROCESS_MEMORY_COUNTERS_EX
{
107 DWORD PageFaultCount
;
108 SIZE_T PeakWorkingSetSize
;
109 SIZE_T WorkingSetSize
;
110 SIZE_T QuotaPeakPagedPoolUsage
;
111 SIZE_T QuotaPagedPoolUsage
;
112 SIZE_T QuotaPeakNonPagedPoolUsage
;
113 SIZE_T QuotaNonPagedPoolUsage
;
114 SIZE_T PagefileUsage
;
115 SIZE_T PeakPagefileUsage
;
117 } PROCESS_MEMORY_COUNTERS_EX
,*PPROCESS_MEMORY_COUNTERS_EX
;
121 #include <winioctl.h>
127 /* This is not in MinGW's sddl.h (but they are in MSVC headers), so we
128 define them by hand if not already defined. */
129 #ifndef SDDL_REVISION_1
130 #define SDDL_REVISION_1 1
131 #endif /* SDDL_REVISION_1 */
133 #if defined(_MSC_VER) || defined(_W64)
134 /* MSVC and MinGW64 don't provide the definition of
135 REPARSE_DATA_BUFFER and the associated macros, except on ntifs.h,
136 which cannot be included because it triggers conflicts with other
137 Windows API headers. So we define it here by hand. */
139 typedef struct _REPARSE_DATA_BUFFER
{
141 USHORT ReparseDataLength
;
145 USHORT SubstituteNameOffset
;
146 USHORT SubstituteNameLength
;
147 USHORT PrintNameOffset
;
148 USHORT PrintNameLength
;
151 } SymbolicLinkReparseBuffer
;
153 USHORT SubstituteNameOffset
;
154 USHORT SubstituteNameLength
;
155 USHORT PrintNameOffset
;
156 USHORT PrintNameLength
;
158 } MountPointReparseBuffer
;
161 } GenericReparseBuffer
;
163 } REPARSE_DATA_BUFFER
, *PREPARSE_DATA_BUFFER
;
165 #ifndef FILE_DEVICE_FILE_SYSTEM
166 #define FILE_DEVICE_FILE_SYSTEM 9
168 #ifndef METHOD_BUFFERED
169 #define METHOD_BUFFERED 0
171 #ifndef FILE_ANY_ACCESS
172 #define FILE_ANY_ACCESS 0x00000000
175 #define CTL_CODE(t,f,m,a) (((t)<<16)|((a)<<14)|((f)<<2)|(m))
177 /* MinGW64 defines FSCTL_GET_REPARSE_POINT on winioctl.h. */
178 #ifndef FSCTL_GET_REPARSE_POINT
179 #define FSCTL_GET_REPARSE_POINT \
180 CTL_CODE(FILE_DEVICE_FILE_SYSTEM, 42, METHOD_BUFFERED, FILE_ANY_ACCESS)
184 /* TCP connection support. */
185 #include <sys/socket.h>
206 #include "w32common.h"
208 #include "w32select.h"
210 #include "dispextern.h" /* for xstrcasecmp */
211 #include "coding.h" /* for Vlocale_coding_system */
213 #include "careadlinkat.h"
214 #include "allocator.h"
216 /* For serial_configure and serial_open. */
219 typedef HRESULT (WINAPI
* ShGetFolderPath_fn
)
220 (IN HWND
, IN
int, IN HANDLE
, IN DWORD
, OUT
char *);
222 Lisp_Object QCloaded_from
;
224 void globals_of_w32 (void);
225 static DWORD
get_rid (PSID
);
226 static int is_symlink (const char *);
227 static char * chase_symlinks (const char *);
228 static int enable_privilege (LPCTSTR
, BOOL
, TOKEN_PRIVILEGES
*);
229 static int restore_privilege (TOKEN_PRIVILEGES
*);
230 static BOOL WINAPI
revert_to_self (void);
232 extern int sys_access (const char *, int);
233 extern void *e_malloc (size_t);
234 extern int sys_select (int, SELECT_TYPE
*, SELECT_TYPE
*, SELECT_TYPE
*,
235 EMACS_TIME
*, void *);
239 /* Initialization states.
241 WARNING: If you add any more such variables for additional APIs,
242 you MUST add initialization for them to globals_of_w32
243 below. This is because these variables might get set
244 to non-NULL values during dumping, but the dumped Emacs
245 cannot reuse those values, because it could be run on a
246 different version of the OS, where API addresses are
248 static BOOL g_b_init_is_windows_9x
;
249 static BOOL g_b_init_open_process_token
;
250 static BOOL g_b_init_get_token_information
;
251 static BOOL g_b_init_lookup_account_sid
;
252 static BOOL g_b_init_get_sid_sub_authority
;
253 static BOOL g_b_init_get_sid_sub_authority_count
;
254 static BOOL g_b_init_get_security_info
;
255 static BOOL g_b_init_get_file_security
;
256 static BOOL g_b_init_get_security_descriptor_owner
;
257 static BOOL g_b_init_get_security_descriptor_group
;
258 static BOOL g_b_init_is_valid_sid
;
259 static BOOL g_b_init_create_toolhelp32_snapshot
;
260 static BOOL g_b_init_process32_first
;
261 static BOOL g_b_init_process32_next
;
262 static BOOL g_b_init_open_thread_token
;
263 static BOOL g_b_init_impersonate_self
;
264 static BOOL g_b_init_revert_to_self
;
265 static BOOL g_b_init_get_process_memory_info
;
266 static BOOL g_b_init_get_process_working_set_size
;
267 static BOOL g_b_init_global_memory_status
;
268 static BOOL g_b_init_global_memory_status_ex
;
269 static BOOL g_b_init_get_length_sid
;
270 static BOOL g_b_init_equal_sid
;
271 static BOOL g_b_init_copy_sid
;
272 static BOOL g_b_init_get_native_system_info
;
273 static BOOL g_b_init_get_system_times
;
274 static BOOL g_b_init_create_symbolic_link
;
275 static BOOL g_b_init_get_security_descriptor_dacl
;
276 static BOOL g_b_init_convert_sd_to_sddl
;
277 static BOOL g_b_init_convert_sddl_to_sd
;
278 static BOOL g_b_init_is_valid_security_descriptor
;
279 static BOOL g_b_init_set_file_security
;
282 BEGIN: Wrapper functions around OpenProcessToken
283 and other functions in advapi32.dll that are only
284 supported in Windows NT / 2k / XP
286 /* ** Function pointer typedefs ** */
287 typedef BOOL (WINAPI
* OpenProcessToken_Proc
) (
288 HANDLE ProcessHandle
,
290 PHANDLE TokenHandle
);
291 typedef BOOL (WINAPI
* GetTokenInformation_Proc
) (
293 TOKEN_INFORMATION_CLASS TokenInformationClass
,
294 LPVOID TokenInformation
,
295 DWORD TokenInformationLength
,
296 PDWORD ReturnLength
);
297 typedef BOOL (WINAPI
* GetProcessTimes_Proc
) (
298 HANDLE process_handle
,
299 LPFILETIME creation_time
,
300 LPFILETIME exit_time
,
301 LPFILETIME kernel_time
,
302 LPFILETIME user_time
);
304 GetProcessTimes_Proc get_process_times_fn
= NULL
;
307 const char * const LookupAccountSid_Name
= "LookupAccountSidW";
308 const char * const GetFileSecurity_Name
= "GetFileSecurityW";
309 const char * const SetFileSecurity_Name
= "SetFileSecurityW";
311 const char * const LookupAccountSid_Name
= "LookupAccountSidA";
312 const char * const GetFileSecurity_Name
= "GetFileSecurityA";
313 const char * const SetFileSecurity_Name
= "SetFileSecurityA";
315 typedef BOOL (WINAPI
* LookupAccountSid_Proc
) (
316 LPCTSTR lpSystemName
,
321 LPDWORD cbDomainName
,
322 PSID_NAME_USE peUse
);
323 typedef PDWORD (WINAPI
* GetSidSubAuthority_Proc
) (
326 typedef PUCHAR (WINAPI
* GetSidSubAuthorityCount_Proc
) (
328 typedef DWORD (WINAPI
* GetSecurityInfo_Proc
) (
330 SE_OBJECT_TYPE ObjectType
,
331 SECURITY_INFORMATION SecurityInfo
,
336 PSECURITY_DESCRIPTOR
*ppSecurityDescriptor
);
337 typedef BOOL (WINAPI
* GetFileSecurity_Proc
) (
339 SECURITY_INFORMATION RequestedInformation
,
340 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
342 LPDWORD lpnLengthNeeded
);
343 typedef BOOL (WINAPI
*SetFileSecurity_Proc
) (
345 SECURITY_INFORMATION SecurityInformation
,
346 PSECURITY_DESCRIPTOR pSecurityDescriptor
);
347 typedef BOOL (WINAPI
* GetSecurityDescriptorOwner_Proc
) (
348 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
350 LPBOOL lpbOwnerDefaulted
);
351 typedef BOOL (WINAPI
* GetSecurityDescriptorGroup_Proc
) (
352 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
354 LPBOOL lpbGroupDefaulted
);
355 typedef BOOL (WINAPI
*GetSecurityDescriptorDacl_Proc
) (
356 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
357 LPBOOL lpbDaclPresent
,
359 LPBOOL lpbDaclDefaulted
);
360 typedef BOOL (WINAPI
* IsValidSid_Proc
) (
362 typedef HANDLE (WINAPI
* CreateToolhelp32Snapshot_Proc
) (
364 DWORD th32ProcessID
);
365 typedef BOOL (WINAPI
* Process32First_Proc
) (
367 LPPROCESSENTRY32 lppe
);
368 typedef BOOL (WINAPI
* Process32Next_Proc
) (
370 LPPROCESSENTRY32 lppe
);
371 typedef BOOL (WINAPI
* OpenThreadToken_Proc
) (
375 PHANDLE TokenHandle
);
376 typedef BOOL (WINAPI
* ImpersonateSelf_Proc
) (
377 SECURITY_IMPERSONATION_LEVEL ImpersonationLevel
);
378 typedef BOOL (WINAPI
* RevertToSelf_Proc
) (void);
379 typedef BOOL (WINAPI
* GetProcessMemoryInfo_Proc
) (
381 PPROCESS_MEMORY_COUNTERS ppsmemCounters
,
383 typedef BOOL (WINAPI
* GetProcessWorkingSetSize_Proc
) (
385 PSIZE_T lpMinimumWorkingSetSize
,
386 PSIZE_T lpMaximumWorkingSetSize
);
387 typedef BOOL (WINAPI
* GlobalMemoryStatus_Proc
) (
388 LPMEMORYSTATUS lpBuffer
);
389 typedef BOOL (WINAPI
* GlobalMemoryStatusEx_Proc
) (
390 LPMEMORY_STATUS_EX lpBuffer
);
391 typedef BOOL (WINAPI
* CopySid_Proc
) (
392 DWORD nDestinationSidLength
,
393 PSID pDestinationSid
,
395 typedef BOOL (WINAPI
* EqualSid_Proc
) (
398 typedef DWORD (WINAPI
* GetLengthSid_Proc
) (
400 typedef void (WINAPI
* GetNativeSystemInfo_Proc
) (
401 LPSYSTEM_INFO lpSystemInfo
);
402 typedef BOOL (WINAPI
* GetSystemTimes_Proc
) (
403 LPFILETIME lpIdleTime
,
404 LPFILETIME lpKernelTime
,
405 LPFILETIME lpUserTime
);
406 typedef BOOLEAN (WINAPI
*CreateSymbolicLink_Proc
) (
407 LPTSTR lpSymlinkFileName
,
408 LPTSTR lpTargetFileName
,
410 typedef BOOL (WINAPI
*ConvertStringSecurityDescriptorToSecurityDescriptor_Proc
) (
411 LPCTSTR StringSecurityDescriptor
,
412 DWORD StringSDRevision
,
413 PSECURITY_DESCRIPTOR
*SecurityDescriptor
,
414 PULONG SecurityDescriptorSize
);
415 typedef BOOL (WINAPI
*ConvertSecurityDescriptorToStringSecurityDescriptor_Proc
) (
416 PSECURITY_DESCRIPTOR SecurityDescriptor
,
417 DWORD RequestedStringSDRevision
,
418 SECURITY_INFORMATION SecurityInformation
,
419 LPTSTR
*StringSecurityDescriptor
,
420 PULONG StringSecurityDescriptorLen
);
421 typedef BOOL (WINAPI
*IsValidSecurityDescriptor_Proc
) (PSECURITY_DESCRIPTOR
);
423 /* ** A utility function ** */
427 static BOOL s_b_ret
= 0;
428 OSVERSIONINFO os_ver
;
429 if (g_b_init_is_windows_9x
== 0)
431 g_b_init_is_windows_9x
= 1;
432 ZeroMemory (&os_ver
, sizeof (OSVERSIONINFO
));
433 os_ver
.dwOSVersionInfoSize
= sizeof (OSVERSIONINFO
);
434 if (GetVersionEx (&os_ver
))
436 s_b_ret
= (os_ver
.dwPlatformId
== VER_PLATFORM_WIN32_WINDOWS
);
442 static Lisp_Object
ltime (ULONGLONG
);
444 /* Get total user and system times for get-internal-run-time.
445 Returns a list of integers if the times are provided by the OS
446 (NT derivatives), otherwise it returns the result of current-time. */
448 w32_get_internal_run_time (void)
450 if (get_process_times_fn
)
452 FILETIME create
, exit
, kernel
, user
;
453 HANDLE proc
= GetCurrentProcess ();
454 if ((*get_process_times_fn
) (proc
, &create
, &exit
, &kernel
, &user
))
456 LARGE_INTEGER user_int
, kernel_int
, total
;
457 user_int
.LowPart
= user
.dwLowDateTime
;
458 user_int
.HighPart
= user
.dwHighDateTime
;
459 kernel_int
.LowPart
= kernel
.dwLowDateTime
;
460 kernel_int
.HighPart
= kernel
.dwHighDateTime
;
461 total
.QuadPart
= user_int
.QuadPart
+ kernel_int
.QuadPart
;
462 return ltime (total
.QuadPart
);
466 return Fcurrent_time ();
469 /* ** The wrapper functions ** */
472 open_process_token (HANDLE ProcessHandle
,
476 static OpenProcessToken_Proc s_pfn_Open_Process_Token
= NULL
;
477 HMODULE hm_advapi32
= NULL
;
478 if (is_windows_9x () == TRUE
)
482 if (g_b_init_open_process_token
== 0)
484 g_b_init_open_process_token
= 1;
485 hm_advapi32
= LoadLibrary ("Advapi32.dll");
486 s_pfn_Open_Process_Token
=
487 (OpenProcessToken_Proc
) GetProcAddress (hm_advapi32
, "OpenProcessToken");
489 if (s_pfn_Open_Process_Token
== NULL
)
494 s_pfn_Open_Process_Token (
502 get_token_information (HANDLE TokenHandle
,
503 TOKEN_INFORMATION_CLASS TokenInformationClass
,
504 LPVOID TokenInformation
,
505 DWORD TokenInformationLength
,
508 static GetTokenInformation_Proc s_pfn_Get_Token_Information
= NULL
;
509 HMODULE hm_advapi32
= NULL
;
510 if (is_windows_9x () == TRUE
)
514 if (g_b_init_get_token_information
== 0)
516 g_b_init_get_token_information
= 1;
517 hm_advapi32
= LoadLibrary ("Advapi32.dll");
518 s_pfn_Get_Token_Information
=
519 (GetTokenInformation_Proc
) GetProcAddress (hm_advapi32
, "GetTokenInformation");
521 if (s_pfn_Get_Token_Information
== NULL
)
526 s_pfn_Get_Token_Information (
528 TokenInformationClass
,
530 TokenInformationLength
,
536 lookup_account_sid (LPCTSTR lpSystemName
,
541 LPDWORD cbDomainName
,
544 static LookupAccountSid_Proc s_pfn_Lookup_Account_Sid
= NULL
;
545 HMODULE hm_advapi32
= NULL
;
546 if (is_windows_9x () == TRUE
)
550 if (g_b_init_lookup_account_sid
== 0)
552 g_b_init_lookup_account_sid
= 1;
553 hm_advapi32
= LoadLibrary ("Advapi32.dll");
554 s_pfn_Lookup_Account_Sid
=
555 (LookupAccountSid_Proc
) GetProcAddress (hm_advapi32
, LookupAccountSid_Name
);
557 if (s_pfn_Lookup_Account_Sid
== NULL
)
562 s_pfn_Lookup_Account_Sid (
574 get_sid_sub_authority (PSID pSid
, DWORD n
)
576 static GetSidSubAuthority_Proc s_pfn_Get_Sid_Sub_Authority
= NULL
;
577 static DWORD zero
= 0U;
578 HMODULE hm_advapi32
= NULL
;
579 if (is_windows_9x () == TRUE
)
583 if (g_b_init_get_sid_sub_authority
== 0)
585 g_b_init_get_sid_sub_authority
= 1;
586 hm_advapi32
= LoadLibrary ("Advapi32.dll");
587 s_pfn_Get_Sid_Sub_Authority
=
588 (GetSidSubAuthority_Proc
) GetProcAddress (
589 hm_advapi32
, "GetSidSubAuthority");
591 if (s_pfn_Get_Sid_Sub_Authority
== NULL
)
595 return (s_pfn_Get_Sid_Sub_Authority (pSid
, n
));
599 get_sid_sub_authority_count (PSID pSid
)
601 static GetSidSubAuthorityCount_Proc s_pfn_Get_Sid_Sub_Authority_Count
= NULL
;
602 static UCHAR zero
= 0U;
603 HMODULE hm_advapi32
= NULL
;
604 if (is_windows_9x () == TRUE
)
608 if (g_b_init_get_sid_sub_authority_count
== 0)
610 g_b_init_get_sid_sub_authority_count
= 1;
611 hm_advapi32
= LoadLibrary ("Advapi32.dll");
612 s_pfn_Get_Sid_Sub_Authority_Count
=
613 (GetSidSubAuthorityCount_Proc
) GetProcAddress (
614 hm_advapi32
, "GetSidSubAuthorityCount");
616 if (s_pfn_Get_Sid_Sub_Authority_Count
== NULL
)
620 return (s_pfn_Get_Sid_Sub_Authority_Count (pSid
));
624 get_security_info (HANDLE handle
,
625 SE_OBJECT_TYPE ObjectType
,
626 SECURITY_INFORMATION SecurityInfo
,
631 PSECURITY_DESCRIPTOR
*ppSecurityDescriptor
)
633 static GetSecurityInfo_Proc s_pfn_Get_Security_Info
= NULL
;
634 HMODULE hm_advapi32
= NULL
;
635 if (is_windows_9x () == TRUE
)
639 if (g_b_init_get_security_info
== 0)
641 g_b_init_get_security_info
= 1;
642 hm_advapi32
= LoadLibrary ("Advapi32.dll");
643 s_pfn_Get_Security_Info
=
644 (GetSecurityInfo_Proc
) GetProcAddress (
645 hm_advapi32
, "GetSecurityInfo");
647 if (s_pfn_Get_Security_Info
== NULL
)
651 return (s_pfn_Get_Security_Info (handle
, ObjectType
, SecurityInfo
,
652 ppsidOwner
, ppsidGroup
, ppDacl
, ppSacl
,
653 ppSecurityDescriptor
));
657 get_file_security (LPCTSTR lpFileName
,
658 SECURITY_INFORMATION RequestedInformation
,
659 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
661 LPDWORD lpnLengthNeeded
)
663 static GetFileSecurity_Proc s_pfn_Get_File_Security
= NULL
;
664 HMODULE hm_advapi32
= NULL
;
665 if (is_windows_9x () == TRUE
)
670 if (g_b_init_get_file_security
== 0)
672 g_b_init_get_file_security
= 1;
673 hm_advapi32
= LoadLibrary ("Advapi32.dll");
674 s_pfn_Get_File_Security
=
675 (GetFileSecurity_Proc
) GetProcAddress (
676 hm_advapi32
, GetFileSecurity_Name
);
678 if (s_pfn_Get_File_Security
== NULL
)
683 return (s_pfn_Get_File_Security (lpFileName
, RequestedInformation
,
684 pSecurityDescriptor
, nLength
,
689 set_file_security (LPCTSTR lpFileName
,
690 SECURITY_INFORMATION SecurityInformation
,
691 PSECURITY_DESCRIPTOR pSecurityDescriptor
)
693 static SetFileSecurity_Proc s_pfn_Set_File_Security
= NULL
;
694 HMODULE hm_advapi32
= NULL
;
695 if (is_windows_9x () == TRUE
)
700 if (g_b_init_set_file_security
== 0)
702 g_b_init_set_file_security
= 1;
703 hm_advapi32
= LoadLibrary ("Advapi32.dll");
704 s_pfn_Set_File_Security
=
705 (SetFileSecurity_Proc
) GetProcAddress (
706 hm_advapi32
, SetFileSecurity_Name
);
708 if (s_pfn_Set_File_Security
== NULL
)
713 return (s_pfn_Set_File_Security (lpFileName
, SecurityInformation
,
714 pSecurityDescriptor
));
718 get_security_descriptor_owner (PSECURITY_DESCRIPTOR pSecurityDescriptor
,
720 LPBOOL lpbOwnerDefaulted
)
722 static GetSecurityDescriptorOwner_Proc s_pfn_Get_Security_Descriptor_Owner
= NULL
;
723 HMODULE hm_advapi32
= NULL
;
724 if (is_windows_9x () == TRUE
)
729 if (g_b_init_get_security_descriptor_owner
== 0)
731 g_b_init_get_security_descriptor_owner
= 1;
732 hm_advapi32
= LoadLibrary ("Advapi32.dll");
733 s_pfn_Get_Security_Descriptor_Owner
=
734 (GetSecurityDescriptorOwner_Proc
) GetProcAddress (
735 hm_advapi32
, "GetSecurityDescriptorOwner");
737 if (s_pfn_Get_Security_Descriptor_Owner
== NULL
)
742 return (s_pfn_Get_Security_Descriptor_Owner (pSecurityDescriptor
, pOwner
,
747 get_security_descriptor_group (PSECURITY_DESCRIPTOR pSecurityDescriptor
,
749 LPBOOL lpbGroupDefaulted
)
751 static GetSecurityDescriptorGroup_Proc s_pfn_Get_Security_Descriptor_Group
= NULL
;
752 HMODULE hm_advapi32
= NULL
;
753 if (is_windows_9x () == TRUE
)
758 if (g_b_init_get_security_descriptor_group
== 0)
760 g_b_init_get_security_descriptor_group
= 1;
761 hm_advapi32
= LoadLibrary ("Advapi32.dll");
762 s_pfn_Get_Security_Descriptor_Group
=
763 (GetSecurityDescriptorGroup_Proc
) GetProcAddress (
764 hm_advapi32
, "GetSecurityDescriptorGroup");
766 if (s_pfn_Get_Security_Descriptor_Group
== NULL
)
771 return (s_pfn_Get_Security_Descriptor_Group (pSecurityDescriptor
, pGroup
,
776 get_security_descriptor_dacl (PSECURITY_DESCRIPTOR pSecurityDescriptor
,
777 LPBOOL lpbDaclPresent
,
779 LPBOOL lpbDaclDefaulted
)
781 static GetSecurityDescriptorDacl_Proc s_pfn_Get_Security_Descriptor_Dacl
= NULL
;
782 HMODULE hm_advapi32
= NULL
;
783 if (is_windows_9x () == TRUE
)
788 if (g_b_init_get_security_descriptor_dacl
== 0)
790 g_b_init_get_security_descriptor_dacl
= 1;
791 hm_advapi32
= LoadLibrary ("Advapi32.dll");
792 s_pfn_Get_Security_Descriptor_Dacl
=
793 (GetSecurityDescriptorDacl_Proc
) GetProcAddress (
794 hm_advapi32
, "GetSecurityDescriptorDacl");
796 if (s_pfn_Get_Security_Descriptor_Dacl
== NULL
)
801 return (s_pfn_Get_Security_Descriptor_Dacl (pSecurityDescriptor
,
802 lpbDaclPresent
, pDacl
,
807 is_valid_sid (PSID sid
)
809 static IsValidSid_Proc s_pfn_Is_Valid_Sid
= NULL
;
810 HMODULE hm_advapi32
= NULL
;
811 if (is_windows_9x () == TRUE
)
815 if (g_b_init_is_valid_sid
== 0)
817 g_b_init_is_valid_sid
= 1;
818 hm_advapi32
= LoadLibrary ("Advapi32.dll");
820 (IsValidSid_Proc
) GetProcAddress (
821 hm_advapi32
, "IsValidSid");
823 if (s_pfn_Is_Valid_Sid
== NULL
)
827 return (s_pfn_Is_Valid_Sid (sid
));
831 equal_sid (PSID sid1
, PSID sid2
)
833 static EqualSid_Proc s_pfn_Equal_Sid
= NULL
;
834 HMODULE hm_advapi32
= NULL
;
835 if (is_windows_9x () == TRUE
)
839 if (g_b_init_equal_sid
== 0)
841 g_b_init_equal_sid
= 1;
842 hm_advapi32
= LoadLibrary ("Advapi32.dll");
844 (EqualSid_Proc
) GetProcAddress (
845 hm_advapi32
, "EqualSid");
847 if (s_pfn_Equal_Sid
== NULL
)
851 return (s_pfn_Equal_Sid (sid1
, sid2
));
855 get_length_sid (PSID sid
)
857 static GetLengthSid_Proc s_pfn_Get_Length_Sid
= NULL
;
858 HMODULE hm_advapi32
= NULL
;
859 if (is_windows_9x () == TRUE
)
863 if (g_b_init_get_length_sid
== 0)
865 g_b_init_get_length_sid
= 1;
866 hm_advapi32
= LoadLibrary ("Advapi32.dll");
867 s_pfn_Get_Length_Sid
=
868 (GetLengthSid_Proc
) GetProcAddress (
869 hm_advapi32
, "GetLengthSid");
871 if (s_pfn_Get_Length_Sid
== NULL
)
875 return (s_pfn_Get_Length_Sid (sid
));
879 copy_sid (DWORD destlen
, PSID dest
, PSID src
)
881 static CopySid_Proc s_pfn_Copy_Sid
= NULL
;
882 HMODULE hm_advapi32
= NULL
;
883 if (is_windows_9x () == TRUE
)
887 if (g_b_init_copy_sid
== 0)
889 g_b_init_copy_sid
= 1;
890 hm_advapi32
= LoadLibrary ("Advapi32.dll");
892 (CopySid_Proc
) GetProcAddress (
893 hm_advapi32
, "CopySid");
895 if (s_pfn_Copy_Sid
== NULL
)
899 return (s_pfn_Copy_Sid (destlen
, dest
, src
));
903 END: Wrapper functions around OpenProcessToken
904 and other functions in advapi32.dll that are only
905 supported in Windows NT / 2k / XP
909 get_native_system_info (LPSYSTEM_INFO lpSystemInfo
)
911 static GetNativeSystemInfo_Proc s_pfn_Get_Native_System_Info
= NULL
;
912 if (is_windows_9x () != TRUE
)
914 if (g_b_init_get_native_system_info
== 0)
916 g_b_init_get_native_system_info
= 1;
917 s_pfn_Get_Native_System_Info
=
918 (GetNativeSystemInfo_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
919 "GetNativeSystemInfo");
921 if (s_pfn_Get_Native_System_Info
!= NULL
)
922 s_pfn_Get_Native_System_Info (lpSystemInfo
);
925 lpSystemInfo
->dwNumberOfProcessors
= -1;
929 get_system_times (LPFILETIME lpIdleTime
,
930 LPFILETIME lpKernelTime
,
931 LPFILETIME lpUserTime
)
933 static GetSystemTimes_Proc s_pfn_Get_System_times
= NULL
;
934 if (is_windows_9x () == TRUE
)
938 if (g_b_init_get_system_times
== 0)
940 g_b_init_get_system_times
= 1;
941 s_pfn_Get_System_times
=
942 (GetSystemTimes_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
945 if (s_pfn_Get_System_times
== NULL
)
947 return (s_pfn_Get_System_times (lpIdleTime
, lpKernelTime
, lpUserTime
));
950 static BOOLEAN WINAPI
951 create_symbolic_link (LPTSTR lpSymlinkFilename
,
952 LPTSTR lpTargetFileName
,
955 static CreateSymbolicLink_Proc s_pfn_Create_Symbolic_Link
= NULL
;
958 if (is_windows_9x () == TRUE
)
963 if (g_b_init_create_symbolic_link
== 0)
965 g_b_init_create_symbolic_link
= 1;
967 s_pfn_Create_Symbolic_Link
=
968 (CreateSymbolicLink_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
969 "CreateSymbolicLinkW");
971 s_pfn_Create_Symbolic_Link
=
972 (CreateSymbolicLink_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
973 "CreateSymbolicLinkA");
976 if (s_pfn_Create_Symbolic_Link
== NULL
)
982 retval
= s_pfn_Create_Symbolic_Link (lpSymlinkFilename
, lpTargetFileName
,
984 /* If we were denied creation of the symlink, try again after
985 enabling the SeCreateSymbolicLinkPrivilege for our process. */
988 TOKEN_PRIVILEGES priv_current
;
990 if (enable_privilege (SE_CREATE_SYMBOLIC_LINK_NAME
, TRUE
, &priv_current
))
992 retval
= s_pfn_Create_Symbolic_Link (lpSymlinkFilename
, lpTargetFileName
,
994 restore_privilege (&priv_current
);
1002 is_valid_security_descriptor (PSECURITY_DESCRIPTOR pSecurityDescriptor
)
1004 static IsValidSecurityDescriptor_Proc s_pfn_Is_Valid_Security_Descriptor_Proc
= NULL
;
1006 if (is_windows_9x () == TRUE
)
1012 if (g_b_init_is_valid_security_descriptor
== 0)
1014 g_b_init_is_valid_security_descriptor
= 1;
1015 s_pfn_Is_Valid_Security_Descriptor_Proc
=
1016 (IsValidSecurityDescriptor_Proc
)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1017 "IsValidSecurityDescriptor");
1019 if (s_pfn_Is_Valid_Security_Descriptor_Proc
== NULL
)
1025 return s_pfn_Is_Valid_Security_Descriptor_Proc (pSecurityDescriptor
);
1029 convert_sd_to_sddl (PSECURITY_DESCRIPTOR SecurityDescriptor
,
1030 DWORD RequestedStringSDRevision
,
1031 SECURITY_INFORMATION SecurityInformation
,
1032 LPTSTR
*StringSecurityDescriptor
,
1033 PULONG StringSecurityDescriptorLen
)
1035 static ConvertSecurityDescriptorToStringSecurityDescriptor_Proc s_pfn_Convert_SD_To_SDDL
= NULL
;
1038 if (is_windows_9x () == TRUE
)
1044 if (g_b_init_convert_sd_to_sddl
== 0)
1046 g_b_init_convert_sd_to_sddl
= 1;
1048 s_pfn_Convert_SD_To_SDDL
=
1049 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc
)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1050 "ConvertSecurityDescriptorToStringSecurityDescriptorW");
1052 s_pfn_Convert_SD_To_SDDL
=
1053 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc
)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1054 "ConvertSecurityDescriptorToStringSecurityDescriptorA");
1057 if (s_pfn_Convert_SD_To_SDDL
== NULL
)
1063 retval
= s_pfn_Convert_SD_To_SDDL (SecurityDescriptor
,
1064 RequestedStringSDRevision
,
1065 SecurityInformation
,
1066 StringSecurityDescriptor
,
1067 StringSecurityDescriptorLen
);
1073 convert_sddl_to_sd (LPCTSTR StringSecurityDescriptor
,
1074 DWORD StringSDRevision
,
1075 PSECURITY_DESCRIPTOR
*SecurityDescriptor
,
1076 PULONG SecurityDescriptorSize
)
1078 static ConvertStringSecurityDescriptorToSecurityDescriptor_Proc s_pfn_Convert_SDDL_To_SD
= NULL
;
1081 if (is_windows_9x () == TRUE
)
1087 if (g_b_init_convert_sddl_to_sd
== 0)
1089 g_b_init_convert_sddl_to_sd
= 1;
1091 s_pfn_Convert_SDDL_To_SD
=
1092 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc
)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1093 "ConvertStringSecurityDescriptorToSecurityDescriptorW");
1095 s_pfn_Convert_SDDL_To_SD
=
1096 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc
)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1097 "ConvertStringSecurityDescriptorToSecurityDescriptorA");
1100 if (s_pfn_Convert_SDDL_To_SD
== NULL
)
1106 retval
= s_pfn_Convert_SDDL_To_SD (StringSecurityDescriptor
,
1109 SecurityDescriptorSize
);
1116 /* Return 1 if P is a valid pointer to an object of size SIZE. Return
1117 0 if P is NOT a valid pointer. Return -1 if we cannot validate P.
1119 This is called from alloc.c:valid_pointer_p. */
1121 w32_valid_pointer_p (void *p
, int size
)
1124 HANDLE h
= OpenProcess (PROCESS_VM_READ
, FALSE
, GetCurrentProcessId ());
1128 unsigned char *buf
= alloca (size
);
1129 int retval
= ReadProcessMemory (h
, p
, buf
, size
, &done
);
1138 static char startup_dir
[MAXPATHLEN
];
1140 /* Get the current working directory. */
1142 getcwd (char *dir
, int dirsize
)
1149 if (dirsize
<= strlen (startup_dir
))
1155 if (GetCurrentDirectory (MAXPATHLEN
, dir
) > 0)
1159 /* Emacs doesn't actually change directory itself, it stays in the
1160 same directory where it was started. */
1161 strcpy (dir
, startup_dir
);
1166 /* Emulate getloadavg. */
1168 struct load_sample
{
1175 /* Number of processors on this machine. */
1176 static unsigned num_of_processors
;
1178 /* We maintain 1-sec samples for the last 16 minutes in a circular buffer. */
1179 static struct load_sample samples
[16*60];
1180 static int first_idx
= -1, last_idx
= -1;
1181 static int max_idx
= sizeof (samples
) / sizeof (samples
[0]);
1186 int next_idx
= from
+ 1;
1188 if (next_idx
>= max_idx
)
1197 int prev_idx
= from
- 1;
1200 prev_idx
= max_idx
- 1;
1206 sample_system_load (ULONGLONG
*idle
, ULONGLONG
*kernel
, ULONGLONG
*user
)
1208 SYSTEM_INFO sysinfo
;
1209 FILETIME ft_idle
, ft_user
, ft_kernel
;
1211 /* Initialize the number of processors on this machine. */
1212 if (num_of_processors
<= 0)
1214 get_native_system_info (&sysinfo
);
1215 num_of_processors
= sysinfo
.dwNumberOfProcessors
;
1216 if (num_of_processors
<= 0)
1218 GetSystemInfo (&sysinfo
);
1219 num_of_processors
= sysinfo
.dwNumberOfProcessors
;
1221 if (num_of_processors
<= 0)
1222 num_of_processors
= 1;
1225 /* TODO: Take into account threads that are ready to run, by
1226 sampling the "\System\Processor Queue Length" performance
1227 counter. The code below accounts only for threads that are
1228 actually running. */
1230 if (get_system_times (&ft_idle
, &ft_kernel
, &ft_user
))
1232 ULARGE_INTEGER uidle
, ukernel
, uuser
;
1234 memcpy (&uidle
, &ft_idle
, sizeof (ft_idle
));
1235 memcpy (&ukernel
, &ft_kernel
, sizeof (ft_kernel
));
1236 memcpy (&uuser
, &ft_user
, sizeof (ft_user
));
1237 *idle
= uidle
.QuadPart
;
1238 *kernel
= ukernel
.QuadPart
;
1239 *user
= uuser
.QuadPart
;
1249 /* Produce the load average for a given time interval, using the
1250 samples in the samples[] array. WHICH can be 0, 1, or 2, meaning
1251 1-minute, 5-minute, or 15-minute average, respectively. */
1255 double retval
= -1.0;
1258 double span
= (which
== 0 ? 1.0 : (which
== 1 ? 5.0 : 15.0)) * 60;
1259 time_t now
= samples
[last_idx
].sample_time
;
1261 if (first_idx
!= last_idx
)
1263 for (idx
= buf_prev (last_idx
); ; idx
= buf_prev (idx
))
1265 tdiff
= difftime (now
, samples
[idx
].sample_time
);
1266 if (tdiff
>= span
- 2*DBL_EPSILON
*now
)
1269 samples
[last_idx
].kernel
+ samples
[last_idx
].user
1270 - (samples
[idx
].kernel
+ samples
[idx
].user
);
1271 long double idl
= samples
[last_idx
].idle
- samples
[idx
].idle
;
1273 retval
= (1.0 - idl
/ sys
) * num_of_processors
;
1276 if (idx
== first_idx
)
1285 getloadavg (double loadavg
[], int nelem
)
1288 ULONGLONG idle
, kernel
, user
;
1289 time_t now
= time (NULL
);
1291 /* Store another sample. We ignore samples that are less than 1 sec
1293 if (difftime (now
, samples
[last_idx
].sample_time
) >= 1.0 - 2*DBL_EPSILON
*now
)
1295 sample_system_load (&idle
, &kernel
, &user
);
1296 last_idx
= buf_next (last_idx
);
1297 samples
[last_idx
].sample_time
= now
;
1298 samples
[last_idx
].idle
= idle
;
1299 samples
[last_idx
].kernel
= kernel
;
1300 samples
[last_idx
].user
= user
;
1301 /* If the buffer has more that 15 min worth of samples, discard
1303 if (first_idx
== -1)
1304 first_idx
= last_idx
;
1305 while (first_idx
!= last_idx
1306 && (difftime (now
, samples
[first_idx
].sample_time
)
1307 >= 15.0*60 + 2*DBL_EPSILON
*now
))
1308 first_idx
= buf_next (first_idx
);
1311 for (elem
= 0; elem
< nelem
; elem
++)
1313 double avg
= getavg (elem
);
1317 loadavg
[elem
] = avg
;
1323 /* Emulate getpwuid, getpwnam and others. */
1325 #define PASSWD_FIELD_SIZE 256
1327 static char dflt_passwd_name
[PASSWD_FIELD_SIZE
];
1328 static char dflt_passwd_passwd
[PASSWD_FIELD_SIZE
];
1329 static char dflt_passwd_gecos
[PASSWD_FIELD_SIZE
];
1330 static char dflt_passwd_dir
[PASSWD_FIELD_SIZE
];
1331 static char dflt_passwd_shell
[PASSWD_FIELD_SIZE
];
1333 static struct passwd dflt_passwd
=
1345 static char dflt_group_name
[GNLEN
+1];
1347 static struct group dflt_group
=
1349 /* When group information is not available, we return this as the
1350 group for all files. */
1358 return dflt_passwd
.pw_uid
;
1364 /* I could imagine arguing for checking to see whether the user is
1365 in the Administrators group and returning a UID of 0 for that
1366 case, but I don't know how wise that would be in the long run. */
1373 return dflt_passwd
.pw_gid
;
1383 getpwuid (unsigned uid
)
1385 if (uid
== dflt_passwd
.pw_uid
)
1386 return &dflt_passwd
;
1391 getgrgid (gid_t gid
)
1397 getpwnam (char *name
)
1401 pw
= getpwuid (getuid ());
1405 if (xstrcasecmp (name
, pw
->pw_name
))
1412 init_user_info (void)
1414 /* Find the user's real name by opening the process token and
1415 looking up the name associated with the user-sid in that token.
1417 Use the relative portion of the identifier authority value from
1418 the user-sid as the user id value (same for group id using the
1419 primary group sid from the process token). */
1421 char uname
[UNLEN
+1], gname
[GNLEN
+1], domain
[1025];
1422 DWORD ulength
= sizeof (uname
), dlength
= sizeof (domain
), needed
;
1423 DWORD glength
= sizeof (gname
);
1424 HANDLE token
= NULL
;
1425 SID_NAME_USE user_type
;
1426 unsigned char *buf
= NULL
;
1428 TOKEN_USER user_token
;
1429 TOKEN_PRIMARY_GROUP group_token
;
1432 result
= open_process_token (GetCurrentProcess (), TOKEN_QUERY
, &token
);
1435 result
= get_token_information (token
, TokenUser
, NULL
, 0, &blen
);
1436 if (!result
&& GetLastError () == ERROR_INSUFFICIENT_BUFFER
)
1438 buf
= xmalloc (blen
);
1439 result
= get_token_information (token
, TokenUser
,
1440 (LPVOID
)buf
, blen
, &needed
);
1443 memcpy (&user_token
, buf
, sizeof (user_token
));
1444 result
= lookup_account_sid (NULL
, user_token
.User
.Sid
,
1446 domain
, &dlength
, &user_type
);
1454 strcpy (dflt_passwd
.pw_name
, uname
);
1455 /* Determine a reasonable uid value. */
1456 if (xstrcasecmp ("administrator", uname
) == 0)
1458 dflt_passwd
.pw_uid
= 500; /* well-known Administrator uid */
1459 dflt_passwd
.pw_gid
= 513; /* well-known None gid */
1463 /* Use the last sub-authority value of the RID, the relative
1464 portion of the SID, as user/group ID. */
1465 dflt_passwd
.pw_uid
= get_rid (user_token
.User
.Sid
);
1467 /* Get group id and name. */
1468 result
= get_token_information (token
, TokenPrimaryGroup
,
1469 (LPVOID
)buf
, blen
, &needed
);
1470 if (!result
&& GetLastError () == ERROR_INSUFFICIENT_BUFFER
)
1472 buf
= xrealloc (buf
, blen
= needed
);
1473 result
= get_token_information (token
, TokenPrimaryGroup
,
1474 (LPVOID
)buf
, blen
, &needed
);
1478 memcpy (&group_token
, buf
, sizeof (group_token
));
1479 dflt_passwd
.pw_gid
= get_rid (group_token
.PrimaryGroup
);
1480 dlength
= sizeof (domain
);
1481 /* If we can get at the real Primary Group name, use that.
1482 Otherwise, the default group name was already set to
1483 "None" in globals_of_w32. */
1484 if (lookup_account_sid (NULL
, group_token
.PrimaryGroup
,
1485 gname
, &glength
, NULL
, &dlength
,
1487 strcpy (dflt_group_name
, gname
);
1490 dflt_passwd
.pw_gid
= dflt_passwd
.pw_uid
;
1493 /* If security calls are not supported (presumably because we
1494 are running under Windows 9X), fallback to this: */
1495 else if (GetUserName (uname
, &ulength
))
1497 strcpy (dflt_passwd
.pw_name
, uname
);
1498 if (xstrcasecmp ("administrator", uname
) == 0)
1499 dflt_passwd
.pw_uid
= 0;
1501 dflt_passwd
.pw_uid
= 123;
1502 dflt_passwd
.pw_gid
= dflt_passwd
.pw_uid
;
1506 strcpy (dflt_passwd
.pw_name
, "unknown");
1507 dflt_passwd
.pw_uid
= 123;
1508 dflt_passwd
.pw_gid
= 123;
1510 dflt_group
.gr_gid
= dflt_passwd
.pw_gid
;
1512 /* Ensure HOME and SHELL are defined. */
1513 if (getenv ("HOME") == NULL
)
1515 if (getenv ("SHELL") == NULL
)
1518 /* Set dir and shell from environment variables. */
1519 strcpy (dflt_passwd
.pw_dir
, getenv ("HOME"));
1520 strcpy (dflt_passwd
.pw_shell
, getenv ("SHELL"));
1524 CloseHandle (token
);
1530 /* rand () on NT gives us 15 random bits...hack together 30 bits. */
1531 return ((rand () << 15) | rand ());
1540 /* Current codepage for encoding file names. */
1541 static int file_name_codepage
;
1543 /* Return the maximum length in bytes of a multibyte character
1544 sequence encoded in the current ANSI codepage. This is required to
1545 correctly walk the encoded file names one character at a time. */
1547 max_filename_mbslen (void)
1549 /* A simple cache to avoid calling GetCPInfo every time we need to
1550 normalize a file name. The file-name encoding is not supposed to
1551 be changed too frequently, if ever. */
1552 static Lisp_Object last_file_name_encoding
;
1553 static int last_max_mbslen
;
1554 Lisp_Object current_encoding
;
1556 current_encoding
= Vfile_name_coding_system
;
1557 if (NILP (current_encoding
))
1558 current_encoding
= Vdefault_file_name_coding_system
;
1560 if (!EQ (last_file_name_encoding
, current_encoding
))
1564 last_file_name_encoding
= current_encoding
;
1565 /* Default to the current ANSI codepage. */
1566 file_name_codepage
= w32_ansi_code_page
;
1567 if (!NILP (current_encoding
))
1569 char *cpname
= SDATA (SYMBOL_NAME (current_encoding
));
1570 char *cp
= NULL
, *end
;
1573 if (strncmp (cpname
, "cp", 2) == 0)
1575 else if (strncmp (cpname
, "windows-", 8) == 0)
1581 cpnum
= strtol (cp
, &end
, 10);
1582 if (cpnum
&& *end
== '\0' && end
- cp
>= 2)
1583 file_name_codepage
= cpnum
;
1587 if (!file_name_codepage
)
1588 file_name_codepage
= CP_ACP
; /* CP_ACP = 0, but let's not assume that */
1590 if (!GetCPInfo (file_name_codepage
, &cp_info
))
1592 file_name_codepage
= CP_ACP
;
1593 if (!GetCPInfo (file_name_codepage
, &cp_info
))
1596 last_max_mbslen
= cp_info
.MaxCharSize
;
1599 return last_max_mbslen
;
1602 /* Normalize filename by converting all path separators to
1603 the specified separator. Also conditionally convert upper
1604 case path name components to lower case. */
1607 normalize_filename (register char *fp
, char path_sep
, int multibyte
)
1611 int dbcs_p
= max_filename_mbslen () > 1;
1613 /* Multibyte file names are in the Emacs internal representation, so
1614 we can traverse them by bytes with no problems. */
1618 /* Always lower-case drive letters a-z, even if the filesystem
1619 preserves case in filenames.
1620 This is so filenames can be compared by string comparison
1621 functions that are case-sensitive. Even case-preserving filesystems
1622 do not distinguish case in drive letters. */
1624 p2
= CharNextExA (file_name_codepage
, fp
, 0);
1628 if (*p2
== ':' && *fp
>= 'A' && *fp
<= 'Z')
1634 if (multibyte
|| NILP (Vw32_downcase_file_names
))
1638 if (*fp
== '/' || *fp
== '\\')
1643 fp
= CharNextExA (file_name_codepage
, fp
, 0);
1648 sep
= path_sep
; /* convert to this path separator */
1649 elem
= fp
; /* start of current path element */
1652 if (*fp
>= 'a' && *fp
<= 'z')
1653 elem
= 0; /* don't convert this element */
1655 if (*fp
== 0 || *fp
== ':')
1657 sep
= *fp
; /* restore current separator (or 0) */
1658 *fp
= '/'; /* after conversion of this element */
1661 if (*fp
== '/' || *fp
== '\\')
1663 if (elem
&& elem
!= fp
)
1665 *fp
= 0; /* temporary end of string */
1666 _mbslwr (elem
); /* while we convert to lower case */
1668 *fp
= sep
; /* convert (or restore) path separator */
1669 elem
= fp
+ 1; /* next element starts after separator */
1677 fp
= CharNextExA (file_name_codepage
, fp
, 0);
1682 /* Destructively turn backslashes into slashes. MULTIBYTE non-zero
1683 means the file name is a multibyte string in Emacs's internal
1686 dostounix_filename (register char *p
, int multibyte
)
1688 normalize_filename (p
, '/', multibyte
);
1691 /* Destructively turn slashes into backslashes. */
1693 unixtodos_filename (register char *p
)
1695 normalize_filename (p
, '\\', 0);
1698 /* Remove all CR's that are followed by a LF.
1699 (From msdos.c...probably should figure out a way to share it,
1700 although this code isn't going to ever change.) */
1702 crlf_to_lf (register int n
, register unsigned char *buf
)
1704 unsigned char *np
= buf
;
1705 unsigned char *startp
= buf
;
1706 unsigned char *endp
= buf
+ n
;
1710 while (buf
< endp
- 1)
1714 if (*(++buf
) != 0x0a)
1725 /* Parse the root part of file name, if present. Return length and
1726 optionally store pointer to char after root. */
1728 parse_root (char * name
, char ** pPath
)
1730 char * start
= name
;
1735 /* find the root name of the volume if given */
1736 if (isalpha (name
[0]) && name
[1] == ':')
1738 /* skip past drive specifier */
1740 if (IS_DIRECTORY_SEP (name
[0]))
1743 else if (IS_DIRECTORY_SEP (name
[0]) && IS_DIRECTORY_SEP (name
[1]))
1746 int dbcs_p
= max_filename_mbslen () > 1;
1751 if (IS_DIRECTORY_SEP (*name
) && --slashes
== 0)
1754 name
= CharNextExA (file_name_codepage
, name
, 0);
1759 if (IS_DIRECTORY_SEP (name
[0]))
1766 return name
- start
;
1769 /* Get long base name for name; name is assumed to be absolute. */
1771 get_long_basename (char * name
, char * buf
, int size
)
1773 WIN32_FIND_DATA find_data
;
1777 /* must be valid filename, no wild cards or other invalid characters */
1778 if (_mbspbrk (name
, "*?|<>\""))
1781 dir_handle
= FindFirstFile (name
, &find_data
);
1782 if (dir_handle
!= INVALID_HANDLE_VALUE
)
1784 if ((len
= strlen (find_data
.cFileName
)) < size
)
1785 memcpy (buf
, find_data
.cFileName
, len
+ 1);
1788 FindClose (dir_handle
);
1793 /* Get long name for file, if possible (assumed to be absolute). */
1795 w32_get_long_filename (char * name
, char * buf
, int size
)
1800 char full
[ MAX_PATH
];
1803 len
= strlen (name
);
1804 if (len
>= MAX_PATH
)
1807 /* Use local copy for destructive modification. */
1808 memcpy (full
, name
, len
+1);
1809 unixtodos_filename (full
);
1811 /* Copy root part verbatim. */
1812 len
= parse_root (full
, &p
);
1813 memcpy (o
, full
, len
);
1818 while (p
!= NULL
&& *p
)
1821 p
= _mbschr (q
, '\\');
1823 len
= get_long_basename (full
, o
, size
);
1846 is_unc_volume (const char *filename
)
1848 const char *ptr
= filename
;
1850 if (!IS_DIRECTORY_SEP (ptr
[0]) || !IS_DIRECTORY_SEP (ptr
[1]) || !ptr
[2])
1853 if (_mbspbrk (ptr
+ 2, "*?|<>\"\\/"))
1859 /* Emulate the Posix unsetenv. */
1861 unsetenv (const char *name
)
1867 if (name
== NULL
|| *name
== '\0' || strchr (name
, '=') != NULL
)
1872 name_len
= strlen (name
);
1873 /* MS docs says an environment variable cannot be longer than 32K. */
1874 if (name_len
> 32767)
1879 /* It is safe to use 'alloca' with 32K size, since the stack is at
1880 least 2MB, and we set it to 8MB in the link command line. */
1881 var
= alloca (name_len
+ 2);
1882 strncpy (var
, name
, name_len
);
1883 var
[name_len
++] = '=';
1884 var
[name_len
] = '\0';
1885 return _putenv (var
);
1888 /* MS _putenv doesn't support removing a variable when the argument
1889 does not include the '=' character, so we fix that here. */
1891 sys_putenv (char *str
)
1893 const char *const name_end
= strchr (str
, '=');
1895 if (name_end
== NULL
)
1897 /* Remove the variable from the environment. */
1898 return unsetenv (str
);
1901 return _putenv (str
);
1904 #define REG_ROOT "SOFTWARE\\GNU\\Emacs"
1907 w32_get_resource (char *key
, LPDWORD lpdwtype
)
1910 HKEY hrootkey
= NULL
;
1913 /* Check both the current user and the local machine to see if
1914 we have any resources. */
1916 if (RegOpenKeyEx (HKEY_CURRENT_USER
, REG_ROOT
, 0, KEY_READ
, &hrootkey
) == ERROR_SUCCESS
)
1920 if (RegQueryValueEx (hrootkey
, key
, NULL
, NULL
, NULL
, &cbData
) == ERROR_SUCCESS
1921 && (lpvalue
= xmalloc (cbData
)) != NULL
1922 && RegQueryValueEx (hrootkey
, key
, NULL
, lpdwtype
, lpvalue
, &cbData
) == ERROR_SUCCESS
)
1924 RegCloseKey (hrootkey
);
1930 RegCloseKey (hrootkey
);
1933 if (RegOpenKeyEx (HKEY_LOCAL_MACHINE
, REG_ROOT
, 0, KEY_READ
, &hrootkey
) == ERROR_SUCCESS
)
1937 if (RegQueryValueEx (hrootkey
, key
, NULL
, NULL
, NULL
, &cbData
) == ERROR_SUCCESS
1938 && (lpvalue
= xmalloc (cbData
)) != NULL
1939 && RegQueryValueEx (hrootkey
, key
, NULL
, lpdwtype
, lpvalue
, &cbData
) == ERROR_SUCCESS
)
1941 RegCloseKey (hrootkey
);
1947 RegCloseKey (hrootkey
);
1953 char *get_emacs_configuration (void);
1956 init_environment (char ** argv
)
1958 static const char * const tempdirs
[] = {
1959 "$TMPDIR", "$TEMP", "$TMP", "c:/"
1964 const int imax
= sizeof (tempdirs
) / sizeof (tempdirs
[0]);
1966 /* Make sure they have a usable $TMPDIR. Many Emacs functions use
1967 temporary files and assume "/tmp" if $TMPDIR is unset, which
1968 will break on DOS/Windows. Refuse to work if we cannot find
1969 a directory, not even "c:/", usable for that purpose. */
1970 for (i
= 0; i
< imax
; i
++)
1972 const char *tmp
= tempdirs
[i
];
1975 tmp
= getenv (tmp
+ 1);
1976 /* Note that `access' can lie to us if the directory resides on a
1977 read-only filesystem, like CD-ROM or a write-protected floppy.
1978 The only way to be really sure is to actually create a file and
1979 see if it succeeds. But I think that's too much to ask. */
1981 /* MSVCRT's _access crashes with D_OK. */
1982 if (tmp
&& faccessat (AT_FDCWD
, tmp
, D_OK
, AT_EACCESS
) == 0)
1984 char * var
= alloca (strlen (tmp
) + 8);
1985 sprintf (var
, "TMPDIR=%s", tmp
);
1986 _putenv (strdup (var
));
1993 Fcons (build_string ("no usable temporary directories found!!"),
1995 "While setting TMPDIR: ");
1997 /* Check for environment variables and use registry settings if they
1998 don't exist. Fallback on default values where applicable. */
2003 char locale_name
[32];
2004 char default_home
[MAX_PATH
];
2007 static const struct env_entry
2013 /* If the default value is NULL, we will use the value from the
2014 outside environment or the Registry, but will not push the
2015 variable into the Emacs environment if it is defined neither
2016 in the Registry nor in the outside environment. */
2018 {"PRELOAD_WINSOCK", NULL
},
2019 {"emacs_dir", "C:/emacs"},
2020 {"EMACSLOADPATH", NULL
},
2021 {"SHELL", "%emacs_dir%/bin/cmdproxy.exe"},
2022 {"EMACSDATA", NULL
},
2023 {"EMACSPATH", NULL
},
2030 #define N_ENV_VARS sizeof (dflt_envvars)/sizeof (dflt_envvars[0])
2032 /* We need to copy dflt_envvars[] and work on the copy because we
2033 don't want the dumped Emacs to inherit the values of
2034 environment variables we saw during dumping (which could be on
2035 a different system). The defaults above must be left intact. */
2036 struct env_entry env_vars
[N_ENV_VARS
];
2038 for (i
= 0; i
< N_ENV_VARS
; i
++)
2039 env_vars
[i
] = dflt_envvars
[i
];
2041 /* For backwards compatibility, check if a .emacs file exists in C:/
2042 If not, then we can try to default to the appdata directory under the
2043 user's profile, which is more likely to be writable. */
2044 if (!check_existing ("C:/.emacs"))
2046 HRESULT profile_result
;
2047 /* Dynamically load ShGetFolderPath, as it won't exist on versions
2048 of Windows 95 and NT4 that have not been updated to include
2050 ShGetFolderPath_fn get_folder_path
;
2051 get_folder_path
= (ShGetFolderPath_fn
)
2052 GetProcAddress (GetModuleHandle ("shell32.dll"), "SHGetFolderPathA");
2054 if (get_folder_path
!= NULL
)
2056 profile_result
= get_folder_path (NULL
, CSIDL_APPDATA
, NULL
,
2059 /* If we can't get the appdata dir, revert to old behavior. */
2060 if (profile_result
== S_OK
)
2062 env_vars
[0].def_value
= default_home
;
2068 /* Get default locale info and use it for LANG. */
2069 if (GetLocaleInfo (LOCALE_USER_DEFAULT
,
2070 LOCALE_SABBREVLANGNAME
| LOCALE_USE_CP_ACP
,
2071 locale_name
, sizeof (locale_name
)))
2073 for (i
= 0; i
< N_ENV_VARS
; i
++)
2075 if (strcmp (env_vars
[i
].name
, "LANG") == 0)
2077 env_vars
[i
].def_value
= locale_name
;
2083 #define SET_ENV_BUF_SIZE (4 * MAX_PATH) /* to cover EMACSLOADPATH */
2085 /* Treat emacs_dir specially: set it unconditionally based on our
2089 char modname
[MAX_PATH
];
2091 if (!GetModuleFileName (NULL
, modname
, MAX_PATH
))
2093 if ((p
= _mbsrchr (modname
, '\\')) == NULL
)
2097 if ((p
= _mbsrchr (modname
, '\\')) && xstrcasecmp (p
, "\\bin") == 0)
2099 char buf
[SET_ENV_BUF_SIZE
];
2102 for (p
= modname
; *p
; p
= CharNext (p
))
2103 if (*p
== '\\') *p
= '/';
2105 _snprintf (buf
, sizeof (buf
)-1, "emacs_dir=%s", modname
);
2106 _putenv (strdup (buf
));
2108 /* Handle running emacs from the build directory: src/oo-spd/i386/ */
2110 /* FIXME: should use substring of get_emacs_configuration ().
2111 But I don't think the Windows build supports alpha, mips etc
2112 anymore, so have taken the easy option for now. */
2113 else if (p
&& (xstrcasecmp (p
, "\\i386") == 0
2114 || xstrcasecmp (p
, "\\AMD64") == 0))
2117 p
= _mbsrchr (modname
, '\\');
2121 p
= _mbsrchr (modname
, '\\');
2122 if (p
&& xstrcasecmp (p
, "\\src") == 0)
2124 char buf
[SET_ENV_BUF_SIZE
];
2127 for (p
= modname
; *p
; p
= CharNext (p
))
2128 if (*p
== '\\') *p
= '/';
2130 _snprintf (buf
, sizeof (buf
)-1, "emacs_dir=%s", modname
);
2131 _putenv (strdup (buf
));
2137 for (i
= 0; i
< N_ENV_VARS
; i
++)
2139 if (!getenv (env_vars
[i
].name
))
2143 if ((lpval
= w32_get_resource (env_vars
[i
].name
, &dwType
)) == NULL
2144 /* Also ignore empty environment variables. */
2148 lpval
= env_vars
[i
].def_value
;
2149 dwType
= REG_EXPAND_SZ
;
2151 if (!strcmp (env_vars
[i
].name
, "HOME") && !appdata
)
2152 Vdelayed_warnings_list
2153 = Fcons (listn (CONSTYPE_HEAP
, 2,
2154 intern ("initialization"),
2155 build_string ("Setting HOME to C:\\ by default is deprecated")),
2156 Vdelayed_warnings_list
);
2161 char buf1
[SET_ENV_BUF_SIZE
], buf2
[SET_ENV_BUF_SIZE
];
2163 if (dwType
== REG_EXPAND_SZ
)
2164 ExpandEnvironmentStrings ((LPSTR
) lpval
, buf1
, sizeof (buf1
));
2165 else if (dwType
== REG_SZ
)
2166 strcpy (buf1
, lpval
);
2167 if (dwType
== REG_EXPAND_SZ
|| dwType
== REG_SZ
)
2169 _snprintf (buf2
, sizeof (buf2
)-1, "%s=%s", env_vars
[i
].name
,
2171 _putenv (strdup (buf2
));
2181 /* Rebuild system configuration to reflect invoking system. */
2182 Vsystem_configuration
= build_string (EMACS_CONFIGURATION
);
2184 /* Another special case: on NT, the PATH variable is actually named
2185 "Path" although cmd.exe (perhaps NT itself) arranges for
2186 environment variable lookup and setting to be case insensitive.
2187 However, Emacs assumes a fully case sensitive environment, so we
2188 need to change "Path" to "PATH" to match the expectations of
2189 various elisp packages. We do this by the sneaky method of
2190 modifying the string in the C runtime environ entry.
2192 The same applies to COMSPEC. */
2196 for (envp
= environ
; *envp
; envp
++)
2197 if (_strnicmp (*envp
, "PATH=", 5) == 0)
2198 memcpy (*envp
, "PATH=", 5);
2199 else if (_strnicmp (*envp
, "COMSPEC=", 8) == 0)
2200 memcpy (*envp
, "COMSPEC=", 8);
2203 /* Remember the initial working directory for getcwd. */
2204 /* FIXME: Do we need to resolve possible symlinks in startup_dir?
2205 Does it matter anywhere in Emacs? */
2206 if (!GetCurrentDirectory (MAXPATHLEN
, startup_dir
))
2210 static char modname
[MAX_PATH
];
2212 if (!GetModuleFileName (NULL
, modname
, MAX_PATH
))
2217 /* Determine if there is a middle mouse button, to allow parse_button
2218 to decide whether right mouse events should be mouse-2 or
2220 w32_num_mouse_buttons
= GetSystemMetrics (SM_CMOUSEBUTTONS
);
2225 /* Called from expand-file-name when default-directory is not a string. */
2228 emacs_root_dir (void)
2230 static char root_dir
[FILENAME_MAX
];
2233 p
= getenv ("emacs_dir");
2236 strcpy (root_dir
, p
);
2237 root_dir
[parse_root (root_dir
, NULL
)] = '\0';
2238 dostounix_filename (root_dir
, 0);
2242 /* We don't have scripts to automatically determine the system configuration
2243 for Emacs before it's compiled, and we don't want to have to make the
2244 user enter it, so we define EMACS_CONFIGURATION to invoke this runtime
2248 get_emacs_configuration (void)
2250 char *arch
, *oem
, *os
;
2252 static char configuration_buffer
[32];
2254 /* Determine the processor type. */
2255 switch (get_processor_type ())
2258 #ifdef PROCESSOR_INTEL_386
2259 case PROCESSOR_INTEL_386
:
2260 case PROCESSOR_INTEL_486
:
2261 case PROCESSOR_INTEL_PENTIUM
:
2269 #ifdef PROCESSOR_AMD_X8664
2270 case PROCESSOR_AMD_X8664
:
2275 #ifdef PROCESSOR_MIPS_R2000
2276 case PROCESSOR_MIPS_R2000
:
2277 case PROCESSOR_MIPS_R3000
:
2278 case PROCESSOR_MIPS_R4000
:
2283 #ifdef PROCESSOR_ALPHA_21064
2284 case PROCESSOR_ALPHA_21064
:
2294 /* Use the OEM field to reflect the compiler/library combination. */
2296 #define COMPILER_NAME "msvc"
2299 #define COMPILER_NAME "mingw"
2301 #define COMPILER_NAME "unknown"
2304 oem
= COMPILER_NAME
;
2306 switch (osinfo_cache
.dwPlatformId
) {
2307 case VER_PLATFORM_WIN32_NT
:
2309 build_num
= osinfo_cache
.dwBuildNumber
;
2311 case VER_PLATFORM_WIN32_WINDOWS
:
2312 if (osinfo_cache
.dwMinorVersion
== 0) {
2317 build_num
= LOWORD (osinfo_cache
.dwBuildNumber
);
2319 case VER_PLATFORM_WIN32s
:
2320 /* Not supported, should not happen. */
2322 build_num
= LOWORD (osinfo_cache
.dwBuildNumber
);
2330 if (osinfo_cache
.dwPlatformId
== VER_PLATFORM_WIN32_NT
) {
2331 sprintf (configuration_buffer
, "%s-%s-%s%d.%d.%d", arch
, oem
, os
,
2332 get_w32_major_version (), get_w32_minor_version (), build_num
);
2334 sprintf (configuration_buffer
, "%s-%s-%s.%d", arch
, oem
, os
, build_num
);
2337 return configuration_buffer
;
2341 get_emacs_configuration_options (void)
2343 static char *options_buffer
;
2344 char cv
[32]; /* Enough for COMPILER_VERSION. */
2346 cv
, /* To be filled later. */
2350 #ifdef ENABLE_CHECKING
2351 " --enable-checking",
2353 /* configure.bat already sets USER_CFLAGS and USER_LDFLAGS
2354 with a starting space to save work here. */
2356 " --cflags", USER_CFLAGS
,
2359 " --ldflags", USER_LDFLAGS
,
2366 /* Work out the effective configure options for this build. */
2368 #define COMPILER_VERSION "--with-msvc (%d.%02d)", _MSC_VER / 100, _MSC_VER % 100
2371 #define COMPILER_VERSION "--with-gcc (%d.%d)", __GNUC__, __GNUC_MINOR__
2373 #define COMPILER_VERSION ""
2377 if (_snprintf (cv
, sizeof (cv
) - 1, COMPILER_VERSION
) < 0)
2378 return "Error: not enough space for compiler version";
2379 cv
[sizeof (cv
) - 1] = '\0';
2381 for (i
= 0; options
[i
]; i
++)
2382 size
+= strlen (options
[i
]);
2384 options_buffer
= xmalloc (size
+ 1);
2385 options_buffer
[0] = '\0';
2387 for (i
= 0; options
[i
]; i
++)
2388 strcat (options_buffer
, options
[i
]);
2390 return options_buffer
;
2394 #include <sys/timeb.h>
2396 /* Emulate gettimeofday (Ulrich Leodolter, 1/11/95). */
2398 gettimeofday (struct timeval
*tv
, struct timezone
*tz
)
2403 tv
->tv_sec
= tb
.time
;
2404 tv
->tv_usec
= tb
.millitm
* 1000L;
2405 /* Implementation note: _ftime sometimes doesn't update the dstflag
2406 according to the new timezone when the system timezone is
2407 changed. We could fix that by using GetSystemTime and
2408 GetTimeZoneInformation, but that doesn't seem necessary, since
2409 Emacs always calls gettimeofday with the 2nd argument NULL (see
2410 current_emacs_time). */
2413 tz
->tz_minuteswest
= tb
.timezone
; /* minutes west of Greenwich */
2414 tz
->tz_dsttime
= tb
.dstflag
; /* type of dst correction */
2418 /* Emulate fdutimens. */
2420 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2421 TIMESPEC[0] and TIMESPEC[1], respectively.
2422 FD must be either negative -- in which case it is ignored --
2423 or a file descriptor that is open on FILE.
2424 If FD is nonnegative, then FILE can be NULL, which means
2425 use just futimes instead of utimes.
2426 If TIMESPEC is null, FAIL.
2427 Return 0 on success, -1 (setting errno) on failure. */
2430 fdutimens (int fd
, char const *file
, struct timespec
const timespec
[2])
2439 if (fd
< 0 && !file
)
2444 ut
.actime
= timespec
[0].tv_sec
;
2445 ut
.modtime
= timespec
[1].tv_sec
;
2447 return _futime (fd
, &ut
);
2449 return _utime (file
, &ut
);
2453 /* ------------------------------------------------------------------------- */
2454 /* IO support and wrapper functions for the Windows API. */
2455 /* ------------------------------------------------------------------------- */
2457 /* Place a wrapper around the MSVC version of ctime. It returns NULL
2458 on network directories, so we handle that case here.
2459 (Ulrich Leodolter, 1/11/95). */
2461 sys_ctime (const time_t *t
)
2463 char *str
= (char *) ctime (t
);
2464 return (str
? str
: "Sun Jan 01 00:00:00 1970");
2467 /* Emulate sleep...we could have done this with a define, but that
2468 would necessitate including windows.h in the files that used it.
2469 This is much easier. */
2471 sys_sleep (int seconds
)
2473 Sleep (seconds
* 1000);
2476 /* Internal MSVC functions for low-level descriptor munging */
2477 extern int __cdecl
_set_osfhnd (int fd
, long h
);
2478 extern int __cdecl
_free_osfhnd (int fd
);
2480 /* parallel array of private info on file handles */
2481 filedesc fd_info
[ MAXDESC
];
2483 typedef struct volume_info_data
{
2484 struct volume_info_data
* next
;
2486 /* time when info was obtained */
2489 /* actual volume info */
2498 /* Global referenced by various functions. */
2499 static volume_info_data volume_info
;
2501 /* Vector to indicate which drives are local and fixed (for which cached
2502 data never expires). */
2503 static BOOL fixed_drives
[26];
2505 /* Consider cached volume information to be stale if older than 10s,
2506 at least for non-local drives. Info for fixed drives is never stale. */
2507 #define DRIVE_INDEX( c ) ( (c) <= 'Z' ? (c) - 'A' : (c) - 'a' )
2508 #define VOLINFO_STILL_VALID( root_dir, info ) \
2509 ( ( isalpha (root_dir[0]) && \
2510 fixed_drives[ DRIVE_INDEX (root_dir[0]) ] ) \
2511 || GetTickCount () - info->timestamp < 10000 )
2513 /* Cache support functions. */
2515 /* Simple linked list with linear search is sufficient. */
2516 static volume_info_data
*volume_cache
= NULL
;
2518 static volume_info_data
*
2519 lookup_volume_info (char * root_dir
)
2521 volume_info_data
* info
;
2523 for (info
= volume_cache
; info
; info
= info
->next
)
2524 if (xstrcasecmp (info
->root_dir
, root_dir
) == 0)
2530 add_volume_info (char * root_dir
, volume_info_data
* info
)
2532 info
->root_dir
= xstrdup (root_dir
);
2533 info
->next
= volume_cache
;
2534 volume_cache
= info
;
2538 /* Wrapper for GetVolumeInformation, which uses caching to avoid
2539 performance penalty (~2ms on 486 for local drives, 7.5ms for local
2540 cdrom drive, ~5-10ms or more for remote drives on LAN). */
2541 static volume_info_data
*
2542 GetCachedVolumeInformation (char * root_dir
)
2544 volume_info_data
* info
;
2545 char default_root
[ MAX_PATH
];
2547 /* NULL for root_dir means use root from current directory. */
2548 if (root_dir
== NULL
)
2550 if (GetCurrentDirectory (MAX_PATH
, default_root
) == 0)
2552 parse_root (default_root
, &root_dir
);
2554 root_dir
= default_root
;
2557 /* Local fixed drives can be cached permanently. Removable drives
2558 cannot be cached permanently, since the volume name and serial
2559 number (if nothing else) can change. Remote drives should be
2560 treated as if they are removable, since there is no sure way to
2561 tell whether they are or not. Also, the UNC association of drive
2562 letters mapped to remote volumes can be changed at any time (even
2563 by other processes) without notice.
2565 As a compromise, so we can benefit from caching info for remote
2566 volumes, we use a simple expiry mechanism to invalidate cache
2567 entries that are more than ten seconds old. */
2570 /* No point doing this, because WNetGetConnection is even slower than
2571 GetVolumeInformation, consistently taking ~50ms on a 486 (FWIW,
2572 GetDriveType is about the only call of this type which does not
2573 involve network access, and so is extremely quick). */
2575 /* Map drive letter to UNC if remote. */
2576 if (isalpha (root_dir
[0]) && !fixed
[DRIVE_INDEX (root_dir
[0])])
2578 char remote_name
[ 256 ];
2579 char drive
[3] = { root_dir
[0], ':' };
2581 if (WNetGetConnection (drive
, remote_name
, sizeof (remote_name
))
2583 /* do something */ ;
2587 info
= lookup_volume_info (root_dir
);
2589 if (info
== NULL
|| ! VOLINFO_STILL_VALID (root_dir
, info
))
2597 /* Info is not cached, or is stale. */
2598 if (!GetVolumeInformation (root_dir
,
2599 name
, sizeof (name
),
2603 type
, sizeof (type
)))
2606 /* Cache the volume information for future use, overwriting existing
2607 entry if present. */
2610 info
= xmalloc (sizeof (volume_info_data
));
2611 add_volume_info (root_dir
, info
);
2619 info
->name
= xstrdup (name
);
2620 info
->serialnum
= serialnum
;
2621 info
->maxcomp
= maxcomp
;
2622 info
->flags
= flags
;
2623 info
->type
= xstrdup (type
);
2624 info
->timestamp
= GetTickCount ();
2630 /* Get information on the volume where NAME is held; set path pointer to
2631 start of pathname in NAME (past UNC header\volume header if present),
2632 if pPath is non-NULL.
2634 Note: if NAME includes symlinks, the information is for the volume
2635 of the symlink, not of its target. That's because, even though
2636 GetVolumeInformation returns information about the symlink target
2637 of its argument, we only pass the root directory to
2638 GetVolumeInformation, not the full NAME. */
2640 get_volume_info (const char * name
, const char ** pPath
)
2642 char temp
[MAX_PATH
];
2643 char *rootname
= NULL
; /* default to current volume */
2644 volume_info_data
* info
;
2649 /* Find the root name of the volume if given. */
2650 if (isalpha (name
[0]) && name
[1] == ':')
2658 else if (IS_DIRECTORY_SEP (name
[0]) && IS_DIRECTORY_SEP (name
[1]))
2662 int dbcs_p
= max_filename_mbslen () > 1;
2667 if (IS_DIRECTORY_SEP (*name
) && --slashes
== 0)
2673 const char *p
= name
;
2675 name
= CharNextExA (file_name_codepage
, name
, 0);
2676 memcpy (str
, p
, name
- p
);
2689 info
= GetCachedVolumeInformation (rootname
);
2692 /* Set global referenced by other functions. */
2693 volume_info
= *info
;
2699 /* Determine if volume is FAT format (ie. only supports short 8.3
2700 names); also set path pointer to start of pathname in name, if
2701 pPath is non-NULL. */
2703 is_fat_volume (const char * name
, const char ** pPath
)
2705 if (get_volume_info (name
, pPath
))
2706 return (volume_info
.maxcomp
== 12);
2710 /* Map filename to a valid 8.3 name if necessary.
2711 The result is a pointer to a static buffer, so CAVEAT EMPTOR! */
2713 map_w32_filename (const char * name
, const char ** pPath
)
2715 static char shortname
[MAX_PATH
];
2716 char * str
= shortname
;
2719 const char * save_name
= name
;
2721 if (strlen (name
) >= MAX_PATH
)
2723 /* Return a filename which will cause callers to fail. */
2724 strcpy (shortname
, "?");
2728 if (is_fat_volume (name
, (const char **)&path
)) /* truncate to 8.3 */
2730 register int left
= 8; /* maximum number of chars in part */
2731 register int extn
= 0; /* extension added? */
2732 register int dots
= 2; /* maximum number of dots allowed */
2735 *str
++ = *name
++; /* skip past UNC header */
2737 while ((c
= *name
++))
2744 *str
++ = (c
== ':' ? ':' : '\\');
2745 extn
= 0; /* reset extension flags */
2746 dots
= 2; /* max 2 dots */
2747 left
= 8; /* max length 8 for main part */
2752 /* Convert path components of the form .xxx to _xxx,
2753 but leave . and .. as they are. This allows .emacs
2754 to be read as _emacs, for example. */
2758 IS_DIRECTORY_SEP (*name
))
2773 extn
= 1; /* we've got an extension */
2774 left
= 3; /* 3 chars in extension */
2778 /* any embedded dots after the first are converted to _ */
2783 case '#': /* don't lose these, they're important */
2785 str
[-1] = c
; /* replace last character of part */
2790 *str
++ = tolower (c
); /* map to lower case (looks nicer) */
2792 dots
= 0; /* started a path component */
2801 strcpy (shortname
, name
);
2802 unixtodos_filename (shortname
);
2806 *pPath
= shortname
+ (path
- save_name
);
2812 is_exec (const char * name
)
2814 char * p
= strrchr (name
, '.');
2817 && (xstrcasecmp (p
, ".exe") == 0 ||
2818 xstrcasecmp (p
, ".com") == 0 ||
2819 xstrcasecmp (p
, ".bat") == 0 ||
2820 xstrcasecmp (p
, ".cmd") == 0));
2823 /* Emulate the Unix directory procedures opendir, closedir,
2824 and readdir. We can't use the procedures supplied in sysdep.c,
2825 so we provide them here. */
2827 struct dirent dir_static
; /* simulated directory contents */
2828 static HANDLE dir_find_handle
= INVALID_HANDLE_VALUE
;
2829 static int dir_is_fat
;
2830 static char dir_pathname
[MAXPATHLEN
+1];
2831 static WIN32_FIND_DATA dir_find_data
;
2833 /* Support shares on a network resource as subdirectories of a read-only
2835 static HANDLE wnet_enum_handle
= INVALID_HANDLE_VALUE
;
2836 static HANDLE
open_unc_volume (const char *);
2837 static char *read_unc_volume (HANDLE
, char *, int);
2838 static void close_unc_volume (HANDLE
);
2841 opendir (const char *filename
)
2845 /* Opening is done by FindFirstFile. However, a read is inherent to
2846 this operation, so we defer the open until read time. */
2848 if (dir_find_handle
!= INVALID_HANDLE_VALUE
)
2850 if (wnet_enum_handle
!= INVALID_HANDLE_VALUE
)
2853 /* Note: We don't support traversal of UNC volumes via symlinks.
2854 Doing so would mean punishing 99.99% of use cases by resolving
2855 all the possible symlinks in FILENAME, recursively. */
2856 if (is_unc_volume (filename
))
2858 wnet_enum_handle
= open_unc_volume (filename
);
2859 if (wnet_enum_handle
== INVALID_HANDLE_VALUE
)
2863 if (!(dirp
= (DIR *) malloc (sizeof (DIR))))
2870 strncpy (dir_pathname
, map_w32_filename (filename
, NULL
), MAXPATHLEN
);
2871 dir_pathname
[MAXPATHLEN
] = '\0';
2872 /* Note: We don't support symlinks to file names on FAT volumes.
2873 Doing so would mean punishing 99.99% of use cases by resolving
2874 all the possible symlinks in FILENAME, recursively. */
2875 dir_is_fat
= is_fat_volume (filename
, NULL
);
2881 closedir (DIR *dirp
)
2883 /* If we have a find-handle open, close it. */
2884 if (dir_find_handle
!= INVALID_HANDLE_VALUE
)
2886 FindClose (dir_find_handle
);
2887 dir_find_handle
= INVALID_HANDLE_VALUE
;
2889 else if (wnet_enum_handle
!= INVALID_HANDLE_VALUE
)
2891 close_unc_volume (wnet_enum_handle
);
2892 wnet_enum_handle
= INVALID_HANDLE_VALUE
;
2894 xfree ((char *) dirp
);
2900 int downcase
= !NILP (Vw32_downcase_file_names
);
2902 if (wnet_enum_handle
!= INVALID_HANDLE_VALUE
)
2904 if (!read_unc_volume (wnet_enum_handle
,
2905 dir_find_data
.cFileName
,
2909 /* If we aren't dir_finding, do a find-first, otherwise do a find-next. */
2910 else if (dir_find_handle
== INVALID_HANDLE_VALUE
)
2912 char filename
[MAXNAMLEN
+ 3];
2914 int dbcs_p
= max_filename_mbslen () > 1;
2916 strcpy (filename
, dir_pathname
);
2917 ln
= strlen (filename
) - 1;
2920 if (!IS_DIRECTORY_SEP (filename
[ln
]))
2921 strcat (filename
, "\\");
2925 char *end
= filename
+ ln
+ 1;
2926 char *last_char
= CharPrevExA (file_name_codepage
, filename
, end
, 0);
2928 if (!IS_DIRECTORY_SEP (*last_char
))
2929 strcat (filename
, "\\");
2931 strcat (filename
, "*");
2933 /* Note: No need to resolve symlinks in FILENAME, because
2934 FindFirst opens the directory that is the target of a
2936 dir_find_handle
= FindFirstFile (filename
, &dir_find_data
);
2938 if (dir_find_handle
== INVALID_HANDLE_VALUE
)
2943 if (!FindNextFile (dir_find_handle
, &dir_find_data
))
2947 /* Emacs never uses this value, so don't bother making it match
2948 value returned by stat(). */
2949 dir_static
.d_ino
= 1;
2951 strcpy (dir_static
.d_name
, dir_find_data
.cFileName
);
2953 /* If the file name in cFileName[] includes `?' characters, it means
2954 the original file name used characters that cannot be represented
2955 by the current ANSI codepage. To avoid total lossage, retrieve
2956 the short 8+3 alias of the long file name. */
2957 if (_mbspbrk (dir_static
.d_name
, "?"))
2959 strcpy (dir_static
.d_name
, dir_find_data
.cAlternateFileName
);
2960 downcase
= 1; /* 8+3 aliases are returned in all caps */
2962 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
2963 dir_static
.d_reclen
= sizeof (struct dirent
) - MAXNAMLEN
+ 3 +
2964 dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
2966 /* If the file name in cFileName[] includes `?' characters, it means
2967 the original file name used characters that cannot be represented
2968 by the current ANSI codepage. To avoid total lossage, retrieve
2969 the short 8+3 alias of the long file name. */
2970 if (_mbspbrk (dir_find_data
.cFileName
, "?"))
2972 strcpy (dir_static
.d_name
, dir_find_data
.cAlternateFileName
);
2973 /* 8+3 aliases are returned in all caps, which could break
2974 various alists that look at filenames' extensions. */
2978 strcpy (dir_static
.d_name
, dir_find_data
.cFileName
);
2979 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
2981 _mbslwr (dir_static
.d_name
);
2985 int dbcs_p
= max_filename_mbslen () > 1;
2986 for (p
= dir_static
.d_name
; *p
; )
2988 if (*p
>= 'a' && *p
<= 'z')
2991 p
= CharNextExA (file_name_codepage
, p
, 0);
2996 _mbslwr (dir_static
.d_name
);
3003 open_unc_volume (const char *path
)
3009 nr
.dwScope
= RESOURCE_GLOBALNET
;
3010 nr
.dwType
= RESOURCETYPE_DISK
;
3011 nr
.dwDisplayType
= RESOURCEDISPLAYTYPE_SERVER
;
3012 nr
.dwUsage
= RESOURCEUSAGE_CONTAINER
;
3013 nr
.lpLocalName
= NULL
;
3014 nr
.lpRemoteName
= (LPSTR
)map_w32_filename (path
, NULL
);
3015 nr
.lpComment
= NULL
;
3016 nr
.lpProvider
= NULL
;
3018 result
= WNetOpenEnum (RESOURCE_GLOBALNET
, RESOURCETYPE_DISK
,
3019 RESOURCEUSAGE_CONNECTABLE
, &nr
, &henum
);
3021 if (result
== NO_ERROR
)
3024 return INVALID_HANDLE_VALUE
;
3028 read_unc_volume (HANDLE henum
, char *readbuf
, int size
)
3032 DWORD bufsize
= 512;
3035 int dbcs_p
= max_filename_mbslen () > 1;
3038 buffer
= alloca (bufsize
);
3039 result
= WNetEnumResource (henum
, &count
, buffer
, &bufsize
);
3040 if (result
!= NO_ERROR
)
3043 /* WNetEnumResource returns \\resource\share...skip forward to "share". */
3044 ptr
= ((LPNETRESOURCE
) buffer
)->lpRemoteName
;
3047 while (*ptr
&& !IS_DIRECTORY_SEP (*ptr
)) ptr
++;
3050 while (*ptr
&& !IS_DIRECTORY_SEP (*ptr
))
3051 ptr
= CharNextExA (file_name_codepage
, ptr
, 0);
3055 strncpy (readbuf
, ptr
, size
);
3060 close_unc_volume (HANDLE henum
)
3062 if (henum
!= INVALID_HANDLE_VALUE
)
3063 WNetCloseEnum (henum
);
3067 unc_volume_file_attributes (const char *path
)
3072 henum
= open_unc_volume (path
);
3073 if (henum
== INVALID_HANDLE_VALUE
)
3076 attrs
= FILE_ATTRIBUTE_READONLY
| FILE_ATTRIBUTE_DIRECTORY
;
3078 close_unc_volume (henum
);
3083 /* Ensure a network connection is authenticated. */
3085 logon_network_drive (const char *path
)
3087 NETRESOURCE resource
;
3088 char share
[MAX_PATH
];
3095 if (IS_DIRECTORY_SEP (path
[0]) && IS_DIRECTORY_SEP (path
[1]))
3096 drvtype
= DRIVE_REMOTE
;
3097 else if (path
[0] == '\0' || path
[1] != ':')
3098 drvtype
= GetDriveType (NULL
);
3105 drvtype
= GetDriveType (drive
);
3108 /* Only logon to networked drives. */
3109 if (drvtype
!= DRIVE_REMOTE
)
3113 strncpy (share
, path
, MAX_PATH
);
3114 /* Truncate to just server and share name. */
3115 dbcs_p
= max_filename_mbslen () > 1;
3116 for (p
= share
+ 2; *p
&& p
< share
+ MAX_PATH
; )
3118 if (IS_DIRECTORY_SEP (*p
) && ++n_slashes
> 3)
3124 p
= CharNextExA (file_name_codepage
, p
, 0);
3129 resource
.dwType
= RESOURCETYPE_DISK
;
3130 resource
.lpLocalName
= NULL
;
3131 resource
.lpRemoteName
= share
;
3132 resource
.lpProvider
= NULL
;
3134 WNetAddConnection2 (&resource
, NULL
, NULL
, CONNECT_INTERACTIVE
);
3137 /* Emulate faccessat(2). */
3139 faccessat (int dirfd
, const char * path
, int mode
, int flags
)
3143 if (dirfd
!= AT_FDCWD
3144 && !(IS_DIRECTORY_SEP (path
[0])
3145 || IS_DEVICE_SEP (path
[1])))
3151 /* MSVCRT implementation of 'access' doesn't recognize D_OK, and its
3152 newer versions blow up when passed D_OK. */
3153 path
= map_w32_filename (path
, NULL
);
3154 /* If the last element of PATH is a symlink, we need to resolve it
3155 to get the attributes of its target file. Note: any symlinks in
3156 PATH elements other than the last one are transparently resolved
3157 by GetFileAttributes below. */
3158 if ((volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) != 0
3159 && (flags
& AT_SYMLINK_NOFOLLOW
) == 0)
3160 path
= chase_symlinks (path
);
3162 if ((attributes
= GetFileAttributes (path
)) == -1)
3164 DWORD w32err
= GetLastError ();
3168 case ERROR_INVALID_NAME
:
3169 case ERROR_BAD_PATHNAME
:
3170 if (is_unc_volume (path
))
3172 attributes
= unc_volume_file_attributes (path
);
3173 if (attributes
== -1)
3181 case ERROR_FILE_NOT_FOUND
:
3182 case ERROR_BAD_NETPATH
:
3191 if ((mode
& X_OK
) != 0
3192 && !(is_exec (path
) || (attributes
& FILE_ATTRIBUTE_DIRECTORY
) != 0))
3197 if ((mode
& W_OK
) != 0 && (attributes
& FILE_ATTRIBUTE_READONLY
) != 0)
3202 if ((mode
& D_OK
) != 0 && (attributes
& FILE_ATTRIBUTE_DIRECTORY
) == 0)
3210 /* Shadow some MSVC runtime functions to map requests for long filenames
3211 to reasonable short names if necessary. This was originally added to
3212 permit running Emacs on NT 3.1 on a FAT partition, which doesn't support
3216 sys_chdir (const char * path
)
3218 return _chdir (map_w32_filename (path
, NULL
));
3222 sys_chmod (const char * path
, int mode
)
3224 path
= chase_symlinks (map_w32_filename (path
, NULL
));
3225 return _chmod (path
, mode
);
3229 sys_creat (const char * path
, int mode
)
3231 return _creat (map_w32_filename (path
, NULL
), mode
);
3235 sys_fopen (const char * path
, const char * mode
)
3239 const char * mode_save
= mode
;
3241 /* Force all file handles to be non-inheritable. This is necessary to
3242 ensure child processes don't unwittingly inherit handles that might
3243 prevent future file access. */
3247 else if (mode
[0] == 'w' || mode
[0] == 'a')
3248 oflag
= O_WRONLY
| O_CREAT
| O_TRUNC
;
3252 /* Only do simplistic option parsing. */
3256 oflag
&= ~(O_RDONLY
| O_WRONLY
);
3259 else if (mode
[0] == 'b')
3264 else if (mode
[0] == 't')
3271 fd
= _open (map_w32_filename (path
, NULL
), oflag
| _O_NOINHERIT
, 0644);
3275 return _fdopen (fd
, mode_save
);
3278 /* This only works on NTFS volumes, but is useful to have. */
3280 sys_link (const char * old
, const char * new)
3284 char oldname
[MAX_PATH
], newname
[MAX_PATH
];
3286 if (old
== NULL
|| new == NULL
)
3292 strcpy (oldname
, map_w32_filename (old
, NULL
));
3293 strcpy (newname
, map_w32_filename (new, NULL
));
3295 fileh
= CreateFile (oldname
, 0, 0, NULL
, OPEN_EXISTING
,
3296 FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
3297 if (fileh
!= INVALID_HANDLE_VALUE
)
3301 /* Confusingly, the "alternate" stream name field does not apply
3302 when restoring a hard link, and instead contains the actual
3303 stream data for the link (ie. the name of the link to create).
3304 The WIN32_STREAM_ID structure before the cStreamName field is
3305 the stream header, which is then immediately followed by the
3309 WIN32_STREAM_ID wid
;
3310 WCHAR wbuffer
[MAX_PATH
]; /* extra space for link name */
3313 wlen
= MultiByteToWideChar (CP_ACP
, MB_PRECOMPOSED
, newname
, -1,
3314 data
.wid
.cStreamName
, MAX_PATH
);
3317 LPVOID context
= NULL
;
3320 data
.wid
.dwStreamId
= BACKUP_LINK
;
3321 data
.wid
.dwStreamAttributes
= 0;
3322 data
.wid
.Size
.LowPart
= wlen
* sizeof (WCHAR
);
3323 data
.wid
.Size
.HighPart
= 0;
3324 data
.wid
.dwStreamNameSize
= 0;
3326 if (BackupWrite (fileh
, (LPBYTE
)&data
,
3327 offsetof (WIN32_STREAM_ID
, cStreamName
)
3328 + data
.wid
.Size
.LowPart
,
3329 &wbytes
, FALSE
, FALSE
, &context
)
3330 && BackupWrite (fileh
, NULL
, 0, &wbytes
, TRUE
, FALSE
, &context
))
3337 /* Should try mapping GetLastError to errno; for now just
3338 indicate a general error (eg. links not supported). */
3339 errno
= EINVAL
; // perhaps EMLINK?
3343 CloseHandle (fileh
);
3352 sys_mkdir (const char * path
)
3354 return _mkdir (map_w32_filename (path
, NULL
));
3357 /* Because of long name mapping issues, we need to implement this
3358 ourselves. Also, MSVC's _mktemp returns NULL when it can't generate
3359 a unique name, instead of setting the input template to an empty
3362 Standard algorithm seems to be use pid or tid with a letter on the
3363 front (in place of the 6 X's) and cycle through the letters to find a
3364 unique name. We extend that to allow any reasonable character as the
3365 first of the 6 X's. */
3367 sys_mktemp (char * template)
3371 unsigned uid
= GetCurrentThreadId ();
3372 static char first_char
[] = "abcdefghijklmnopqrstuvwyz0123456789!%-_@#";
3374 if (template == NULL
)
3376 p
= template + strlen (template);
3378 /* replace up to the last 5 X's with uid in decimal */
3379 while (--p
>= template && p
[0] == 'X' && --i
>= 0)
3381 p
[0] = '0' + uid
% 10;
3385 if (i
< 0 && p
[0] == 'X')
3390 int save_errno
= errno
;
3391 p
[0] = first_char
[i
];
3392 if (faccessat (AT_FDCWD
, template, F_OK
, AT_EACCESS
) < 0)
3398 while (++i
< sizeof (first_char
));
3401 /* Template is badly formed or else we can't generate a unique name,
3402 so return empty string */
3408 sys_open (const char * path
, int oflag
, int mode
)
3410 const char* mpath
= map_w32_filename (path
, NULL
);
3413 /* If possible, try to open file without _O_CREAT, to be able to
3414 write to existing hidden and system files. Force all file
3415 handles to be non-inheritable. */
3416 if ((oflag
& (_O_CREAT
| _O_EXCL
)) != (_O_CREAT
| _O_EXCL
))
3417 res
= _open (mpath
, (oflag
& ~_O_CREAT
) | _O_NOINHERIT
, mode
);
3419 res
= _open (mpath
, oflag
| _O_NOINHERIT
, mode
);
3425 fchmod (int fd
, mode_t mode
)
3431 sys_rename_replace (const char *oldname
, const char *newname
, BOOL force
)
3434 char temp
[MAX_PATH
];
3438 /* MoveFile on Windows 95 doesn't correctly change the short file name
3439 alias in a number of circumstances (it is not easy to predict when
3440 just by looking at oldname and newname, unfortunately). In these
3441 cases, renaming through a temporary name avoids the problem.
3443 A second problem on Windows 95 is that renaming through a temp name when
3444 newname is uppercase fails (the final long name ends up in
3445 lowercase, although the short alias might be uppercase) UNLESS the
3446 long temp name is not 8.3.
3448 So, on Windows 95 we always rename through a temp name, and we make sure
3449 the temp name has a long extension to ensure correct renaming. */
3451 strcpy (temp
, map_w32_filename (oldname
, NULL
));
3453 /* volume_info is set indirectly by map_w32_filename. */
3454 oldname_dev
= volume_info
.serialnum
;
3456 if (os_subtype
== OS_9X
)
3462 oldname
= map_w32_filename (oldname
, NULL
);
3463 if ((o
= strrchr (oldname
, '\\')))
3466 o
= (char *) oldname
;
3468 if ((p
= strrchr (temp
, '\\')))
3475 /* Force temp name to require a manufactured 8.3 alias - this
3476 seems to make the second rename work properly. */
3477 sprintf (p
, "_.%s.%u", o
, i
);
3479 result
= rename (oldname
, temp
);
3481 /* This loop must surely terminate! */
3482 while (result
< 0 && errno
== EEXIST
);
3487 /* If FORCE, emulate Unix behavior - newname is deleted if it already exists
3488 (at least if it is a file; don't do this for directories).
3490 Since we mustn't do this if we are just changing the case of the
3491 file name (we would end up deleting the file we are trying to
3492 rename!), we let rename detect if the destination file already
3493 exists - that way we avoid the possible pitfalls of trying to
3494 determine ourselves whether two names really refer to the same
3495 file, which is not always possible in the general case. (Consider
3496 all the permutations of shared or subst'd drives, etc.) */
3498 newname
= map_w32_filename (newname
, NULL
);
3500 /* volume_info is set indirectly by map_w32_filename. */
3501 newname_dev
= volume_info
.serialnum
;
3503 result
= rename (temp
, newname
);
3505 if (result
< 0 && force
)
3507 DWORD w32err
= GetLastError ();
3510 && newname_dev
!= oldname_dev
)
3512 /* The implementation of `rename' on Windows does not return
3513 errno = EXDEV when you are moving a directory to a
3514 different storage device (ex. logical disk). It returns
3515 EACCES instead. So here we handle such situations and
3519 if ((attributes
= GetFileAttributes (temp
)) != -1
3520 && (attributes
& FILE_ATTRIBUTE_DIRECTORY
))
3523 else if (errno
== EEXIST
)
3525 if (_chmod (newname
, 0666) != 0)
3527 if (_unlink (newname
) != 0)
3529 result
= rename (temp
, newname
);
3531 else if (w32err
== ERROR_PRIVILEGE_NOT_HELD
3532 && is_symlink (temp
))
3534 /* This is Windows prohibiting the user from creating a
3535 symlink in another place, since that requires
3545 sys_rename (char const *old
, char const *new)
3547 return sys_rename_replace (old
, new, TRUE
);
3551 sys_rmdir (const char * path
)
3553 return _rmdir (map_w32_filename (path
, NULL
));
3557 sys_unlink (const char * path
)
3559 path
= map_w32_filename (path
, NULL
);
3561 /* On Unix, unlink works without write permission. */
3562 _chmod (path
, 0666);
3563 return _unlink (path
);
3566 static FILETIME utc_base_ft
;
3567 static ULONGLONG utc_base
; /* In 100ns units */
3568 static int init
= 0;
3570 #define FILETIME_TO_U64(result, ft) \
3572 ULARGE_INTEGER uiTemp; \
3573 uiTemp.LowPart = (ft).dwLowDateTime; \
3574 uiTemp.HighPart = (ft).dwHighDateTime; \
3575 result = uiTemp.QuadPart; \
3579 initialize_utc_base (void)
3581 /* Determine the delta between 1-Jan-1601 and 1-Jan-1970. */
3590 st
.wMilliseconds
= 0;
3592 SystemTimeToFileTime (&st
, &utc_base_ft
);
3593 FILETIME_TO_U64 (utc_base
, utc_base_ft
);
3597 convert_time (FILETIME ft
)
3603 initialize_utc_base ();
3607 if (CompareFileTime (&ft
, &utc_base_ft
) < 0)
3610 FILETIME_TO_U64 (tmp
, ft
);
3611 return (time_t) ((tmp
- utc_base
) / 10000000L);
3615 convert_from_time_t (time_t time
, FILETIME
* pft
)
3621 initialize_utc_base ();
3625 /* time in 100ns units since 1-Jan-1601 */
3626 tmp
.QuadPart
= (ULONGLONG
) time
* 10000000L + utc_base
;
3627 pft
->dwHighDateTime
= tmp
.HighPart
;
3628 pft
->dwLowDateTime
= tmp
.LowPart
;
3632 /* No reason to keep this; faking inode values either by hashing or even
3633 using the file index from GetInformationByHandle, is not perfect and
3634 so by default Emacs doesn't use the inode values on Windows.
3635 Instead, we now determine file-truename correctly (except for
3636 possible drive aliasing etc). */
3638 /* Modified version of "PJW" algorithm (see the "Dragon" compiler book). */
3640 hashval (const unsigned char * str
)
3645 h
= (h
<< 4) + *str
++;
3651 /* Return the hash value of the canonical pathname, excluding the
3652 drive/UNC header, to get a hopefully unique inode number. */
3654 generate_inode_val (const char * name
)
3656 char fullname
[ MAX_PATH
];
3660 /* Get the truly canonical filename, if it exists. (Note: this
3661 doesn't resolve aliasing due to subst commands, or recognize hard
3663 if (!w32_get_long_filename ((char *)name
, fullname
, MAX_PATH
))
3666 parse_root (fullname
, &p
);
3667 /* Normal W32 filesystems are still case insensitive. */
3674 static PSECURITY_DESCRIPTOR
3675 get_file_security_desc_by_handle (HANDLE h
)
3677 PSECURITY_DESCRIPTOR psd
= NULL
;
3679 SECURITY_INFORMATION si
= OWNER_SECURITY_INFORMATION
3680 | GROUP_SECURITY_INFORMATION
/* | DACL_SECURITY_INFORMATION */ ;
3682 err
= get_security_info (h
, SE_FILE_OBJECT
, si
,
3683 NULL
, NULL
, NULL
, NULL
, &psd
);
3684 if (err
!= ERROR_SUCCESS
)
3690 static PSECURITY_DESCRIPTOR
3691 get_file_security_desc_by_name (const char *fname
)
3693 PSECURITY_DESCRIPTOR psd
= NULL
;
3695 SECURITY_INFORMATION si
= OWNER_SECURITY_INFORMATION
3696 | GROUP_SECURITY_INFORMATION
/* | DACL_SECURITY_INFORMATION */ ;
3698 if (!get_file_security (fname
, si
, psd
, 0, &sd_len
))
3700 err
= GetLastError ();
3701 if (err
!= ERROR_INSUFFICIENT_BUFFER
)
3705 psd
= xmalloc (sd_len
);
3706 if (!get_file_security (fname
, si
, psd
, sd_len
, &sd_len
))
3718 unsigned n_subauthorities
;
3720 /* Use the last sub-authority value of the RID, the relative
3721 portion of the SID, as user/group ID. */
3722 n_subauthorities
= *get_sid_sub_authority_count (sid
);
3723 if (n_subauthorities
< 1)
3724 return 0; /* the "World" RID */
3725 return *get_sid_sub_authority (sid
, n_subauthorities
- 1);
3728 /* Caching SID and account values for faster lokup. */
3731 # define FLEXIBLE_ARRAY_MEMBER
3733 # define FLEXIBLE_ARRAY_MEMBER 1
3738 struct w32_id
*next
;
3740 unsigned char sid
[FLEXIBLE_ARRAY_MEMBER
];
3743 static struct w32_id
*w32_idlist
;
3746 w32_cached_id (PSID sid
, unsigned *id
, char *name
)
3748 struct w32_id
*tail
, *found
;
3750 for (found
= NULL
, tail
= w32_idlist
; tail
; tail
= tail
->next
)
3752 if (equal_sid ((PSID
)tail
->sid
, sid
))
3761 strcpy (name
, found
->name
);
3769 w32_add_to_cache (PSID sid
, unsigned id
, char *name
)
3772 struct w32_id
*new_entry
;
3774 /* We don't want to leave behind stale cache from when Emacs was
3778 sid_len
= get_length_sid (sid
);
3779 new_entry
= xmalloc (offsetof (struct w32_id
, sid
) + sid_len
);
3782 new_entry
->rid
= id
;
3783 strcpy (new_entry
->name
, name
);
3784 copy_sid (sid_len
, (PSID
)new_entry
->sid
, sid
);
3785 new_entry
->next
= w32_idlist
;
3786 w32_idlist
= new_entry
;
3795 get_name_and_id (PSECURITY_DESCRIPTOR psd
, unsigned *id
, char *nm
, int what
)
3799 SID_NAME_USE ignore
;
3801 DWORD name_len
= sizeof (name
);
3803 DWORD domain_len
= sizeof (domain
);
3808 result
= get_security_descriptor_owner (psd
, &sid
, &dflt
);
3809 else if (what
== GID
)
3810 result
= get_security_descriptor_group (psd
, &sid
, &dflt
);
3814 if (!result
|| !is_valid_sid (sid
))
3816 else if (!w32_cached_id (sid
, id
, nm
))
3818 if (!lookup_account_sid (NULL
, sid
, name
, &name_len
,
3819 domain
, &domain_len
, &ignore
)
3820 || name_len
> UNLEN
+1)
3824 *id
= get_rid (sid
);
3826 w32_add_to_cache (sid
, *id
, name
);
3833 get_file_owner_and_group (PSECURITY_DESCRIPTOR psd
, struct stat
*st
)
3835 int dflt_usr
= 0, dflt_grp
= 0;
3844 if (get_name_and_id (psd
, &st
->st_uid
, st
->st_uname
, UID
))
3846 if (get_name_and_id (psd
, &st
->st_gid
, st
->st_gname
, GID
))
3849 /* Consider files to belong to current user/group, if we cannot get
3850 more accurate information. */
3853 st
->st_uid
= dflt_passwd
.pw_uid
;
3854 strcpy (st
->st_uname
, dflt_passwd
.pw_name
);
3858 st
->st_gid
= dflt_passwd
.pw_gid
;
3859 strcpy (st
->st_gname
, dflt_group
.gr_name
);
3863 /* Return non-zero if NAME is a potentially slow filesystem. */
3865 is_slow_fs (const char *name
)
3870 if (IS_DIRECTORY_SEP (name
[0]) && IS_DIRECTORY_SEP (name
[1]))
3871 devtype
= DRIVE_REMOTE
; /* assume UNC name is remote */
3872 else if (!(strlen (name
) >= 2 && IS_DEVICE_SEP (name
[1])))
3873 devtype
= GetDriveType (NULL
); /* use root of current drive */
3876 /* GetDriveType needs the root directory of the drive. */
3877 strncpy (drive_root
, name
, 2);
3878 drive_root
[2] = '\\';
3879 drive_root
[3] = '\0';
3880 devtype
= GetDriveType (drive_root
);
3882 return !(devtype
== DRIVE_FIXED
|| devtype
== DRIVE_RAMDISK
);
3885 /* If this is non-zero, the caller wants accurate information about
3886 file's owner and group, which could be expensive to get. */
3887 int w32_stat_get_owner_group
;
3889 /* MSVC stat function can't cope with UNC names and has other bugs, so
3890 replace it with our own. This also allows us to calculate consistent
3891 inode values and owner/group without hacks in the main Emacs code. */
3894 stat_worker (const char * path
, struct stat
* buf
, int follow_symlinks
)
3896 char *name
, *save_name
, *r
;
3897 WIN32_FIND_DATA wfd
;
3899 unsigned __int64 fake_inode
= 0;
3902 int rootdir
= FALSE
;
3903 PSECURITY_DESCRIPTOR psd
= NULL
;
3904 int is_a_symlink
= 0;
3905 DWORD file_flags
= FILE_FLAG_BACKUP_SEMANTICS
;
3906 DWORD access_rights
= 0;
3907 DWORD fattrs
= 0, serialnum
= 0, fs_high
= 0, fs_low
= 0, nlinks
= 1;
3908 FILETIME ctime
, atime
, wtime
;
3911 if (path
== NULL
|| buf
== NULL
)
3917 save_name
= name
= (char *) map_w32_filename (path
, &path
);
3918 /* Must be valid filename, no wild cards or other invalid
3919 characters. We use _mbspbrk to support multibyte strings that
3920 might look to strpbrk as if they included literal *, ?, and other
3921 characters mentioned below that are disallowed by Windows
3923 if (_mbspbrk (name
, "*?|<>\""))
3929 /* Remove trailing directory separator, unless name is the root
3930 directory of a drive or UNC volume in which case ensure there
3931 is a trailing separator. */
3932 len
= strlen (name
);
3933 name
= strcpy (alloca (len
+ 2), name
);
3935 /* Avoid a somewhat costly call to is_symlink if the filesystem
3936 doesn't support symlinks. */
3937 if ((volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) != 0)
3938 is_a_symlink
= is_symlink (name
);
3940 /* Plan A: Open the file and get all the necessary information via
3941 the resulting handle. This solves several issues in one blow:
3943 . retrieves attributes for the target of a symlink, if needed
3944 . gets attributes of root directories and symlinks pointing to
3945 root directories, thus avoiding the need for special-casing
3946 these and detecting them by examining the file-name format
3947 . retrieves more accurate attributes (e.g., non-zero size for
3948 some directories, esp. directories that are junction points)
3949 . correctly resolves "c:/..", "/.." and similar file names
3950 . avoids run-time penalties for 99% of use cases
3952 Plan A is always tried first, unless the user asked not to (but
3953 if the file is a symlink and we need to follow links, we try Plan
3954 A even if the user asked not to).
3956 If Plan A fails, we go to Plan B (below), where various
3957 potentially expensive techniques must be used to handle "special"
3958 files such as UNC volumes etc. */
3959 if (!(NILP (Vw32_get_true_file_attributes
)
3960 || (EQ (Vw32_get_true_file_attributes
, Qlocal
) && is_slow_fs (name
)))
3961 /* Following symlinks requires getting the info by handle. */
3962 || (is_a_symlink
&& follow_symlinks
))
3964 BY_HANDLE_FILE_INFORMATION info
;
3966 if (is_a_symlink
&& !follow_symlinks
)
3967 file_flags
|= FILE_FLAG_OPEN_REPARSE_POINT
;
3968 /* READ_CONTROL access rights are required to get security info
3969 by handle. But if the OS doesn't support security in the
3970 first place, we don't need to try. */
3971 if (is_windows_9x () != TRUE
)
3972 access_rights
|= READ_CONTROL
;
3974 fh
= CreateFile (name
, access_rights
, 0, NULL
, OPEN_EXISTING
,
3976 /* If CreateFile fails with READ_CONTROL, try again with zero as
3978 if (fh
== INVALID_HANDLE_VALUE
&& access_rights
)
3979 fh
= CreateFile (name
, 0, 0, NULL
, OPEN_EXISTING
,
3981 if (fh
== INVALID_HANDLE_VALUE
)
3982 goto no_true_file_attributes
;
3984 /* This is more accurate in terms of getting the correct number
3985 of links, but is quite slow (it is noticeable when Emacs is
3986 making a list of file name completions). */
3987 if (GetFileInformationByHandle (fh
, &info
))
3989 nlinks
= info
.nNumberOfLinks
;
3990 /* Might as well use file index to fake inode values, but this
3991 is not guaranteed to be unique unless we keep a handle open
3992 all the time (even then there are situations where it is
3993 not unique). Reputedly, there are at most 48 bits of info
3994 (on NTFS, presumably less on FAT). */
3995 fake_inode
= info
.nFileIndexHigh
;
3997 fake_inode
+= info
.nFileIndexLow
;
3998 serialnum
= info
.dwVolumeSerialNumber
;
3999 fs_high
= info
.nFileSizeHigh
;
4000 fs_low
= info
.nFileSizeLow
;
4001 ctime
= info
.ftCreationTime
;
4002 atime
= info
.ftLastAccessTime
;
4003 wtime
= info
.ftLastWriteTime
;
4004 fattrs
= info
.dwFileAttributes
;
4008 /* We don't go to Plan B here, because it's not clear that
4009 it's a good idea. The only known use case where
4010 CreateFile succeeds, but GetFileInformationByHandle fails
4011 (with ERROR_INVALID_FUNCTION) is for character devices
4012 such as NUL, PRN, etc. For these, switching to Plan B is
4013 a net loss, because we lose the character device
4014 attribute returned by GetFileType below (FindFirstFile
4015 doesn't set that bit in the attributes), and the other
4016 fields don't make sense for character devices anyway.
4017 Emacs doesn't really care for non-file entities in the
4018 context of l?stat, so neither do we. */
4020 /* w32err is assigned so one could put a breakpoint here and
4021 examine its value, when GetFileInformationByHandle
4023 DWORD w32err
= GetLastError ();
4027 case ERROR_FILE_NOT_FOUND
: /* can this ever happen? */
4033 /* Test for a symlink before testing for a directory, since
4034 symlinks to directories have the directory bit set, but we
4035 don't want them to appear as directories. */
4036 if (is_a_symlink
&& !follow_symlinks
)
4037 buf
->st_mode
= S_IFLNK
;
4038 else if (fattrs
& FILE_ATTRIBUTE_DIRECTORY
)
4039 buf
->st_mode
= S_IFDIR
;
4042 DWORD ftype
= GetFileType (fh
);
4046 case FILE_TYPE_DISK
:
4047 buf
->st_mode
= S_IFREG
;
4049 case FILE_TYPE_PIPE
:
4050 buf
->st_mode
= S_IFIFO
;
4052 case FILE_TYPE_CHAR
:
4053 case FILE_TYPE_UNKNOWN
:
4055 buf
->st_mode
= S_IFCHR
;
4058 /* We produce the fallback owner and group data, based on the
4059 current user that runs Emacs, in the following cases:
4061 . caller didn't request owner and group info
4062 . this is Windows 9X
4063 . getting security by handle failed, and we need to produce
4064 information for the target of a symlink (this is better
4065 than producing a potentially misleading info about the
4068 If getting security by handle fails, and we don't need to
4069 resolve symlinks, we try getting security by name. */
4070 if (!w32_stat_get_owner_group
|| is_windows_9x () == TRUE
)
4071 get_file_owner_and_group (NULL
, buf
);
4074 psd
= get_file_security_desc_by_handle (fh
);
4077 get_file_owner_and_group (psd
, buf
);
4080 else if (!(is_a_symlink
&& follow_symlinks
))
4082 psd
= get_file_security_desc_by_name (name
);
4083 get_file_owner_and_group (psd
, buf
);
4087 get_file_owner_and_group (NULL
, buf
);
4093 no_true_file_attributes
:
4094 /* Plan B: Either getting a handle on the file failed, or the
4095 caller explicitly asked us to not bother making this
4096 information more accurate.
4098 Implementation note: In Plan B, we never bother to resolve
4099 symlinks, even if we got here because we tried Plan A and
4100 failed. That's because, even if the caller asked for extra
4101 precision by setting Vw32_get_true_file_attributes to t,
4102 resolving symlinks requires acquiring a file handle to the
4103 symlink, which we already know will fail. And if the user
4104 did not ask for extra precision, resolving symlinks will fly
4105 in the face of that request, since the user then wants the
4106 lightweight version of the code. */
4107 dbcs_p
= max_filename_mbslen () > 1;
4108 rootdir
= (path
>= save_name
+ len
- 1
4109 && (IS_DIRECTORY_SEP (*path
) || *path
== 0));
4111 /* If name is "c:/.." or "/.." then stat "c:/" or "/". */
4112 r
= IS_DEVICE_SEP (name
[1]) ? &name
[2] : name
;
4113 if (IS_DIRECTORY_SEP (r
[0])
4114 && r
[1] == '.' && r
[2] == '.' && r
[3] == '\0')
4117 /* Note: If NAME is a symlink to the root of a UNC volume
4118 (i.e. "\\SERVER"), we will not detect that here, and we will
4119 return data about the symlink as result of FindFirst below.
4120 This is unfortunate, but that marginal use case does not
4121 justify a call to chase_symlinks which would impose a penalty
4122 on all the other use cases. (We get here for symlinks to
4123 roots of UNC volumes because CreateFile above fails for them,
4124 unlike with symlinks to root directories X:\ of drives.) */
4125 if (is_unc_volume (name
))
4127 fattrs
= unc_volume_file_attributes (name
);
4131 ctime
= atime
= wtime
= utc_base_ft
;
4137 if (!IS_DIRECTORY_SEP (name
[len
-1]))
4138 strcat (name
, "\\");
4142 char *end
= name
+ len
;
4143 char *n
= CharPrevExA (file_name_codepage
, name
, end
, 0);
4145 if (!IS_DIRECTORY_SEP (*n
))
4146 strcat (name
, "\\");
4148 if (GetDriveType (name
) < 2)
4154 fattrs
= FILE_ATTRIBUTE_DIRECTORY
;
4155 ctime
= atime
= wtime
= utc_base_ft
;
4161 if (IS_DIRECTORY_SEP (name
[len
-1]))
4166 char *end
= name
+ len
;
4167 char *n
= CharPrevExA (file_name_codepage
, name
, end
, 0);
4169 if (IS_DIRECTORY_SEP (*n
))
4173 /* (This is hacky, but helps when doing file completions on
4174 network drives.) Optimize by using information available from
4175 active readdir if possible. */
4176 len
= strlen (dir_pathname
);
4179 if (IS_DIRECTORY_SEP (dir_pathname
[len
-1]))
4184 char *end
= dir_pathname
+ len
;
4185 char *n
= CharPrevExA (file_name_codepage
, dir_pathname
, end
, 0);
4187 if (IS_DIRECTORY_SEP (*n
))
4190 if (dir_find_handle
!= INVALID_HANDLE_VALUE
4191 && !(is_a_symlink
&& follow_symlinks
)
4192 && strnicmp (save_name
, dir_pathname
, len
) == 0
4193 && IS_DIRECTORY_SEP (name
[len
])
4194 && xstrcasecmp (name
+ len
+ 1, dir_static
.d_name
) == 0)
4196 /* This was the last entry returned by readdir. */
4197 wfd
= dir_find_data
;
4201 logon_network_drive (name
);
4203 fh
= FindFirstFile (name
, &wfd
);
4204 if (fh
== INVALID_HANDLE_VALUE
)
4211 /* Note: if NAME is a symlink, the information we get from
4212 FindFirstFile is for the symlink, not its target. */
4213 fattrs
= wfd
.dwFileAttributes
;
4214 ctime
= wfd
.ftCreationTime
;
4215 atime
= wfd
.ftLastAccessTime
;
4216 wtime
= wfd
.ftLastWriteTime
;
4217 fs_high
= wfd
.nFileSizeHigh
;
4218 fs_low
= wfd
.nFileSizeLow
;
4221 serialnum
= volume_info
.serialnum
;
4223 if (is_a_symlink
&& !follow_symlinks
)
4224 buf
->st_mode
= S_IFLNK
;
4225 else if (fattrs
& FILE_ATTRIBUTE_DIRECTORY
)
4226 buf
->st_mode
= S_IFDIR
;
4228 buf
->st_mode
= S_IFREG
;
4230 get_file_owner_and_group (NULL
, buf
);
4234 /* Not sure if there is any point in this. */
4235 if (!NILP (Vw32_generate_fake_inodes
))
4236 fake_inode
= generate_inode_val (name
);
4237 else if (fake_inode
== 0)
4239 /* For want of something better, try to make everything unique. */
4240 static DWORD gen_num
= 0;
4241 fake_inode
= ++gen_num
;
4245 buf
->st_ino
= fake_inode
;
4247 buf
->st_dev
= serialnum
;
4248 buf
->st_rdev
= serialnum
;
4250 buf
->st_size
= fs_high
;
4251 buf
->st_size
<<= 32;
4252 buf
->st_size
+= fs_low
;
4253 buf
->st_nlink
= nlinks
;
4255 /* Convert timestamps to Unix format. */
4256 buf
->st_mtime
= convert_time (wtime
);
4257 buf
->st_atime
= convert_time (atime
);
4258 if (buf
->st_atime
== 0) buf
->st_atime
= buf
->st_mtime
;
4259 buf
->st_ctime
= convert_time (ctime
);
4260 if (buf
->st_ctime
== 0) buf
->st_ctime
= buf
->st_mtime
;
4262 /* determine rwx permissions */
4263 if (is_a_symlink
&& !follow_symlinks
)
4264 permission
= S_IREAD
| S_IWRITE
| S_IEXEC
; /* Posix expectations */
4267 if (fattrs
& FILE_ATTRIBUTE_READONLY
)
4268 permission
= S_IREAD
;
4270 permission
= S_IREAD
| S_IWRITE
;
4272 if (fattrs
& FILE_ATTRIBUTE_DIRECTORY
)
4273 permission
|= S_IEXEC
;
4274 else if (is_exec (name
))
4275 permission
|= S_IEXEC
;
4278 buf
->st_mode
|= permission
| (permission
>> 3) | (permission
>> 6);
4284 stat (const char * path
, struct stat
* buf
)
4286 return stat_worker (path
, buf
, 1);
4290 lstat (const char * path
, struct stat
* buf
)
4292 return stat_worker (path
, buf
, 0);
4296 fstatat (int fd
, char const *name
, struct stat
*st
, int flags
)
4298 /* Rely on a hack: an open directory is modeled as file descriptor 0.
4299 This is good enough for the current usage in Emacs, but is fragile.
4301 FIXME: Add proper support for fdopendir, fstatat, readlinkat.
4302 Gnulib does this and can serve as a model. */
4303 char fullname
[MAX_PATH
];
4307 if (_snprintf (fullname
, sizeof fullname
, "%s/%s", dir_pathname
, name
)
4310 errno
= ENAMETOOLONG
;
4316 return stat_worker (name
, st
, ! (flags
& AT_SYMLINK_NOFOLLOW
));
4319 /* Provide fstat and utime as well as stat for consistent handling of
4322 fstat (int desc
, struct stat
* buf
)
4324 HANDLE fh
= (HANDLE
) _get_osfhandle (desc
);
4325 BY_HANDLE_FILE_INFORMATION info
;
4326 unsigned __int64 fake_inode
;
4329 switch (GetFileType (fh
) & ~FILE_TYPE_REMOTE
)
4331 case FILE_TYPE_DISK
:
4332 buf
->st_mode
= S_IFREG
;
4333 if (!GetFileInformationByHandle (fh
, &info
))
4339 case FILE_TYPE_PIPE
:
4340 buf
->st_mode
= S_IFIFO
;
4342 case FILE_TYPE_CHAR
:
4343 case FILE_TYPE_UNKNOWN
:
4345 buf
->st_mode
= S_IFCHR
;
4347 memset (&info
, 0, sizeof (info
));
4348 info
.dwFileAttributes
= 0;
4349 info
.ftCreationTime
= utc_base_ft
;
4350 info
.ftLastAccessTime
= utc_base_ft
;
4351 info
.ftLastWriteTime
= utc_base_ft
;
4354 if (info
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)
4355 buf
->st_mode
= S_IFDIR
;
4357 buf
->st_nlink
= info
.nNumberOfLinks
;
4358 /* Might as well use file index to fake inode values, but this
4359 is not guaranteed to be unique unless we keep a handle open
4360 all the time (even then there are situations where it is
4361 not unique). Reputedly, there are at most 48 bits of info
4362 (on NTFS, presumably less on FAT). */
4363 fake_inode
= info
.nFileIndexHigh
;
4365 fake_inode
+= info
.nFileIndexLow
;
4367 /* MSVC defines _ino_t to be short; other libc's might not. */
4368 if (sizeof (buf
->st_ino
) == 2)
4369 buf
->st_ino
= fake_inode
^ (fake_inode
>> 16);
4371 buf
->st_ino
= fake_inode
;
4373 /* If the caller so requested, get the true file owner and group.
4374 Otherwise, consider the file to belong to the current user. */
4375 if (!w32_stat_get_owner_group
|| is_windows_9x () == TRUE
)
4376 get_file_owner_and_group (NULL
, buf
);
4379 PSECURITY_DESCRIPTOR psd
= NULL
;
4381 psd
= get_file_security_desc_by_handle (fh
);
4384 get_file_owner_and_group (psd
, buf
);
4388 get_file_owner_and_group (NULL
, buf
);
4391 buf
->st_dev
= info
.dwVolumeSerialNumber
;
4392 buf
->st_rdev
= info
.dwVolumeSerialNumber
;
4394 buf
->st_size
= info
.nFileSizeHigh
;
4395 buf
->st_size
<<= 32;
4396 buf
->st_size
+= info
.nFileSizeLow
;
4398 /* Convert timestamps to Unix format. */
4399 buf
->st_mtime
= convert_time (info
.ftLastWriteTime
);
4400 buf
->st_atime
= convert_time (info
.ftLastAccessTime
);
4401 if (buf
->st_atime
== 0) buf
->st_atime
= buf
->st_mtime
;
4402 buf
->st_ctime
= convert_time (info
.ftCreationTime
);
4403 if (buf
->st_ctime
== 0) buf
->st_ctime
= buf
->st_mtime
;
4405 /* determine rwx permissions */
4406 if (info
.dwFileAttributes
& FILE_ATTRIBUTE_READONLY
)
4407 permission
= S_IREAD
;
4409 permission
= S_IREAD
| S_IWRITE
;
4411 if (info
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)
4412 permission
|= S_IEXEC
;
4415 #if 0 /* no way of knowing the filename */
4416 char * p
= strrchr (name
, '.');
4418 (xstrcasecmp (p
, ".exe") == 0 ||
4419 xstrcasecmp (p
, ".com") == 0 ||
4420 xstrcasecmp (p
, ".bat") == 0 ||
4421 xstrcasecmp (p
, ".cmd") == 0))
4422 permission
|= S_IEXEC
;
4426 buf
->st_mode
|= permission
| (permission
>> 3) | (permission
>> 6);
4432 utime (const char *name
, struct utimbuf
*times
)
4434 struct utimbuf deftime
;
4441 deftime
.modtime
= deftime
.actime
= time (NULL
);
4445 /* Need write access to set times. */
4446 fh
= CreateFile (name
, FILE_WRITE_ATTRIBUTES
,
4447 /* If NAME specifies a directory, FILE_SHARE_DELETE
4448 allows other processes to delete files inside it,
4449 while we have the directory open. */
4450 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
,
4451 0, OPEN_EXISTING
, FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
4452 if (fh
!= INVALID_HANDLE_VALUE
)
4454 convert_from_time_t (times
->actime
, &atime
);
4455 convert_from_time_t (times
->modtime
, &mtime
);
4456 if (!SetFileTime (fh
, NULL
, &atime
, &mtime
))
4473 /* Symlink-related functions. */
4474 #ifndef SYMBOLIC_LINK_FLAG_DIRECTORY
4475 #define SYMBOLIC_LINK_FLAG_DIRECTORY 0x1
4479 symlink (char const *filename
, char const *linkname
)
4481 char linkfn
[MAX_PATH
], *tgtfn
;
4483 int dir_access
, filename_ends_in_slash
;
4486 /* Diagnostics follows Posix as much as possible. */
4487 if (filename
== NULL
|| linkname
== NULL
)
4497 if (strlen (filename
) > MAX_PATH
|| strlen (linkname
) > MAX_PATH
)
4499 errno
= ENAMETOOLONG
;
4503 strcpy (linkfn
, map_w32_filename (linkname
, NULL
));
4504 if ((volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) == 0)
4510 dbcs_p
= max_filename_mbslen () > 1;
4512 /* Note: since empty FILENAME was already rejected, we can safely
4513 refer to FILENAME[1]. */
4514 if (!(IS_DIRECTORY_SEP (filename
[0]) || IS_DEVICE_SEP (filename
[1])))
4516 /* Non-absolute FILENAME is understood as being relative to
4517 LINKNAME's directory. We need to prepend that directory to
4518 FILENAME to get correct results from faccessat below, since
4519 otherwise it will interpret FILENAME relative to the
4520 directory where the Emacs process runs. Note that
4521 make-symbolic-link always makes sure LINKNAME is a fully
4522 expanded file name. */
4524 char *p
= linkfn
+ strlen (linkfn
);
4528 while (p
> linkfn
&& !IS_ANY_SEP (p
[-1]))
4533 char *p1
= CharPrevExA (file_name_codepage
, linkfn
, p
, 0);
4535 while (p
> linkfn
&& !IS_ANY_SEP (*p1
))
4538 p1
= CharPrevExA (file_name_codepage
, linkfn
, p1
, 0);
4542 strncpy (tem
, linkfn
, p
- linkfn
);
4543 tem
[p
- linkfn
] = '\0';
4544 strcat (tem
, filename
);
4545 dir_access
= faccessat (AT_FDCWD
, tem
, D_OK
, AT_EACCESS
);
4548 dir_access
= faccessat (AT_FDCWD
, filename
, D_OK
, AT_EACCESS
);
4550 /* Since Windows distinguishes between symlinks to directories and
4551 to files, we provide a kludgy feature: if FILENAME doesn't
4552 exist, but ends in a slash, we create a symlink to directory. If
4553 FILENAME exists and is a directory, we always create a symlink to
4556 filename_ends_in_slash
= IS_DIRECTORY_SEP (filename
[strlen (filename
) - 1]);
4559 const char *end
= filename
+ strlen (filename
);
4560 const char *n
= CharPrevExA (file_name_codepage
, filename
, end
, 0);
4562 filename_ends_in_slash
= IS_DIRECTORY_SEP (*n
);
4564 if (dir_access
== 0 || filename_ends_in_slash
)
4565 flags
= SYMBOLIC_LINK_FLAG_DIRECTORY
;
4567 tgtfn
= (char *)map_w32_filename (filename
, NULL
);
4568 if (filename_ends_in_slash
)
4569 tgtfn
[strlen (tgtfn
) - 1] = '\0';
4572 if (!create_symbolic_link (linkfn
, tgtfn
, flags
))
4574 /* ENOSYS is set by create_symbolic_link, when it detects that
4575 the OS doesn't support the CreateSymbolicLink API. */
4576 if (errno
!= ENOSYS
)
4578 DWORD w32err
= GetLastError ();
4582 /* ERROR_SUCCESS is sometimes returned when LINKFN and
4583 TGTFN point to the same file name, go figure. */
4585 case ERROR_FILE_EXISTS
:
4588 case ERROR_ACCESS_DENIED
:
4591 case ERROR_FILE_NOT_FOUND
:
4592 case ERROR_PATH_NOT_FOUND
:
4593 case ERROR_BAD_NETPATH
:
4594 case ERROR_INVALID_REPARSE_DATA
:
4597 case ERROR_DIRECTORY
:
4600 case ERROR_PRIVILEGE_NOT_HELD
:
4601 case ERROR_NOT_ALL_ASSIGNED
:
4604 case ERROR_DISK_FULL
:
4617 /* A quick inexpensive test of whether FILENAME identifies a file that
4618 is a symlink. Returns non-zero if it is, zero otherwise. FILENAME
4619 must already be in the normalized form returned by
4622 Note: for repeated operations on many files, it is best to test
4623 whether the underlying volume actually supports symlinks, by
4624 testing the FILE_SUPPORTS_REPARSE_POINTS bit in volume's flags, and
4625 avoid the call to this function if it doesn't. That's because the
4626 call to GetFileAttributes takes a non-negligible time, especially
4627 on non-local or removable filesystems. See stat_worker for an
4628 example of how to do that. */
4630 is_symlink (const char *filename
)
4633 WIN32_FIND_DATA wfd
;
4636 attrs
= GetFileAttributes (filename
);
4639 DWORD w32err
= GetLastError ();
4643 case ERROR_BAD_NETPATH
: /* network share, can't be a symlink */
4645 case ERROR_ACCESS_DENIED
:
4648 case ERROR_FILE_NOT_FOUND
:
4649 case ERROR_PATH_NOT_FOUND
:
4656 if ((attrs
& FILE_ATTRIBUTE_REPARSE_POINT
) == 0)
4658 logon_network_drive (filename
);
4659 fh
= FindFirstFile (filename
, &wfd
);
4660 if (fh
== INVALID_HANDLE_VALUE
)
4663 return (wfd
.dwFileAttributes
& FILE_ATTRIBUTE_REPARSE_POINT
) != 0
4664 && (wfd
.dwReserved0
& IO_REPARSE_TAG_SYMLINK
) == IO_REPARSE_TAG_SYMLINK
;
4667 /* If NAME identifies a symbolic link, copy into BUF the file name of
4668 the symlink's target. Copy at most BUF_SIZE bytes, and do NOT
4669 null-terminate the target name, even if it fits. Return the number
4670 of bytes copied, or -1 if NAME is not a symlink or any error was
4671 encountered while resolving it. The file name copied into BUF is
4672 encoded in the current ANSI codepage. */
4674 readlink (const char *name
, char *buf
, size_t buf_size
)
4677 TOKEN_PRIVILEGES privs
;
4678 int restore_privs
= 0;
4693 path
= map_w32_filename (name
, NULL
);
4695 if (strlen (path
) > MAX_PATH
)
4697 errno
= ENAMETOOLONG
;
4702 if (is_windows_9x () == TRUE
4703 || (volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) == 0
4704 || !is_symlink (path
))
4707 errno
= EINVAL
; /* not a symlink */
4711 /* Done with simple tests, now we're in for some _real_ work. */
4712 if (enable_privilege (SE_BACKUP_NAME
, TRUE
, &privs
))
4714 /* Implementation note: From here and onward, don't return early,
4715 since that will fail to restore the original set of privileges of
4716 the calling thread. */
4718 retval
= -1; /* not too optimistic, are we? */
4720 /* Note: In the next call to CreateFile, we use zero as the 2nd
4721 argument because, when the symlink is a hidden/system file,
4722 e.g. 'C:\Users\All Users', GENERIC_READ fails with
4723 ERROR_ACCESS_DENIED. Zero seems to work just fine, both for file
4724 and directory symlinks. */
4725 sh
= CreateFile (path
, 0, 0, NULL
, OPEN_EXISTING
,
4726 FILE_FLAG_OPEN_REPARSE_POINT
| FILE_FLAG_BACKUP_SEMANTICS
,
4728 if (sh
!= INVALID_HANDLE_VALUE
)
4730 BYTE reparse_buf
[MAXIMUM_REPARSE_DATA_BUFFER_SIZE
];
4731 REPARSE_DATA_BUFFER
*reparse_data
= (REPARSE_DATA_BUFFER
*)&reparse_buf
[0];
4734 if (!DeviceIoControl (sh
, FSCTL_GET_REPARSE_POINT
, NULL
, 0,
4735 reparse_buf
, MAXIMUM_REPARSE_DATA_BUFFER_SIZE
,
4738 else if (reparse_data
->ReparseTag
!= IO_REPARSE_TAG_SYMLINK
)
4742 /* Copy the link target name, in wide characters, from
4743 reparse_data, then convert it to multibyte encoding in
4744 the current locale's codepage. */
4746 BYTE lname
[MAX_PATH
];
4749 reparse_data
->SymbolicLinkReparseBuffer
.PrintNameLength
;
4751 reparse_data
->SymbolicLinkReparseBuffer
.PathBuffer
4752 + reparse_data
->SymbolicLinkReparseBuffer
.PrintNameOffset
/sizeof(WCHAR
);
4753 /* This updates file_name_codepage which we need below. */
4754 int dbcs_p
= max_filename_mbslen () > 1;
4756 /* According to MSDN, PrintNameLength does not include the
4757 terminating null character. */
4758 lwname
= alloca ((lwname_len
+ 1) * sizeof(WCHAR
));
4759 memcpy (lwname
, lwname_src
, lwname_len
);
4760 lwname
[lwname_len
/sizeof(WCHAR
)] = 0; /* null-terminate */
4762 lname_len
= WideCharToMultiByte (file_name_codepage
, 0, lwname
, -1,
4763 lname
, MAX_PATH
, NULL
, NULL
);
4766 /* WideCharToMultiByte failed. */
4767 DWORD w32err1
= GetLastError ();
4771 case ERROR_INSUFFICIENT_BUFFER
:
4772 errno
= ENAMETOOLONG
;
4774 case ERROR_INVALID_PARAMETER
:
4777 case ERROR_NO_UNICODE_TRANSLATION
:
4787 size_t size_to_copy
= buf_size
;
4788 BYTE
*p
= lname
, *p2
;
4789 BYTE
*pend
= p
+ lname_len
;
4791 /* Normalize like dostounix_filename does, but we don't
4792 want to assume that lname is null-terminated. */
4794 p2
= CharNextExA (file_name_codepage
, p
, 0);
4797 if (*p
&& *p2
== ':' && *p
>= 'A' && *p
<= 'Z')
4808 p
= CharNextExA (file_name_codepage
, p
, 0);
4809 /* CharNextExA doesn't advance at null character. */
4816 /* Testing for null-terminated LNAME is paranoia:
4817 WideCharToMultiByte should always return a
4818 null-terminated string when its 4th argument is -1
4819 and its 3rd argument is null-terminated (which they
4821 if (lname
[lname_len
- 1] == '\0')
4823 if (lname_len
<= buf_size
)
4824 size_to_copy
= lname_len
;
4825 strncpy (buf
, lname
, size_to_copy
);
4827 retval
= size_to_copy
;
4834 /* CreateFile failed. */
4835 DWORD w32err2
= GetLastError ();
4839 case ERROR_FILE_NOT_FOUND
:
4840 case ERROR_PATH_NOT_FOUND
:
4843 case ERROR_ACCESS_DENIED
:
4844 case ERROR_TOO_MANY_OPEN_FILES
:
4854 restore_privilege (&privs
);
4862 readlinkat (int fd
, char const *name
, char *buffer
,
4865 /* Rely on a hack: an open directory is modeled as file descriptor 0,
4866 as in fstatat. FIXME: Add proper support for readlinkat. */
4867 char fullname
[MAX_PATH
];
4871 if (_snprintf (fullname
, sizeof fullname
, "%s/%s", dir_pathname
, name
)
4874 errno
= ENAMETOOLONG
;
4880 return readlink (name
, buffer
, buffer_size
);
4883 /* If FILE is a symlink, return its target (stored in a static
4884 buffer); otherwise return FILE.
4886 This function repeatedly resolves symlinks in the last component of
4887 a chain of symlink file names, as in foo -> bar -> baz -> ...,
4888 until it arrives at a file whose last component is not a symlink,
4889 or some error occurs. It returns the target of the last
4890 successfully resolved symlink in the chain. If it succeeds to
4891 resolve even a single symlink, the value returned is an absolute
4892 file name with backslashes (result of GetFullPathName). By
4893 contrast, if the original FILE is returned, it is unaltered.
4895 Note: This function can set errno even if it succeeds.
4897 Implementation note: we only resolve the last portion ("basename")
4898 of the argument FILE and of each following file in the chain,
4899 disregarding any possible symlinks in its leading directories.
4900 This is because Windows system calls and library functions
4901 transparently resolve symlinks in leading directories and return
4902 correct information, as long as the basename is not a symlink. */
4904 chase_symlinks (const char *file
)
4906 static char target
[MAX_PATH
];
4907 char link
[MAX_PATH
];
4908 ssize_t res
, link_len
;
4912 if (is_windows_9x () == TRUE
|| !is_symlink (file
))
4913 return (char *)file
;
4915 if ((link_len
= GetFullPathName (file
, MAX_PATH
, link
, NULL
)) == 0)
4916 return (char *)file
;
4918 dbcs_p
= max_filename_mbslen () > 1;
4922 /* Remove trailing slashes, as we want to resolve the last
4923 non-trivial part of the link name. */
4926 while (link_len
> 3 && IS_DIRECTORY_SEP (link
[link_len
-1]))
4927 link
[link_len
--] = '\0';
4929 else if (link_len
> 3)
4931 char *n
= CharPrevExA (file_name_codepage
, link
, link
+ link_len
, 0);
4933 while (n
>= link
+ 2 && IS_DIRECTORY_SEP (*n
))
4936 n
= CharPrevExA (file_name_codepage
, link
, n
, 0);
4940 res
= readlink (link
, target
, MAX_PATH
);
4944 if (!(IS_DEVICE_SEP (target
[1])
4945 || (IS_DIRECTORY_SEP (target
[0]) && IS_DIRECTORY_SEP (target
[1]))))
4947 /* Target is relative. Append it to the directory part of
4948 the symlink, then copy the result back to target. */
4949 char *p
= link
+ link_len
;
4953 while (p
> link
&& !IS_ANY_SEP (p
[-1]))
4958 char *p1
= CharPrevExA (file_name_codepage
, link
, p
, 0);
4960 while (p
> link
&& !IS_ANY_SEP (*p1
))
4963 p1
= CharPrevExA (file_name_codepage
, link
, p1
, 0);
4967 strcpy (target
, link
);
4969 /* Resolve any "." and ".." to get a fully-qualified file name
4971 link_len
= GetFullPathName (target
, MAX_PATH
, link
, NULL
);
4973 } while (res
> 0 && link_len
> 0 && ++loop_count
<= 100);
4975 if (loop_count
> 100)
4978 if (target
[0] == '\0') /* not a single call to readlink succeeded */
4979 return (char *)file
;
4984 /* Posix ACL emulation. */
4987 acl_valid (acl_t acl
)
4989 return is_valid_security_descriptor ((PSECURITY_DESCRIPTOR
)acl
) ? 0 : -1;
4993 acl_to_text (acl_t acl
, ssize_t
*size
)
4996 SECURITY_INFORMATION flags
=
4997 OWNER_SECURITY_INFORMATION
|
4998 GROUP_SECURITY_INFORMATION
|
4999 DACL_SECURITY_INFORMATION
;
5000 char *retval
= NULL
;
5006 if (convert_sd_to_sddl ((PSECURITY_DESCRIPTOR
)acl
, SDDL_REVISION_1
, flags
, &str_acl
, &local_size
))
5009 /* We don't want to mix heaps, so we duplicate the string in our
5010 heap and free the one allocated by the API. */
5011 retval
= xstrdup (str_acl
);
5014 LocalFree (str_acl
);
5016 else if (errno
!= ENOTSUP
)
5023 acl_from_text (const char *acl_str
)
5025 PSECURITY_DESCRIPTOR psd
, retval
= NULL
;
5031 if (convert_sddl_to_sd (acl_str
, SDDL_REVISION_1
, &psd
, &sd_size
))
5034 retval
= xmalloc (sd_size
);
5035 memcpy (retval
, psd
, sd_size
);
5038 else if (errno
!= ENOTSUP
)
5045 acl_free (void *ptr
)
5052 acl_get_file (const char *fname
, acl_type_t type
)
5054 PSECURITY_DESCRIPTOR psd
= NULL
;
5055 const char *filename
;
5057 if (type
== ACL_TYPE_ACCESS
)
5060 SECURITY_INFORMATION si
=
5061 OWNER_SECURITY_INFORMATION
|
5062 GROUP_SECURITY_INFORMATION
|
5063 DACL_SECURITY_INFORMATION
;
5066 filename
= map_w32_filename (fname
, NULL
);
5067 if ((volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) != 0)
5068 fname
= chase_symlinks (filename
);
5073 if (!get_file_security (fname
, si
, psd
, 0, &sd_len
)
5074 && errno
!= ENOTSUP
)
5076 err
= GetLastError ();
5077 if (err
== ERROR_INSUFFICIENT_BUFFER
)
5079 psd
= xmalloc (sd_len
);
5080 if (!get_file_security (fname
, si
, psd
, sd_len
, &sd_len
))
5087 else if (err
== ERROR_FILE_NOT_FOUND
5088 || err
== ERROR_PATH_NOT_FOUND
)
5096 else if (type
!= ACL_TYPE_DEFAULT
)
5103 acl_set_file (const char *fname
, acl_type_t type
, acl_t acl
)
5105 TOKEN_PRIVILEGES old1
, old2
;
5107 int st
= 0, retval
= -1;
5108 SECURITY_INFORMATION flags
= 0;
5114 const char *filename
;
5116 if (acl_valid (acl
) != 0
5117 || (type
!= ACL_TYPE_DEFAULT
&& type
!= ACL_TYPE_ACCESS
))
5123 if (type
== ACL_TYPE_DEFAULT
)
5129 filename
= map_w32_filename (fname
, NULL
);
5130 if ((volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) != 0)
5131 fname
= chase_symlinks (filename
);
5135 if (get_security_descriptor_owner ((PSECURITY_DESCRIPTOR
)acl
, &psid
, &dflt
)
5137 flags
|= OWNER_SECURITY_INFORMATION
;
5138 if (get_security_descriptor_group ((PSECURITY_DESCRIPTOR
)acl
, &psid
, &dflt
)
5140 flags
|= GROUP_SECURITY_INFORMATION
;
5141 if (get_security_descriptor_dacl ((PSECURITY_DESCRIPTOR
)acl
, &dacl_present
,
5144 flags
|= DACL_SECURITY_INFORMATION
;
5148 /* According to KB-245153, setting the owner will succeed if either:
5149 (1) the caller is the user who will be the new owner, and has the
5150 SE_TAKE_OWNERSHIP privilege, or
5151 (2) the caller has the SE_RESTORE privilege, in which case she can
5152 set any valid user or group as the owner
5154 We request below both SE_TAKE_OWNERSHIP and SE_RESTORE
5155 privileges, and disregard any failures in obtaining them. If
5156 these privileges cannot be obtained, and do not already exist in
5157 the calling thread's security token, this function could fail
5159 if (enable_privilege (SE_TAKE_OWNERSHIP_NAME
, TRUE
, &old1
))
5161 if (enable_privilege (SE_RESTORE_NAME
, TRUE
, &old2
))
5166 if (!set_file_security ((char *)fname
, flags
, (PSECURITY_DESCRIPTOR
)acl
))
5168 err
= GetLastError ();
5170 if (errno
== ENOTSUP
)
5172 else if (err
== ERROR_INVALID_OWNER
5173 || err
== ERROR_NOT_ALL_ASSIGNED
5174 || err
== ERROR_ACCESS_DENIED
)
5176 /* Maybe the requested ACL and the one the file already has
5177 are identical, in which case we can silently ignore the
5178 failure. (And no, Windows doesn't.) */
5179 acl_t current_acl
= acl_get_file (fname
, ACL_TYPE_ACCESS
);
5184 char *acl_from
= acl_to_text (current_acl
, NULL
);
5185 char *acl_to
= acl_to_text (acl
, NULL
);
5187 if (acl_from
&& acl_to
&& xstrcasecmp (acl_from
, acl_to
) == 0)
5193 acl_free (acl_from
);
5196 acl_free (current_acl
);
5199 else if (err
== ERROR_FILE_NOT_FOUND
|| err
== ERROR_PATH_NOT_FOUND
)
5213 restore_privilege (&old2
);
5214 restore_privilege (&old1
);
5222 /* MS-Windows version of careadlinkat (cf. ../lib/careadlinkat.c). We
5223 have a fixed max size for file names, so we don't need the kind of
5224 alloc/malloc/realloc dance the gnulib version does. We also don't
5225 support FD-relative symlinks. */
5227 careadlinkat (int fd
, char const *filename
,
5228 char *buffer
, size_t buffer_size
,
5229 struct allocator
const *alloc
,
5230 ssize_t (*preadlinkat
) (int, char const *, char *, size_t))
5232 char linkname
[MAX_PATH
];
5235 link_size
= preadlinkat (fd
, filename
, linkname
, sizeof(linkname
));
5239 char *retval
= buffer
;
5241 linkname
[link_size
++] = '\0';
5242 if (link_size
> buffer_size
)
5243 retval
= (char *)(alloc
? alloc
->allocate
: xmalloc
) (link_size
);
5245 memcpy (retval
, linkname
, link_size
);
5253 /* Support for browsing other processes and their attributes. See
5254 process.c for the Lisp bindings. */
5256 /* Helper wrapper functions. */
5258 static HANDLE WINAPI
5259 create_toolhelp32_snapshot (DWORD Flags
, DWORD Ignored
)
5261 static CreateToolhelp32Snapshot_Proc s_pfn_Create_Toolhelp32_Snapshot
= NULL
;
5263 if (g_b_init_create_toolhelp32_snapshot
== 0)
5265 g_b_init_create_toolhelp32_snapshot
= 1;
5266 s_pfn_Create_Toolhelp32_Snapshot
= (CreateToolhelp32Snapshot_Proc
)
5267 GetProcAddress (GetModuleHandle ("kernel32.dll"),
5268 "CreateToolhelp32Snapshot");
5270 if (s_pfn_Create_Toolhelp32_Snapshot
== NULL
)
5272 return INVALID_HANDLE_VALUE
;
5274 return (s_pfn_Create_Toolhelp32_Snapshot (Flags
, Ignored
));
5278 process32_first (HANDLE hSnapshot
, LPPROCESSENTRY32 lppe
)
5280 static Process32First_Proc s_pfn_Process32_First
= NULL
;
5282 if (g_b_init_process32_first
== 0)
5284 g_b_init_process32_first
= 1;
5285 s_pfn_Process32_First
= (Process32First_Proc
)
5286 GetProcAddress (GetModuleHandle ("kernel32.dll"),
5289 if (s_pfn_Process32_First
== NULL
)
5293 return (s_pfn_Process32_First (hSnapshot
, lppe
));
5297 process32_next (HANDLE hSnapshot
, LPPROCESSENTRY32 lppe
)
5299 static Process32Next_Proc s_pfn_Process32_Next
= NULL
;
5301 if (g_b_init_process32_next
== 0)
5303 g_b_init_process32_next
= 1;
5304 s_pfn_Process32_Next
= (Process32Next_Proc
)
5305 GetProcAddress (GetModuleHandle ("kernel32.dll"),
5308 if (s_pfn_Process32_Next
== NULL
)
5312 return (s_pfn_Process32_Next (hSnapshot
, lppe
));
5316 open_thread_token (HANDLE ThreadHandle
,
5317 DWORD DesiredAccess
,
5319 PHANDLE TokenHandle
)
5321 static OpenThreadToken_Proc s_pfn_Open_Thread_Token
= NULL
;
5322 HMODULE hm_advapi32
= NULL
;
5323 if (is_windows_9x () == TRUE
)
5325 SetLastError (ERROR_NOT_SUPPORTED
);
5328 if (g_b_init_open_thread_token
== 0)
5330 g_b_init_open_thread_token
= 1;
5331 hm_advapi32
= LoadLibrary ("Advapi32.dll");
5332 s_pfn_Open_Thread_Token
=
5333 (OpenThreadToken_Proc
) GetProcAddress (hm_advapi32
, "OpenThreadToken");
5335 if (s_pfn_Open_Thread_Token
== NULL
)
5337 SetLastError (ERROR_NOT_SUPPORTED
);
5341 s_pfn_Open_Thread_Token (
5350 impersonate_self (SECURITY_IMPERSONATION_LEVEL ImpersonationLevel
)
5352 static ImpersonateSelf_Proc s_pfn_Impersonate_Self
= NULL
;
5353 HMODULE hm_advapi32
= NULL
;
5354 if (is_windows_9x () == TRUE
)
5358 if (g_b_init_impersonate_self
== 0)
5360 g_b_init_impersonate_self
= 1;
5361 hm_advapi32
= LoadLibrary ("Advapi32.dll");
5362 s_pfn_Impersonate_Self
=
5363 (ImpersonateSelf_Proc
) GetProcAddress (hm_advapi32
, "ImpersonateSelf");
5365 if (s_pfn_Impersonate_Self
== NULL
)
5369 return s_pfn_Impersonate_Self (ImpersonationLevel
);
5373 revert_to_self (void)
5375 static RevertToSelf_Proc s_pfn_Revert_To_Self
= NULL
;
5376 HMODULE hm_advapi32
= NULL
;
5377 if (is_windows_9x () == TRUE
)
5381 if (g_b_init_revert_to_self
== 0)
5383 g_b_init_revert_to_self
= 1;
5384 hm_advapi32
= LoadLibrary ("Advapi32.dll");
5385 s_pfn_Revert_To_Self
=
5386 (RevertToSelf_Proc
) GetProcAddress (hm_advapi32
, "RevertToSelf");
5388 if (s_pfn_Revert_To_Self
== NULL
)
5392 return s_pfn_Revert_To_Self ();
5396 get_process_memory_info (HANDLE h_proc
,
5397 PPROCESS_MEMORY_COUNTERS mem_counters
,
5400 static GetProcessMemoryInfo_Proc s_pfn_Get_Process_Memory_Info
= NULL
;
5401 HMODULE hm_psapi
= NULL
;
5402 if (is_windows_9x () == TRUE
)
5406 if (g_b_init_get_process_memory_info
== 0)
5408 g_b_init_get_process_memory_info
= 1;
5409 hm_psapi
= LoadLibrary ("Psapi.dll");
5411 s_pfn_Get_Process_Memory_Info
= (GetProcessMemoryInfo_Proc
)
5412 GetProcAddress (hm_psapi
, "GetProcessMemoryInfo");
5414 if (s_pfn_Get_Process_Memory_Info
== NULL
)
5418 return s_pfn_Get_Process_Memory_Info (h_proc
, mem_counters
, bufsize
);
5422 get_process_working_set_size (HANDLE h_proc
,
5426 static GetProcessWorkingSetSize_Proc
5427 s_pfn_Get_Process_Working_Set_Size
= NULL
;
5429 if (is_windows_9x () == TRUE
)
5433 if (g_b_init_get_process_working_set_size
== 0)
5435 g_b_init_get_process_working_set_size
= 1;
5436 s_pfn_Get_Process_Working_Set_Size
= (GetProcessWorkingSetSize_Proc
)
5437 GetProcAddress (GetModuleHandle ("kernel32.dll"),
5438 "GetProcessWorkingSetSize");
5440 if (s_pfn_Get_Process_Working_Set_Size
== NULL
)
5444 return s_pfn_Get_Process_Working_Set_Size (h_proc
, minrss
, maxrss
);
5448 global_memory_status (MEMORYSTATUS
*buf
)
5450 static GlobalMemoryStatus_Proc s_pfn_Global_Memory_Status
= NULL
;
5452 if (is_windows_9x () == TRUE
)
5456 if (g_b_init_global_memory_status
== 0)
5458 g_b_init_global_memory_status
= 1;
5459 s_pfn_Global_Memory_Status
= (GlobalMemoryStatus_Proc
)
5460 GetProcAddress (GetModuleHandle ("kernel32.dll"),
5461 "GlobalMemoryStatus");
5463 if (s_pfn_Global_Memory_Status
== NULL
)
5467 return s_pfn_Global_Memory_Status (buf
);
5471 global_memory_status_ex (MEMORY_STATUS_EX
*buf
)
5473 static GlobalMemoryStatusEx_Proc s_pfn_Global_Memory_Status_Ex
= NULL
;
5475 if (is_windows_9x () == TRUE
)
5479 if (g_b_init_global_memory_status_ex
== 0)
5481 g_b_init_global_memory_status_ex
= 1;
5482 s_pfn_Global_Memory_Status_Ex
= (GlobalMemoryStatusEx_Proc
)
5483 GetProcAddress (GetModuleHandle ("kernel32.dll"),
5484 "GlobalMemoryStatusEx");
5486 if (s_pfn_Global_Memory_Status_Ex
== NULL
)
5490 return s_pfn_Global_Memory_Status_Ex (buf
);
5494 list_system_processes (void)
5496 struct gcpro gcpro1
;
5497 Lisp_Object proclist
= Qnil
;
5500 h_snapshot
= create_toolhelp32_snapshot (TH32CS_SNAPPROCESS
, 0);
5502 if (h_snapshot
!= INVALID_HANDLE_VALUE
)
5504 PROCESSENTRY32 proc_entry
;
5510 proc_entry
.dwSize
= sizeof (PROCESSENTRY32
);
5511 for (res
= process32_first (h_snapshot
, &proc_entry
); res
;
5512 res
= process32_next (h_snapshot
, &proc_entry
))
5514 proc_id
= proc_entry
.th32ProcessID
;
5515 proclist
= Fcons (make_fixnum_or_float (proc_id
), proclist
);
5518 CloseHandle (h_snapshot
);
5520 proclist
= Fnreverse (proclist
);
5527 enable_privilege (LPCTSTR priv_name
, BOOL enable_p
, TOKEN_PRIVILEGES
*old_priv
)
5529 TOKEN_PRIVILEGES priv
;
5530 DWORD priv_size
= sizeof (priv
);
5531 DWORD opriv_size
= sizeof (*old_priv
);
5532 HANDLE h_token
= NULL
;
5533 HANDLE h_thread
= GetCurrentThread ();
5537 res
= open_thread_token (h_thread
,
5538 TOKEN_QUERY
| TOKEN_ADJUST_PRIVILEGES
,
5540 if (!res
&& GetLastError () == ERROR_NO_TOKEN
)
5542 if (impersonate_self (SecurityImpersonation
))
5543 res
= open_thread_token (h_thread
,
5544 TOKEN_QUERY
| TOKEN_ADJUST_PRIVILEGES
,
5549 priv
.PrivilegeCount
= 1;
5550 priv
.Privileges
[0].Attributes
= enable_p
? SE_PRIVILEGE_ENABLED
: 0;
5551 LookupPrivilegeValue (NULL
, priv_name
, &priv
.Privileges
[0].Luid
);
5552 if (AdjustTokenPrivileges (h_token
, FALSE
, &priv
, priv_size
,
5553 old_priv
, &opriv_size
)
5554 && GetLastError () != ERROR_NOT_ALL_ASSIGNED
)
5558 CloseHandle (h_token
);
5564 restore_privilege (TOKEN_PRIVILEGES
*priv
)
5566 DWORD priv_size
= sizeof (*priv
);
5567 HANDLE h_token
= NULL
;
5570 if (open_thread_token (GetCurrentThread (),
5571 TOKEN_QUERY
| TOKEN_ADJUST_PRIVILEGES
,
5574 if (AdjustTokenPrivileges (h_token
, FALSE
, priv
, priv_size
, NULL
, NULL
)
5575 && GetLastError () != ERROR_NOT_ALL_ASSIGNED
)
5579 CloseHandle (h_token
);
5585 ltime (ULONGLONG time_100ns
)
5587 ULONGLONG time_sec
= time_100ns
/ 10000000;
5588 int subsec
= time_100ns
% 10000000;
5589 return list4i (time_sec
>> 16, time_sec
& 0xffff,
5590 subsec
/ 10, subsec
% 10 * 100000);
5593 #define U64_TO_LISP_TIME(time) ltime (time)
5596 process_times (HANDLE h_proc
, Lisp_Object
*ctime
, Lisp_Object
*etime
,
5597 Lisp_Object
*stime
, Lisp_Object
*utime
, Lisp_Object
*ttime
,
5600 FILETIME ft_creation
, ft_exit
, ft_kernel
, ft_user
, ft_current
;
5601 ULONGLONG tem1
, tem2
, tem3
, tem
;
5604 || !get_process_times_fn
5605 || !(*get_process_times_fn
) (h_proc
, &ft_creation
, &ft_exit
,
5606 &ft_kernel
, &ft_user
))
5609 GetSystemTimeAsFileTime (&ft_current
);
5611 FILETIME_TO_U64 (tem1
, ft_kernel
);
5612 *stime
= U64_TO_LISP_TIME (tem1
);
5614 FILETIME_TO_U64 (tem2
, ft_user
);
5615 *utime
= U64_TO_LISP_TIME (tem2
);
5618 *ttime
= U64_TO_LISP_TIME (tem3
);
5620 FILETIME_TO_U64 (tem
, ft_creation
);
5621 /* Process no 4 (System) returns zero creation time. */
5624 *ctime
= U64_TO_LISP_TIME (tem
);
5628 FILETIME_TO_U64 (tem3
, ft_current
);
5629 tem
= (tem3
- utc_base
) - tem
;
5631 *etime
= U64_TO_LISP_TIME (tem
);
5635 *pcpu
= 100.0 * (tem1
+ tem2
) / tem
;
5646 system_process_attributes (Lisp_Object pid
)
5648 struct gcpro gcpro1
, gcpro2
, gcpro3
;
5649 Lisp_Object attrs
= Qnil
;
5650 Lisp_Object cmd_str
, decoded_cmd
, tem
;
5651 HANDLE h_snapshot
, h_proc
;
5654 char uname
[UNLEN
+1], gname
[GNLEN
+1], domain
[1025];
5655 DWORD ulength
= sizeof (uname
), dlength
= sizeof (domain
), needed
;
5656 DWORD glength
= sizeof (gname
);
5657 HANDLE token
= NULL
;
5658 SID_NAME_USE user_type
;
5659 unsigned char *buf
= NULL
;
5661 TOKEN_USER user_token
;
5662 TOKEN_PRIMARY_GROUP group_token
;
5665 PROCESS_MEMORY_COUNTERS mem
;
5666 PROCESS_MEMORY_COUNTERS_EX mem_ex
;
5667 SIZE_T minrss
, maxrss
;
5669 MEMORY_STATUS_EX memstex
;
5670 double totphys
= 0.0;
5671 Lisp_Object ctime
, stime
, utime
, etime
, ttime
;
5673 BOOL result
= FALSE
;
5675 CHECK_NUMBER_OR_FLOAT (pid
);
5676 proc_id
= FLOATP (pid
) ? XFLOAT_DATA (pid
) : XINT (pid
);
5678 h_snapshot
= create_toolhelp32_snapshot (TH32CS_SNAPPROCESS
, 0);
5680 GCPRO3 (attrs
, decoded_cmd
, tem
);
5682 if (h_snapshot
!= INVALID_HANDLE_VALUE
)
5687 pe
.dwSize
= sizeof (PROCESSENTRY32
);
5688 for (res
= process32_first (h_snapshot
, &pe
); res
;
5689 res
= process32_next (h_snapshot
, &pe
))
5691 if (proc_id
== pe
.th32ProcessID
)
5694 decoded_cmd
= build_string ("Idle");
5697 /* Decode the command name from locale-specific
5699 cmd_str
= make_unibyte_string (pe
.szExeFile
,
5700 strlen (pe
.szExeFile
));
5702 code_convert_string_norecord (cmd_str
,
5703 Vlocale_coding_system
, 0);
5705 attrs
= Fcons (Fcons (Qcomm
, decoded_cmd
), attrs
);
5706 attrs
= Fcons (Fcons (Qppid
,
5707 make_fixnum_or_float (pe
.th32ParentProcessID
)),
5709 attrs
= Fcons (Fcons (Qpri
, make_number (pe
.pcPriClassBase
)),
5711 attrs
= Fcons (Fcons (Qthcount
,
5712 make_fixnum_or_float (pe
.cntThreads
)),
5719 CloseHandle (h_snapshot
);
5728 h_proc
= OpenProcess (PROCESS_QUERY_INFORMATION
| PROCESS_VM_READ
,
5730 /* If we were denied a handle to the process, try again after
5731 enabling the SeDebugPrivilege in our process. */
5734 TOKEN_PRIVILEGES priv_current
;
5736 if (enable_privilege (SE_DEBUG_NAME
, TRUE
, &priv_current
))
5738 h_proc
= OpenProcess (PROCESS_QUERY_INFORMATION
| PROCESS_VM_READ
,
5740 restore_privilege (&priv_current
);
5746 result
= open_process_token (h_proc
, TOKEN_QUERY
, &token
);
5749 result
= get_token_information (token
, TokenUser
, NULL
, 0, &blen
);
5750 if (!result
&& GetLastError () == ERROR_INSUFFICIENT_BUFFER
)
5752 buf
= xmalloc (blen
);
5753 result
= get_token_information (token
, TokenUser
,
5754 (LPVOID
)buf
, blen
, &needed
);
5757 memcpy (&user_token
, buf
, sizeof (user_token
));
5758 if (!w32_cached_id (user_token
.User
.Sid
, &euid
, uname
))
5760 euid
= get_rid (user_token
.User
.Sid
);
5761 result
= lookup_account_sid (NULL
, user_token
.User
.Sid
,
5766 w32_add_to_cache (user_token
.User
.Sid
, euid
, uname
);
5769 strcpy (uname
, "unknown");
5773 ulength
= strlen (uname
);
5779 /* Determine a reasonable euid and gid values. */
5780 if (xstrcasecmp ("administrator", uname
) == 0)
5782 euid
= 500; /* well-known Administrator uid */
5783 egid
= 513; /* well-known None gid */
5787 /* Get group id and name. */
5788 result
= get_token_information (token
, TokenPrimaryGroup
,
5789 (LPVOID
)buf
, blen
, &needed
);
5790 if (!result
&& GetLastError () == ERROR_INSUFFICIENT_BUFFER
)
5792 buf
= xrealloc (buf
, blen
= needed
);
5793 result
= get_token_information (token
, TokenPrimaryGroup
,
5794 (LPVOID
)buf
, blen
, &needed
);
5798 memcpy (&group_token
, buf
, sizeof (group_token
));
5799 if (!w32_cached_id (group_token
.PrimaryGroup
, &egid
, gname
))
5801 egid
= get_rid (group_token
.PrimaryGroup
);
5802 dlength
= sizeof (domain
);
5804 lookup_account_sid (NULL
, group_token
.PrimaryGroup
,
5805 gname
, &glength
, NULL
, &dlength
,
5808 w32_add_to_cache (group_token
.PrimaryGroup
,
5812 strcpy (gname
, "None");
5816 glength
= strlen (gname
);
5824 if (!is_windows_9x ())
5826 /* We couldn't open the process token, presumably because of
5827 insufficient access rights. Assume this process is run
5829 strcpy (uname
, "SYSTEM");
5830 strcpy (gname
, "None");
5831 euid
= 18; /* SYSTEM */
5832 egid
= 513; /* None */
5833 glength
= strlen (gname
);
5834 ulength
= strlen (uname
);
5836 /* If we are running under Windows 9X, where security calls are
5837 not supported, we assume all processes are run by the current
5839 else if (GetUserName (uname
, &ulength
))
5841 if (xstrcasecmp ("administrator", uname
) == 0)
5846 strcpy (gname
, "None");
5847 glength
= strlen (gname
);
5848 ulength
= strlen (uname
);
5854 strcpy (uname
, "administrator");
5855 ulength
= strlen (uname
);
5856 strcpy (gname
, "None");
5857 glength
= strlen (gname
);
5860 CloseHandle (token
);
5863 attrs
= Fcons (Fcons (Qeuid
, make_fixnum_or_float (euid
)), attrs
);
5864 tem
= make_unibyte_string (uname
, ulength
);
5865 attrs
= Fcons (Fcons (Quser
,
5866 code_convert_string_norecord (tem
, Vlocale_coding_system
, 0)),
5868 attrs
= Fcons (Fcons (Qegid
, make_fixnum_or_float (egid
)), attrs
);
5869 tem
= make_unibyte_string (gname
, glength
);
5870 attrs
= Fcons (Fcons (Qgroup
,
5871 code_convert_string_norecord (tem
, Vlocale_coding_system
, 0)),
5874 if (global_memory_status_ex (&memstex
))
5875 #if __GNUC__ || (defined (_MSC_VER) && _MSC_VER >= 1300)
5876 totphys
= memstex
.ullTotalPhys
/ 1024.0;
5878 /* Visual Studio 6 cannot convert an unsigned __int64 type to
5879 double, so we need to do this for it... */
5881 DWORD tot_hi
= memstex
.ullTotalPhys
>> 32;
5882 DWORD tot_md
= (memstex
.ullTotalPhys
& 0x00000000ffffffff) >> 10;
5883 DWORD tot_lo
= memstex
.ullTotalPhys
% 1024;
5885 totphys
= tot_hi
* 4194304.0 + tot_md
+ tot_lo
/ 1024.0;
5887 #endif /* __GNUC__ || _MSC_VER >= 1300 */
5888 else if (global_memory_status (&memst
))
5889 totphys
= memst
.dwTotalPhys
/ 1024.0;
5892 && get_process_memory_info (h_proc
, (PROCESS_MEMORY_COUNTERS
*)&mem_ex
,
5895 SIZE_T rss
= mem_ex
.WorkingSetSize
/ 1024;
5897 attrs
= Fcons (Fcons (Qmajflt
,
5898 make_fixnum_or_float (mem_ex
.PageFaultCount
)),
5900 attrs
= Fcons (Fcons (Qvsize
,
5901 make_fixnum_or_float (mem_ex
.PrivateUsage
/ 1024)),
5903 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (rss
)), attrs
);
5905 attrs
= Fcons (Fcons (Qpmem
, make_float (100. * rss
/ totphys
)), attrs
);
5908 && get_process_memory_info (h_proc
, &mem
, sizeof (mem
)))
5910 SIZE_T rss
= mem_ex
.WorkingSetSize
/ 1024;
5912 attrs
= Fcons (Fcons (Qmajflt
,
5913 make_fixnum_or_float (mem
.PageFaultCount
)),
5915 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (rss
)), attrs
);
5917 attrs
= Fcons (Fcons (Qpmem
, make_float (100. * rss
/ totphys
)), attrs
);
5920 && get_process_working_set_size (h_proc
, &minrss
, &maxrss
))
5922 DWORD rss
= maxrss
/ 1024;
5924 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (maxrss
/ 1024)), attrs
);
5926 attrs
= Fcons (Fcons (Qpmem
, make_float (100. * rss
/ totphys
)), attrs
);
5929 if (process_times (h_proc
, &ctime
, &etime
, &stime
, &utime
, &ttime
, &pcpu
))
5931 attrs
= Fcons (Fcons (Qutime
, utime
), attrs
);
5932 attrs
= Fcons (Fcons (Qstime
, stime
), attrs
);
5933 attrs
= Fcons (Fcons (Qtime
, ttime
), attrs
);
5934 attrs
= Fcons (Fcons (Qstart
, ctime
), attrs
);
5935 attrs
= Fcons (Fcons (Qetime
, etime
), attrs
);
5936 attrs
= Fcons (Fcons (Qpcpu
, make_float (pcpu
)), attrs
);
5939 /* FIXME: Retrieve command line by walking the PEB of the process. */
5942 CloseHandle (h_proc
);
5948 /* Wrappers for winsock functions to map between our file descriptors
5949 and winsock's handles; also set h_errno for convenience.
5951 To allow Emacs to run on systems which don't have winsock support
5952 installed, we dynamically link to winsock on startup if present, and
5953 otherwise provide the minimum necessary functionality
5954 (eg. gethostname). */
5956 /* function pointers for relevant socket functions */
5957 int (PASCAL
*pfn_WSAStartup
) (WORD wVersionRequired
, LPWSADATA lpWSAData
);
5958 void (PASCAL
*pfn_WSASetLastError
) (int iError
);
5959 int (PASCAL
*pfn_WSAGetLastError
) (void);
5960 int (PASCAL
*pfn_WSAEventSelect
) (SOCKET s
, HANDLE hEventObject
, long lNetworkEvents
);
5961 HANDLE (PASCAL
*pfn_WSACreateEvent
) (void);
5962 int (PASCAL
*pfn_WSACloseEvent
) (HANDLE hEvent
);
5963 int (PASCAL
*pfn_socket
) (int af
, int type
, int protocol
);
5964 int (PASCAL
*pfn_bind
) (SOCKET s
, const struct sockaddr
*addr
, int namelen
);
5965 int (PASCAL
*pfn_connect
) (SOCKET s
, const struct sockaddr
*addr
, int namelen
);
5966 int (PASCAL
*pfn_ioctlsocket
) (SOCKET s
, long cmd
, u_long
*argp
);
5967 int (PASCAL
*pfn_recv
) (SOCKET s
, char * buf
, int len
, int flags
);
5968 int (PASCAL
*pfn_send
) (SOCKET s
, const char * buf
, int len
, int flags
);
5969 int (PASCAL
*pfn_closesocket
) (SOCKET s
);
5970 int (PASCAL
*pfn_shutdown
) (SOCKET s
, int how
);
5971 int (PASCAL
*pfn_WSACleanup
) (void);
5973 u_short (PASCAL
*pfn_htons
) (u_short hostshort
);
5974 u_short (PASCAL
*pfn_ntohs
) (u_short netshort
);
5975 unsigned long (PASCAL
*pfn_inet_addr
) (const char * cp
);
5976 int (PASCAL
*pfn_gethostname
) (char * name
, int namelen
);
5977 struct hostent
* (PASCAL
*pfn_gethostbyname
) (const char * name
);
5978 struct servent
* (PASCAL
*pfn_getservbyname
) (const char * name
, const char * proto
);
5979 int (PASCAL
*pfn_getpeername
) (SOCKET s
, struct sockaddr
*addr
, int * namelen
);
5980 int (PASCAL
*pfn_setsockopt
) (SOCKET s
, int level
, int optname
,
5981 const char * optval
, int optlen
);
5982 int (PASCAL
*pfn_listen
) (SOCKET s
, int backlog
);
5983 int (PASCAL
*pfn_getsockname
) (SOCKET s
, struct sockaddr
* name
,
5985 SOCKET (PASCAL
*pfn_accept
) (SOCKET s
, struct sockaddr
* addr
, int * addrlen
);
5986 int (PASCAL
*pfn_recvfrom
) (SOCKET s
, char * buf
, int len
, int flags
,
5987 struct sockaddr
* from
, int * fromlen
);
5988 int (PASCAL
*pfn_sendto
) (SOCKET s
, const char * buf
, int len
, int flags
,
5989 const struct sockaddr
* to
, int tolen
);
5991 /* SetHandleInformation is only needed to make sockets non-inheritable. */
5992 BOOL (WINAPI
*pfn_SetHandleInformation
) (HANDLE object
, DWORD mask
, DWORD flags
);
5993 #ifndef HANDLE_FLAG_INHERIT
5994 #define HANDLE_FLAG_INHERIT 1
5998 static int winsock_inuse
;
6003 if (winsock_lib
!= NULL
&& winsock_inuse
== 0)
6005 /* Not sure what would cause WSAENETDOWN, or even if it can happen
6006 after WSAStartup returns successfully, but it seems reasonable
6007 to allow unloading winsock anyway in that case. */
6008 if (pfn_WSACleanup () == 0 ||
6009 pfn_WSAGetLastError () == WSAENETDOWN
)
6011 if (FreeLibrary (winsock_lib
))
6020 init_winsock (int load_now
)
6022 WSADATA winsockData
;
6024 if (winsock_lib
!= NULL
)
6027 pfn_SetHandleInformation
6028 = (void *) GetProcAddress (GetModuleHandle ("kernel32.dll"),
6029 "SetHandleInformation");
6031 winsock_lib
= LoadLibrary ("Ws2_32.dll");
6033 if (winsock_lib
!= NULL
)
6035 /* dynamically link to socket functions */
6037 #define LOAD_PROC(fn) \
6038 if ((pfn_##fn = (void *) GetProcAddress (winsock_lib, #fn)) == NULL) \
6041 LOAD_PROC (WSAStartup
);
6042 LOAD_PROC (WSASetLastError
);
6043 LOAD_PROC (WSAGetLastError
);
6044 LOAD_PROC (WSAEventSelect
);
6045 LOAD_PROC (WSACreateEvent
);
6046 LOAD_PROC (WSACloseEvent
);
6049 LOAD_PROC (connect
);
6050 LOAD_PROC (ioctlsocket
);
6053 LOAD_PROC (closesocket
);
6054 LOAD_PROC (shutdown
);
6057 LOAD_PROC (inet_addr
);
6058 LOAD_PROC (gethostname
);
6059 LOAD_PROC (gethostbyname
);
6060 LOAD_PROC (getservbyname
);
6061 LOAD_PROC (getpeername
);
6062 LOAD_PROC (WSACleanup
);
6063 LOAD_PROC (setsockopt
);
6065 LOAD_PROC (getsockname
);
6067 LOAD_PROC (recvfrom
);
6071 /* specify version 1.1 of winsock */
6072 if (pfn_WSAStartup (0x101, &winsockData
) == 0)
6074 if (winsockData
.wVersion
!= 0x101)
6079 /* Report that winsock exists and is usable, but leave
6080 socket functions disabled. I am assuming that calling
6081 WSAStartup does not require any network interaction,
6082 and in particular does not cause or require a dial-up
6083 connection to be established. */
6086 FreeLibrary (winsock_lib
);
6094 FreeLibrary (winsock_lib
);
6104 /* Function to map winsock error codes to errno codes for those errno
6105 code defined in errno.h (errno values not defined by errno.h are
6106 already in nt/inc/sys/socket.h). */
6113 if (winsock_lib
== NULL
)
6116 wsa_err
= pfn_WSAGetLastError ();
6120 case WSAEACCES
: errno
= EACCES
; break;
6121 case WSAEBADF
: errno
= EBADF
; break;
6122 case WSAEFAULT
: errno
= EFAULT
; break;
6123 case WSAEINTR
: errno
= EINTR
; break;
6124 case WSAEINVAL
: errno
= EINVAL
; break;
6125 case WSAEMFILE
: errno
= EMFILE
; break;
6126 case WSAENAMETOOLONG
: errno
= ENAMETOOLONG
; break;
6127 case WSAENOTEMPTY
: errno
= ENOTEMPTY
; break;
6128 default: errno
= wsa_err
; break;
6136 if (winsock_lib
!= NULL
)
6137 pfn_WSASetLastError (0);
6140 /* Extend strerror to handle the winsock-specific error codes. */
6144 } _wsa_errlist
[] = {
6145 {WSAEINTR
, "Interrupted function call"},
6146 {WSAEBADF
, "Bad file descriptor"},
6147 {WSAEACCES
, "Permission denied"},
6148 {WSAEFAULT
, "Bad address"},
6149 {WSAEINVAL
, "Invalid argument"},
6150 {WSAEMFILE
, "Too many open files"},
6152 {WSAEWOULDBLOCK
, "Resource temporarily unavailable"},
6153 {WSAEINPROGRESS
, "Operation now in progress"},
6154 {WSAEALREADY
, "Operation already in progress"},
6155 {WSAENOTSOCK
, "Socket operation on non-socket"},
6156 {WSAEDESTADDRREQ
, "Destination address required"},
6157 {WSAEMSGSIZE
, "Message too long"},
6158 {WSAEPROTOTYPE
, "Protocol wrong type for socket"},
6159 {WSAENOPROTOOPT
, "Bad protocol option"},
6160 {WSAEPROTONOSUPPORT
, "Protocol not supported"},
6161 {WSAESOCKTNOSUPPORT
, "Socket type not supported"},
6162 {WSAEOPNOTSUPP
, "Operation not supported"},
6163 {WSAEPFNOSUPPORT
, "Protocol family not supported"},
6164 {WSAEAFNOSUPPORT
, "Address family not supported by protocol family"},
6165 {WSAEADDRINUSE
, "Address already in use"},
6166 {WSAEADDRNOTAVAIL
, "Cannot assign requested address"},
6167 {WSAENETDOWN
, "Network is down"},
6168 {WSAENETUNREACH
, "Network is unreachable"},
6169 {WSAENETRESET
, "Network dropped connection on reset"},
6170 {WSAECONNABORTED
, "Software caused connection abort"},
6171 {WSAECONNRESET
, "Connection reset by peer"},
6172 {WSAENOBUFS
, "No buffer space available"},
6173 {WSAEISCONN
, "Socket is already connected"},
6174 {WSAENOTCONN
, "Socket is not connected"},
6175 {WSAESHUTDOWN
, "Cannot send after socket shutdown"},
6176 {WSAETOOMANYREFS
, "Too many references"}, /* not sure */
6177 {WSAETIMEDOUT
, "Connection timed out"},
6178 {WSAECONNREFUSED
, "Connection refused"},
6179 {WSAELOOP
, "Network loop"}, /* not sure */
6180 {WSAENAMETOOLONG
, "Name is too long"},
6181 {WSAEHOSTDOWN
, "Host is down"},
6182 {WSAEHOSTUNREACH
, "No route to host"},
6183 {WSAENOTEMPTY
, "Buffer not empty"}, /* not sure */
6184 {WSAEPROCLIM
, "Too many processes"},
6185 {WSAEUSERS
, "Too many users"}, /* not sure */
6186 {WSAEDQUOT
, "Double quote in host name"}, /* really not sure */
6187 {WSAESTALE
, "Data is stale"}, /* not sure */
6188 {WSAEREMOTE
, "Remote error"}, /* not sure */
6190 {WSASYSNOTREADY
, "Network subsystem is unavailable"},
6191 {WSAVERNOTSUPPORTED
, "WINSOCK.DLL version out of range"},
6192 {WSANOTINITIALISED
, "Winsock not initialized successfully"},
6193 {WSAEDISCON
, "Graceful shutdown in progress"},
6195 {WSAENOMORE
, "No more operations allowed"}, /* not sure */
6196 {WSAECANCELLED
, "Operation cancelled"}, /* not sure */
6197 {WSAEINVALIDPROCTABLE
, "Invalid procedure table from service provider"},
6198 {WSAEINVALIDPROVIDER
, "Invalid service provider version number"},
6199 {WSAEPROVIDERFAILEDINIT
, "Unable to initialize a service provider"},
6200 {WSASYSCALLFAILURE
, "System call failure"},
6201 {WSASERVICE_NOT_FOUND
, "Service not found"}, /* not sure */
6202 {WSATYPE_NOT_FOUND
, "Class type not found"},
6203 {WSA_E_NO_MORE
, "No more resources available"}, /* really not sure */
6204 {WSA_E_CANCELLED
, "Operation already cancelled"}, /* really not sure */
6205 {WSAEREFUSED
, "Operation refused"}, /* not sure */
6208 {WSAHOST_NOT_FOUND
, "Host not found"},
6209 {WSATRY_AGAIN
, "Authoritative host not found during name lookup"},
6210 {WSANO_RECOVERY
, "Non-recoverable error during name lookup"},
6211 {WSANO_DATA
, "Valid name, no data record of requested type"},
6217 sys_strerror (int error_no
)
6220 static char unknown_msg
[40];
6222 if (error_no
>= 0 && error_no
< sys_nerr
)
6223 return sys_errlist
[error_no
];
6225 for (i
= 0; _wsa_errlist
[i
].errnum
>= 0; i
++)
6226 if (_wsa_errlist
[i
].errnum
== error_no
)
6227 return _wsa_errlist
[i
].msg
;
6229 sprintf (unknown_msg
, "Unidentified error: %d", error_no
);
6233 /* [andrewi 3-May-96] I've had conflicting results using both methods,
6234 but I believe the method of keeping the socket handle separate (and
6235 insuring it is not inheritable) is the correct one. */
6237 #define SOCK_HANDLE(fd) ((SOCKET) fd_info[fd].hnd)
6239 static int socket_to_fd (SOCKET s
);
6242 sys_socket (int af
, int type
, int protocol
)
6246 if (winsock_lib
== NULL
)
6249 return INVALID_SOCKET
;
6254 /* call the real socket function */
6255 s
= pfn_socket (af
, type
, protocol
);
6257 if (s
!= INVALID_SOCKET
)
6258 return socket_to_fd (s
);
6264 /* Convert a SOCKET to a file descriptor. */
6266 socket_to_fd (SOCKET s
)
6271 /* Although under NT 3.5 _open_osfhandle will accept a socket
6272 handle, if opened with SO_OPENTYPE == SO_SYNCHRONOUS_NONALERT,
6273 that does not work under NT 3.1. However, we can get the same
6274 effect by using a backdoor function to replace an existing
6275 descriptor handle with the one we want. */
6277 /* allocate a file descriptor (with appropriate flags) */
6278 fd
= _open ("NUL:", _O_RDWR
);
6281 /* Make a non-inheritable copy of the socket handle. Note
6282 that it is possible that sockets aren't actually kernel
6283 handles, which appears to be the case on Windows 9x when
6284 the MS Proxy winsock client is installed. */
6286 /* Apparently there is a bug in NT 3.51 with some service
6287 packs, which prevents using DuplicateHandle to make a
6288 socket handle non-inheritable (causes WSACleanup to
6289 hang). The work-around is to use SetHandleInformation
6290 instead if it is available and implemented. */
6291 if (pfn_SetHandleInformation
)
6293 pfn_SetHandleInformation ((HANDLE
) s
, HANDLE_FLAG_INHERIT
, 0);
6297 HANDLE parent
= GetCurrentProcess ();
6298 HANDLE new_s
= INVALID_HANDLE_VALUE
;
6300 if (DuplicateHandle (parent
,
6306 DUPLICATE_SAME_ACCESS
))
6308 /* It is possible that DuplicateHandle succeeds even
6309 though the socket wasn't really a kernel handle,
6310 because a real handle has the same value. So
6311 test whether the new handle really is a socket. */
6312 long nonblocking
= 0;
6313 if (pfn_ioctlsocket ((SOCKET
) new_s
, FIONBIO
, &nonblocking
) == 0)
6315 pfn_closesocket (s
);
6320 CloseHandle (new_s
);
6325 eassert (fd
< MAXDESC
);
6326 fd_info
[fd
].hnd
= (HANDLE
) s
;
6328 /* set our own internal flags */
6329 fd_info
[fd
].flags
= FILE_SOCKET
| FILE_BINARY
| FILE_READ
| FILE_WRITE
;
6335 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
6337 /* attach child_process to fd_info */
6338 if (fd_info
[ fd
].cp
!= NULL
)
6340 DebPrint (("sys_socket: fd_info[%d] apparently in use!\n", fd
));
6344 fd_info
[ fd
].cp
= cp
;
6347 winsock_inuse
++; /* count open sockets */
6355 pfn_closesocket (s
);
6361 sys_bind (int s
, const struct sockaddr
* addr
, int namelen
)
6363 if (winsock_lib
== NULL
)
6366 return SOCKET_ERROR
;
6370 if (fd_info
[s
].flags
& FILE_SOCKET
)
6372 int rc
= pfn_bind (SOCK_HANDLE (s
), addr
, namelen
);
6373 if (rc
== SOCKET_ERROR
)
6378 return SOCKET_ERROR
;
6382 sys_connect (int s
, const struct sockaddr
* name
, int namelen
)
6384 if (winsock_lib
== NULL
)
6387 return SOCKET_ERROR
;
6391 if (fd_info
[s
].flags
& FILE_SOCKET
)
6393 int rc
= pfn_connect (SOCK_HANDLE (s
), name
, namelen
);
6394 if (rc
== SOCKET_ERROR
)
6399 return SOCKET_ERROR
;
6403 sys_htons (u_short hostshort
)
6405 return (winsock_lib
!= NULL
) ?
6406 pfn_htons (hostshort
) : hostshort
;
6410 sys_ntohs (u_short netshort
)
6412 return (winsock_lib
!= NULL
) ?
6413 pfn_ntohs (netshort
) : netshort
;
6417 sys_inet_addr (const char * cp
)
6419 return (winsock_lib
!= NULL
) ?
6420 pfn_inet_addr (cp
) : INADDR_NONE
;
6424 sys_gethostname (char * name
, int namelen
)
6426 if (winsock_lib
!= NULL
)
6431 retval
= pfn_gethostname (name
, namelen
);
6432 if (retval
== SOCKET_ERROR
)
6437 if (namelen
> MAX_COMPUTERNAME_LENGTH
)
6438 return !GetComputerName (name
, (DWORD
*)&namelen
);
6441 return SOCKET_ERROR
;
6445 sys_gethostbyname (const char * name
)
6447 struct hostent
* host
;
6448 int h_err
= h_errno
;
6450 if (winsock_lib
== NULL
)
6452 h_errno
= NO_RECOVERY
;
6458 host
= pfn_gethostbyname (name
);
6470 sys_getservbyname (const char * name
, const char * proto
)
6472 struct servent
* serv
;
6474 if (winsock_lib
== NULL
)
6481 serv
= pfn_getservbyname (name
, proto
);
6488 sys_getpeername (int s
, struct sockaddr
*addr
, int * namelen
)
6490 if (winsock_lib
== NULL
)
6493 return SOCKET_ERROR
;
6497 if (fd_info
[s
].flags
& FILE_SOCKET
)
6499 int rc
= pfn_getpeername (SOCK_HANDLE (s
), addr
, namelen
);
6500 if (rc
== SOCKET_ERROR
)
6505 return SOCKET_ERROR
;
6509 sys_shutdown (int s
, int how
)
6511 if (winsock_lib
== NULL
)
6514 return SOCKET_ERROR
;
6518 if (fd_info
[s
].flags
& FILE_SOCKET
)
6520 int rc
= pfn_shutdown (SOCK_HANDLE (s
), how
);
6521 if (rc
== SOCKET_ERROR
)
6526 return SOCKET_ERROR
;
6530 sys_setsockopt (int s
, int level
, int optname
, const void * optval
, int optlen
)
6532 if (winsock_lib
== NULL
)
6535 return SOCKET_ERROR
;
6539 if (fd_info
[s
].flags
& FILE_SOCKET
)
6541 int rc
= pfn_setsockopt (SOCK_HANDLE (s
), level
, optname
,
6542 (const char *)optval
, optlen
);
6543 if (rc
== SOCKET_ERROR
)
6548 return SOCKET_ERROR
;
6552 sys_listen (int s
, int backlog
)
6554 if (winsock_lib
== NULL
)
6557 return SOCKET_ERROR
;
6561 if (fd_info
[s
].flags
& FILE_SOCKET
)
6563 int rc
= pfn_listen (SOCK_HANDLE (s
), backlog
);
6564 if (rc
== SOCKET_ERROR
)
6567 fd_info
[s
].flags
|= FILE_LISTEN
;
6571 return SOCKET_ERROR
;
6575 sys_getsockname (int s
, struct sockaddr
* name
, int * namelen
)
6577 if (winsock_lib
== NULL
)
6580 return SOCKET_ERROR
;
6584 if (fd_info
[s
].flags
& FILE_SOCKET
)
6586 int rc
= pfn_getsockname (SOCK_HANDLE (s
), name
, namelen
);
6587 if (rc
== SOCKET_ERROR
)
6592 return SOCKET_ERROR
;
6596 sys_accept (int s
, struct sockaddr
* addr
, int * addrlen
)
6598 if (winsock_lib
== NULL
)
6605 if (fd_info
[s
].flags
& FILE_LISTEN
)
6607 SOCKET t
= pfn_accept (SOCK_HANDLE (s
), addr
, addrlen
);
6609 if (t
== INVALID_SOCKET
)
6612 fd
= socket_to_fd (t
);
6616 fd_info
[s
].cp
->status
= STATUS_READ_ACKNOWLEDGED
;
6617 ResetEvent (fd_info
[s
].cp
->char_avail
);
6626 sys_recvfrom (int s
, char * buf
, int len
, int flags
,
6627 struct sockaddr
* from
, int * fromlen
)
6629 if (winsock_lib
== NULL
)
6632 return SOCKET_ERROR
;
6636 if (fd_info
[s
].flags
& FILE_SOCKET
)
6638 int rc
= pfn_recvfrom (SOCK_HANDLE (s
), buf
, len
, flags
, from
, fromlen
);
6639 if (rc
== SOCKET_ERROR
)
6644 return SOCKET_ERROR
;
6648 sys_sendto (int s
, const char * buf
, int len
, int flags
,
6649 const struct sockaddr
* to
, int tolen
)
6651 if (winsock_lib
== NULL
)
6654 return SOCKET_ERROR
;
6658 if (fd_info
[s
].flags
& FILE_SOCKET
)
6660 int rc
= pfn_sendto (SOCK_HANDLE (s
), buf
, len
, flags
, to
, tolen
);
6661 if (rc
== SOCKET_ERROR
)
6666 return SOCKET_ERROR
;
6669 /* Windows does not have an fcntl function. Provide an implementation
6670 solely for making sockets non-blocking. */
6672 fcntl (int s
, int cmd
, int options
)
6674 if (winsock_lib
== NULL
)
6681 if (fd_info
[s
].flags
& FILE_SOCKET
)
6683 if (cmd
== F_SETFL
&& options
== O_NONBLOCK
)
6685 unsigned long nblock
= 1;
6686 int rc
= pfn_ioctlsocket (SOCK_HANDLE (s
), FIONBIO
, &nblock
);
6687 if (rc
== SOCKET_ERROR
)
6689 /* Keep track of the fact that we set this to non-blocking. */
6690 fd_info
[s
].flags
|= FILE_NDELAY
;
6696 return SOCKET_ERROR
;
6700 return SOCKET_ERROR
;
6704 /* Shadow main io functions: we need to handle pipes and sockets more
6705 intelligently, and implement non-blocking mode as well. */
6718 if (fd
< MAXDESC
&& fd_info
[fd
].cp
)
6720 child_process
* cp
= fd_info
[fd
].cp
;
6722 fd_info
[fd
].cp
= NULL
;
6724 if (CHILD_ACTIVE (cp
))
6726 /* if last descriptor to active child_process then cleanup */
6728 for (i
= 0; i
< MAXDESC
; i
++)
6732 if (fd_info
[i
].cp
== cp
)
6737 if (fd_info
[fd
].flags
& FILE_SOCKET
)
6739 if (winsock_lib
== NULL
) emacs_abort ();
6741 pfn_shutdown (SOCK_HANDLE (fd
), 2);
6742 rc
= pfn_closesocket (SOCK_HANDLE (fd
));
6744 winsock_inuse
--; /* count open sockets */
6746 /* If the process handle is NULL, it's either a socket
6747 or serial connection, or a subprocess that was
6748 already reaped by reap_subprocess, but whose
6749 resources were not yet freed, because its output was
6750 not fully read yet by the time it was reaped. (This
6751 usually happens with async subprocesses whose output
6752 is being read by Emacs.) Otherwise, this process was
6753 not reaped yet, so we set its FD to a negative value
6754 to make sure sys_select will eventually get to
6755 calling the SIGCHLD handler for it, which will then
6756 invoke waitpid and reap_subprocess. */
6757 if (cp
->procinfo
.hProcess
== NULL
)
6765 if (fd
>= 0 && fd
< MAXDESC
)
6766 fd_info
[fd
].flags
= 0;
6768 /* Note that sockets do not need special treatment here (at least on
6769 NT and Windows 95 using the standard tcp/ip stacks) - it appears that
6770 closesocket is equivalent to CloseHandle, which is to be expected
6771 because socket handles are fully fledged kernel handles. */
6783 if (new_fd
>= 0 && new_fd
< MAXDESC
)
6785 /* duplicate our internal info as well */
6786 fd_info
[new_fd
] = fd_info
[fd
];
6792 sys_dup2 (int src
, int dst
)
6796 if (dst
< 0 || dst
>= MAXDESC
)
6802 /* make sure we close the destination first if it's a pipe or socket */
6803 if (src
!= dst
&& fd_info
[dst
].flags
!= 0)
6806 rc
= _dup2 (src
, dst
);
6809 /* duplicate our internal info as well */
6810 fd_info
[dst
] = fd_info
[src
];
6815 /* Unix pipe() has only one arg */
6817 sys_pipe (int * phandles
)
6822 /* make pipe handles non-inheritable; when we spawn a child, we
6823 replace the relevant handle with an inheritable one. Also put
6824 pipes into binary mode; we will do text mode translation ourselves
6826 rc
= _pipe (phandles
, 0, _O_NOINHERIT
| _O_BINARY
);
6830 /* Protect against overflow, since Windows can open more handles than
6831 our fd_info array has room for. */
6832 if (phandles
[0] >= MAXDESC
|| phandles
[1] >= MAXDESC
)
6834 _close (phandles
[0]);
6835 _close (phandles
[1]);
6841 flags
= FILE_PIPE
| FILE_READ
| FILE_BINARY
;
6842 fd_info
[phandles
[0]].flags
= flags
;
6844 flags
= FILE_PIPE
| FILE_WRITE
| FILE_BINARY
;
6845 fd_info
[phandles
[1]].flags
= flags
;
6852 /* Function to do blocking read of one byte, needed to implement
6853 select. It is only allowed on communication ports, sockets, or
6856 _sys_read_ahead (int fd
)
6861 if (fd
< 0 || fd
>= MAXDESC
)
6862 return STATUS_READ_ERROR
;
6864 cp
= fd_info
[fd
].cp
;
6866 if (cp
== NULL
|| cp
->fd
!= fd
|| cp
->status
!= STATUS_READ_READY
)
6867 return STATUS_READ_ERROR
;
6869 if ((fd_info
[fd
].flags
& (FILE_PIPE
| FILE_SERIAL
| FILE_SOCKET
)) == 0
6870 || (fd_info
[fd
].flags
& FILE_READ
) == 0)
6872 DebPrint (("_sys_read_ahead: internal error: fd %d is not a pipe, serial port, or socket!\n", fd
));
6876 cp
->status
= STATUS_READ_IN_PROGRESS
;
6878 if (fd_info
[fd
].flags
& FILE_PIPE
)
6880 rc
= _read (fd
, &cp
->chr
, sizeof (char));
6882 /* Give subprocess time to buffer some more output for us before
6883 reporting that input is available; we need this because Windows 95
6884 connects DOS programs to pipes by making the pipe appear to be
6885 the normal console stdout - as a result most DOS programs will
6886 write to stdout without buffering, ie. one character at a
6887 time. Even some W32 programs do this - "dir" in a command
6888 shell on NT is very slow if we don't do this. */
6891 int wait
= w32_pipe_read_delay
;
6897 /* Yield remainder of our time slice, effectively giving a
6898 temporary priority boost to the child process. */
6902 else if (fd_info
[fd
].flags
& FILE_SERIAL
)
6904 HANDLE hnd
= fd_info
[fd
].hnd
;
6905 OVERLAPPED
*ovl
= &fd_info
[fd
].cp
->ovl_read
;
6908 /* Configure timeouts for blocking read. */
6909 if (!GetCommTimeouts (hnd
, &ct
))
6911 cp
->status
= STATUS_READ_ERROR
;
6912 return STATUS_READ_ERROR
;
6914 ct
.ReadIntervalTimeout
= 0;
6915 ct
.ReadTotalTimeoutMultiplier
= 0;
6916 ct
.ReadTotalTimeoutConstant
= 0;
6917 if (!SetCommTimeouts (hnd
, &ct
))
6919 cp
->status
= STATUS_READ_ERROR
;
6920 return STATUS_READ_ERROR
;
6923 if (!ReadFile (hnd
, &cp
->chr
, sizeof (char), (DWORD
*) &rc
, ovl
))
6925 if (GetLastError () != ERROR_IO_PENDING
)
6927 cp
->status
= STATUS_READ_ERROR
;
6928 return STATUS_READ_ERROR
;
6930 if (!GetOverlappedResult (hnd
, ovl
, (DWORD
*) &rc
, TRUE
))
6932 cp
->status
= STATUS_READ_ERROR
;
6933 return STATUS_READ_ERROR
;
6937 else if (fd_info
[fd
].flags
& FILE_SOCKET
)
6939 unsigned long nblock
= 0;
6940 /* We always want this to block, so temporarily disable NDELAY. */
6941 if (fd_info
[fd
].flags
& FILE_NDELAY
)
6942 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
6944 rc
= pfn_recv (SOCK_HANDLE (fd
), &cp
->chr
, sizeof (char), 0);
6946 if (fd_info
[fd
].flags
& FILE_NDELAY
)
6949 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
6953 if (rc
== sizeof (char))
6954 cp
->status
= STATUS_READ_SUCCEEDED
;
6956 cp
->status
= STATUS_READ_FAILED
;
6962 _sys_wait_accept (int fd
)
6968 if (fd
< 0 || fd
>= MAXDESC
)
6969 return STATUS_READ_ERROR
;
6971 cp
= fd_info
[fd
].cp
;
6973 if (cp
== NULL
|| cp
->fd
!= fd
|| cp
->status
!= STATUS_READ_READY
)
6974 return STATUS_READ_ERROR
;
6976 cp
->status
= STATUS_READ_FAILED
;
6978 hEv
= pfn_WSACreateEvent ();
6979 rc
= pfn_WSAEventSelect (SOCK_HANDLE (fd
), hEv
, FD_ACCEPT
);
6980 if (rc
!= SOCKET_ERROR
)
6982 rc
= WaitForSingleObject (hEv
, INFINITE
);
6983 pfn_WSAEventSelect (SOCK_HANDLE (fd
), NULL
, 0);
6984 if (rc
== WAIT_OBJECT_0
)
6985 cp
->status
= STATUS_READ_SUCCEEDED
;
6987 pfn_WSACloseEvent (hEv
);
6993 sys_read (int fd
, char * buffer
, unsigned int count
)
6998 char * orig_buffer
= buffer
;
7006 if (fd
< MAXDESC
&& fd_info
[fd
].flags
& (FILE_PIPE
| FILE_SOCKET
| FILE_SERIAL
))
7008 child_process
*cp
= fd_info
[fd
].cp
;
7010 if ((fd_info
[fd
].flags
& FILE_READ
) == 0)
7018 /* re-read CR carried over from last read */
7019 if (fd_info
[fd
].flags
& FILE_LAST_CR
)
7021 if (fd_info
[fd
].flags
& FILE_BINARY
) emacs_abort ();
7025 fd_info
[fd
].flags
&= ~FILE_LAST_CR
;
7028 /* presence of a child_process structure means we are operating in
7029 non-blocking mode - otherwise we just call _read directly.
7030 Note that the child_process structure might be missing because
7031 reap_subprocess has been called; in this case the pipe is
7032 already broken, so calling _read on it is okay. */
7035 int current_status
= cp
->status
;
7037 switch (current_status
)
7039 case STATUS_READ_FAILED
:
7040 case STATUS_READ_ERROR
:
7041 /* report normal EOF if nothing in buffer */
7043 fd_info
[fd
].flags
|= FILE_AT_EOF
;
7046 case STATUS_READ_READY
:
7047 case STATUS_READ_IN_PROGRESS
:
7048 DebPrint (("sys_read called when read is in progress\n"));
7049 errno
= EWOULDBLOCK
;
7052 case STATUS_READ_SUCCEEDED
:
7053 /* consume read-ahead char */
7054 *buffer
++ = cp
->chr
;
7057 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
7058 ResetEvent (cp
->char_avail
);
7060 case STATUS_READ_ACKNOWLEDGED
:
7064 DebPrint (("sys_read: bad status %d\n", current_status
));
7069 if (fd_info
[fd
].flags
& FILE_PIPE
)
7071 PeekNamedPipe ((HANDLE
) _get_osfhandle (fd
), NULL
, 0, NULL
, &waiting
, NULL
);
7072 to_read
= min (waiting
, (DWORD
) count
);
7075 nchars
+= _read (fd
, buffer
, to_read
);
7077 else if (fd_info
[fd
].flags
& FILE_SERIAL
)
7079 HANDLE hnd
= fd_info
[fd
].hnd
;
7080 OVERLAPPED
*ovl
= &fd_info
[fd
].cp
->ovl_read
;
7086 /* Configure timeouts for non-blocking read. */
7087 if (!GetCommTimeouts (hnd
, &ct
))
7092 ct
.ReadIntervalTimeout
= MAXDWORD
;
7093 ct
.ReadTotalTimeoutMultiplier
= 0;
7094 ct
.ReadTotalTimeoutConstant
= 0;
7095 if (!SetCommTimeouts (hnd
, &ct
))
7101 if (!ResetEvent (ovl
->hEvent
))
7106 if (!ReadFile (hnd
, buffer
, count
, (DWORD
*) &rc
, ovl
))
7108 if (GetLastError () != ERROR_IO_PENDING
)
7113 if (!GetOverlappedResult (hnd
, ovl
, (DWORD
*) &rc
, TRUE
))
7122 else /* FILE_SOCKET */
7124 if (winsock_lib
== NULL
) emacs_abort ();
7126 /* do the equivalent of a non-blocking read */
7127 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONREAD
, &waiting
);
7128 if (waiting
== 0 && nchars
== 0)
7130 errno
= EWOULDBLOCK
;
7136 /* always use binary mode for sockets */
7137 int res
= pfn_recv (SOCK_HANDLE (fd
), buffer
, count
, 0);
7138 if (res
== SOCKET_ERROR
)
7140 DebPrint (("sys_read.recv failed with error %d on socket %ld\n",
7141 pfn_WSAGetLastError (), SOCK_HANDLE (fd
)));
7151 int nread
= _read (fd
, buffer
, count
);
7154 else if (nchars
== 0)
7159 fd_info
[fd
].flags
|= FILE_AT_EOF
;
7160 /* Perform text mode translation if required. */
7161 else if ((fd_info
[fd
].flags
& FILE_BINARY
) == 0)
7163 nchars
= crlf_to_lf (nchars
, orig_buffer
);
7164 /* If buffer contains only CR, return that. To be absolutely
7165 sure we should attempt to read the next char, but in
7166 practice a CR to be followed by LF would not appear by
7167 itself in the buffer. */
7168 if (nchars
> 1 && orig_buffer
[nchars
- 1] == 0x0d)
7170 fd_info
[fd
].flags
|= FILE_LAST_CR
;
7176 nchars
= _read (fd
, buffer
, count
);
7181 /* From w32xfns.c */
7182 extern HANDLE interrupt_handle
;
7184 /* For now, don't bother with a non-blocking mode */
7186 sys_write (int fd
, const void * buffer
, unsigned int count
)
7196 if (fd
< MAXDESC
&& fd_info
[fd
].flags
& (FILE_PIPE
| FILE_SOCKET
| FILE_SERIAL
))
7198 if ((fd_info
[fd
].flags
& FILE_WRITE
) == 0)
7204 /* Perform text mode translation if required. */
7205 if ((fd_info
[fd
].flags
& FILE_BINARY
) == 0)
7207 char * tmpbuf
= alloca (count
* 2);
7208 unsigned char * src
= (void *)buffer
;
7209 unsigned char * dst
= tmpbuf
;
7214 unsigned char *next
;
7215 /* copy next line or remaining bytes */
7216 next
= _memccpy (dst
, src
, '\n', nbytes
);
7219 /* copied one line ending with '\n' */
7220 int copied
= next
- dst
;
7223 /* insert '\r' before '\n' */
7230 /* copied remaining partial line -> now finished */
7237 if (fd
< MAXDESC
&& fd_info
[fd
].flags
& FILE_SERIAL
)
7239 HANDLE hnd
= (HANDLE
) _get_osfhandle (fd
);
7240 OVERLAPPED
*ovl
= &fd_info
[fd
].cp
->ovl_write
;
7241 HANDLE wait_hnd
[2] = { interrupt_handle
, ovl
->hEvent
};
7244 if (!WriteFile (hnd
, buffer
, count
, (DWORD
*) &nchars
, ovl
))
7246 if (GetLastError () != ERROR_IO_PENDING
)
7251 if (detect_input_pending ())
7252 active
= MsgWaitForMultipleObjects (2, wait_hnd
, FALSE
, INFINITE
,
7255 active
= WaitForMultipleObjects (2, wait_hnd
, FALSE
, INFINITE
);
7256 if (active
== WAIT_OBJECT_0
)
7257 { /* User pressed C-g, cancel write, then leave. Don't bother
7258 cleaning up as we may only get stuck in buggy drivers. */
7259 PurgeComm (hnd
, PURGE_TXABORT
| PURGE_TXCLEAR
);
7264 if (active
== WAIT_OBJECT_0
+ 1
7265 && !GetOverlappedResult (hnd
, ovl
, (DWORD
*) &nchars
, TRUE
))
7272 else if (fd
< MAXDESC
&& fd_info
[fd
].flags
& FILE_SOCKET
)
7274 unsigned long nblock
= 0;
7275 if (winsock_lib
== NULL
) emacs_abort ();
7277 /* TODO: implement select() properly so non-blocking I/O works. */
7278 /* For now, make sure the write blocks. */
7279 if (fd_info
[fd
].flags
& FILE_NDELAY
)
7280 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
7282 nchars
= pfn_send (SOCK_HANDLE (fd
), buffer
, count
, 0);
7284 /* Set the socket back to non-blocking if it was before,
7285 for other operations that support it. */
7286 if (fd_info
[fd
].flags
& FILE_NDELAY
)
7289 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
7292 if (nchars
== SOCKET_ERROR
)
7294 DebPrint (("sys_write.send failed with error %d on socket %ld\n",
7295 pfn_WSAGetLastError (), SOCK_HANDLE (fd
)));
7301 /* Some networked filesystems don't like too large writes, so
7302 break them into smaller chunks. See the Comments section of
7303 the MSDN documentation of WriteFile for details behind the
7304 choice of the value of CHUNK below. See also the thread
7305 http://thread.gmane.org/gmane.comp.version-control.git/145294
7306 in the git mailing list. */
7307 const unsigned char *p
= buffer
;
7308 const unsigned chunk
= 30 * 1024 * 1024;
7313 unsigned this_chunk
= count
< chunk
? count
: chunk
;
7314 int n
= _write (fd
, p
, this_chunk
);
7322 else if (n
< this_chunk
)
7332 /* The Windows CRT functions are "optimized for speed", so they don't
7333 check for timezone and DST changes if they were last called less
7334 than 1 minute ago (see http://support.microsoft.com/kb/821231). So
7335 all Emacs features that repeatedly call time functions (e.g.,
7336 display-time) are in real danger of missing timezone and DST
7337 changes. Calling tzset before each localtime call fixes that. */
7339 sys_localtime (const time_t *t
)
7342 return localtime (t
);
7347 /* Try loading LIBRARY_ID from the file(s) specified in
7348 Vdynamic_library_alist. If the library is loaded successfully,
7349 return the handle of the DLL, and record the filename in the
7350 property :loaded-from of LIBRARY_ID. If the library could not be
7351 found, or when it was already loaded (because the handle is not
7352 recorded anywhere, and so is lost after use), return NULL.
7354 We could also save the handle in :loaded-from, but currently
7355 there's no use case for it. */
7357 w32_delayed_load (Lisp_Object library_id
)
7359 HMODULE library_dll
= NULL
;
7361 CHECK_SYMBOL (library_id
);
7363 if (CONSP (Vdynamic_library_alist
)
7364 && NILP (Fassq (library_id
, Vlibrary_cache
)))
7366 Lisp_Object found
= Qnil
;
7367 Lisp_Object dlls
= Fassq (library_id
, Vdynamic_library_alist
);
7370 for (dlls
= XCDR (dlls
); CONSP (dlls
); dlls
= XCDR (dlls
))
7372 CHECK_STRING_CAR (dlls
);
7373 if ((library_dll
= LoadLibrary (SDATA (XCAR (dlls
)))))
7375 char name
[MAX_PATH
];
7378 len
= GetModuleFileNameA (library_dll
, name
, sizeof (name
));
7379 found
= Fcons (XCAR (dlls
),
7381 /* Possibly truncated */
7382 ? make_specified_string (name
, -1, len
, 1)
7388 Fput (library_id
, QCloaded_from
, found
);
7396 check_windows_init_file (void)
7398 /* A common indication that Emacs is not installed properly is when
7399 it cannot find the Windows installation file. If this file does
7400 not exist in the expected place, tell the user. */
7402 if (!noninteractive
&& !inhibit_window_system
7403 /* Vload_path is not yet initialized when we are loading
7405 && NILP (Vpurify_flag
))
7407 Lisp_Object init_file
;
7410 init_file
= build_string ("term/w32-win");
7411 fd
= openp (Vload_path
, init_file
, Fget_load_suffixes (), NULL
, Qnil
);
7414 Lisp_Object load_path_print
= Fprin1_to_string (Vload_path
, Qnil
);
7415 char *init_file_name
= SDATA (init_file
);
7416 char *load_path
= SDATA (load_path_print
);
7417 char *buffer
= alloca (1024
7418 + strlen (init_file_name
)
7419 + strlen (load_path
));
7422 "The Emacs Windows initialization file \"%s.el\" "
7423 "could not be found in your Emacs installation. "
7424 "Emacs checked the following directories for this file:\n"
7426 "When Emacs cannot find this file, it usually means that it "
7427 "was not installed properly, or its distribution file was "
7428 "not unpacked properly.\nSee the README.W32 file in the "
7429 "top-level Emacs directory for more information.",
7430 init_file_name
, load_path
);
7433 "Emacs Abort Dialog",
7434 MB_OK
| MB_ICONEXCLAMATION
| MB_TASKMODAL
);
7435 /* Use the low-level system abort. */
7446 term_ntproc (int ignored
)
7452 /* shutdown the socket interface if necessary */
7459 init_ntproc (int dumping
)
7461 sigset_t initial_mask
= 0;
7463 /* Initialize the socket interface now if available and requested by
7464 the user by defining PRELOAD_WINSOCK; otherwise loading will be
7465 delayed until open-network-stream is called (w32-has-winsock can
7466 also be used to dynamically load or reload winsock).
7468 Conveniently, init_environment is called before us, so
7469 PRELOAD_WINSOCK can be set in the registry. */
7471 /* Always initialize this correctly. */
7474 if (getenv ("PRELOAD_WINSOCK") != NULL
)
7475 init_winsock (TRUE
);
7477 /* Initial preparation for subprocess support: replace our standard
7478 handles with non-inheritable versions. */
7481 HANDLE stdin_save
= INVALID_HANDLE_VALUE
;
7482 HANDLE stdout_save
= INVALID_HANDLE_VALUE
;
7483 HANDLE stderr_save
= INVALID_HANDLE_VALUE
;
7485 parent
= GetCurrentProcess ();
7487 /* ignore errors when duplicating and closing; typically the
7488 handles will be invalid when running as a gui program. */
7489 DuplicateHandle (parent
,
7490 GetStdHandle (STD_INPUT_HANDLE
),
7495 DUPLICATE_SAME_ACCESS
);
7497 DuplicateHandle (parent
,
7498 GetStdHandle (STD_OUTPUT_HANDLE
),
7503 DUPLICATE_SAME_ACCESS
);
7505 DuplicateHandle (parent
,
7506 GetStdHandle (STD_ERROR_HANDLE
),
7511 DUPLICATE_SAME_ACCESS
);
7517 if (stdin_save
!= INVALID_HANDLE_VALUE
)
7518 _open_osfhandle ((intptr_t) stdin_save
, O_TEXT
);
7520 _open ("nul", O_TEXT
| O_NOINHERIT
| O_RDONLY
);
7523 if (stdout_save
!= INVALID_HANDLE_VALUE
)
7524 _open_osfhandle ((intptr_t) stdout_save
, O_TEXT
);
7526 _open ("nul", O_TEXT
| O_NOINHERIT
| O_WRONLY
);
7529 if (stderr_save
!= INVALID_HANDLE_VALUE
)
7530 _open_osfhandle ((intptr_t) stderr_save
, O_TEXT
);
7532 _open ("nul", O_TEXT
| O_NOINHERIT
| O_WRONLY
);
7536 /* unfortunately, atexit depends on implementation of malloc */
7537 /* atexit (term_ntproc); */
7540 /* Make sure we start with all signals unblocked. */
7541 sigprocmask (SIG_SETMASK
, &initial_mask
, NULL
);
7542 signal (SIGABRT
, term_ntproc
);
7546 /* determine which drives are fixed, for GetCachedVolumeInformation */
7548 /* GetDriveType must have trailing backslash. */
7549 char drive
[] = "A:\\";
7551 /* Loop over all possible drive letters */
7552 while (*drive
<= 'Z')
7554 /* Record if this drive letter refers to a fixed drive. */
7555 fixed_drives
[DRIVE_INDEX (*drive
)] =
7556 (GetDriveType (drive
) == DRIVE_FIXED
);
7561 /* Reset the volume info cache. */
7562 volume_cache
= NULL
;
7567 shutdown_handler ensures that buffers' autosave files are
7568 up to date when the user logs off, or the system shuts down.
7571 shutdown_handler (DWORD type
)
7573 /* Ctrl-C and Ctrl-Break are already suppressed, so don't handle them. */
7574 if (type
== CTRL_CLOSE_EVENT
/* User closes console window. */
7575 || type
== CTRL_LOGOFF_EVENT
/* User logs off. */
7576 || type
== CTRL_SHUTDOWN_EVENT
) /* User shutsdown. */
7578 /* Shut down cleanly, making sure autosave files are up to date. */
7579 shut_down_emacs (0, Qnil
);
7582 /* Allow other handlers to handle this signal. */
7587 globals_of_w32 is used to initialize those global variables that
7588 must always be initialized on startup even when the global variable
7589 initialized is non zero (see the function main in emacs.c).
7592 globals_of_w32 (void)
7594 HMODULE kernel32
= GetModuleHandle ("kernel32.dll");
7596 get_process_times_fn
= (GetProcessTimes_Proc
)
7597 GetProcAddress (kernel32
, "GetProcessTimes");
7599 DEFSYM (QCloaded_from
, ":loaded-from");
7601 g_b_init_is_windows_9x
= 0;
7602 g_b_init_open_process_token
= 0;
7603 g_b_init_get_token_information
= 0;
7604 g_b_init_lookup_account_sid
= 0;
7605 g_b_init_get_sid_sub_authority
= 0;
7606 g_b_init_get_sid_sub_authority_count
= 0;
7607 g_b_init_get_security_info
= 0;
7608 g_b_init_get_file_security
= 0;
7609 g_b_init_get_security_descriptor_owner
= 0;
7610 g_b_init_get_security_descriptor_group
= 0;
7611 g_b_init_is_valid_sid
= 0;
7612 g_b_init_create_toolhelp32_snapshot
= 0;
7613 g_b_init_process32_first
= 0;
7614 g_b_init_process32_next
= 0;
7615 g_b_init_open_thread_token
= 0;
7616 g_b_init_impersonate_self
= 0;
7617 g_b_init_revert_to_self
= 0;
7618 g_b_init_get_process_memory_info
= 0;
7619 g_b_init_get_process_working_set_size
= 0;
7620 g_b_init_global_memory_status
= 0;
7621 g_b_init_global_memory_status_ex
= 0;
7622 g_b_init_equal_sid
= 0;
7623 g_b_init_copy_sid
= 0;
7624 g_b_init_get_length_sid
= 0;
7625 g_b_init_get_native_system_info
= 0;
7626 g_b_init_get_system_times
= 0;
7627 g_b_init_create_symbolic_link
= 0;
7628 g_b_init_get_security_descriptor_dacl
= 0;
7629 g_b_init_convert_sd_to_sddl
= 0;
7630 g_b_init_convert_sddl_to_sd
= 0;
7631 g_b_init_is_valid_security_descriptor
= 0;
7632 g_b_init_set_file_security
= 0;
7633 num_of_processors
= 0;
7634 /* The following sets a handler for shutdown notifications for
7635 console apps. This actually applies to Emacs in both console and
7636 GUI modes, since we had to fool windows into thinking emacs is a
7637 console application to get console mode to work. */
7638 SetConsoleCtrlHandler (shutdown_handler
, TRUE
);
7640 /* "None" is the default group name on standalone workstations. */
7641 strcpy (dflt_group_name
, "None");
7643 /* Reset, in case it has some value inherited from dump time. */
7644 w32_stat_get_owner_group
= 0;
7647 /* For make-serial-process */
7649 serial_open (char *port
)
7655 hnd
= CreateFile (port
, GENERIC_READ
| GENERIC_WRITE
, 0, 0,
7656 OPEN_EXISTING
, FILE_FLAG_OVERLAPPED
, 0);
7657 if (hnd
== INVALID_HANDLE_VALUE
)
7658 error ("Could not open %s", port
);
7659 fd
= (int) _open_osfhandle ((intptr_t) hnd
, 0);
7661 error ("Could not open %s", port
);
7665 error ("Could not create child process");
7667 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
7668 fd_info
[ fd
].hnd
= hnd
;
7669 fd_info
[ fd
].flags
|=
7670 FILE_READ
| FILE_WRITE
| FILE_BINARY
| FILE_SERIAL
;
7671 if (fd_info
[ fd
].cp
!= NULL
)
7673 error ("fd_info[fd = %d] is already in use", fd
);
7675 fd_info
[ fd
].cp
= cp
;
7676 cp
->ovl_read
.hEvent
= CreateEvent (NULL
, TRUE
, FALSE
, NULL
);
7677 if (cp
->ovl_read
.hEvent
== NULL
)
7678 error ("Could not create read event");
7679 cp
->ovl_write
.hEvent
= CreateEvent (NULL
, TRUE
, FALSE
, NULL
);
7680 if (cp
->ovl_write
.hEvent
== NULL
)
7681 error ("Could not create write event");
7686 /* For serial-process-configure */
7688 serial_configure (struct Lisp_Process
*p
, Lisp_Object contact
)
7690 Lisp_Object childp2
= Qnil
;
7691 Lisp_Object tem
= Qnil
;
7695 char summary
[4] = "???"; /* This usually becomes "8N1". */
7697 if ((fd_info
[ p
->outfd
].flags
& FILE_SERIAL
) == 0)
7698 error ("Not a serial process");
7699 hnd
= fd_info
[ p
->outfd
].hnd
;
7701 childp2
= Fcopy_sequence (p
->childp
);
7703 /* Initialize timeouts for blocking read and blocking write. */
7704 if (!GetCommTimeouts (hnd
, &ct
))
7705 error ("GetCommTimeouts() failed");
7706 ct
.ReadIntervalTimeout
= 0;
7707 ct
.ReadTotalTimeoutMultiplier
= 0;
7708 ct
.ReadTotalTimeoutConstant
= 0;
7709 ct
.WriteTotalTimeoutMultiplier
= 0;
7710 ct
.WriteTotalTimeoutConstant
= 0;
7711 if (!SetCommTimeouts (hnd
, &ct
))
7712 error ("SetCommTimeouts() failed");
7713 /* Read port attributes and prepare default configuration. */
7714 memset (&dcb
, 0, sizeof (dcb
));
7715 dcb
.DCBlength
= sizeof (DCB
);
7716 if (!GetCommState (hnd
, &dcb
))
7717 error ("GetCommState() failed");
7720 dcb
.fAbortOnError
= FALSE
;
7721 /* dcb.XonLim and dcb.XoffLim are set by GetCommState() */
7726 /* Configure speed. */
7727 if (!NILP (Fplist_member (contact
, QCspeed
)))
7728 tem
= Fplist_get (contact
, QCspeed
);
7730 tem
= Fplist_get (p
->childp
, QCspeed
);
7732 dcb
.BaudRate
= XINT (tem
);
7733 childp2
= Fplist_put (childp2
, QCspeed
, tem
);
7735 /* Configure bytesize. */
7736 if (!NILP (Fplist_member (contact
, QCbytesize
)))
7737 tem
= Fplist_get (contact
, QCbytesize
);
7739 tem
= Fplist_get (p
->childp
, QCbytesize
);
7741 tem
= make_number (8);
7743 if (XINT (tem
) != 7 && XINT (tem
) != 8)
7744 error (":bytesize must be nil (8), 7, or 8");
7745 dcb
.ByteSize
= XINT (tem
);
7746 summary
[0] = XINT (tem
) + '0';
7747 childp2
= Fplist_put (childp2
, QCbytesize
, tem
);
7749 /* Configure parity. */
7750 if (!NILP (Fplist_member (contact
, QCparity
)))
7751 tem
= Fplist_get (contact
, QCparity
);
7753 tem
= Fplist_get (p
->childp
, QCparity
);
7754 if (!NILP (tem
) && !EQ (tem
, Qeven
) && !EQ (tem
, Qodd
))
7755 error (":parity must be nil (no parity), `even', or `odd'");
7756 dcb
.fParity
= FALSE
;
7757 dcb
.Parity
= NOPARITY
;
7758 dcb
.fErrorChar
= FALSE
;
7763 else if (EQ (tem
, Qeven
))
7767 dcb
.Parity
= EVENPARITY
;
7768 dcb
.fErrorChar
= TRUE
;
7770 else if (EQ (tem
, Qodd
))
7774 dcb
.Parity
= ODDPARITY
;
7775 dcb
.fErrorChar
= TRUE
;
7777 childp2
= Fplist_put (childp2
, QCparity
, tem
);
7779 /* Configure stopbits. */
7780 if (!NILP (Fplist_member (contact
, QCstopbits
)))
7781 tem
= Fplist_get (contact
, QCstopbits
);
7783 tem
= Fplist_get (p
->childp
, QCstopbits
);
7785 tem
= make_number (1);
7787 if (XINT (tem
) != 1 && XINT (tem
) != 2)
7788 error (":stopbits must be nil (1 stopbit), 1, or 2");
7789 summary
[2] = XINT (tem
) + '0';
7790 if (XINT (tem
) == 1)
7791 dcb
.StopBits
= ONESTOPBIT
;
7792 else if (XINT (tem
) == 2)
7793 dcb
.StopBits
= TWOSTOPBITS
;
7794 childp2
= Fplist_put (childp2
, QCstopbits
, tem
);
7796 /* Configure flowcontrol. */
7797 if (!NILP (Fplist_member (contact
, QCflowcontrol
)))
7798 tem
= Fplist_get (contact
, QCflowcontrol
);
7800 tem
= Fplist_get (p
->childp
, QCflowcontrol
);
7801 if (!NILP (tem
) && !EQ (tem
, Qhw
) && !EQ (tem
, Qsw
))
7802 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
7803 dcb
.fOutxCtsFlow
= FALSE
;
7804 dcb
.fOutxDsrFlow
= FALSE
;
7805 dcb
.fDtrControl
= DTR_CONTROL_DISABLE
;
7806 dcb
.fDsrSensitivity
= FALSE
;
7807 dcb
.fTXContinueOnXoff
= FALSE
;
7810 dcb
.fRtsControl
= RTS_CONTROL_DISABLE
;
7811 dcb
.XonChar
= 17; /* Control-Q */
7812 dcb
.XoffChar
= 19; /* Control-S */
7815 /* Already configured. */
7817 else if (EQ (tem
, Qhw
))
7819 dcb
.fRtsControl
= RTS_CONTROL_HANDSHAKE
;
7820 dcb
.fOutxCtsFlow
= TRUE
;
7822 else if (EQ (tem
, Qsw
))
7827 childp2
= Fplist_put (childp2
, QCflowcontrol
, tem
);
7829 /* Activate configuration. */
7830 if (!SetCommState (hnd
, &dcb
))
7831 error ("SetCommState() failed");
7833 childp2
= Fplist_put (childp2
, QCsummary
, build_string (summary
));
7834 pset_childp (p
, childp2
);
7840 emacs_gnutls_pull (gnutls_transport_ptr_t p
, void* buf
, size_t sz
)
7845 struct Lisp_Process
*process
= (struct Lisp_Process
*)p
;
7846 int fd
= process
->infd
;
7848 n
= sys_read (fd
, (char*)buf
, sz
);
7855 /* Translate the WSAEWOULDBLOCK alias EWOULDBLOCK to EAGAIN. */
7856 if (err
== EWOULDBLOCK
)
7859 emacs_gnutls_transport_set_errno (process
->gnutls_state
, err
);
7865 emacs_gnutls_push (gnutls_transport_ptr_t p
, const void* buf
, size_t sz
)
7867 struct Lisp_Process
*process
= (struct Lisp_Process
*)p
;
7868 int fd
= process
->outfd
;
7869 ssize_t n
= sys_write (fd
, buf
, sz
);
7871 /* 0 or more bytes written means everything went fine. */
7875 /* Negative bytes written means we got an error in errno.
7876 Translate the WSAEWOULDBLOCK alias EWOULDBLOCK to EAGAIN. */
7877 emacs_gnutls_transport_set_errno (process
->gnutls_state
,
7878 errno
== EWOULDBLOCK
? EAGAIN
: errno
);
7882 #endif /* HAVE_GNUTLS */