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, ... */
68 #include "epaths.h" /* for SHELL */
73 /* MinGW64 (_W64) defines these in its _mingw.h. */
74 #if defined(__GNUC__) && !defined(_W64)
75 #define _ANONYMOUS_UNION
76 #define _ANONYMOUS_STRUCT
79 /* Some versions of compiler define MEMORYSTATUSEX, some don't, so we
80 use a different name to avoid compilation problems. */
81 typedef struct _MEMORY_STATUS_EX
{
84 DWORDLONG ullTotalPhys
;
85 DWORDLONG ullAvailPhys
;
86 DWORDLONG ullTotalPageFile
;
87 DWORDLONG ullAvailPageFile
;
88 DWORDLONG ullTotalVirtual
;
89 DWORDLONG ullAvailVirtual
;
90 DWORDLONG ullAvailExtendedVirtual
;
91 } MEMORY_STATUS_EX
,*LPMEMORY_STATUS_EX
;
101 #if _WIN32_WINNT < 0x0500
102 #if !defined (__MINGW32__) || __W32API_MAJOR_VERSION < 3 || (__W32API_MAJOR_VERSION == 3 && __W32API_MINOR_VERSION < 15)
103 /* This either is not in psapi.h or guarded by higher value of
104 _WIN32_WINNT than what we use. w32api supplied with MinGW 3.15
105 defines it in psapi.h */
106 typedef struct _PROCESS_MEMORY_COUNTERS_EX
{
108 DWORD PageFaultCount
;
109 SIZE_T PeakWorkingSetSize
;
110 SIZE_T WorkingSetSize
;
111 SIZE_T QuotaPeakPagedPoolUsage
;
112 SIZE_T QuotaPagedPoolUsage
;
113 SIZE_T QuotaPeakNonPagedPoolUsage
;
114 SIZE_T QuotaNonPagedPoolUsage
;
115 SIZE_T PagefileUsage
;
116 SIZE_T PeakPagefileUsage
;
118 } PROCESS_MEMORY_COUNTERS_EX
,*PPROCESS_MEMORY_COUNTERS_EX
;
122 #include <winioctl.h>
128 /* This is not in MinGW's sddl.h (but they are in MSVC headers), so we
129 define them by hand if not already defined. */
130 #ifndef SDDL_REVISION_1
131 #define SDDL_REVISION_1 1
132 #endif /* SDDL_REVISION_1 */
134 #if defined(_MSC_VER) || defined(_W64)
135 /* MSVC and MinGW64 don't provide the definition of
136 REPARSE_DATA_BUFFER and the associated macros, except on ntifs.h,
137 which cannot be included because it triggers conflicts with other
138 Windows API headers. So we define it here by hand. */
140 typedef struct _REPARSE_DATA_BUFFER
{
142 USHORT ReparseDataLength
;
146 USHORT SubstituteNameOffset
;
147 USHORT SubstituteNameLength
;
148 USHORT PrintNameOffset
;
149 USHORT PrintNameLength
;
152 } SymbolicLinkReparseBuffer
;
154 USHORT SubstituteNameOffset
;
155 USHORT SubstituteNameLength
;
156 USHORT PrintNameOffset
;
157 USHORT PrintNameLength
;
159 } MountPointReparseBuffer
;
162 } GenericReparseBuffer
;
164 } REPARSE_DATA_BUFFER
, *PREPARSE_DATA_BUFFER
;
166 #ifndef FILE_DEVICE_FILE_SYSTEM
167 #define FILE_DEVICE_FILE_SYSTEM 9
169 #ifndef METHOD_BUFFERED
170 #define METHOD_BUFFERED 0
172 #ifndef FILE_ANY_ACCESS
173 #define FILE_ANY_ACCESS 0x00000000
176 #define CTL_CODE(t,f,m,a) (((t)<<16)|((a)<<14)|((f)<<2)|(m))
178 /* MinGW64 defines FSCTL_GET_REPARSE_POINT on winioctl.h. */
179 #ifndef FSCTL_GET_REPARSE_POINT
180 #define FSCTL_GET_REPARSE_POINT \
181 CTL_CODE(FILE_DEVICE_FILE_SYSTEM, 42, METHOD_BUFFERED, FILE_ANY_ACCESS)
185 /* TCP connection support. */
186 #include <sys/socket.h>
207 #include "w32common.h"
209 #include "w32select.h"
211 #include "dispextern.h" /* for xstrcasecmp */
212 #include "coding.h" /* for Vlocale_coding_system */
214 #include "careadlinkat.h"
215 #include "allocator.h"
217 /* For serial_configure and serial_open. */
220 typedef HRESULT (WINAPI
* ShGetFolderPath_fn
)
221 (IN HWND
, IN
int, IN HANDLE
, IN DWORD
, OUT
char *);
223 Lisp_Object QCloaded_from
;
225 void globals_of_w32 (void);
226 static DWORD
get_rid (PSID
);
227 static int is_symlink (const char *);
228 static char * chase_symlinks (const char *);
229 static int enable_privilege (LPCTSTR
, BOOL
, TOKEN_PRIVILEGES
*);
230 static int restore_privilege (TOKEN_PRIVILEGES
*);
231 static BOOL WINAPI
revert_to_self (void);
233 extern int sys_access (const char *, int);
234 extern void *e_malloc (size_t);
235 extern int sys_select (int, SELECT_TYPE
*, SELECT_TYPE
*, SELECT_TYPE
*,
236 EMACS_TIME
*, void *);
240 /* Initialization states.
242 WARNING: If you add any more such variables for additional APIs,
243 you MUST add initialization for them to globals_of_w32
244 below. This is because these variables might get set
245 to non-NULL values during dumping, but the dumped Emacs
246 cannot reuse those values, because it could be run on a
247 different version of the OS, where API addresses are
249 static BOOL g_b_init_is_windows_9x
;
250 static BOOL g_b_init_open_process_token
;
251 static BOOL g_b_init_get_token_information
;
252 static BOOL g_b_init_lookup_account_sid
;
253 static BOOL g_b_init_get_sid_sub_authority
;
254 static BOOL g_b_init_get_sid_sub_authority_count
;
255 static BOOL g_b_init_get_security_info
;
256 static BOOL g_b_init_get_file_security
;
257 static BOOL g_b_init_get_security_descriptor_owner
;
258 static BOOL g_b_init_get_security_descriptor_group
;
259 static BOOL g_b_init_is_valid_sid
;
260 static BOOL g_b_init_create_toolhelp32_snapshot
;
261 static BOOL g_b_init_process32_first
;
262 static BOOL g_b_init_process32_next
;
263 static BOOL g_b_init_open_thread_token
;
264 static BOOL g_b_init_impersonate_self
;
265 static BOOL g_b_init_revert_to_self
;
266 static BOOL g_b_init_get_process_memory_info
;
267 static BOOL g_b_init_get_process_working_set_size
;
268 static BOOL g_b_init_global_memory_status
;
269 static BOOL g_b_init_global_memory_status_ex
;
270 static BOOL g_b_init_get_length_sid
;
271 static BOOL g_b_init_equal_sid
;
272 static BOOL g_b_init_copy_sid
;
273 static BOOL g_b_init_get_native_system_info
;
274 static BOOL g_b_init_get_system_times
;
275 static BOOL g_b_init_create_symbolic_link
;
276 static BOOL g_b_init_get_security_descriptor_dacl
;
277 static BOOL g_b_init_convert_sd_to_sddl
;
278 static BOOL g_b_init_convert_sddl_to_sd
;
279 static BOOL g_b_init_is_valid_security_descriptor
;
280 static BOOL g_b_init_set_file_security
;
283 BEGIN: Wrapper functions around OpenProcessToken
284 and other functions in advapi32.dll that are only
285 supported in Windows NT / 2k / XP
287 /* ** Function pointer typedefs ** */
288 typedef BOOL (WINAPI
* OpenProcessToken_Proc
) (
289 HANDLE ProcessHandle
,
291 PHANDLE TokenHandle
);
292 typedef BOOL (WINAPI
* GetTokenInformation_Proc
) (
294 TOKEN_INFORMATION_CLASS TokenInformationClass
,
295 LPVOID TokenInformation
,
296 DWORD TokenInformationLength
,
297 PDWORD ReturnLength
);
298 typedef BOOL (WINAPI
* GetProcessTimes_Proc
) (
299 HANDLE process_handle
,
300 LPFILETIME creation_time
,
301 LPFILETIME exit_time
,
302 LPFILETIME kernel_time
,
303 LPFILETIME user_time
);
305 GetProcessTimes_Proc get_process_times_fn
= NULL
;
308 const char * const LookupAccountSid_Name
= "LookupAccountSidW";
309 const char * const GetFileSecurity_Name
= "GetFileSecurityW";
310 const char * const SetFileSecurity_Name
= "SetFileSecurityW";
312 const char * const LookupAccountSid_Name
= "LookupAccountSidA";
313 const char * const GetFileSecurity_Name
= "GetFileSecurityA";
314 const char * const SetFileSecurity_Name
= "SetFileSecurityA";
316 typedef BOOL (WINAPI
* LookupAccountSid_Proc
) (
317 LPCTSTR lpSystemName
,
322 LPDWORD cbDomainName
,
323 PSID_NAME_USE peUse
);
324 typedef PDWORD (WINAPI
* GetSidSubAuthority_Proc
) (
327 typedef PUCHAR (WINAPI
* GetSidSubAuthorityCount_Proc
) (
329 typedef DWORD (WINAPI
* GetSecurityInfo_Proc
) (
331 SE_OBJECT_TYPE ObjectType
,
332 SECURITY_INFORMATION SecurityInfo
,
337 PSECURITY_DESCRIPTOR
*ppSecurityDescriptor
);
338 typedef BOOL (WINAPI
* GetFileSecurity_Proc
) (
340 SECURITY_INFORMATION RequestedInformation
,
341 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
343 LPDWORD lpnLengthNeeded
);
344 typedef BOOL (WINAPI
*SetFileSecurity_Proc
) (
346 SECURITY_INFORMATION SecurityInformation
,
347 PSECURITY_DESCRIPTOR pSecurityDescriptor
);
348 typedef BOOL (WINAPI
* GetSecurityDescriptorOwner_Proc
) (
349 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
351 LPBOOL lpbOwnerDefaulted
);
352 typedef BOOL (WINAPI
* GetSecurityDescriptorGroup_Proc
) (
353 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
355 LPBOOL lpbGroupDefaulted
);
356 typedef BOOL (WINAPI
*GetSecurityDescriptorDacl_Proc
) (
357 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
358 LPBOOL lpbDaclPresent
,
360 LPBOOL lpbDaclDefaulted
);
361 typedef BOOL (WINAPI
* IsValidSid_Proc
) (
363 typedef HANDLE (WINAPI
* CreateToolhelp32Snapshot_Proc
) (
365 DWORD th32ProcessID
);
366 typedef BOOL (WINAPI
* Process32First_Proc
) (
368 LPPROCESSENTRY32 lppe
);
369 typedef BOOL (WINAPI
* Process32Next_Proc
) (
371 LPPROCESSENTRY32 lppe
);
372 typedef BOOL (WINAPI
* OpenThreadToken_Proc
) (
376 PHANDLE TokenHandle
);
377 typedef BOOL (WINAPI
* ImpersonateSelf_Proc
) (
378 SECURITY_IMPERSONATION_LEVEL ImpersonationLevel
);
379 typedef BOOL (WINAPI
* RevertToSelf_Proc
) (void);
380 typedef BOOL (WINAPI
* GetProcessMemoryInfo_Proc
) (
382 PPROCESS_MEMORY_COUNTERS ppsmemCounters
,
384 typedef BOOL (WINAPI
* GetProcessWorkingSetSize_Proc
) (
386 PSIZE_T lpMinimumWorkingSetSize
,
387 PSIZE_T lpMaximumWorkingSetSize
);
388 typedef BOOL (WINAPI
* GlobalMemoryStatus_Proc
) (
389 LPMEMORYSTATUS lpBuffer
);
390 typedef BOOL (WINAPI
* GlobalMemoryStatusEx_Proc
) (
391 LPMEMORY_STATUS_EX lpBuffer
);
392 typedef BOOL (WINAPI
* CopySid_Proc
) (
393 DWORD nDestinationSidLength
,
394 PSID pDestinationSid
,
396 typedef BOOL (WINAPI
* EqualSid_Proc
) (
399 typedef DWORD (WINAPI
* GetLengthSid_Proc
) (
401 typedef void (WINAPI
* GetNativeSystemInfo_Proc
) (
402 LPSYSTEM_INFO lpSystemInfo
);
403 typedef BOOL (WINAPI
* GetSystemTimes_Proc
) (
404 LPFILETIME lpIdleTime
,
405 LPFILETIME lpKernelTime
,
406 LPFILETIME lpUserTime
);
407 typedef BOOLEAN (WINAPI
*CreateSymbolicLink_Proc
) (
408 LPTSTR lpSymlinkFileName
,
409 LPTSTR lpTargetFileName
,
411 typedef BOOL (WINAPI
*ConvertStringSecurityDescriptorToSecurityDescriptor_Proc
) (
412 LPCTSTR StringSecurityDescriptor
,
413 DWORD StringSDRevision
,
414 PSECURITY_DESCRIPTOR
*SecurityDescriptor
,
415 PULONG SecurityDescriptorSize
);
416 typedef BOOL (WINAPI
*ConvertSecurityDescriptorToStringSecurityDescriptor_Proc
) (
417 PSECURITY_DESCRIPTOR SecurityDescriptor
,
418 DWORD RequestedStringSDRevision
,
419 SECURITY_INFORMATION SecurityInformation
,
420 LPTSTR
*StringSecurityDescriptor
,
421 PULONG StringSecurityDescriptorLen
);
422 typedef BOOL (WINAPI
*IsValidSecurityDescriptor_Proc
) (PSECURITY_DESCRIPTOR
);
424 /* ** A utility function ** */
428 static BOOL s_b_ret
= 0;
429 OSVERSIONINFO os_ver
;
430 if (g_b_init_is_windows_9x
== 0)
432 g_b_init_is_windows_9x
= 1;
433 ZeroMemory (&os_ver
, sizeof (OSVERSIONINFO
));
434 os_ver
.dwOSVersionInfoSize
= sizeof (OSVERSIONINFO
);
435 if (GetVersionEx (&os_ver
))
437 s_b_ret
= (os_ver
.dwPlatformId
== VER_PLATFORM_WIN32_WINDOWS
);
443 static Lisp_Object
ltime (ULONGLONG
);
445 /* Get total user and system times for get-internal-run-time.
446 Returns a list of integers if the times are provided by the OS
447 (NT derivatives), otherwise it returns the result of current-time. */
449 w32_get_internal_run_time (void)
451 if (get_process_times_fn
)
453 FILETIME create
, exit
, kernel
, user
;
454 HANDLE proc
= GetCurrentProcess ();
455 if ((*get_process_times_fn
) (proc
, &create
, &exit
, &kernel
, &user
))
457 LARGE_INTEGER user_int
, kernel_int
, total
;
458 user_int
.LowPart
= user
.dwLowDateTime
;
459 user_int
.HighPart
= user
.dwHighDateTime
;
460 kernel_int
.LowPart
= kernel
.dwLowDateTime
;
461 kernel_int
.HighPart
= kernel
.dwHighDateTime
;
462 total
.QuadPart
= user_int
.QuadPart
+ kernel_int
.QuadPart
;
463 return ltime (total
.QuadPart
);
467 return Fcurrent_time ();
470 /* ** The wrapper functions ** */
473 open_process_token (HANDLE ProcessHandle
,
477 static OpenProcessToken_Proc s_pfn_Open_Process_Token
= NULL
;
478 HMODULE hm_advapi32
= NULL
;
479 if (is_windows_9x () == TRUE
)
483 if (g_b_init_open_process_token
== 0)
485 g_b_init_open_process_token
= 1;
486 hm_advapi32
= LoadLibrary ("Advapi32.dll");
487 s_pfn_Open_Process_Token
=
488 (OpenProcessToken_Proc
) GetProcAddress (hm_advapi32
, "OpenProcessToken");
490 if (s_pfn_Open_Process_Token
== NULL
)
495 s_pfn_Open_Process_Token (
503 get_token_information (HANDLE TokenHandle
,
504 TOKEN_INFORMATION_CLASS TokenInformationClass
,
505 LPVOID TokenInformation
,
506 DWORD TokenInformationLength
,
509 static GetTokenInformation_Proc s_pfn_Get_Token_Information
= NULL
;
510 HMODULE hm_advapi32
= NULL
;
511 if (is_windows_9x () == TRUE
)
515 if (g_b_init_get_token_information
== 0)
517 g_b_init_get_token_information
= 1;
518 hm_advapi32
= LoadLibrary ("Advapi32.dll");
519 s_pfn_Get_Token_Information
=
520 (GetTokenInformation_Proc
) GetProcAddress (hm_advapi32
, "GetTokenInformation");
522 if (s_pfn_Get_Token_Information
== NULL
)
527 s_pfn_Get_Token_Information (
529 TokenInformationClass
,
531 TokenInformationLength
,
537 lookup_account_sid (LPCTSTR lpSystemName
,
542 LPDWORD cbDomainName
,
545 static LookupAccountSid_Proc s_pfn_Lookup_Account_Sid
= NULL
;
546 HMODULE hm_advapi32
= NULL
;
547 if (is_windows_9x () == TRUE
)
551 if (g_b_init_lookup_account_sid
== 0)
553 g_b_init_lookup_account_sid
= 1;
554 hm_advapi32
= LoadLibrary ("Advapi32.dll");
555 s_pfn_Lookup_Account_Sid
=
556 (LookupAccountSid_Proc
) GetProcAddress (hm_advapi32
, LookupAccountSid_Name
);
558 if (s_pfn_Lookup_Account_Sid
== NULL
)
563 s_pfn_Lookup_Account_Sid (
575 get_sid_sub_authority (PSID pSid
, DWORD n
)
577 static GetSidSubAuthority_Proc s_pfn_Get_Sid_Sub_Authority
= NULL
;
578 static DWORD zero
= 0U;
579 HMODULE hm_advapi32
= NULL
;
580 if (is_windows_9x () == TRUE
)
584 if (g_b_init_get_sid_sub_authority
== 0)
586 g_b_init_get_sid_sub_authority
= 1;
587 hm_advapi32
= LoadLibrary ("Advapi32.dll");
588 s_pfn_Get_Sid_Sub_Authority
=
589 (GetSidSubAuthority_Proc
) GetProcAddress (
590 hm_advapi32
, "GetSidSubAuthority");
592 if (s_pfn_Get_Sid_Sub_Authority
== NULL
)
596 return (s_pfn_Get_Sid_Sub_Authority (pSid
, n
));
600 get_sid_sub_authority_count (PSID pSid
)
602 static GetSidSubAuthorityCount_Proc s_pfn_Get_Sid_Sub_Authority_Count
= NULL
;
603 static UCHAR zero
= 0U;
604 HMODULE hm_advapi32
= NULL
;
605 if (is_windows_9x () == TRUE
)
609 if (g_b_init_get_sid_sub_authority_count
== 0)
611 g_b_init_get_sid_sub_authority_count
= 1;
612 hm_advapi32
= LoadLibrary ("Advapi32.dll");
613 s_pfn_Get_Sid_Sub_Authority_Count
=
614 (GetSidSubAuthorityCount_Proc
) GetProcAddress (
615 hm_advapi32
, "GetSidSubAuthorityCount");
617 if (s_pfn_Get_Sid_Sub_Authority_Count
== NULL
)
621 return (s_pfn_Get_Sid_Sub_Authority_Count (pSid
));
625 get_security_info (HANDLE handle
,
626 SE_OBJECT_TYPE ObjectType
,
627 SECURITY_INFORMATION SecurityInfo
,
632 PSECURITY_DESCRIPTOR
*ppSecurityDescriptor
)
634 static GetSecurityInfo_Proc s_pfn_Get_Security_Info
= NULL
;
635 HMODULE hm_advapi32
= NULL
;
636 if (is_windows_9x () == TRUE
)
640 if (g_b_init_get_security_info
== 0)
642 g_b_init_get_security_info
= 1;
643 hm_advapi32
= LoadLibrary ("Advapi32.dll");
644 s_pfn_Get_Security_Info
=
645 (GetSecurityInfo_Proc
) GetProcAddress (
646 hm_advapi32
, "GetSecurityInfo");
648 if (s_pfn_Get_Security_Info
== NULL
)
652 return (s_pfn_Get_Security_Info (handle
, ObjectType
, SecurityInfo
,
653 ppsidOwner
, ppsidGroup
, ppDacl
, ppSacl
,
654 ppSecurityDescriptor
));
658 get_file_security (LPCTSTR lpFileName
,
659 SECURITY_INFORMATION RequestedInformation
,
660 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
662 LPDWORD lpnLengthNeeded
)
664 static GetFileSecurity_Proc s_pfn_Get_File_Security
= NULL
;
665 HMODULE hm_advapi32
= NULL
;
666 if (is_windows_9x () == TRUE
)
671 if (g_b_init_get_file_security
== 0)
673 g_b_init_get_file_security
= 1;
674 hm_advapi32
= LoadLibrary ("Advapi32.dll");
675 s_pfn_Get_File_Security
=
676 (GetFileSecurity_Proc
) GetProcAddress (
677 hm_advapi32
, GetFileSecurity_Name
);
679 if (s_pfn_Get_File_Security
== NULL
)
684 return (s_pfn_Get_File_Security (lpFileName
, RequestedInformation
,
685 pSecurityDescriptor
, nLength
,
690 set_file_security (LPCTSTR lpFileName
,
691 SECURITY_INFORMATION SecurityInformation
,
692 PSECURITY_DESCRIPTOR pSecurityDescriptor
)
694 static SetFileSecurity_Proc s_pfn_Set_File_Security
= NULL
;
695 HMODULE hm_advapi32
= NULL
;
696 if (is_windows_9x () == TRUE
)
701 if (g_b_init_set_file_security
== 0)
703 g_b_init_set_file_security
= 1;
704 hm_advapi32
= LoadLibrary ("Advapi32.dll");
705 s_pfn_Set_File_Security
=
706 (SetFileSecurity_Proc
) GetProcAddress (
707 hm_advapi32
, SetFileSecurity_Name
);
709 if (s_pfn_Set_File_Security
== NULL
)
714 return (s_pfn_Set_File_Security (lpFileName
, SecurityInformation
,
715 pSecurityDescriptor
));
719 get_security_descriptor_owner (PSECURITY_DESCRIPTOR pSecurityDescriptor
,
721 LPBOOL lpbOwnerDefaulted
)
723 static GetSecurityDescriptorOwner_Proc s_pfn_Get_Security_Descriptor_Owner
= NULL
;
724 HMODULE hm_advapi32
= NULL
;
725 if (is_windows_9x () == TRUE
)
730 if (g_b_init_get_security_descriptor_owner
== 0)
732 g_b_init_get_security_descriptor_owner
= 1;
733 hm_advapi32
= LoadLibrary ("Advapi32.dll");
734 s_pfn_Get_Security_Descriptor_Owner
=
735 (GetSecurityDescriptorOwner_Proc
) GetProcAddress (
736 hm_advapi32
, "GetSecurityDescriptorOwner");
738 if (s_pfn_Get_Security_Descriptor_Owner
== NULL
)
743 return (s_pfn_Get_Security_Descriptor_Owner (pSecurityDescriptor
, pOwner
,
748 get_security_descriptor_group (PSECURITY_DESCRIPTOR pSecurityDescriptor
,
750 LPBOOL lpbGroupDefaulted
)
752 static GetSecurityDescriptorGroup_Proc s_pfn_Get_Security_Descriptor_Group
= NULL
;
753 HMODULE hm_advapi32
= NULL
;
754 if (is_windows_9x () == TRUE
)
759 if (g_b_init_get_security_descriptor_group
== 0)
761 g_b_init_get_security_descriptor_group
= 1;
762 hm_advapi32
= LoadLibrary ("Advapi32.dll");
763 s_pfn_Get_Security_Descriptor_Group
=
764 (GetSecurityDescriptorGroup_Proc
) GetProcAddress (
765 hm_advapi32
, "GetSecurityDescriptorGroup");
767 if (s_pfn_Get_Security_Descriptor_Group
== NULL
)
772 return (s_pfn_Get_Security_Descriptor_Group (pSecurityDescriptor
, pGroup
,
777 get_security_descriptor_dacl (PSECURITY_DESCRIPTOR pSecurityDescriptor
,
778 LPBOOL lpbDaclPresent
,
780 LPBOOL lpbDaclDefaulted
)
782 static GetSecurityDescriptorDacl_Proc s_pfn_Get_Security_Descriptor_Dacl
= NULL
;
783 HMODULE hm_advapi32
= NULL
;
784 if (is_windows_9x () == TRUE
)
789 if (g_b_init_get_security_descriptor_dacl
== 0)
791 g_b_init_get_security_descriptor_dacl
= 1;
792 hm_advapi32
= LoadLibrary ("Advapi32.dll");
793 s_pfn_Get_Security_Descriptor_Dacl
=
794 (GetSecurityDescriptorDacl_Proc
) GetProcAddress (
795 hm_advapi32
, "GetSecurityDescriptorDacl");
797 if (s_pfn_Get_Security_Descriptor_Dacl
== NULL
)
802 return (s_pfn_Get_Security_Descriptor_Dacl (pSecurityDescriptor
,
803 lpbDaclPresent
, pDacl
,
808 is_valid_sid (PSID sid
)
810 static IsValidSid_Proc s_pfn_Is_Valid_Sid
= NULL
;
811 HMODULE hm_advapi32
= NULL
;
812 if (is_windows_9x () == TRUE
)
816 if (g_b_init_is_valid_sid
== 0)
818 g_b_init_is_valid_sid
= 1;
819 hm_advapi32
= LoadLibrary ("Advapi32.dll");
821 (IsValidSid_Proc
) GetProcAddress (
822 hm_advapi32
, "IsValidSid");
824 if (s_pfn_Is_Valid_Sid
== NULL
)
828 return (s_pfn_Is_Valid_Sid (sid
));
832 equal_sid (PSID sid1
, PSID sid2
)
834 static EqualSid_Proc s_pfn_Equal_Sid
= NULL
;
835 HMODULE hm_advapi32
= NULL
;
836 if (is_windows_9x () == TRUE
)
840 if (g_b_init_equal_sid
== 0)
842 g_b_init_equal_sid
= 1;
843 hm_advapi32
= LoadLibrary ("Advapi32.dll");
845 (EqualSid_Proc
) GetProcAddress (
846 hm_advapi32
, "EqualSid");
848 if (s_pfn_Equal_Sid
== NULL
)
852 return (s_pfn_Equal_Sid (sid1
, sid2
));
856 get_length_sid (PSID sid
)
858 static GetLengthSid_Proc s_pfn_Get_Length_Sid
= NULL
;
859 HMODULE hm_advapi32
= NULL
;
860 if (is_windows_9x () == TRUE
)
864 if (g_b_init_get_length_sid
== 0)
866 g_b_init_get_length_sid
= 1;
867 hm_advapi32
= LoadLibrary ("Advapi32.dll");
868 s_pfn_Get_Length_Sid
=
869 (GetLengthSid_Proc
) GetProcAddress (
870 hm_advapi32
, "GetLengthSid");
872 if (s_pfn_Get_Length_Sid
== NULL
)
876 return (s_pfn_Get_Length_Sid (sid
));
880 copy_sid (DWORD destlen
, PSID dest
, PSID src
)
882 static CopySid_Proc s_pfn_Copy_Sid
= NULL
;
883 HMODULE hm_advapi32
= NULL
;
884 if (is_windows_9x () == TRUE
)
888 if (g_b_init_copy_sid
== 0)
890 g_b_init_copy_sid
= 1;
891 hm_advapi32
= LoadLibrary ("Advapi32.dll");
893 (CopySid_Proc
) GetProcAddress (
894 hm_advapi32
, "CopySid");
896 if (s_pfn_Copy_Sid
== NULL
)
900 return (s_pfn_Copy_Sid (destlen
, dest
, src
));
904 END: Wrapper functions around OpenProcessToken
905 and other functions in advapi32.dll that are only
906 supported in Windows NT / 2k / XP
910 get_native_system_info (LPSYSTEM_INFO lpSystemInfo
)
912 static GetNativeSystemInfo_Proc s_pfn_Get_Native_System_Info
= NULL
;
913 if (is_windows_9x () != TRUE
)
915 if (g_b_init_get_native_system_info
== 0)
917 g_b_init_get_native_system_info
= 1;
918 s_pfn_Get_Native_System_Info
=
919 (GetNativeSystemInfo_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
920 "GetNativeSystemInfo");
922 if (s_pfn_Get_Native_System_Info
!= NULL
)
923 s_pfn_Get_Native_System_Info (lpSystemInfo
);
926 lpSystemInfo
->dwNumberOfProcessors
= -1;
930 get_system_times (LPFILETIME lpIdleTime
,
931 LPFILETIME lpKernelTime
,
932 LPFILETIME lpUserTime
)
934 static GetSystemTimes_Proc s_pfn_Get_System_times
= NULL
;
935 if (is_windows_9x () == TRUE
)
939 if (g_b_init_get_system_times
== 0)
941 g_b_init_get_system_times
= 1;
942 s_pfn_Get_System_times
=
943 (GetSystemTimes_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
946 if (s_pfn_Get_System_times
== NULL
)
948 return (s_pfn_Get_System_times (lpIdleTime
, lpKernelTime
, lpUserTime
));
951 static BOOLEAN WINAPI
952 create_symbolic_link (LPTSTR lpSymlinkFilename
,
953 LPTSTR lpTargetFileName
,
956 static CreateSymbolicLink_Proc s_pfn_Create_Symbolic_Link
= NULL
;
959 if (is_windows_9x () == TRUE
)
964 if (g_b_init_create_symbolic_link
== 0)
966 g_b_init_create_symbolic_link
= 1;
968 s_pfn_Create_Symbolic_Link
=
969 (CreateSymbolicLink_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
970 "CreateSymbolicLinkW");
972 s_pfn_Create_Symbolic_Link
=
973 (CreateSymbolicLink_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
974 "CreateSymbolicLinkA");
977 if (s_pfn_Create_Symbolic_Link
== NULL
)
983 retval
= s_pfn_Create_Symbolic_Link (lpSymlinkFilename
, lpTargetFileName
,
985 /* If we were denied creation of the symlink, try again after
986 enabling the SeCreateSymbolicLinkPrivilege for our process. */
989 TOKEN_PRIVILEGES priv_current
;
991 if (enable_privilege (SE_CREATE_SYMBOLIC_LINK_NAME
, TRUE
, &priv_current
))
993 retval
= s_pfn_Create_Symbolic_Link (lpSymlinkFilename
, lpTargetFileName
,
995 restore_privilege (&priv_current
);
1003 is_valid_security_descriptor (PSECURITY_DESCRIPTOR pSecurityDescriptor
)
1005 static IsValidSecurityDescriptor_Proc s_pfn_Is_Valid_Security_Descriptor_Proc
= NULL
;
1007 if (is_windows_9x () == TRUE
)
1013 if (g_b_init_is_valid_security_descriptor
== 0)
1015 g_b_init_is_valid_security_descriptor
= 1;
1016 s_pfn_Is_Valid_Security_Descriptor_Proc
=
1017 (IsValidSecurityDescriptor_Proc
)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1018 "IsValidSecurityDescriptor");
1020 if (s_pfn_Is_Valid_Security_Descriptor_Proc
== NULL
)
1026 return s_pfn_Is_Valid_Security_Descriptor_Proc (pSecurityDescriptor
);
1030 convert_sd_to_sddl (PSECURITY_DESCRIPTOR SecurityDescriptor
,
1031 DWORD RequestedStringSDRevision
,
1032 SECURITY_INFORMATION SecurityInformation
,
1033 LPTSTR
*StringSecurityDescriptor
,
1034 PULONG StringSecurityDescriptorLen
)
1036 static ConvertSecurityDescriptorToStringSecurityDescriptor_Proc s_pfn_Convert_SD_To_SDDL
= NULL
;
1039 if (is_windows_9x () == TRUE
)
1045 if (g_b_init_convert_sd_to_sddl
== 0)
1047 g_b_init_convert_sd_to_sddl
= 1;
1049 s_pfn_Convert_SD_To_SDDL
=
1050 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc
)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1051 "ConvertSecurityDescriptorToStringSecurityDescriptorW");
1053 s_pfn_Convert_SD_To_SDDL
=
1054 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc
)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1055 "ConvertSecurityDescriptorToStringSecurityDescriptorA");
1058 if (s_pfn_Convert_SD_To_SDDL
== NULL
)
1064 retval
= s_pfn_Convert_SD_To_SDDL (SecurityDescriptor
,
1065 RequestedStringSDRevision
,
1066 SecurityInformation
,
1067 StringSecurityDescriptor
,
1068 StringSecurityDescriptorLen
);
1074 convert_sddl_to_sd (LPCTSTR StringSecurityDescriptor
,
1075 DWORD StringSDRevision
,
1076 PSECURITY_DESCRIPTOR
*SecurityDescriptor
,
1077 PULONG SecurityDescriptorSize
)
1079 static ConvertStringSecurityDescriptorToSecurityDescriptor_Proc s_pfn_Convert_SDDL_To_SD
= NULL
;
1082 if (is_windows_9x () == TRUE
)
1088 if (g_b_init_convert_sddl_to_sd
== 0)
1090 g_b_init_convert_sddl_to_sd
= 1;
1092 s_pfn_Convert_SDDL_To_SD
=
1093 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc
)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1094 "ConvertStringSecurityDescriptorToSecurityDescriptorW");
1096 s_pfn_Convert_SDDL_To_SD
=
1097 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc
)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1098 "ConvertStringSecurityDescriptorToSecurityDescriptorA");
1101 if (s_pfn_Convert_SDDL_To_SD
== NULL
)
1107 retval
= s_pfn_Convert_SDDL_To_SD (StringSecurityDescriptor
,
1110 SecurityDescriptorSize
);
1117 /* Return 1 if P is a valid pointer to an object of size SIZE. Return
1118 0 if P is NOT a valid pointer. Return -1 if we cannot validate P.
1120 This is called from alloc.c:valid_pointer_p. */
1122 w32_valid_pointer_p (void *p
, int size
)
1125 HANDLE h
= OpenProcess (PROCESS_VM_READ
, FALSE
, GetCurrentProcessId ());
1129 unsigned char *buf
= alloca (size
);
1130 int retval
= ReadProcessMemory (h
, p
, buf
, size
, &done
);
1139 static char startup_dir
[MAXPATHLEN
];
1141 /* Get the current working directory. */
1143 getcwd (char *dir
, int dirsize
)
1150 if (dirsize
<= strlen (startup_dir
))
1156 if (GetCurrentDirectory (MAXPATHLEN
, dir
) > 0)
1160 /* Emacs doesn't actually change directory itself, it stays in the
1161 same directory where it was started. */
1162 strcpy (dir
, startup_dir
);
1167 /* Emulate getloadavg. */
1169 struct load_sample
{
1176 /* Number of processors on this machine. */
1177 static unsigned num_of_processors
;
1179 /* We maintain 1-sec samples for the last 16 minutes in a circular buffer. */
1180 static struct load_sample samples
[16*60];
1181 static int first_idx
= -1, last_idx
= -1;
1182 static int max_idx
= sizeof (samples
) / sizeof (samples
[0]);
1187 int next_idx
= from
+ 1;
1189 if (next_idx
>= max_idx
)
1198 int prev_idx
= from
- 1;
1201 prev_idx
= max_idx
- 1;
1207 sample_system_load (ULONGLONG
*idle
, ULONGLONG
*kernel
, ULONGLONG
*user
)
1209 SYSTEM_INFO sysinfo
;
1210 FILETIME ft_idle
, ft_user
, ft_kernel
;
1212 /* Initialize the number of processors on this machine. */
1213 if (num_of_processors
<= 0)
1215 get_native_system_info (&sysinfo
);
1216 num_of_processors
= sysinfo
.dwNumberOfProcessors
;
1217 if (num_of_processors
<= 0)
1219 GetSystemInfo (&sysinfo
);
1220 num_of_processors
= sysinfo
.dwNumberOfProcessors
;
1222 if (num_of_processors
<= 0)
1223 num_of_processors
= 1;
1226 /* TODO: Take into account threads that are ready to run, by
1227 sampling the "\System\Processor Queue Length" performance
1228 counter. The code below accounts only for threads that are
1229 actually running. */
1231 if (get_system_times (&ft_idle
, &ft_kernel
, &ft_user
))
1233 ULARGE_INTEGER uidle
, ukernel
, uuser
;
1235 memcpy (&uidle
, &ft_idle
, sizeof (ft_idle
));
1236 memcpy (&ukernel
, &ft_kernel
, sizeof (ft_kernel
));
1237 memcpy (&uuser
, &ft_user
, sizeof (ft_user
));
1238 *idle
= uidle
.QuadPart
;
1239 *kernel
= ukernel
.QuadPart
;
1240 *user
= uuser
.QuadPart
;
1250 /* Produce the load average for a given time interval, using the
1251 samples in the samples[] array. WHICH can be 0, 1, or 2, meaning
1252 1-minute, 5-minute, or 15-minute average, respectively. */
1256 double retval
= -1.0;
1259 double span
= (which
== 0 ? 1.0 : (which
== 1 ? 5.0 : 15.0)) * 60;
1260 time_t now
= samples
[last_idx
].sample_time
;
1262 if (first_idx
!= last_idx
)
1264 for (idx
= buf_prev (last_idx
); ; idx
= buf_prev (idx
))
1266 tdiff
= difftime (now
, samples
[idx
].sample_time
);
1267 if (tdiff
>= span
- 2*DBL_EPSILON
*now
)
1270 samples
[last_idx
].kernel
+ samples
[last_idx
].user
1271 - (samples
[idx
].kernel
+ samples
[idx
].user
);
1272 long double idl
= samples
[last_idx
].idle
- samples
[idx
].idle
;
1274 retval
= (1.0 - idl
/ sys
) * num_of_processors
;
1277 if (idx
== first_idx
)
1286 getloadavg (double loadavg
[], int nelem
)
1289 ULONGLONG idle
, kernel
, user
;
1290 time_t now
= time (NULL
);
1292 /* Store another sample. We ignore samples that are less than 1 sec
1294 if (difftime (now
, samples
[last_idx
].sample_time
) >= 1.0 - 2*DBL_EPSILON
*now
)
1296 sample_system_load (&idle
, &kernel
, &user
);
1297 last_idx
= buf_next (last_idx
);
1298 samples
[last_idx
].sample_time
= now
;
1299 samples
[last_idx
].idle
= idle
;
1300 samples
[last_idx
].kernel
= kernel
;
1301 samples
[last_idx
].user
= user
;
1302 /* If the buffer has more that 15 min worth of samples, discard
1304 if (first_idx
== -1)
1305 first_idx
= last_idx
;
1306 while (first_idx
!= last_idx
1307 && (difftime (now
, samples
[first_idx
].sample_time
)
1308 >= 15.0*60 + 2*DBL_EPSILON
*now
))
1309 first_idx
= buf_next (first_idx
);
1312 for (elem
= 0; elem
< nelem
; elem
++)
1314 double avg
= getavg (elem
);
1318 loadavg
[elem
] = avg
;
1324 /* Emulate getpwuid, getpwnam and others. */
1326 #define PASSWD_FIELD_SIZE 256
1328 static char dflt_passwd_name
[PASSWD_FIELD_SIZE
];
1329 static char dflt_passwd_passwd
[PASSWD_FIELD_SIZE
];
1330 static char dflt_passwd_gecos
[PASSWD_FIELD_SIZE
];
1331 static char dflt_passwd_dir
[PASSWD_FIELD_SIZE
];
1332 static char dflt_passwd_shell
[PASSWD_FIELD_SIZE
];
1334 static struct passwd dflt_passwd
=
1346 static char dflt_group_name
[GNLEN
+1];
1348 static struct group dflt_group
=
1350 /* When group information is not available, we return this as the
1351 group for all files. */
1359 return dflt_passwd
.pw_uid
;
1365 /* I could imagine arguing for checking to see whether the user is
1366 in the Administrators group and returning a UID of 0 for that
1367 case, but I don't know how wise that would be in the long run. */
1374 return dflt_passwd
.pw_gid
;
1384 getpwuid (unsigned uid
)
1386 if (uid
== dflt_passwd
.pw_uid
)
1387 return &dflt_passwd
;
1392 getgrgid (gid_t gid
)
1398 getpwnam (char *name
)
1402 pw
= getpwuid (getuid ());
1406 if (xstrcasecmp (name
, pw
->pw_name
))
1413 init_user_info (void)
1415 /* Find the user's real name by opening the process token and
1416 looking up the name associated with the user-sid in that token.
1418 Use the relative portion of the identifier authority value from
1419 the user-sid as the user id value (same for group id using the
1420 primary group sid from the process token). */
1422 char uname
[UNLEN
+1], gname
[GNLEN
+1], domain
[1025];
1423 DWORD ulength
= sizeof (uname
), dlength
= sizeof (domain
), needed
;
1424 DWORD glength
= sizeof (gname
);
1425 HANDLE token
= NULL
;
1426 SID_NAME_USE user_type
;
1427 unsigned char *buf
= NULL
;
1429 TOKEN_USER user_token
;
1430 TOKEN_PRIMARY_GROUP group_token
;
1433 result
= open_process_token (GetCurrentProcess (), TOKEN_QUERY
, &token
);
1436 result
= get_token_information (token
, TokenUser
, NULL
, 0, &blen
);
1437 if (!result
&& GetLastError () == ERROR_INSUFFICIENT_BUFFER
)
1439 buf
= xmalloc (blen
);
1440 result
= get_token_information (token
, TokenUser
,
1441 (LPVOID
)buf
, blen
, &needed
);
1444 memcpy (&user_token
, buf
, sizeof (user_token
));
1445 result
= lookup_account_sid (NULL
, user_token
.User
.Sid
,
1447 domain
, &dlength
, &user_type
);
1455 strcpy (dflt_passwd
.pw_name
, uname
);
1456 /* Determine a reasonable uid value. */
1457 if (xstrcasecmp ("administrator", uname
) == 0)
1459 dflt_passwd
.pw_uid
= 500; /* well-known Administrator uid */
1460 dflt_passwd
.pw_gid
= 513; /* well-known None gid */
1464 /* Use the last sub-authority value of the RID, the relative
1465 portion of the SID, as user/group ID. */
1466 dflt_passwd
.pw_uid
= get_rid (user_token
.User
.Sid
);
1468 /* Get group id and name. */
1469 result
= get_token_information (token
, TokenPrimaryGroup
,
1470 (LPVOID
)buf
, blen
, &needed
);
1471 if (!result
&& GetLastError () == ERROR_INSUFFICIENT_BUFFER
)
1473 buf
= xrealloc (buf
, blen
= needed
);
1474 result
= get_token_information (token
, TokenPrimaryGroup
,
1475 (LPVOID
)buf
, blen
, &needed
);
1479 memcpy (&group_token
, buf
, sizeof (group_token
));
1480 dflt_passwd
.pw_gid
= get_rid (group_token
.PrimaryGroup
);
1481 dlength
= sizeof (domain
);
1482 /* If we can get at the real Primary Group name, use that.
1483 Otherwise, the default group name was already set to
1484 "None" in globals_of_w32. */
1485 if (lookup_account_sid (NULL
, group_token
.PrimaryGroup
,
1486 gname
, &glength
, NULL
, &dlength
,
1488 strcpy (dflt_group_name
, gname
);
1491 dflt_passwd
.pw_gid
= dflt_passwd
.pw_uid
;
1494 /* If security calls are not supported (presumably because we
1495 are running under Windows 9X), fallback to this: */
1496 else if (GetUserName (uname
, &ulength
))
1498 strcpy (dflt_passwd
.pw_name
, uname
);
1499 if (xstrcasecmp ("administrator", uname
) == 0)
1500 dflt_passwd
.pw_uid
= 0;
1502 dflt_passwd
.pw_uid
= 123;
1503 dflt_passwd
.pw_gid
= dflt_passwd
.pw_uid
;
1507 strcpy (dflt_passwd
.pw_name
, "unknown");
1508 dflt_passwd
.pw_uid
= 123;
1509 dflt_passwd
.pw_gid
= 123;
1511 dflt_group
.gr_gid
= dflt_passwd
.pw_gid
;
1513 /* Ensure HOME and SHELL are defined. */
1514 if (getenv ("HOME") == NULL
)
1516 if (getenv ("SHELL") == NULL
)
1519 /* Set dir and shell from environment variables. */
1520 strcpy (dflt_passwd
.pw_dir
, getenv ("HOME"));
1521 strcpy (dflt_passwd
.pw_shell
, getenv ("SHELL"));
1525 CloseHandle (token
);
1531 /* rand () on NT gives us 15 random bits...hack together 30 bits. */
1532 return ((rand () << 15) | rand ());
1541 /* Current codepage for encoding file names. */
1542 static int file_name_codepage
;
1544 /* Return the maximum length in bytes of a multibyte character
1545 sequence encoded in the current ANSI codepage. This is required to
1546 correctly walk the encoded file names one character at a time. */
1548 max_filename_mbslen (void)
1550 /* A simple cache to avoid calling GetCPInfo every time we need to
1551 normalize a file name. The file-name encoding is not supposed to
1552 be changed too frequently, if ever. */
1553 static Lisp_Object last_file_name_encoding
;
1554 static int last_max_mbslen
;
1555 Lisp_Object current_encoding
;
1557 current_encoding
= Vfile_name_coding_system
;
1558 if (NILP (current_encoding
))
1559 current_encoding
= Vdefault_file_name_coding_system
;
1561 if (!EQ (last_file_name_encoding
, current_encoding
))
1565 last_file_name_encoding
= current_encoding
;
1566 /* Default to the current ANSI codepage. */
1567 file_name_codepage
= w32_ansi_code_page
;
1568 if (!NILP (current_encoding
))
1570 char *cpname
= SDATA (SYMBOL_NAME (current_encoding
));
1571 char *cp
= NULL
, *end
;
1574 if (strncmp (cpname
, "cp", 2) == 0)
1576 else if (strncmp (cpname
, "windows-", 8) == 0)
1582 cpnum
= strtol (cp
, &end
, 10);
1583 if (cpnum
&& *end
== '\0' && end
- cp
>= 2)
1584 file_name_codepage
= cpnum
;
1588 if (!file_name_codepage
)
1589 file_name_codepage
= CP_ACP
; /* CP_ACP = 0, but let's not assume that */
1591 if (!GetCPInfo (file_name_codepage
, &cp_info
))
1593 file_name_codepage
= CP_ACP
;
1594 if (!GetCPInfo (file_name_codepage
, &cp_info
))
1597 last_max_mbslen
= cp_info
.MaxCharSize
;
1600 return last_max_mbslen
;
1603 /* Normalize filename by converting all path separators to
1604 the specified separator. Also conditionally convert upper
1605 case path name components to lower case. */
1608 normalize_filename (register char *fp
, char path_sep
, int multibyte
)
1612 int dbcs_p
= max_filename_mbslen () > 1;
1614 /* Multibyte file names are in the Emacs internal representation, so
1615 we can traverse them by bytes with no problems. */
1619 /* Always lower-case drive letters a-z, even if the filesystem
1620 preserves case in filenames.
1621 This is so filenames can be compared by string comparison
1622 functions that are case-sensitive. Even case-preserving filesystems
1623 do not distinguish case in drive letters. */
1625 p2
= CharNextExA (file_name_codepage
, fp
, 0);
1629 if (*p2
== ':' && *fp
>= 'A' && *fp
<= 'Z')
1635 if (multibyte
|| NILP (Vw32_downcase_file_names
))
1639 if (*fp
== '/' || *fp
== '\\')
1644 fp
= CharNextExA (file_name_codepage
, fp
, 0);
1649 sep
= path_sep
; /* convert to this path separator */
1650 elem
= fp
; /* start of current path element */
1653 if (*fp
>= 'a' && *fp
<= 'z')
1654 elem
= 0; /* don't convert this element */
1656 if (*fp
== 0 || *fp
== ':')
1658 sep
= *fp
; /* restore current separator (or 0) */
1659 *fp
= '/'; /* after conversion of this element */
1662 if (*fp
== '/' || *fp
== '\\')
1664 if (elem
&& elem
!= fp
)
1666 *fp
= 0; /* temporary end of string */
1667 _mbslwr (elem
); /* while we convert to lower case */
1669 *fp
= sep
; /* convert (or restore) path separator */
1670 elem
= fp
+ 1; /* next element starts after separator */
1678 fp
= CharNextExA (file_name_codepage
, fp
, 0);
1683 /* Destructively turn backslashes into slashes. MULTIBYTE non-zero
1684 means the file name is a multibyte string in Emacs's internal
1687 dostounix_filename (register char *p
, int multibyte
)
1689 normalize_filename (p
, '/', multibyte
);
1692 /* Destructively turn slashes into backslashes. */
1694 unixtodos_filename (register char *p
)
1696 normalize_filename (p
, '\\', 0);
1699 /* Remove all CR's that are followed by a LF.
1700 (From msdos.c...probably should figure out a way to share it,
1701 although this code isn't going to ever change.) */
1703 crlf_to_lf (register int n
, register unsigned char *buf
)
1705 unsigned char *np
= buf
;
1706 unsigned char *startp
= buf
;
1707 unsigned char *endp
= buf
+ n
;
1711 while (buf
< endp
- 1)
1715 if (*(++buf
) != 0x0a)
1726 /* Parse the root part of file name, if present. Return length and
1727 optionally store pointer to char after root. */
1729 parse_root (char * name
, char ** pPath
)
1731 char * start
= name
;
1736 /* find the root name of the volume if given */
1737 if (isalpha (name
[0]) && name
[1] == ':')
1739 /* skip past drive specifier */
1741 if (IS_DIRECTORY_SEP (name
[0]))
1744 else if (IS_DIRECTORY_SEP (name
[0]) && IS_DIRECTORY_SEP (name
[1]))
1747 int dbcs_p
= max_filename_mbslen () > 1;
1752 if (IS_DIRECTORY_SEP (*name
) && --slashes
== 0)
1755 name
= CharNextExA (file_name_codepage
, name
, 0);
1760 if (IS_DIRECTORY_SEP (name
[0]))
1767 return name
- start
;
1770 /* Get long base name for name; name is assumed to be absolute. */
1772 get_long_basename (char * name
, char * buf
, int size
)
1774 WIN32_FIND_DATA find_data
;
1778 /* must be valid filename, no wild cards or other invalid characters */
1779 if (_mbspbrk (name
, "*?|<>\""))
1782 dir_handle
= FindFirstFile (name
, &find_data
);
1783 if (dir_handle
!= INVALID_HANDLE_VALUE
)
1785 if ((len
= strlen (find_data
.cFileName
)) < size
)
1786 memcpy (buf
, find_data
.cFileName
, len
+ 1);
1789 FindClose (dir_handle
);
1794 /* Get long name for file, if possible (assumed to be absolute). */
1796 w32_get_long_filename (char * name
, char * buf
, int size
)
1801 char full
[ MAX_PATH
];
1804 len
= strlen (name
);
1805 if (len
>= MAX_PATH
)
1808 /* Use local copy for destructive modification. */
1809 memcpy (full
, name
, len
+1);
1810 unixtodos_filename (full
);
1812 /* Copy root part verbatim. */
1813 len
= parse_root (full
, &p
);
1814 memcpy (o
, full
, len
);
1819 while (p
!= NULL
&& *p
)
1822 p
= _mbschr (q
, '\\');
1824 len
= get_long_basename (full
, o
, size
);
1847 is_unc_volume (const char *filename
)
1849 const char *ptr
= filename
;
1851 if (!IS_DIRECTORY_SEP (ptr
[0]) || !IS_DIRECTORY_SEP (ptr
[1]) || !ptr
[2])
1854 if (_mbspbrk (ptr
+ 2, "*?|<>\"\\/"))
1860 /* Emulate the Posix unsetenv. */
1862 unsetenv (const char *name
)
1868 if (name
== NULL
|| *name
== '\0' || strchr (name
, '=') != NULL
)
1873 name_len
= strlen (name
);
1874 /* MS docs says an environment variable cannot be longer than 32K. */
1875 if (name_len
> 32767)
1880 /* It is safe to use 'alloca' with 32K size, since the stack is at
1881 least 2MB, and we set it to 8MB in the link command line. */
1882 var
= alloca (name_len
+ 2);
1883 strncpy (var
, name
, name_len
);
1884 var
[name_len
++] = '=';
1885 var
[name_len
] = '\0';
1886 return _putenv (var
);
1889 /* MS _putenv doesn't support removing a variable when the argument
1890 does not include the '=' character, so we fix that here. */
1892 sys_putenv (char *str
)
1894 const char *const name_end
= strchr (str
, '=');
1896 if (name_end
== NULL
)
1898 /* Remove the variable from the environment. */
1899 return unsetenv (str
);
1902 return _putenv (str
);
1905 #define REG_ROOT "SOFTWARE\\GNU\\Emacs"
1908 w32_get_resource (char *key
, LPDWORD lpdwtype
)
1911 HKEY hrootkey
= NULL
;
1914 /* Check both the current user and the local machine to see if
1915 we have any resources. */
1917 if (RegOpenKeyEx (HKEY_CURRENT_USER
, REG_ROOT
, 0, KEY_READ
, &hrootkey
) == ERROR_SUCCESS
)
1921 if (RegQueryValueEx (hrootkey
, key
, NULL
, NULL
, NULL
, &cbData
) == ERROR_SUCCESS
1922 && (lpvalue
= xmalloc (cbData
)) != NULL
1923 && RegQueryValueEx (hrootkey
, key
, NULL
, lpdwtype
, lpvalue
, &cbData
) == ERROR_SUCCESS
)
1925 RegCloseKey (hrootkey
);
1931 RegCloseKey (hrootkey
);
1934 if (RegOpenKeyEx (HKEY_LOCAL_MACHINE
, REG_ROOT
, 0, KEY_READ
, &hrootkey
) == ERROR_SUCCESS
)
1938 if (RegQueryValueEx (hrootkey
, key
, NULL
, NULL
, NULL
, &cbData
) == ERROR_SUCCESS
1939 && (lpvalue
= xmalloc (cbData
)) != NULL
1940 && RegQueryValueEx (hrootkey
, key
, NULL
, lpdwtype
, lpvalue
, &cbData
) == ERROR_SUCCESS
)
1942 RegCloseKey (hrootkey
);
1948 RegCloseKey (hrootkey
);
1954 char *get_emacs_configuration (void);
1957 init_environment (char ** argv
)
1959 static const char * const tempdirs
[] = {
1960 "$TMPDIR", "$TEMP", "$TMP", "c:/"
1965 const int imax
= sizeof (tempdirs
) / sizeof (tempdirs
[0]);
1967 /* Make sure they have a usable $TMPDIR. Many Emacs functions use
1968 temporary files and assume "/tmp" if $TMPDIR is unset, which
1969 will break on DOS/Windows. Refuse to work if we cannot find
1970 a directory, not even "c:/", usable for that purpose. */
1971 for (i
= 0; i
< imax
; i
++)
1973 const char *tmp
= tempdirs
[i
];
1976 tmp
= getenv (tmp
+ 1);
1977 /* Note that `access' can lie to us if the directory resides on a
1978 read-only filesystem, like CD-ROM or a write-protected floppy.
1979 The only way to be really sure is to actually create a file and
1980 see if it succeeds. But I think that's too much to ask. */
1982 /* MSVCRT's _access crashes with D_OK. */
1983 if (tmp
&& faccessat (AT_FDCWD
, tmp
, D_OK
, AT_EACCESS
) == 0)
1985 char * var
= alloca (strlen (tmp
) + 8);
1986 sprintf (var
, "TMPDIR=%s", tmp
);
1987 _putenv (strdup (var
));
1994 Fcons (build_string ("no usable temporary directories found!!"),
1996 "While setting TMPDIR: ");
1998 /* Check for environment variables and use registry settings if they
1999 don't exist. Fallback on default values where applicable. */
2004 char locale_name
[32];
2005 char default_home
[MAX_PATH
];
2008 static const struct env_entry
2014 /* If the default value is NULL, we will use the value from the
2015 outside environment or the Registry, but will not push the
2016 variable into the Emacs environment if it is defined neither
2017 in the Registry nor in the outside environment. */
2019 {"PRELOAD_WINSOCK", NULL
},
2020 {"emacs_dir", "C:/emacs"},
2021 {"EMACSLOADPATH", NULL
},
2022 {"SHELL", "cmdproxy.exe"}, /* perhaps it is somewhere on PATH */
2023 {"EMACSDATA", NULL
},
2024 {"EMACSPATH", NULL
},
2031 #define N_ENV_VARS sizeof (dflt_envvars)/sizeof (dflt_envvars[0])
2033 /* We need to copy dflt_envvars[] and work on the copy because we
2034 don't want the dumped Emacs to inherit the values of
2035 environment variables we saw during dumping (which could be on
2036 a different system). The defaults above must be left intact. */
2037 struct env_entry env_vars
[N_ENV_VARS
];
2039 for (i
= 0; i
< N_ENV_VARS
; i
++)
2040 env_vars
[i
] = dflt_envvars
[i
];
2042 /* For backwards compatibility, check if a .emacs file exists in C:/
2043 If not, then we can try to default to the appdata directory under the
2044 user's profile, which is more likely to be writable. */
2045 if (!check_existing ("C:/.emacs"))
2047 HRESULT profile_result
;
2048 /* Dynamically load ShGetFolderPath, as it won't exist on versions
2049 of Windows 95 and NT4 that have not been updated to include
2051 ShGetFolderPath_fn get_folder_path
;
2052 get_folder_path
= (ShGetFolderPath_fn
)
2053 GetProcAddress (GetModuleHandle ("shell32.dll"), "SHGetFolderPathA");
2055 if (get_folder_path
!= NULL
)
2057 profile_result
= get_folder_path (NULL
, CSIDL_APPDATA
, NULL
,
2060 /* If we can't get the appdata dir, revert to old behavior. */
2061 if (profile_result
== S_OK
)
2063 env_vars
[0].def_value
= default_home
;
2069 /* Get default locale info and use it for LANG. */
2070 if (GetLocaleInfo (LOCALE_USER_DEFAULT
,
2071 LOCALE_SABBREVLANGNAME
| LOCALE_USE_CP_ACP
,
2072 locale_name
, sizeof (locale_name
)))
2074 for (i
= 0; i
< N_ENV_VARS
; i
++)
2076 if (strcmp (env_vars
[i
].name
, "LANG") == 0)
2078 env_vars
[i
].def_value
= locale_name
;
2084 #define SET_ENV_BUF_SIZE (4 * MAX_PATH) /* to cover EMACSLOADPATH */
2086 /* Treat emacs_dir specially: set it unconditionally based on our
2090 char modname
[MAX_PATH
];
2092 if (!GetModuleFileName (NULL
, modname
, MAX_PATH
))
2094 if ((p
= _mbsrchr (modname
, '\\')) == NULL
)
2098 if ((p
= _mbsrchr (modname
, '\\'))
2099 /* From bin means installed Emacs, from src means uninstalled. */
2100 && (xstrcasecmp (p
, "\\bin") == 0 || xstrcasecmp (p
, "\\src") == 0))
2102 char buf
[SET_ENV_BUF_SIZE
];
2103 int within_build_tree
= xstrcasecmp (p
, "\\src") == 0;
2106 for (p
= modname
; *p
; p
= CharNext (p
))
2107 if (*p
== '\\') *p
= '/';
2109 _snprintf (buf
, sizeof (buf
)-1, "emacs_dir=%s", modname
);
2110 _putenv (strdup (buf
));
2111 /* If we are running from the Posix-like build tree, define
2112 SHELL to point to our own cmdproxy. The loop below will
2113 then disregard PATH_EXEC and the default value. */
2114 if (within_build_tree
)
2116 _snprintf (buf
, sizeof (buf
) - 1,
2117 "SHELL=%s/nt/cmdproxy.exe", modname
);
2118 _putenv (strdup (buf
));
2121 /* Handle running emacs from the build directory: src/oo-spd/i386/ */
2123 /* FIXME: should use substring of get_emacs_configuration ().
2124 But I don't think the Windows build supports alpha, mips etc
2125 anymore, so have taken the easy option for now. */
2126 else if (p
&& (xstrcasecmp (p
, "\\i386") == 0
2127 || xstrcasecmp (p
, "\\AMD64") == 0))
2130 p
= _mbsrchr (modname
, '\\');
2134 p
= _mbsrchr (modname
, '\\');
2135 if (p
&& xstrcasecmp (p
, "\\src") == 0)
2137 char buf
[SET_ENV_BUF_SIZE
];
2140 for (p
= modname
; *p
; p
= CharNext (p
))
2141 if (*p
== '\\') *p
= '/';
2143 _snprintf (buf
, sizeof (buf
)-1, "emacs_dir=%s", modname
);
2144 _putenv (strdup (buf
));
2150 for (i
= 0; i
< N_ENV_VARS
; i
++)
2152 if (!getenv (env_vars
[i
].name
))
2155 char bufc
[SET_ENV_BUF_SIZE
];
2157 if ((lpval
= w32_get_resource (env_vars
[i
].name
, &dwType
)) == NULL
2158 /* Also ignore empty environment variables. */
2163 if (strcmp (env_vars
[i
].name
, "SHELL") == 0)
2165 /* Look for cmdproxy.exe in every directory in
2166 PATH_EXEC. FIXME: This does not find cmdproxy
2167 in nt/ when we run uninstalled. */
2168 char fname
[MAX_PATH
];
2169 const char *pstart
= PATH_EXEC
, *pend
;
2172 pend
= _mbschr (pstart
, ';');
2174 pend
= pstart
+ strlen (pstart
);
2175 /* Be defensive against series of ;;; characters. */
2178 strncpy (fname
, pstart
, pend
- pstart
);
2179 fname
[pend
- pstart
] = '/';
2180 strcpy (&fname
[pend
- pstart
+ 1], "cmdproxy.exe");
2181 ExpandEnvironmentStrings ((LPSTR
) fname
, bufc
,
2183 if (check_existing (bufc
))
2196 /* If not found in any directory, use the
2197 default as the last resort. */
2198 lpval
= env_vars
[i
].def_value
;
2199 dwType
= REG_EXPAND_SZ
;
2205 lpval
= env_vars
[i
].def_value
;
2206 dwType
= REG_EXPAND_SZ
;
2208 if (strcmp (env_vars
[i
].name
, "HOME") == 0 && !appdata
)
2209 Vdelayed_warnings_list
2210 = Fcons (listn (CONSTYPE_HEAP
, 2,
2211 intern ("initialization"),
2212 build_string ("Setting HOME to C:\\ by default is deprecated")),
2213 Vdelayed_warnings_list
);
2218 char buf1
[SET_ENV_BUF_SIZE
], buf2
[SET_ENV_BUF_SIZE
];
2220 if (dwType
== REG_EXPAND_SZ
)
2221 ExpandEnvironmentStrings ((LPSTR
) lpval
, buf1
, sizeof (buf1
));
2222 else if (dwType
== REG_SZ
)
2223 strcpy (buf1
, lpval
);
2224 if (dwType
== REG_EXPAND_SZ
|| dwType
== REG_SZ
)
2226 _snprintf (buf2
, sizeof (buf2
)-1, "%s=%s", env_vars
[i
].name
,
2228 _putenv (strdup (buf2
));
2238 /* Rebuild system configuration to reflect invoking system. */
2239 Vsystem_configuration
= build_string (EMACS_CONFIGURATION
);
2241 /* Another special case: on NT, the PATH variable is actually named
2242 "Path" although cmd.exe (perhaps NT itself) arranges for
2243 environment variable lookup and setting to be case insensitive.
2244 However, Emacs assumes a fully case sensitive environment, so we
2245 need to change "Path" to "PATH" to match the expectations of
2246 various elisp packages. We do this by the sneaky method of
2247 modifying the string in the C runtime environ entry.
2249 The same applies to COMSPEC. */
2253 for (envp
= environ
; *envp
; envp
++)
2254 if (_strnicmp (*envp
, "PATH=", 5) == 0)
2255 memcpy (*envp
, "PATH=", 5);
2256 else if (_strnicmp (*envp
, "COMSPEC=", 8) == 0)
2257 memcpy (*envp
, "COMSPEC=", 8);
2260 /* Remember the initial working directory for getcwd. */
2261 /* FIXME: Do we need to resolve possible symlinks in startup_dir?
2262 Does it matter anywhere in Emacs? */
2263 if (!GetCurrentDirectory (MAXPATHLEN
, startup_dir
))
2267 static char modname
[MAX_PATH
];
2269 if (!GetModuleFileName (NULL
, modname
, MAX_PATH
))
2274 /* Determine if there is a middle mouse button, to allow parse_button
2275 to decide whether right mouse events should be mouse-2 or
2277 w32_num_mouse_buttons
= GetSystemMetrics (SM_CMOUSEBUTTONS
);
2282 /* Called from expand-file-name when default-directory is not a string. */
2285 emacs_root_dir (void)
2287 static char root_dir
[FILENAME_MAX
];
2290 p
= getenv ("emacs_dir");
2293 strcpy (root_dir
, p
);
2294 root_dir
[parse_root (root_dir
, NULL
)] = '\0';
2295 dostounix_filename (root_dir
, 0);
2299 /* We don't have scripts to automatically determine the system configuration
2300 for Emacs before it's compiled, and we don't want to have to make the
2301 user enter it, so we define EMACS_CONFIGURATION to invoke this runtime
2305 get_emacs_configuration (void)
2307 char *arch
, *oem
, *os
;
2309 static char configuration_buffer
[32];
2311 /* Determine the processor type. */
2312 switch (get_processor_type ())
2315 #ifdef PROCESSOR_INTEL_386
2316 case PROCESSOR_INTEL_386
:
2317 case PROCESSOR_INTEL_486
:
2318 case PROCESSOR_INTEL_PENTIUM
:
2326 #ifdef PROCESSOR_AMD_X8664
2327 case PROCESSOR_AMD_X8664
:
2332 #ifdef PROCESSOR_MIPS_R2000
2333 case PROCESSOR_MIPS_R2000
:
2334 case PROCESSOR_MIPS_R3000
:
2335 case PROCESSOR_MIPS_R4000
:
2340 #ifdef PROCESSOR_ALPHA_21064
2341 case PROCESSOR_ALPHA_21064
:
2351 /* Use the OEM field to reflect the compiler/library combination. */
2353 #define COMPILER_NAME "msvc"
2356 #define COMPILER_NAME "mingw"
2358 #define COMPILER_NAME "unknown"
2361 oem
= COMPILER_NAME
;
2363 switch (osinfo_cache
.dwPlatformId
) {
2364 case VER_PLATFORM_WIN32_NT
:
2366 build_num
= osinfo_cache
.dwBuildNumber
;
2368 case VER_PLATFORM_WIN32_WINDOWS
:
2369 if (osinfo_cache
.dwMinorVersion
== 0) {
2374 build_num
= LOWORD (osinfo_cache
.dwBuildNumber
);
2376 case VER_PLATFORM_WIN32s
:
2377 /* Not supported, should not happen. */
2379 build_num
= LOWORD (osinfo_cache
.dwBuildNumber
);
2387 if (osinfo_cache
.dwPlatformId
== VER_PLATFORM_WIN32_NT
) {
2388 sprintf (configuration_buffer
, "%s-%s-%s%d.%d.%d", arch
, oem
, os
,
2389 get_w32_major_version (), get_w32_minor_version (), build_num
);
2391 sprintf (configuration_buffer
, "%s-%s-%s.%d", arch
, oem
, os
, build_num
);
2394 return configuration_buffer
;
2398 get_emacs_configuration_options (void)
2400 static char *options_buffer
;
2401 char cv
[32]; /* Enough for COMPILER_VERSION. */
2403 cv
, /* To be filled later. */
2407 #ifdef ENABLE_CHECKING
2408 " --enable-checking",
2410 /* configure.bat already sets USER_CFLAGS and USER_LDFLAGS
2411 with a starting space to save work here. */
2413 " --cflags", USER_CFLAGS
,
2416 " --ldflags", USER_LDFLAGS
,
2423 /* Work out the effective configure options for this build. */
2425 #define COMPILER_VERSION "--with-msvc (%d.%02d)", _MSC_VER / 100, _MSC_VER % 100
2428 #define COMPILER_VERSION "--with-gcc (%d.%d)", __GNUC__, __GNUC_MINOR__
2430 #define COMPILER_VERSION ""
2434 if (_snprintf (cv
, sizeof (cv
) - 1, COMPILER_VERSION
) < 0)
2435 return "Error: not enough space for compiler version";
2436 cv
[sizeof (cv
) - 1] = '\0';
2438 for (i
= 0; options
[i
]; i
++)
2439 size
+= strlen (options
[i
]);
2441 options_buffer
= xmalloc (size
+ 1);
2442 options_buffer
[0] = '\0';
2444 for (i
= 0; options
[i
]; i
++)
2445 strcat (options_buffer
, options
[i
]);
2447 return options_buffer
;
2451 #include <sys/timeb.h>
2453 /* Emulate gettimeofday (Ulrich Leodolter, 1/11/95). */
2455 gettimeofday (struct timeval
*__restrict tv
, struct timezone
*__restrict tz
)
2460 tv
->tv_sec
= tb
.time
;
2461 tv
->tv_usec
= tb
.millitm
* 1000L;
2462 /* Implementation note: _ftime sometimes doesn't update the dstflag
2463 according to the new timezone when the system timezone is
2464 changed. We could fix that by using GetSystemTime and
2465 GetTimeZoneInformation, but that doesn't seem necessary, since
2466 Emacs always calls gettimeofday with the 2nd argument NULL (see
2467 current_emacs_time). */
2470 tz
->tz_minuteswest
= tb
.timezone
; /* minutes west of Greenwich */
2471 tz
->tz_dsttime
= tb
.dstflag
; /* type of dst correction */
2476 /* Emulate fdutimens. */
2478 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2479 TIMESPEC[0] and TIMESPEC[1], respectively.
2480 FD must be either negative -- in which case it is ignored --
2481 or a file descriptor that is open on FILE.
2482 If FD is nonnegative, then FILE can be NULL, which means
2483 use just futimes instead of utimes.
2484 If TIMESPEC is null, FAIL.
2485 Return 0 on success, -1 (setting errno) on failure. */
2488 fdutimens (int fd
, char const *file
, struct timespec
const timespec
[2])
2497 if (fd
< 0 && !file
)
2502 ut
.actime
= timespec
[0].tv_sec
;
2503 ut
.modtime
= timespec
[1].tv_sec
;
2505 return _futime (fd
, &ut
);
2507 return _utime (file
, &ut
);
2511 /* ------------------------------------------------------------------------- */
2512 /* IO support and wrapper functions for the Windows API. */
2513 /* ------------------------------------------------------------------------- */
2515 /* Place a wrapper around the MSVC version of ctime. It returns NULL
2516 on network directories, so we handle that case here.
2517 (Ulrich Leodolter, 1/11/95). */
2519 sys_ctime (const time_t *t
)
2521 char *str
= (char *) ctime (t
);
2522 return (str
? str
: "Sun Jan 01 00:00:00 1970");
2525 /* Emulate sleep...we could have done this with a define, but that
2526 would necessitate including windows.h in the files that used it.
2527 This is much easier. */
2529 sys_sleep (int seconds
)
2531 Sleep (seconds
* 1000);
2534 /* Internal MSVC functions for low-level descriptor munging */
2535 extern int __cdecl
_set_osfhnd (int fd
, long h
);
2536 extern int __cdecl
_free_osfhnd (int fd
);
2538 /* parallel array of private info on file handles */
2539 filedesc fd_info
[ MAXDESC
];
2541 typedef struct volume_info_data
{
2542 struct volume_info_data
* next
;
2544 /* time when info was obtained */
2547 /* actual volume info */
2556 /* Global referenced by various functions. */
2557 static volume_info_data volume_info
;
2559 /* Vector to indicate which drives are local and fixed (for which cached
2560 data never expires). */
2561 static BOOL fixed_drives
[26];
2563 /* Consider cached volume information to be stale if older than 10s,
2564 at least for non-local drives. Info for fixed drives is never stale. */
2565 #define DRIVE_INDEX( c ) ( (c) <= 'Z' ? (c) - 'A' : (c) - 'a' )
2566 #define VOLINFO_STILL_VALID( root_dir, info ) \
2567 ( ( isalpha (root_dir[0]) && \
2568 fixed_drives[ DRIVE_INDEX (root_dir[0]) ] ) \
2569 || GetTickCount () - info->timestamp < 10000 )
2571 /* Cache support functions. */
2573 /* Simple linked list with linear search is sufficient. */
2574 static volume_info_data
*volume_cache
= NULL
;
2576 static volume_info_data
*
2577 lookup_volume_info (char * root_dir
)
2579 volume_info_data
* info
;
2581 for (info
= volume_cache
; info
; info
= info
->next
)
2582 if (xstrcasecmp (info
->root_dir
, root_dir
) == 0)
2588 add_volume_info (char * root_dir
, volume_info_data
* info
)
2590 info
->root_dir
= xstrdup (root_dir
);
2591 info
->next
= volume_cache
;
2592 volume_cache
= info
;
2596 /* Wrapper for GetVolumeInformation, which uses caching to avoid
2597 performance penalty (~2ms on 486 for local drives, 7.5ms for local
2598 cdrom drive, ~5-10ms or more for remote drives on LAN). */
2599 static volume_info_data
*
2600 GetCachedVolumeInformation (char * root_dir
)
2602 volume_info_data
* info
;
2603 char default_root
[ MAX_PATH
];
2605 /* NULL for root_dir means use root from current directory. */
2606 if (root_dir
== NULL
)
2608 if (GetCurrentDirectory (MAX_PATH
, default_root
) == 0)
2610 parse_root (default_root
, &root_dir
);
2612 root_dir
= default_root
;
2615 /* Local fixed drives can be cached permanently. Removable drives
2616 cannot be cached permanently, since the volume name and serial
2617 number (if nothing else) can change. Remote drives should be
2618 treated as if they are removable, since there is no sure way to
2619 tell whether they are or not. Also, the UNC association of drive
2620 letters mapped to remote volumes can be changed at any time (even
2621 by other processes) without notice.
2623 As a compromise, so we can benefit from caching info for remote
2624 volumes, we use a simple expiry mechanism to invalidate cache
2625 entries that are more than ten seconds old. */
2628 /* No point doing this, because WNetGetConnection is even slower than
2629 GetVolumeInformation, consistently taking ~50ms on a 486 (FWIW,
2630 GetDriveType is about the only call of this type which does not
2631 involve network access, and so is extremely quick). */
2633 /* Map drive letter to UNC if remote. */
2634 if (isalpha (root_dir
[0]) && !fixed
[DRIVE_INDEX (root_dir
[0])])
2636 char remote_name
[ 256 ];
2637 char drive
[3] = { root_dir
[0], ':' };
2639 if (WNetGetConnection (drive
, remote_name
, sizeof (remote_name
))
2641 /* do something */ ;
2645 info
= lookup_volume_info (root_dir
);
2647 if (info
== NULL
|| ! VOLINFO_STILL_VALID (root_dir
, info
))
2655 /* Info is not cached, or is stale. */
2656 if (!GetVolumeInformation (root_dir
,
2657 name
, sizeof (name
),
2661 type
, sizeof (type
)))
2664 /* Cache the volume information for future use, overwriting existing
2665 entry if present. */
2668 info
= xmalloc (sizeof (volume_info_data
));
2669 add_volume_info (root_dir
, info
);
2677 info
->name
= xstrdup (name
);
2678 info
->serialnum
= serialnum
;
2679 info
->maxcomp
= maxcomp
;
2680 info
->flags
= flags
;
2681 info
->type
= xstrdup (type
);
2682 info
->timestamp
= GetTickCount ();
2688 /* Get information on the volume where NAME is held; set path pointer to
2689 start of pathname in NAME (past UNC header\volume header if present),
2690 if pPath is non-NULL.
2692 Note: if NAME includes symlinks, the information is for the volume
2693 of the symlink, not of its target. That's because, even though
2694 GetVolumeInformation returns information about the symlink target
2695 of its argument, we only pass the root directory to
2696 GetVolumeInformation, not the full NAME. */
2698 get_volume_info (const char * name
, const char ** pPath
)
2700 char temp
[MAX_PATH
];
2701 char *rootname
= NULL
; /* default to current volume */
2702 volume_info_data
* info
;
2707 /* Find the root name of the volume if given. */
2708 if (isalpha (name
[0]) && name
[1] == ':')
2716 else if (IS_DIRECTORY_SEP (name
[0]) && IS_DIRECTORY_SEP (name
[1]))
2720 int dbcs_p
= max_filename_mbslen () > 1;
2725 if (IS_DIRECTORY_SEP (*name
) && --slashes
== 0)
2731 const char *p
= name
;
2733 name
= CharNextExA (file_name_codepage
, name
, 0);
2734 memcpy (str
, p
, name
- p
);
2747 info
= GetCachedVolumeInformation (rootname
);
2750 /* Set global referenced by other functions. */
2751 volume_info
= *info
;
2757 /* Determine if volume is FAT format (ie. only supports short 8.3
2758 names); also set path pointer to start of pathname in name, if
2759 pPath is non-NULL. */
2761 is_fat_volume (const char * name
, const char ** pPath
)
2763 if (get_volume_info (name
, pPath
))
2764 return (volume_info
.maxcomp
== 12);
2768 /* Map filename to a valid 8.3 name if necessary.
2769 The result is a pointer to a static buffer, so CAVEAT EMPTOR! */
2771 map_w32_filename (const char * name
, const char ** pPath
)
2773 static char shortname
[MAX_PATH
];
2774 char * str
= shortname
;
2777 const char * save_name
= name
;
2779 if (strlen (name
) >= MAX_PATH
)
2781 /* Return a filename which will cause callers to fail. */
2782 strcpy (shortname
, "?");
2786 if (is_fat_volume (name
, (const char **)&path
)) /* truncate to 8.3 */
2788 register int left
= 8; /* maximum number of chars in part */
2789 register int extn
= 0; /* extension added? */
2790 register int dots
= 2; /* maximum number of dots allowed */
2793 *str
++ = *name
++; /* skip past UNC header */
2795 while ((c
= *name
++))
2802 *str
++ = (c
== ':' ? ':' : '\\');
2803 extn
= 0; /* reset extension flags */
2804 dots
= 2; /* max 2 dots */
2805 left
= 8; /* max length 8 for main part */
2810 /* Convert path components of the form .xxx to _xxx,
2811 but leave . and .. as they are. This allows .emacs
2812 to be read as _emacs, for example. */
2816 IS_DIRECTORY_SEP (*name
))
2831 extn
= 1; /* we've got an extension */
2832 left
= 3; /* 3 chars in extension */
2836 /* any embedded dots after the first are converted to _ */
2841 case '#': /* don't lose these, they're important */
2843 str
[-1] = c
; /* replace last character of part */
2848 *str
++ = tolower (c
); /* map to lower case (looks nicer) */
2850 dots
= 0; /* started a path component */
2859 strcpy (shortname
, name
);
2860 unixtodos_filename (shortname
);
2864 *pPath
= shortname
+ (path
- save_name
);
2870 is_exec (const char * name
)
2872 char * p
= strrchr (name
, '.');
2875 && (xstrcasecmp (p
, ".exe") == 0 ||
2876 xstrcasecmp (p
, ".com") == 0 ||
2877 xstrcasecmp (p
, ".bat") == 0 ||
2878 xstrcasecmp (p
, ".cmd") == 0));
2881 /* Emulate the Unix directory procedures opendir, closedir,
2882 and readdir. We can't use the procedures supplied in sysdep.c,
2883 so we provide them here. */
2885 struct dirent dir_static
; /* simulated directory contents */
2886 static HANDLE dir_find_handle
= INVALID_HANDLE_VALUE
;
2887 static int dir_is_fat
;
2888 static char dir_pathname
[MAXPATHLEN
+1];
2889 static WIN32_FIND_DATA dir_find_data
;
2891 /* Support shares on a network resource as subdirectories of a read-only
2893 static HANDLE wnet_enum_handle
= INVALID_HANDLE_VALUE
;
2894 static HANDLE
open_unc_volume (const char *);
2895 static char *read_unc_volume (HANDLE
, char *, int);
2896 static void close_unc_volume (HANDLE
);
2899 opendir (const char *filename
)
2903 /* Opening is done by FindFirstFile. However, a read is inherent to
2904 this operation, so we defer the open until read time. */
2906 if (dir_find_handle
!= INVALID_HANDLE_VALUE
)
2908 if (wnet_enum_handle
!= INVALID_HANDLE_VALUE
)
2911 /* Note: We don't support traversal of UNC volumes via symlinks.
2912 Doing so would mean punishing 99.99% of use cases by resolving
2913 all the possible symlinks in FILENAME, recursively. */
2914 if (is_unc_volume (filename
))
2916 wnet_enum_handle
= open_unc_volume (filename
);
2917 if (wnet_enum_handle
== INVALID_HANDLE_VALUE
)
2921 if (!(dirp
= (DIR *) malloc (sizeof (DIR))))
2928 strncpy (dir_pathname
, map_w32_filename (filename
, NULL
), MAXPATHLEN
);
2929 dir_pathname
[MAXPATHLEN
] = '\0';
2930 /* Note: We don't support symlinks to file names on FAT volumes.
2931 Doing so would mean punishing 99.99% of use cases by resolving
2932 all the possible symlinks in FILENAME, recursively. */
2933 dir_is_fat
= is_fat_volume (filename
, NULL
);
2939 closedir (DIR *dirp
)
2941 /* If we have a find-handle open, close it. */
2942 if (dir_find_handle
!= INVALID_HANDLE_VALUE
)
2944 FindClose (dir_find_handle
);
2945 dir_find_handle
= INVALID_HANDLE_VALUE
;
2947 else if (wnet_enum_handle
!= INVALID_HANDLE_VALUE
)
2949 close_unc_volume (wnet_enum_handle
);
2950 wnet_enum_handle
= INVALID_HANDLE_VALUE
;
2952 xfree ((char *) dirp
);
2958 int downcase
= !NILP (Vw32_downcase_file_names
);
2960 if (wnet_enum_handle
!= INVALID_HANDLE_VALUE
)
2962 if (!read_unc_volume (wnet_enum_handle
,
2963 dir_find_data
.cFileName
,
2967 /* If we aren't dir_finding, do a find-first, otherwise do a find-next. */
2968 else if (dir_find_handle
== INVALID_HANDLE_VALUE
)
2970 char filename
[MAXNAMLEN
+ 3];
2972 int dbcs_p
= max_filename_mbslen () > 1;
2974 strcpy (filename
, dir_pathname
);
2975 ln
= strlen (filename
) - 1;
2978 if (!IS_DIRECTORY_SEP (filename
[ln
]))
2979 strcat (filename
, "\\");
2983 char *end
= filename
+ ln
+ 1;
2984 char *last_char
= CharPrevExA (file_name_codepage
, filename
, end
, 0);
2986 if (!IS_DIRECTORY_SEP (*last_char
))
2987 strcat (filename
, "\\");
2989 strcat (filename
, "*");
2991 /* Note: No need to resolve symlinks in FILENAME, because
2992 FindFirst opens the directory that is the target of a
2994 dir_find_handle
= FindFirstFile (filename
, &dir_find_data
);
2996 if (dir_find_handle
== INVALID_HANDLE_VALUE
)
3001 if (!FindNextFile (dir_find_handle
, &dir_find_data
))
3005 /* Emacs never uses this value, so don't bother making it match
3006 value returned by stat(). */
3007 dir_static
.d_ino
= 1;
3009 strcpy (dir_static
.d_name
, dir_find_data
.cFileName
);
3011 /* If the file name in cFileName[] includes `?' characters, it means
3012 the original file name used characters that cannot be represented
3013 by the current ANSI codepage. To avoid total lossage, retrieve
3014 the short 8+3 alias of the long file name. */
3015 if (_mbspbrk (dir_static
.d_name
, "?"))
3017 strcpy (dir_static
.d_name
, dir_find_data
.cAlternateFileName
);
3018 downcase
= 1; /* 8+3 aliases are returned in all caps */
3020 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
3021 dir_static
.d_reclen
= sizeof (struct dirent
) - MAXNAMLEN
+ 3 +
3022 dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
3024 /* If the file name in cFileName[] includes `?' characters, it means
3025 the original file name used characters that cannot be represented
3026 by the current ANSI codepage. To avoid total lossage, retrieve
3027 the short 8+3 alias of the long file name. */
3028 if (_mbspbrk (dir_find_data
.cFileName
, "?"))
3030 strcpy (dir_static
.d_name
, dir_find_data
.cAlternateFileName
);
3031 /* 8+3 aliases are returned in all caps, which could break
3032 various alists that look at filenames' extensions. */
3036 strcpy (dir_static
.d_name
, dir_find_data
.cFileName
);
3037 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
3039 _mbslwr (dir_static
.d_name
);
3043 int dbcs_p
= max_filename_mbslen () > 1;
3044 for (p
= dir_static
.d_name
; *p
; )
3046 if (*p
>= 'a' && *p
<= 'z')
3049 p
= CharNextExA (file_name_codepage
, p
, 0);
3054 _mbslwr (dir_static
.d_name
);
3061 open_unc_volume (const char *path
)
3067 nr
.dwScope
= RESOURCE_GLOBALNET
;
3068 nr
.dwType
= RESOURCETYPE_DISK
;
3069 nr
.dwDisplayType
= RESOURCEDISPLAYTYPE_SERVER
;
3070 nr
.dwUsage
= RESOURCEUSAGE_CONTAINER
;
3071 nr
.lpLocalName
= NULL
;
3072 nr
.lpRemoteName
= (LPSTR
)map_w32_filename (path
, NULL
);
3073 nr
.lpComment
= NULL
;
3074 nr
.lpProvider
= NULL
;
3076 result
= WNetOpenEnum (RESOURCE_GLOBALNET
, RESOURCETYPE_DISK
,
3077 RESOURCEUSAGE_CONNECTABLE
, &nr
, &henum
);
3079 if (result
== NO_ERROR
)
3082 return INVALID_HANDLE_VALUE
;
3086 read_unc_volume (HANDLE henum
, char *readbuf
, int size
)
3090 DWORD bufsize
= 512;
3093 int dbcs_p
= max_filename_mbslen () > 1;
3096 buffer
= alloca (bufsize
);
3097 result
= WNetEnumResource (henum
, &count
, buffer
, &bufsize
);
3098 if (result
!= NO_ERROR
)
3101 /* WNetEnumResource returns \\resource\share...skip forward to "share". */
3102 ptr
= ((LPNETRESOURCE
) buffer
)->lpRemoteName
;
3105 while (*ptr
&& !IS_DIRECTORY_SEP (*ptr
)) ptr
++;
3108 while (*ptr
&& !IS_DIRECTORY_SEP (*ptr
))
3109 ptr
= CharNextExA (file_name_codepage
, ptr
, 0);
3113 strncpy (readbuf
, ptr
, size
);
3118 close_unc_volume (HANDLE henum
)
3120 if (henum
!= INVALID_HANDLE_VALUE
)
3121 WNetCloseEnum (henum
);
3125 unc_volume_file_attributes (const char *path
)
3130 henum
= open_unc_volume (path
);
3131 if (henum
== INVALID_HANDLE_VALUE
)
3134 attrs
= FILE_ATTRIBUTE_READONLY
| FILE_ATTRIBUTE_DIRECTORY
;
3136 close_unc_volume (henum
);
3141 /* Ensure a network connection is authenticated. */
3143 logon_network_drive (const char *path
)
3145 NETRESOURCE resource
;
3146 char share
[MAX_PATH
];
3153 if (IS_DIRECTORY_SEP (path
[0]) && IS_DIRECTORY_SEP (path
[1]))
3154 drvtype
= DRIVE_REMOTE
;
3155 else if (path
[0] == '\0' || path
[1] != ':')
3156 drvtype
= GetDriveType (NULL
);
3163 drvtype
= GetDriveType (drive
);
3166 /* Only logon to networked drives. */
3167 if (drvtype
!= DRIVE_REMOTE
)
3171 strncpy (share
, path
, MAX_PATH
);
3172 /* Truncate to just server and share name. */
3173 dbcs_p
= max_filename_mbslen () > 1;
3174 for (p
= share
+ 2; *p
&& p
< share
+ MAX_PATH
; )
3176 if (IS_DIRECTORY_SEP (*p
) && ++n_slashes
> 3)
3182 p
= CharNextExA (file_name_codepage
, p
, 0);
3187 resource
.dwType
= RESOURCETYPE_DISK
;
3188 resource
.lpLocalName
= NULL
;
3189 resource
.lpRemoteName
= share
;
3190 resource
.lpProvider
= NULL
;
3192 WNetAddConnection2 (&resource
, NULL
, NULL
, CONNECT_INTERACTIVE
);
3195 /* Emulate faccessat(2). */
3197 faccessat (int dirfd
, const char * path
, int mode
, int flags
)
3201 if (dirfd
!= AT_FDCWD
3202 && !(IS_DIRECTORY_SEP (path
[0])
3203 || IS_DEVICE_SEP (path
[1])))
3209 /* MSVCRT implementation of 'access' doesn't recognize D_OK, and its
3210 newer versions blow up when passed D_OK. */
3211 path
= map_w32_filename (path
, NULL
);
3212 /* If the last element of PATH is a symlink, we need to resolve it
3213 to get the attributes of its target file. Note: any symlinks in
3214 PATH elements other than the last one are transparently resolved
3215 by GetFileAttributes below. */
3216 if ((volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) != 0
3217 && (flags
& AT_SYMLINK_NOFOLLOW
) == 0)
3218 path
= chase_symlinks (path
);
3220 if ((attributes
= GetFileAttributes (path
)) == -1)
3222 DWORD w32err
= GetLastError ();
3226 case ERROR_INVALID_NAME
:
3227 case ERROR_BAD_PATHNAME
:
3228 if (is_unc_volume (path
))
3230 attributes
= unc_volume_file_attributes (path
);
3231 if (attributes
== -1)
3239 case ERROR_FILE_NOT_FOUND
:
3240 case ERROR_BAD_NETPATH
:
3249 if ((mode
& X_OK
) != 0
3250 && !(is_exec (path
) || (attributes
& FILE_ATTRIBUTE_DIRECTORY
) != 0))
3255 if ((mode
& W_OK
) != 0 && (attributes
& FILE_ATTRIBUTE_READONLY
) != 0)
3260 if ((mode
& D_OK
) != 0 && (attributes
& FILE_ATTRIBUTE_DIRECTORY
) == 0)
3268 /* Shadow some MSVC runtime functions to map requests for long filenames
3269 to reasonable short names if necessary. This was originally added to
3270 permit running Emacs on NT 3.1 on a FAT partition, which doesn't support
3274 sys_chdir (const char * path
)
3276 return _chdir (map_w32_filename (path
, NULL
));
3280 sys_chmod (const char * path
, int mode
)
3282 path
= chase_symlinks (map_w32_filename (path
, NULL
));
3283 return _chmod (path
, mode
);
3287 sys_creat (const char * path
, int mode
)
3289 return _creat (map_w32_filename (path
, NULL
), mode
);
3293 sys_fopen (const char * path
, const char * mode
)
3297 const char * mode_save
= mode
;
3299 /* Force all file handles to be non-inheritable. This is necessary to
3300 ensure child processes don't unwittingly inherit handles that might
3301 prevent future file access. */
3305 else if (mode
[0] == 'w' || mode
[0] == 'a')
3306 oflag
= O_WRONLY
| O_CREAT
| O_TRUNC
;
3310 /* Only do simplistic option parsing. */
3314 oflag
&= ~(O_RDONLY
| O_WRONLY
);
3317 else if (mode
[0] == 'b')
3322 else if (mode
[0] == 't')
3329 fd
= _open (map_w32_filename (path
, NULL
), oflag
| _O_NOINHERIT
, 0644);
3333 return _fdopen (fd
, mode_save
);
3336 /* This only works on NTFS volumes, but is useful to have. */
3338 sys_link (const char * old
, const char * new)
3342 char oldname
[MAX_PATH
], newname
[MAX_PATH
];
3344 if (old
== NULL
|| new == NULL
)
3350 strcpy (oldname
, map_w32_filename (old
, NULL
));
3351 strcpy (newname
, map_w32_filename (new, NULL
));
3353 fileh
= CreateFile (oldname
, 0, 0, NULL
, OPEN_EXISTING
,
3354 FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
3355 if (fileh
!= INVALID_HANDLE_VALUE
)
3359 /* Confusingly, the "alternate" stream name field does not apply
3360 when restoring a hard link, and instead contains the actual
3361 stream data for the link (ie. the name of the link to create).
3362 The WIN32_STREAM_ID structure before the cStreamName field is
3363 the stream header, which is then immediately followed by the
3367 WIN32_STREAM_ID wid
;
3368 WCHAR wbuffer
[MAX_PATH
]; /* extra space for link name */
3371 wlen
= MultiByteToWideChar (CP_ACP
, MB_PRECOMPOSED
, newname
, -1,
3372 data
.wid
.cStreamName
, MAX_PATH
);
3375 LPVOID context
= NULL
;
3378 data
.wid
.dwStreamId
= BACKUP_LINK
;
3379 data
.wid
.dwStreamAttributes
= 0;
3380 data
.wid
.Size
.LowPart
= wlen
* sizeof (WCHAR
);
3381 data
.wid
.Size
.HighPart
= 0;
3382 data
.wid
.dwStreamNameSize
= 0;
3384 if (BackupWrite (fileh
, (LPBYTE
)&data
,
3385 offsetof (WIN32_STREAM_ID
, cStreamName
)
3386 + data
.wid
.Size
.LowPart
,
3387 &wbytes
, FALSE
, FALSE
, &context
)
3388 && BackupWrite (fileh
, NULL
, 0, &wbytes
, TRUE
, FALSE
, &context
))
3395 /* Should try mapping GetLastError to errno; for now just
3396 indicate a general error (eg. links not supported). */
3397 errno
= EINVAL
; // perhaps EMLINK?
3401 CloseHandle (fileh
);
3410 sys_mkdir (const char * path
)
3412 return _mkdir (map_w32_filename (path
, NULL
));
3415 /* Because of long name mapping issues, we need to implement this
3416 ourselves. Also, MSVC's _mktemp returns NULL when it can't generate
3417 a unique name, instead of setting the input template to an empty
3420 Standard algorithm seems to be use pid or tid with a letter on the
3421 front (in place of the 6 X's) and cycle through the letters to find a
3422 unique name. We extend that to allow any reasonable character as the
3423 first of the 6 X's. */
3425 sys_mktemp (char * template)
3429 unsigned uid
= GetCurrentThreadId ();
3430 static char first_char
[] = "abcdefghijklmnopqrstuvwyz0123456789!%-_@#";
3432 if (template == NULL
)
3434 p
= template + strlen (template);
3436 /* replace up to the last 5 X's with uid in decimal */
3437 while (--p
>= template && p
[0] == 'X' && --i
>= 0)
3439 p
[0] = '0' + uid
% 10;
3443 if (i
< 0 && p
[0] == 'X')
3448 int save_errno
= errno
;
3449 p
[0] = first_char
[i
];
3450 if (faccessat (AT_FDCWD
, template, F_OK
, AT_EACCESS
) < 0)
3456 while (++i
< sizeof (first_char
));
3459 /* Template is badly formed or else we can't generate a unique name,
3460 so return empty string */
3466 sys_open (const char * path
, int oflag
, int mode
)
3468 const char* mpath
= map_w32_filename (path
, NULL
);
3471 /* If possible, try to open file without _O_CREAT, to be able to
3472 write to existing hidden and system files. Force all file
3473 handles to be non-inheritable. */
3474 if ((oflag
& (_O_CREAT
| _O_EXCL
)) != (_O_CREAT
| _O_EXCL
))
3475 res
= _open (mpath
, (oflag
& ~_O_CREAT
) | _O_NOINHERIT
, mode
);
3477 res
= _open (mpath
, oflag
| _O_NOINHERIT
, mode
);
3483 fchmod (int fd
, mode_t mode
)
3489 sys_rename_replace (const char *oldname
, const char *newname
, BOOL force
)
3492 char temp
[MAX_PATH
];
3496 /* MoveFile on Windows 95 doesn't correctly change the short file name
3497 alias in a number of circumstances (it is not easy to predict when
3498 just by looking at oldname and newname, unfortunately). In these
3499 cases, renaming through a temporary name avoids the problem.
3501 A second problem on Windows 95 is that renaming through a temp name when
3502 newname is uppercase fails (the final long name ends up in
3503 lowercase, although the short alias might be uppercase) UNLESS the
3504 long temp name is not 8.3.
3506 So, on Windows 95 we always rename through a temp name, and we make sure
3507 the temp name has a long extension to ensure correct renaming. */
3509 strcpy (temp
, map_w32_filename (oldname
, NULL
));
3511 /* volume_info is set indirectly by map_w32_filename. */
3512 oldname_dev
= volume_info
.serialnum
;
3514 if (os_subtype
== OS_9X
)
3520 oldname
= map_w32_filename (oldname
, NULL
);
3521 if ((o
= strrchr (oldname
, '\\')))
3524 o
= (char *) oldname
;
3526 if ((p
= strrchr (temp
, '\\')))
3533 /* Force temp name to require a manufactured 8.3 alias - this
3534 seems to make the second rename work properly. */
3535 sprintf (p
, "_.%s.%u", o
, i
);
3537 result
= rename (oldname
, temp
);
3539 /* This loop must surely terminate! */
3540 while (result
< 0 && errno
== EEXIST
);
3545 /* If FORCE, emulate Unix behavior - newname is deleted if it already exists
3546 (at least if it is a file; don't do this for directories).
3548 Since we mustn't do this if we are just changing the case of the
3549 file name (we would end up deleting the file we are trying to
3550 rename!), we let rename detect if the destination file already
3551 exists - that way we avoid the possible pitfalls of trying to
3552 determine ourselves whether two names really refer to the same
3553 file, which is not always possible in the general case. (Consider
3554 all the permutations of shared or subst'd drives, etc.) */
3556 newname
= map_w32_filename (newname
, NULL
);
3558 /* volume_info is set indirectly by map_w32_filename. */
3559 newname_dev
= volume_info
.serialnum
;
3561 result
= rename (temp
, newname
);
3563 if (result
< 0 && force
)
3565 DWORD w32err
= GetLastError ();
3568 && newname_dev
!= oldname_dev
)
3570 /* The implementation of `rename' on Windows does not return
3571 errno = EXDEV when you are moving a directory to a
3572 different storage device (ex. logical disk). It returns
3573 EACCES instead. So here we handle such situations and
3577 if ((attributes
= GetFileAttributes (temp
)) != -1
3578 && (attributes
& FILE_ATTRIBUTE_DIRECTORY
))
3581 else if (errno
== EEXIST
)
3583 if (_chmod (newname
, 0666) != 0)
3585 if (_unlink (newname
) != 0)
3587 result
= rename (temp
, newname
);
3589 else if (w32err
== ERROR_PRIVILEGE_NOT_HELD
3590 && is_symlink (temp
))
3592 /* This is Windows prohibiting the user from creating a
3593 symlink in another place, since that requires
3603 sys_rename (char const *old
, char const *new)
3605 return sys_rename_replace (old
, new, TRUE
);
3609 sys_rmdir (const char * path
)
3611 return _rmdir (map_w32_filename (path
, NULL
));
3615 sys_unlink (const char * path
)
3617 path
= map_w32_filename (path
, NULL
);
3619 /* On Unix, unlink works without write permission. */
3620 _chmod (path
, 0666);
3621 return _unlink (path
);
3624 static FILETIME utc_base_ft
;
3625 static ULONGLONG utc_base
; /* In 100ns units */
3626 static int init
= 0;
3628 #define FILETIME_TO_U64(result, ft) \
3630 ULARGE_INTEGER uiTemp; \
3631 uiTemp.LowPart = (ft).dwLowDateTime; \
3632 uiTemp.HighPart = (ft).dwHighDateTime; \
3633 result = uiTemp.QuadPart; \
3637 initialize_utc_base (void)
3639 /* Determine the delta between 1-Jan-1601 and 1-Jan-1970. */
3648 st
.wMilliseconds
= 0;
3650 SystemTimeToFileTime (&st
, &utc_base_ft
);
3651 FILETIME_TO_U64 (utc_base
, utc_base_ft
);
3655 convert_time (FILETIME ft
)
3661 initialize_utc_base ();
3665 if (CompareFileTime (&ft
, &utc_base_ft
) < 0)
3668 FILETIME_TO_U64 (tmp
, ft
);
3669 return (time_t) ((tmp
- utc_base
) / 10000000L);
3673 convert_from_time_t (time_t time
, FILETIME
* pft
)
3679 initialize_utc_base ();
3683 /* time in 100ns units since 1-Jan-1601 */
3684 tmp
.QuadPart
= (ULONGLONG
) time
* 10000000L + utc_base
;
3685 pft
->dwHighDateTime
= tmp
.HighPart
;
3686 pft
->dwLowDateTime
= tmp
.LowPart
;
3690 /* No reason to keep this; faking inode values either by hashing or even
3691 using the file index from GetInformationByHandle, is not perfect and
3692 so by default Emacs doesn't use the inode values on Windows.
3693 Instead, we now determine file-truename correctly (except for
3694 possible drive aliasing etc). */
3696 /* Modified version of "PJW" algorithm (see the "Dragon" compiler book). */
3698 hashval (const unsigned char * str
)
3703 h
= (h
<< 4) + *str
++;
3709 /* Return the hash value of the canonical pathname, excluding the
3710 drive/UNC header, to get a hopefully unique inode number. */
3712 generate_inode_val (const char * name
)
3714 char fullname
[ MAX_PATH
];
3718 /* Get the truly canonical filename, if it exists. (Note: this
3719 doesn't resolve aliasing due to subst commands, or recognize hard
3721 if (!w32_get_long_filename ((char *)name
, fullname
, MAX_PATH
))
3724 parse_root (fullname
, &p
);
3725 /* Normal W32 filesystems are still case insensitive. */
3732 static PSECURITY_DESCRIPTOR
3733 get_file_security_desc_by_handle (HANDLE h
)
3735 PSECURITY_DESCRIPTOR psd
= NULL
;
3737 SECURITY_INFORMATION si
= OWNER_SECURITY_INFORMATION
3738 | GROUP_SECURITY_INFORMATION
/* | DACL_SECURITY_INFORMATION */ ;
3740 err
= get_security_info (h
, SE_FILE_OBJECT
, si
,
3741 NULL
, NULL
, NULL
, NULL
, &psd
);
3742 if (err
!= ERROR_SUCCESS
)
3748 static PSECURITY_DESCRIPTOR
3749 get_file_security_desc_by_name (const char *fname
)
3751 PSECURITY_DESCRIPTOR psd
= NULL
;
3753 SECURITY_INFORMATION si
= OWNER_SECURITY_INFORMATION
3754 | GROUP_SECURITY_INFORMATION
/* | DACL_SECURITY_INFORMATION */ ;
3756 if (!get_file_security (fname
, si
, psd
, 0, &sd_len
))
3758 err
= GetLastError ();
3759 if (err
!= ERROR_INSUFFICIENT_BUFFER
)
3763 psd
= xmalloc (sd_len
);
3764 if (!get_file_security (fname
, si
, psd
, sd_len
, &sd_len
))
3776 unsigned n_subauthorities
;
3778 /* Use the last sub-authority value of the RID, the relative
3779 portion of the SID, as user/group ID. */
3780 n_subauthorities
= *get_sid_sub_authority_count (sid
);
3781 if (n_subauthorities
< 1)
3782 return 0; /* the "World" RID */
3783 return *get_sid_sub_authority (sid
, n_subauthorities
- 1);
3786 /* Caching SID and account values for faster lokup. */
3789 # define FLEXIBLE_ARRAY_MEMBER
3791 # define FLEXIBLE_ARRAY_MEMBER 1
3796 struct w32_id
*next
;
3798 unsigned char sid
[FLEXIBLE_ARRAY_MEMBER
];
3801 static struct w32_id
*w32_idlist
;
3804 w32_cached_id (PSID sid
, unsigned *id
, char *name
)
3806 struct w32_id
*tail
, *found
;
3808 for (found
= NULL
, tail
= w32_idlist
; tail
; tail
= tail
->next
)
3810 if (equal_sid ((PSID
)tail
->sid
, sid
))
3819 strcpy (name
, found
->name
);
3827 w32_add_to_cache (PSID sid
, unsigned id
, char *name
)
3830 struct w32_id
*new_entry
;
3832 /* We don't want to leave behind stale cache from when Emacs was
3836 sid_len
= get_length_sid (sid
);
3837 new_entry
= xmalloc (offsetof (struct w32_id
, sid
) + sid_len
);
3840 new_entry
->rid
= id
;
3841 strcpy (new_entry
->name
, name
);
3842 copy_sid (sid_len
, (PSID
)new_entry
->sid
, sid
);
3843 new_entry
->next
= w32_idlist
;
3844 w32_idlist
= new_entry
;
3853 get_name_and_id (PSECURITY_DESCRIPTOR psd
, unsigned *id
, char *nm
, int what
)
3857 SID_NAME_USE ignore
;
3859 DWORD name_len
= sizeof (name
);
3861 DWORD domain_len
= sizeof (domain
);
3866 result
= get_security_descriptor_owner (psd
, &sid
, &dflt
);
3867 else if (what
== GID
)
3868 result
= get_security_descriptor_group (psd
, &sid
, &dflt
);
3872 if (!result
|| !is_valid_sid (sid
))
3874 else if (!w32_cached_id (sid
, id
, nm
))
3876 if (!lookup_account_sid (NULL
, sid
, name
, &name_len
,
3877 domain
, &domain_len
, &ignore
)
3878 || name_len
> UNLEN
+1)
3882 *id
= get_rid (sid
);
3884 w32_add_to_cache (sid
, *id
, name
);
3891 get_file_owner_and_group (PSECURITY_DESCRIPTOR psd
, struct stat
*st
)
3893 int dflt_usr
= 0, dflt_grp
= 0;
3902 if (get_name_and_id (psd
, &st
->st_uid
, st
->st_uname
, UID
))
3904 if (get_name_and_id (psd
, &st
->st_gid
, st
->st_gname
, GID
))
3907 /* Consider files to belong to current user/group, if we cannot get
3908 more accurate information. */
3911 st
->st_uid
= dflt_passwd
.pw_uid
;
3912 strcpy (st
->st_uname
, dflt_passwd
.pw_name
);
3916 st
->st_gid
= dflt_passwd
.pw_gid
;
3917 strcpy (st
->st_gname
, dflt_group
.gr_name
);
3921 /* Return non-zero if NAME is a potentially slow filesystem. */
3923 is_slow_fs (const char *name
)
3928 if (IS_DIRECTORY_SEP (name
[0]) && IS_DIRECTORY_SEP (name
[1]))
3929 devtype
= DRIVE_REMOTE
; /* assume UNC name is remote */
3930 else if (!(strlen (name
) >= 2 && IS_DEVICE_SEP (name
[1])))
3931 devtype
= GetDriveType (NULL
); /* use root of current drive */
3934 /* GetDriveType needs the root directory of the drive. */
3935 strncpy (drive_root
, name
, 2);
3936 drive_root
[2] = '\\';
3937 drive_root
[3] = '\0';
3938 devtype
= GetDriveType (drive_root
);
3940 return !(devtype
== DRIVE_FIXED
|| devtype
== DRIVE_RAMDISK
);
3943 /* If this is non-zero, the caller wants accurate information about
3944 file's owner and group, which could be expensive to get. */
3945 int w32_stat_get_owner_group
;
3947 /* MSVC stat function can't cope with UNC names and has other bugs, so
3948 replace it with our own. This also allows us to calculate consistent
3949 inode values and owner/group without hacks in the main Emacs code. */
3952 stat_worker (const char * path
, struct stat
* buf
, int follow_symlinks
)
3954 char *name
, *save_name
, *r
;
3955 WIN32_FIND_DATA wfd
;
3957 unsigned __int64 fake_inode
= 0;
3960 int rootdir
= FALSE
;
3961 PSECURITY_DESCRIPTOR psd
= NULL
;
3962 int is_a_symlink
= 0;
3963 DWORD file_flags
= FILE_FLAG_BACKUP_SEMANTICS
;
3964 DWORD access_rights
= 0;
3965 DWORD fattrs
= 0, serialnum
= 0, fs_high
= 0, fs_low
= 0, nlinks
= 1;
3966 FILETIME ctime
, atime
, wtime
;
3969 if (path
== NULL
|| buf
== NULL
)
3975 save_name
= name
= (char *) map_w32_filename (path
, &path
);
3976 /* Must be valid filename, no wild cards or other invalid
3977 characters. We use _mbspbrk to support multibyte strings that
3978 might look to strpbrk as if they included literal *, ?, and other
3979 characters mentioned below that are disallowed by Windows
3981 if (_mbspbrk (name
, "*?|<>\""))
3987 /* Remove trailing directory separator, unless name is the root
3988 directory of a drive or UNC volume in which case ensure there
3989 is a trailing separator. */
3990 len
= strlen (name
);
3991 name
= strcpy (alloca (len
+ 2), name
);
3993 /* Avoid a somewhat costly call to is_symlink if the filesystem
3994 doesn't support symlinks. */
3995 if ((volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) != 0)
3996 is_a_symlink
= is_symlink (name
);
3998 /* Plan A: Open the file and get all the necessary information via
3999 the resulting handle. This solves several issues in one blow:
4001 . retrieves attributes for the target of a symlink, if needed
4002 . gets attributes of root directories and symlinks pointing to
4003 root directories, thus avoiding the need for special-casing
4004 these and detecting them by examining the file-name format
4005 . retrieves more accurate attributes (e.g., non-zero size for
4006 some directories, esp. directories that are junction points)
4007 . correctly resolves "c:/..", "/.." and similar file names
4008 . avoids run-time penalties for 99% of use cases
4010 Plan A is always tried first, unless the user asked not to (but
4011 if the file is a symlink and we need to follow links, we try Plan
4012 A even if the user asked not to).
4014 If Plan A fails, we go to Plan B (below), where various
4015 potentially expensive techniques must be used to handle "special"
4016 files such as UNC volumes etc. */
4017 if (!(NILP (Vw32_get_true_file_attributes
)
4018 || (EQ (Vw32_get_true_file_attributes
, Qlocal
) && is_slow_fs (name
)))
4019 /* Following symlinks requires getting the info by handle. */
4020 || (is_a_symlink
&& follow_symlinks
))
4022 BY_HANDLE_FILE_INFORMATION info
;
4024 if (is_a_symlink
&& !follow_symlinks
)
4025 file_flags
|= FILE_FLAG_OPEN_REPARSE_POINT
;
4026 /* READ_CONTROL access rights are required to get security info
4027 by handle. But if the OS doesn't support security in the
4028 first place, we don't need to try. */
4029 if (is_windows_9x () != TRUE
)
4030 access_rights
|= READ_CONTROL
;
4032 fh
= CreateFile (name
, access_rights
, 0, NULL
, OPEN_EXISTING
,
4034 /* If CreateFile fails with READ_CONTROL, try again with zero as
4036 if (fh
== INVALID_HANDLE_VALUE
&& access_rights
)
4037 fh
= CreateFile (name
, 0, 0, NULL
, OPEN_EXISTING
,
4039 if (fh
== INVALID_HANDLE_VALUE
)
4040 goto no_true_file_attributes
;
4042 /* This is more accurate in terms of getting the correct number
4043 of links, but is quite slow (it is noticeable when Emacs is
4044 making a list of file name completions). */
4045 if (GetFileInformationByHandle (fh
, &info
))
4047 nlinks
= info
.nNumberOfLinks
;
4048 /* Might as well use file index to fake inode values, but this
4049 is not guaranteed to be unique unless we keep a handle open
4050 all the time (even then there are situations where it is
4051 not unique). Reputedly, there are at most 48 bits of info
4052 (on NTFS, presumably less on FAT). */
4053 fake_inode
= info
.nFileIndexHigh
;
4055 fake_inode
+= info
.nFileIndexLow
;
4056 serialnum
= info
.dwVolumeSerialNumber
;
4057 fs_high
= info
.nFileSizeHigh
;
4058 fs_low
= info
.nFileSizeLow
;
4059 ctime
= info
.ftCreationTime
;
4060 atime
= info
.ftLastAccessTime
;
4061 wtime
= info
.ftLastWriteTime
;
4062 fattrs
= info
.dwFileAttributes
;
4066 /* We don't go to Plan B here, because it's not clear that
4067 it's a good idea. The only known use case where
4068 CreateFile succeeds, but GetFileInformationByHandle fails
4069 (with ERROR_INVALID_FUNCTION) is for character devices
4070 such as NUL, PRN, etc. For these, switching to Plan B is
4071 a net loss, because we lose the character device
4072 attribute returned by GetFileType below (FindFirstFile
4073 doesn't set that bit in the attributes), and the other
4074 fields don't make sense for character devices anyway.
4075 Emacs doesn't really care for non-file entities in the
4076 context of l?stat, so neither do we. */
4078 /* w32err is assigned so one could put a breakpoint here and
4079 examine its value, when GetFileInformationByHandle
4081 DWORD w32err
= GetLastError ();
4085 case ERROR_FILE_NOT_FOUND
: /* can this ever happen? */
4091 /* Test for a symlink before testing for a directory, since
4092 symlinks to directories have the directory bit set, but we
4093 don't want them to appear as directories. */
4094 if (is_a_symlink
&& !follow_symlinks
)
4095 buf
->st_mode
= S_IFLNK
;
4096 else if (fattrs
& FILE_ATTRIBUTE_DIRECTORY
)
4097 buf
->st_mode
= S_IFDIR
;
4100 DWORD ftype
= GetFileType (fh
);
4104 case FILE_TYPE_DISK
:
4105 buf
->st_mode
= S_IFREG
;
4107 case FILE_TYPE_PIPE
:
4108 buf
->st_mode
= S_IFIFO
;
4110 case FILE_TYPE_CHAR
:
4111 case FILE_TYPE_UNKNOWN
:
4113 buf
->st_mode
= S_IFCHR
;
4116 /* We produce the fallback owner and group data, based on the
4117 current user that runs Emacs, in the following cases:
4119 . caller didn't request owner and group info
4120 . this is Windows 9X
4121 . getting security by handle failed, and we need to produce
4122 information for the target of a symlink (this is better
4123 than producing a potentially misleading info about the
4126 If getting security by handle fails, and we don't need to
4127 resolve symlinks, we try getting security by name. */
4128 if (!w32_stat_get_owner_group
|| is_windows_9x () == TRUE
)
4129 get_file_owner_and_group (NULL
, buf
);
4132 psd
= get_file_security_desc_by_handle (fh
);
4135 get_file_owner_and_group (psd
, buf
);
4138 else if (!(is_a_symlink
&& follow_symlinks
))
4140 psd
= get_file_security_desc_by_name (name
);
4141 get_file_owner_and_group (psd
, buf
);
4145 get_file_owner_and_group (NULL
, buf
);
4151 no_true_file_attributes
:
4152 /* Plan B: Either getting a handle on the file failed, or the
4153 caller explicitly asked us to not bother making this
4154 information more accurate.
4156 Implementation note: In Plan B, we never bother to resolve
4157 symlinks, even if we got here because we tried Plan A and
4158 failed. That's because, even if the caller asked for extra
4159 precision by setting Vw32_get_true_file_attributes to t,
4160 resolving symlinks requires acquiring a file handle to the
4161 symlink, which we already know will fail. And if the user
4162 did not ask for extra precision, resolving symlinks will fly
4163 in the face of that request, since the user then wants the
4164 lightweight version of the code. */
4165 dbcs_p
= max_filename_mbslen () > 1;
4166 rootdir
= (path
>= save_name
+ len
- 1
4167 && (IS_DIRECTORY_SEP (*path
) || *path
== 0));
4169 /* If name is "c:/.." or "/.." then stat "c:/" or "/". */
4170 r
= IS_DEVICE_SEP (name
[1]) ? &name
[2] : name
;
4171 if (IS_DIRECTORY_SEP (r
[0])
4172 && r
[1] == '.' && r
[2] == '.' && r
[3] == '\0')
4175 /* Note: If NAME is a symlink to the root of a UNC volume
4176 (i.e. "\\SERVER"), we will not detect that here, and we will
4177 return data about the symlink as result of FindFirst below.
4178 This is unfortunate, but that marginal use case does not
4179 justify a call to chase_symlinks which would impose a penalty
4180 on all the other use cases. (We get here for symlinks to
4181 roots of UNC volumes because CreateFile above fails for them,
4182 unlike with symlinks to root directories X:\ of drives.) */
4183 if (is_unc_volume (name
))
4185 fattrs
= unc_volume_file_attributes (name
);
4189 ctime
= atime
= wtime
= utc_base_ft
;
4195 if (!IS_DIRECTORY_SEP (name
[len
-1]))
4196 strcat (name
, "\\");
4200 char *end
= name
+ len
;
4201 char *n
= CharPrevExA (file_name_codepage
, name
, end
, 0);
4203 if (!IS_DIRECTORY_SEP (*n
))
4204 strcat (name
, "\\");
4206 if (GetDriveType (name
) < 2)
4212 fattrs
= FILE_ATTRIBUTE_DIRECTORY
;
4213 ctime
= atime
= wtime
= utc_base_ft
;
4219 if (IS_DIRECTORY_SEP (name
[len
-1]))
4224 char *end
= name
+ len
;
4225 char *n
= CharPrevExA (file_name_codepage
, name
, end
, 0);
4227 if (IS_DIRECTORY_SEP (*n
))
4231 /* (This is hacky, but helps when doing file completions on
4232 network drives.) Optimize by using information available from
4233 active readdir if possible. */
4234 len
= strlen (dir_pathname
);
4237 if (IS_DIRECTORY_SEP (dir_pathname
[len
-1]))
4242 char *end
= dir_pathname
+ len
;
4243 char *n
= CharPrevExA (file_name_codepage
, dir_pathname
, end
, 0);
4245 if (IS_DIRECTORY_SEP (*n
))
4248 if (dir_find_handle
!= INVALID_HANDLE_VALUE
4249 && !(is_a_symlink
&& follow_symlinks
)
4250 && strnicmp (save_name
, dir_pathname
, len
) == 0
4251 && IS_DIRECTORY_SEP (name
[len
])
4252 && xstrcasecmp (name
+ len
+ 1, dir_static
.d_name
) == 0)
4254 /* This was the last entry returned by readdir. */
4255 wfd
= dir_find_data
;
4259 logon_network_drive (name
);
4261 fh
= FindFirstFile (name
, &wfd
);
4262 if (fh
== INVALID_HANDLE_VALUE
)
4269 /* Note: if NAME is a symlink, the information we get from
4270 FindFirstFile is for the symlink, not its target. */
4271 fattrs
= wfd
.dwFileAttributes
;
4272 ctime
= wfd
.ftCreationTime
;
4273 atime
= wfd
.ftLastAccessTime
;
4274 wtime
= wfd
.ftLastWriteTime
;
4275 fs_high
= wfd
.nFileSizeHigh
;
4276 fs_low
= wfd
.nFileSizeLow
;
4279 serialnum
= volume_info
.serialnum
;
4281 if (is_a_symlink
&& !follow_symlinks
)
4282 buf
->st_mode
= S_IFLNK
;
4283 else if (fattrs
& FILE_ATTRIBUTE_DIRECTORY
)
4284 buf
->st_mode
= S_IFDIR
;
4286 buf
->st_mode
= S_IFREG
;
4288 get_file_owner_and_group (NULL
, buf
);
4292 /* Not sure if there is any point in this. */
4293 if (!NILP (Vw32_generate_fake_inodes
))
4294 fake_inode
= generate_inode_val (name
);
4295 else if (fake_inode
== 0)
4297 /* For want of something better, try to make everything unique. */
4298 static DWORD gen_num
= 0;
4299 fake_inode
= ++gen_num
;
4303 buf
->st_ino
= fake_inode
;
4305 buf
->st_dev
= serialnum
;
4306 buf
->st_rdev
= serialnum
;
4308 buf
->st_size
= fs_high
;
4309 buf
->st_size
<<= 32;
4310 buf
->st_size
+= fs_low
;
4311 buf
->st_nlink
= nlinks
;
4313 /* Convert timestamps to Unix format. */
4314 buf
->st_mtime
= convert_time (wtime
);
4315 buf
->st_atime
= convert_time (atime
);
4316 if (buf
->st_atime
== 0) buf
->st_atime
= buf
->st_mtime
;
4317 buf
->st_ctime
= convert_time (ctime
);
4318 if (buf
->st_ctime
== 0) buf
->st_ctime
= buf
->st_mtime
;
4320 /* determine rwx permissions */
4321 if (is_a_symlink
&& !follow_symlinks
)
4322 permission
= S_IREAD
| S_IWRITE
| S_IEXEC
; /* Posix expectations */
4325 if (fattrs
& FILE_ATTRIBUTE_READONLY
)
4326 permission
= S_IREAD
;
4328 permission
= S_IREAD
| S_IWRITE
;
4330 if (fattrs
& FILE_ATTRIBUTE_DIRECTORY
)
4331 permission
|= S_IEXEC
;
4332 else if (is_exec (name
))
4333 permission
|= S_IEXEC
;
4336 buf
->st_mode
|= permission
| (permission
>> 3) | (permission
>> 6);
4342 stat (const char * path
, struct stat
* buf
)
4344 return stat_worker (path
, buf
, 1);
4348 lstat (const char * path
, struct stat
* buf
)
4350 return stat_worker (path
, buf
, 0);
4354 fstatat (int fd
, char const *name
, struct stat
*st
, int flags
)
4356 /* Rely on a hack: an open directory is modeled as file descriptor 0.
4357 This is good enough for the current usage in Emacs, but is fragile.
4359 FIXME: Add proper support for fdopendir, fstatat, readlinkat.
4360 Gnulib does this and can serve as a model. */
4361 char fullname
[MAX_PATH
];
4365 if (_snprintf (fullname
, sizeof fullname
, "%s/%s", dir_pathname
, name
)
4368 errno
= ENAMETOOLONG
;
4374 return stat_worker (name
, st
, ! (flags
& AT_SYMLINK_NOFOLLOW
));
4377 /* Provide fstat and utime as well as stat for consistent handling of
4380 fstat (int desc
, struct stat
* buf
)
4382 HANDLE fh
= (HANDLE
) _get_osfhandle (desc
);
4383 BY_HANDLE_FILE_INFORMATION info
;
4384 unsigned __int64 fake_inode
;
4387 switch (GetFileType (fh
) & ~FILE_TYPE_REMOTE
)
4389 case FILE_TYPE_DISK
:
4390 buf
->st_mode
= S_IFREG
;
4391 if (!GetFileInformationByHandle (fh
, &info
))
4397 case FILE_TYPE_PIPE
:
4398 buf
->st_mode
= S_IFIFO
;
4400 case FILE_TYPE_CHAR
:
4401 case FILE_TYPE_UNKNOWN
:
4403 buf
->st_mode
= S_IFCHR
;
4405 memset (&info
, 0, sizeof (info
));
4406 info
.dwFileAttributes
= 0;
4407 info
.ftCreationTime
= utc_base_ft
;
4408 info
.ftLastAccessTime
= utc_base_ft
;
4409 info
.ftLastWriteTime
= utc_base_ft
;
4412 if (info
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)
4413 buf
->st_mode
= S_IFDIR
;
4415 buf
->st_nlink
= info
.nNumberOfLinks
;
4416 /* Might as well use file index to fake inode values, but this
4417 is not guaranteed to be unique unless we keep a handle open
4418 all the time (even then there are situations where it is
4419 not unique). Reputedly, there are at most 48 bits of info
4420 (on NTFS, presumably less on FAT). */
4421 fake_inode
= info
.nFileIndexHigh
;
4423 fake_inode
+= info
.nFileIndexLow
;
4425 /* MSVC defines _ino_t to be short; other libc's might not. */
4426 if (sizeof (buf
->st_ino
) == 2)
4427 buf
->st_ino
= fake_inode
^ (fake_inode
>> 16);
4429 buf
->st_ino
= fake_inode
;
4431 /* If the caller so requested, get the true file owner and group.
4432 Otherwise, consider the file to belong to the current user. */
4433 if (!w32_stat_get_owner_group
|| is_windows_9x () == TRUE
)
4434 get_file_owner_and_group (NULL
, buf
);
4437 PSECURITY_DESCRIPTOR psd
= NULL
;
4439 psd
= get_file_security_desc_by_handle (fh
);
4442 get_file_owner_and_group (psd
, buf
);
4446 get_file_owner_and_group (NULL
, buf
);
4449 buf
->st_dev
= info
.dwVolumeSerialNumber
;
4450 buf
->st_rdev
= info
.dwVolumeSerialNumber
;
4452 buf
->st_size
= info
.nFileSizeHigh
;
4453 buf
->st_size
<<= 32;
4454 buf
->st_size
+= info
.nFileSizeLow
;
4456 /* Convert timestamps to Unix format. */
4457 buf
->st_mtime
= convert_time (info
.ftLastWriteTime
);
4458 buf
->st_atime
= convert_time (info
.ftLastAccessTime
);
4459 if (buf
->st_atime
== 0) buf
->st_atime
= buf
->st_mtime
;
4460 buf
->st_ctime
= convert_time (info
.ftCreationTime
);
4461 if (buf
->st_ctime
== 0) buf
->st_ctime
= buf
->st_mtime
;
4463 /* determine rwx permissions */
4464 if (info
.dwFileAttributes
& FILE_ATTRIBUTE_READONLY
)
4465 permission
= S_IREAD
;
4467 permission
= S_IREAD
| S_IWRITE
;
4469 if (info
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)
4470 permission
|= S_IEXEC
;
4473 #if 0 /* no way of knowing the filename */
4474 char * p
= strrchr (name
, '.');
4476 (xstrcasecmp (p
, ".exe") == 0 ||
4477 xstrcasecmp (p
, ".com") == 0 ||
4478 xstrcasecmp (p
, ".bat") == 0 ||
4479 xstrcasecmp (p
, ".cmd") == 0))
4480 permission
|= S_IEXEC
;
4484 buf
->st_mode
|= permission
| (permission
>> 3) | (permission
>> 6);
4490 utime (const char *name
, struct utimbuf
*times
)
4492 struct utimbuf deftime
;
4499 deftime
.modtime
= deftime
.actime
= time (NULL
);
4503 /* Need write access to set times. */
4504 fh
= CreateFile (name
, FILE_WRITE_ATTRIBUTES
,
4505 /* If NAME specifies a directory, FILE_SHARE_DELETE
4506 allows other processes to delete files inside it,
4507 while we have the directory open. */
4508 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
,
4509 0, OPEN_EXISTING
, FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
4510 if (fh
!= INVALID_HANDLE_VALUE
)
4512 convert_from_time_t (times
->actime
, &atime
);
4513 convert_from_time_t (times
->modtime
, &mtime
);
4514 if (!SetFileTime (fh
, NULL
, &atime
, &mtime
))
4531 /* Symlink-related functions. */
4532 #ifndef SYMBOLIC_LINK_FLAG_DIRECTORY
4533 #define SYMBOLIC_LINK_FLAG_DIRECTORY 0x1
4537 symlink (char const *filename
, char const *linkname
)
4539 char linkfn
[MAX_PATH
], *tgtfn
;
4541 int dir_access
, filename_ends_in_slash
;
4544 /* Diagnostics follows Posix as much as possible. */
4545 if (filename
== NULL
|| linkname
== NULL
)
4555 if (strlen (filename
) > MAX_PATH
|| strlen (linkname
) > MAX_PATH
)
4557 errno
= ENAMETOOLONG
;
4561 strcpy (linkfn
, map_w32_filename (linkname
, NULL
));
4562 if ((volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) == 0)
4568 dbcs_p
= max_filename_mbslen () > 1;
4570 /* Note: since empty FILENAME was already rejected, we can safely
4571 refer to FILENAME[1]. */
4572 if (!(IS_DIRECTORY_SEP (filename
[0]) || IS_DEVICE_SEP (filename
[1])))
4574 /* Non-absolute FILENAME is understood as being relative to
4575 LINKNAME's directory. We need to prepend that directory to
4576 FILENAME to get correct results from faccessat below, since
4577 otherwise it will interpret FILENAME relative to the
4578 directory where the Emacs process runs. Note that
4579 make-symbolic-link always makes sure LINKNAME is a fully
4580 expanded file name. */
4582 char *p
= linkfn
+ strlen (linkfn
);
4586 while (p
> linkfn
&& !IS_ANY_SEP (p
[-1]))
4591 char *p1
= CharPrevExA (file_name_codepage
, linkfn
, p
, 0);
4593 while (p
> linkfn
&& !IS_ANY_SEP (*p1
))
4596 p1
= CharPrevExA (file_name_codepage
, linkfn
, p1
, 0);
4600 strncpy (tem
, linkfn
, p
- linkfn
);
4601 tem
[p
- linkfn
] = '\0';
4602 strcat (tem
, filename
);
4603 dir_access
= faccessat (AT_FDCWD
, tem
, D_OK
, AT_EACCESS
);
4606 dir_access
= faccessat (AT_FDCWD
, filename
, D_OK
, AT_EACCESS
);
4608 /* Since Windows distinguishes between symlinks to directories and
4609 to files, we provide a kludgy feature: if FILENAME doesn't
4610 exist, but ends in a slash, we create a symlink to directory. If
4611 FILENAME exists and is a directory, we always create a symlink to
4614 filename_ends_in_slash
= IS_DIRECTORY_SEP (filename
[strlen (filename
) - 1]);
4617 const char *end
= filename
+ strlen (filename
);
4618 const char *n
= CharPrevExA (file_name_codepage
, filename
, end
, 0);
4620 filename_ends_in_slash
= IS_DIRECTORY_SEP (*n
);
4622 if (dir_access
== 0 || filename_ends_in_slash
)
4623 flags
= SYMBOLIC_LINK_FLAG_DIRECTORY
;
4625 tgtfn
= (char *)map_w32_filename (filename
, NULL
);
4626 if (filename_ends_in_slash
)
4627 tgtfn
[strlen (tgtfn
) - 1] = '\0';
4630 if (!create_symbolic_link (linkfn
, tgtfn
, flags
))
4632 /* ENOSYS is set by create_symbolic_link, when it detects that
4633 the OS doesn't support the CreateSymbolicLink API. */
4634 if (errno
!= ENOSYS
)
4636 DWORD w32err
= GetLastError ();
4640 /* ERROR_SUCCESS is sometimes returned when LINKFN and
4641 TGTFN point to the same file name, go figure. */
4643 case ERROR_FILE_EXISTS
:
4646 case ERROR_ACCESS_DENIED
:
4649 case ERROR_FILE_NOT_FOUND
:
4650 case ERROR_PATH_NOT_FOUND
:
4651 case ERROR_BAD_NETPATH
:
4652 case ERROR_INVALID_REPARSE_DATA
:
4655 case ERROR_DIRECTORY
:
4658 case ERROR_PRIVILEGE_NOT_HELD
:
4659 case ERROR_NOT_ALL_ASSIGNED
:
4662 case ERROR_DISK_FULL
:
4675 /* A quick inexpensive test of whether FILENAME identifies a file that
4676 is a symlink. Returns non-zero if it is, zero otherwise. FILENAME
4677 must already be in the normalized form returned by
4680 Note: for repeated operations on many files, it is best to test
4681 whether the underlying volume actually supports symlinks, by
4682 testing the FILE_SUPPORTS_REPARSE_POINTS bit in volume's flags, and
4683 avoid the call to this function if it doesn't. That's because the
4684 call to GetFileAttributes takes a non-negligible time, especially
4685 on non-local or removable filesystems. See stat_worker for an
4686 example of how to do that. */
4688 is_symlink (const char *filename
)
4691 WIN32_FIND_DATA wfd
;
4694 attrs
= GetFileAttributes (filename
);
4697 DWORD w32err
= GetLastError ();
4701 case ERROR_BAD_NETPATH
: /* network share, can't be a symlink */
4703 case ERROR_ACCESS_DENIED
:
4706 case ERROR_FILE_NOT_FOUND
:
4707 case ERROR_PATH_NOT_FOUND
:
4714 if ((attrs
& FILE_ATTRIBUTE_REPARSE_POINT
) == 0)
4716 logon_network_drive (filename
);
4717 fh
= FindFirstFile (filename
, &wfd
);
4718 if (fh
== INVALID_HANDLE_VALUE
)
4721 return (wfd
.dwFileAttributes
& FILE_ATTRIBUTE_REPARSE_POINT
) != 0
4722 && (wfd
.dwReserved0
& IO_REPARSE_TAG_SYMLINK
) == IO_REPARSE_TAG_SYMLINK
;
4725 /* If NAME identifies a symbolic link, copy into BUF the file name of
4726 the symlink's target. Copy at most BUF_SIZE bytes, and do NOT
4727 null-terminate the target name, even if it fits. Return the number
4728 of bytes copied, or -1 if NAME is not a symlink or any error was
4729 encountered while resolving it. The file name copied into BUF is
4730 encoded in the current ANSI codepage. */
4732 readlink (const char *name
, char *buf
, size_t buf_size
)
4735 TOKEN_PRIVILEGES privs
;
4736 int restore_privs
= 0;
4751 path
= map_w32_filename (name
, NULL
);
4753 if (strlen (path
) > MAX_PATH
)
4755 errno
= ENAMETOOLONG
;
4760 if (is_windows_9x () == TRUE
4761 || (volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) == 0
4762 || !is_symlink (path
))
4765 errno
= EINVAL
; /* not a symlink */
4769 /* Done with simple tests, now we're in for some _real_ work. */
4770 if (enable_privilege (SE_BACKUP_NAME
, TRUE
, &privs
))
4772 /* Implementation note: From here and onward, don't return early,
4773 since that will fail to restore the original set of privileges of
4774 the calling thread. */
4776 retval
= -1; /* not too optimistic, are we? */
4778 /* Note: In the next call to CreateFile, we use zero as the 2nd
4779 argument because, when the symlink is a hidden/system file,
4780 e.g. 'C:\Users\All Users', GENERIC_READ fails with
4781 ERROR_ACCESS_DENIED. Zero seems to work just fine, both for file
4782 and directory symlinks. */
4783 sh
= CreateFile (path
, 0, 0, NULL
, OPEN_EXISTING
,
4784 FILE_FLAG_OPEN_REPARSE_POINT
| FILE_FLAG_BACKUP_SEMANTICS
,
4786 if (sh
!= INVALID_HANDLE_VALUE
)
4788 BYTE reparse_buf
[MAXIMUM_REPARSE_DATA_BUFFER_SIZE
];
4789 REPARSE_DATA_BUFFER
*reparse_data
= (REPARSE_DATA_BUFFER
*)&reparse_buf
[0];
4792 if (!DeviceIoControl (sh
, FSCTL_GET_REPARSE_POINT
, NULL
, 0,
4793 reparse_buf
, MAXIMUM_REPARSE_DATA_BUFFER_SIZE
,
4796 else if (reparse_data
->ReparseTag
!= IO_REPARSE_TAG_SYMLINK
)
4800 /* Copy the link target name, in wide characters, from
4801 reparse_data, then convert it to multibyte encoding in
4802 the current locale's codepage. */
4804 BYTE lname
[MAX_PATH
];
4807 reparse_data
->SymbolicLinkReparseBuffer
.PrintNameLength
;
4809 reparse_data
->SymbolicLinkReparseBuffer
.PathBuffer
4810 + reparse_data
->SymbolicLinkReparseBuffer
.PrintNameOffset
/sizeof(WCHAR
);
4811 /* This updates file_name_codepage which we need below. */
4812 int dbcs_p
= max_filename_mbslen () > 1;
4814 /* According to MSDN, PrintNameLength does not include the
4815 terminating null character. */
4816 lwname
= alloca ((lwname_len
+ 1) * sizeof(WCHAR
));
4817 memcpy (lwname
, lwname_src
, lwname_len
);
4818 lwname
[lwname_len
/sizeof(WCHAR
)] = 0; /* null-terminate */
4820 lname_len
= WideCharToMultiByte (file_name_codepage
, 0, lwname
, -1,
4821 lname
, MAX_PATH
, NULL
, NULL
);
4824 /* WideCharToMultiByte failed. */
4825 DWORD w32err1
= GetLastError ();
4829 case ERROR_INSUFFICIENT_BUFFER
:
4830 errno
= ENAMETOOLONG
;
4832 case ERROR_INVALID_PARAMETER
:
4835 case ERROR_NO_UNICODE_TRANSLATION
:
4845 size_t size_to_copy
= buf_size
;
4846 BYTE
*p
= lname
, *p2
;
4847 BYTE
*pend
= p
+ lname_len
;
4849 /* Normalize like dostounix_filename does, but we don't
4850 want to assume that lname is null-terminated. */
4852 p2
= CharNextExA (file_name_codepage
, p
, 0);
4855 if (*p
&& *p2
== ':' && *p
>= 'A' && *p
<= 'Z')
4866 p
= CharNextExA (file_name_codepage
, p
, 0);
4867 /* CharNextExA doesn't advance at null character. */
4874 /* Testing for null-terminated LNAME is paranoia:
4875 WideCharToMultiByte should always return a
4876 null-terminated string when its 4th argument is -1
4877 and its 3rd argument is null-terminated (which they
4879 if (lname
[lname_len
- 1] == '\0')
4881 if (lname_len
<= buf_size
)
4882 size_to_copy
= lname_len
;
4883 strncpy (buf
, lname
, size_to_copy
);
4885 retval
= size_to_copy
;
4892 /* CreateFile failed. */
4893 DWORD w32err2
= GetLastError ();
4897 case ERROR_FILE_NOT_FOUND
:
4898 case ERROR_PATH_NOT_FOUND
:
4901 case ERROR_ACCESS_DENIED
:
4902 case ERROR_TOO_MANY_OPEN_FILES
:
4912 restore_privilege (&privs
);
4920 readlinkat (int fd
, char const *name
, char *buffer
,
4923 /* Rely on a hack: an open directory is modeled as file descriptor 0,
4924 as in fstatat. FIXME: Add proper support for readlinkat. */
4925 char fullname
[MAX_PATH
];
4929 if (_snprintf (fullname
, sizeof fullname
, "%s/%s", dir_pathname
, name
)
4932 errno
= ENAMETOOLONG
;
4938 return readlink (name
, buffer
, buffer_size
);
4941 /* If FILE is a symlink, return its target (stored in a static
4942 buffer); otherwise return FILE.
4944 This function repeatedly resolves symlinks in the last component of
4945 a chain of symlink file names, as in foo -> bar -> baz -> ...,
4946 until it arrives at a file whose last component is not a symlink,
4947 or some error occurs. It returns the target of the last
4948 successfully resolved symlink in the chain. If it succeeds to
4949 resolve even a single symlink, the value returned is an absolute
4950 file name with backslashes (result of GetFullPathName). By
4951 contrast, if the original FILE is returned, it is unaltered.
4953 Note: This function can set errno even if it succeeds.
4955 Implementation note: we only resolve the last portion ("basename")
4956 of the argument FILE and of each following file in the chain,
4957 disregarding any possible symlinks in its leading directories.
4958 This is because Windows system calls and library functions
4959 transparently resolve symlinks in leading directories and return
4960 correct information, as long as the basename is not a symlink. */
4962 chase_symlinks (const char *file
)
4964 static char target
[MAX_PATH
];
4965 char link
[MAX_PATH
];
4966 ssize_t res
, link_len
;
4970 if (is_windows_9x () == TRUE
|| !is_symlink (file
))
4971 return (char *)file
;
4973 if ((link_len
= GetFullPathName (file
, MAX_PATH
, link
, NULL
)) == 0)
4974 return (char *)file
;
4976 dbcs_p
= max_filename_mbslen () > 1;
4980 /* Remove trailing slashes, as we want to resolve the last
4981 non-trivial part of the link name. */
4984 while (link_len
> 3 && IS_DIRECTORY_SEP (link
[link_len
-1]))
4985 link
[link_len
--] = '\0';
4987 else if (link_len
> 3)
4989 char *n
= CharPrevExA (file_name_codepage
, link
, link
+ link_len
, 0);
4991 while (n
>= link
+ 2 && IS_DIRECTORY_SEP (*n
))
4994 n
= CharPrevExA (file_name_codepage
, link
, n
, 0);
4998 res
= readlink (link
, target
, MAX_PATH
);
5002 if (!(IS_DEVICE_SEP (target
[1])
5003 || (IS_DIRECTORY_SEP (target
[0]) && IS_DIRECTORY_SEP (target
[1]))))
5005 /* Target is relative. Append it to the directory part of
5006 the symlink, then copy the result back to target. */
5007 char *p
= link
+ link_len
;
5011 while (p
> link
&& !IS_ANY_SEP (p
[-1]))
5016 char *p1
= CharPrevExA (file_name_codepage
, link
, p
, 0);
5018 while (p
> link
&& !IS_ANY_SEP (*p1
))
5021 p1
= CharPrevExA (file_name_codepage
, link
, p1
, 0);
5025 strcpy (target
, link
);
5027 /* Resolve any "." and ".." to get a fully-qualified file name
5029 link_len
= GetFullPathName (target
, MAX_PATH
, link
, NULL
);
5031 } while (res
> 0 && link_len
> 0 && ++loop_count
<= 100);
5033 if (loop_count
> 100)
5036 if (target
[0] == '\0') /* not a single call to readlink succeeded */
5037 return (char *)file
;
5042 /* Posix ACL emulation. */
5045 acl_valid (acl_t acl
)
5047 return is_valid_security_descriptor ((PSECURITY_DESCRIPTOR
)acl
) ? 0 : -1;
5051 acl_to_text (acl_t acl
, ssize_t
*size
)
5054 SECURITY_INFORMATION flags
=
5055 OWNER_SECURITY_INFORMATION
|
5056 GROUP_SECURITY_INFORMATION
|
5057 DACL_SECURITY_INFORMATION
;
5058 char *retval
= NULL
;
5064 if (convert_sd_to_sddl ((PSECURITY_DESCRIPTOR
)acl
, SDDL_REVISION_1
, flags
, &str_acl
, &local_size
))
5067 /* We don't want to mix heaps, so we duplicate the string in our
5068 heap and free the one allocated by the API. */
5069 retval
= xstrdup (str_acl
);
5072 LocalFree (str_acl
);
5074 else if (errno
!= ENOTSUP
)
5081 acl_from_text (const char *acl_str
)
5083 PSECURITY_DESCRIPTOR psd
, retval
= NULL
;
5089 if (convert_sddl_to_sd (acl_str
, SDDL_REVISION_1
, &psd
, &sd_size
))
5092 retval
= xmalloc (sd_size
);
5093 memcpy (retval
, psd
, sd_size
);
5096 else if (errno
!= ENOTSUP
)
5103 acl_free (void *ptr
)
5110 acl_get_file (const char *fname
, acl_type_t type
)
5112 PSECURITY_DESCRIPTOR psd
= NULL
;
5113 const char *filename
;
5115 if (type
== ACL_TYPE_ACCESS
)
5118 SECURITY_INFORMATION si
=
5119 OWNER_SECURITY_INFORMATION
|
5120 GROUP_SECURITY_INFORMATION
|
5121 DACL_SECURITY_INFORMATION
;
5124 filename
= map_w32_filename (fname
, NULL
);
5125 if ((volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) != 0)
5126 fname
= chase_symlinks (filename
);
5131 if (!get_file_security (fname
, si
, psd
, 0, &sd_len
)
5132 && errno
!= ENOTSUP
)
5134 err
= GetLastError ();
5135 if (err
== ERROR_INSUFFICIENT_BUFFER
)
5137 psd
= xmalloc (sd_len
);
5138 if (!get_file_security (fname
, si
, psd
, sd_len
, &sd_len
))
5145 else if (err
== ERROR_FILE_NOT_FOUND
5146 || err
== ERROR_PATH_NOT_FOUND
)
5154 else if (type
!= ACL_TYPE_DEFAULT
)
5161 acl_set_file (const char *fname
, acl_type_t type
, acl_t acl
)
5163 TOKEN_PRIVILEGES old1
, old2
;
5165 int st
= 0, retval
= -1;
5166 SECURITY_INFORMATION flags
= 0;
5172 const char *filename
;
5174 if (acl_valid (acl
) != 0
5175 || (type
!= ACL_TYPE_DEFAULT
&& type
!= ACL_TYPE_ACCESS
))
5181 if (type
== ACL_TYPE_DEFAULT
)
5187 filename
= map_w32_filename (fname
, NULL
);
5188 if ((volume_info
.flags
& FILE_SUPPORTS_REPARSE_POINTS
) != 0)
5189 fname
= chase_symlinks (filename
);
5193 if (get_security_descriptor_owner ((PSECURITY_DESCRIPTOR
)acl
, &psid
, &dflt
)
5195 flags
|= OWNER_SECURITY_INFORMATION
;
5196 if (get_security_descriptor_group ((PSECURITY_DESCRIPTOR
)acl
, &psid
, &dflt
)
5198 flags
|= GROUP_SECURITY_INFORMATION
;
5199 if (get_security_descriptor_dacl ((PSECURITY_DESCRIPTOR
)acl
, &dacl_present
,
5202 flags
|= DACL_SECURITY_INFORMATION
;
5206 /* According to KB-245153, setting the owner will succeed if either:
5207 (1) the caller is the user who will be the new owner, and has the
5208 SE_TAKE_OWNERSHIP privilege, or
5209 (2) the caller has the SE_RESTORE privilege, in which case she can
5210 set any valid user or group as the owner
5212 We request below both SE_TAKE_OWNERSHIP and SE_RESTORE
5213 privileges, and disregard any failures in obtaining them. If
5214 these privileges cannot be obtained, and do not already exist in
5215 the calling thread's security token, this function could fail
5217 if (enable_privilege (SE_TAKE_OWNERSHIP_NAME
, TRUE
, &old1
))
5219 if (enable_privilege (SE_RESTORE_NAME
, TRUE
, &old2
))
5224 if (!set_file_security ((char *)fname
, flags
, (PSECURITY_DESCRIPTOR
)acl
))
5226 err
= GetLastError ();
5228 if (errno
== ENOTSUP
)
5230 else if (err
== ERROR_INVALID_OWNER
5231 || err
== ERROR_NOT_ALL_ASSIGNED
5232 || err
== ERROR_ACCESS_DENIED
)
5234 /* Maybe the requested ACL and the one the file already has
5235 are identical, in which case we can silently ignore the
5236 failure. (And no, Windows doesn't.) */
5237 acl_t current_acl
= acl_get_file (fname
, ACL_TYPE_ACCESS
);
5242 char *acl_from
= acl_to_text (current_acl
, NULL
);
5243 char *acl_to
= acl_to_text (acl
, NULL
);
5245 if (acl_from
&& acl_to
&& xstrcasecmp (acl_from
, acl_to
) == 0)
5251 acl_free (acl_from
);
5254 acl_free (current_acl
);
5257 else if (err
== ERROR_FILE_NOT_FOUND
|| err
== ERROR_PATH_NOT_FOUND
)
5271 restore_privilege (&old2
);
5272 restore_privilege (&old1
);
5280 /* MS-Windows version of careadlinkat (cf. ../lib/careadlinkat.c). We
5281 have a fixed max size for file names, so we don't need the kind of
5282 alloc/malloc/realloc dance the gnulib version does. We also don't
5283 support FD-relative symlinks. */
5285 careadlinkat (int fd
, char const *filename
,
5286 char *buffer
, size_t buffer_size
,
5287 struct allocator
const *alloc
,
5288 ssize_t (*preadlinkat
) (int, char const *, char *, size_t))
5290 char linkname
[MAX_PATH
];
5293 link_size
= preadlinkat (fd
, filename
, linkname
, sizeof(linkname
));
5297 char *retval
= buffer
;
5299 linkname
[link_size
++] = '\0';
5300 if (link_size
> buffer_size
)
5301 retval
= (char *)(alloc
? alloc
->allocate
: xmalloc
) (link_size
);
5303 memcpy (retval
, linkname
, link_size
);
5311 /* Support for browsing other processes and their attributes. See
5312 process.c for the Lisp bindings. */
5314 /* Helper wrapper functions. */
5316 static HANDLE WINAPI
5317 create_toolhelp32_snapshot (DWORD Flags
, DWORD Ignored
)
5319 static CreateToolhelp32Snapshot_Proc s_pfn_Create_Toolhelp32_Snapshot
= NULL
;
5321 if (g_b_init_create_toolhelp32_snapshot
== 0)
5323 g_b_init_create_toolhelp32_snapshot
= 1;
5324 s_pfn_Create_Toolhelp32_Snapshot
= (CreateToolhelp32Snapshot_Proc
)
5325 GetProcAddress (GetModuleHandle ("kernel32.dll"),
5326 "CreateToolhelp32Snapshot");
5328 if (s_pfn_Create_Toolhelp32_Snapshot
== NULL
)
5330 return INVALID_HANDLE_VALUE
;
5332 return (s_pfn_Create_Toolhelp32_Snapshot (Flags
, Ignored
));
5336 process32_first (HANDLE hSnapshot
, LPPROCESSENTRY32 lppe
)
5338 static Process32First_Proc s_pfn_Process32_First
= NULL
;
5340 if (g_b_init_process32_first
== 0)
5342 g_b_init_process32_first
= 1;
5343 s_pfn_Process32_First
= (Process32First_Proc
)
5344 GetProcAddress (GetModuleHandle ("kernel32.dll"),
5347 if (s_pfn_Process32_First
== NULL
)
5351 return (s_pfn_Process32_First (hSnapshot
, lppe
));
5355 process32_next (HANDLE hSnapshot
, LPPROCESSENTRY32 lppe
)
5357 static Process32Next_Proc s_pfn_Process32_Next
= NULL
;
5359 if (g_b_init_process32_next
== 0)
5361 g_b_init_process32_next
= 1;
5362 s_pfn_Process32_Next
= (Process32Next_Proc
)
5363 GetProcAddress (GetModuleHandle ("kernel32.dll"),
5366 if (s_pfn_Process32_Next
== NULL
)
5370 return (s_pfn_Process32_Next (hSnapshot
, lppe
));
5374 open_thread_token (HANDLE ThreadHandle
,
5375 DWORD DesiredAccess
,
5377 PHANDLE TokenHandle
)
5379 static OpenThreadToken_Proc s_pfn_Open_Thread_Token
= NULL
;
5380 HMODULE hm_advapi32
= NULL
;
5381 if (is_windows_9x () == TRUE
)
5383 SetLastError (ERROR_NOT_SUPPORTED
);
5386 if (g_b_init_open_thread_token
== 0)
5388 g_b_init_open_thread_token
= 1;
5389 hm_advapi32
= LoadLibrary ("Advapi32.dll");
5390 s_pfn_Open_Thread_Token
=
5391 (OpenThreadToken_Proc
) GetProcAddress (hm_advapi32
, "OpenThreadToken");
5393 if (s_pfn_Open_Thread_Token
== NULL
)
5395 SetLastError (ERROR_NOT_SUPPORTED
);
5399 s_pfn_Open_Thread_Token (
5408 impersonate_self (SECURITY_IMPERSONATION_LEVEL ImpersonationLevel
)
5410 static ImpersonateSelf_Proc s_pfn_Impersonate_Self
= NULL
;
5411 HMODULE hm_advapi32
= NULL
;
5412 if (is_windows_9x () == TRUE
)
5416 if (g_b_init_impersonate_self
== 0)
5418 g_b_init_impersonate_self
= 1;
5419 hm_advapi32
= LoadLibrary ("Advapi32.dll");
5420 s_pfn_Impersonate_Self
=
5421 (ImpersonateSelf_Proc
) GetProcAddress (hm_advapi32
, "ImpersonateSelf");
5423 if (s_pfn_Impersonate_Self
== NULL
)
5427 return s_pfn_Impersonate_Self (ImpersonationLevel
);
5431 revert_to_self (void)
5433 static RevertToSelf_Proc s_pfn_Revert_To_Self
= NULL
;
5434 HMODULE hm_advapi32
= NULL
;
5435 if (is_windows_9x () == TRUE
)
5439 if (g_b_init_revert_to_self
== 0)
5441 g_b_init_revert_to_self
= 1;
5442 hm_advapi32
= LoadLibrary ("Advapi32.dll");
5443 s_pfn_Revert_To_Self
=
5444 (RevertToSelf_Proc
) GetProcAddress (hm_advapi32
, "RevertToSelf");
5446 if (s_pfn_Revert_To_Self
== NULL
)
5450 return s_pfn_Revert_To_Self ();
5454 get_process_memory_info (HANDLE h_proc
,
5455 PPROCESS_MEMORY_COUNTERS mem_counters
,
5458 static GetProcessMemoryInfo_Proc s_pfn_Get_Process_Memory_Info
= NULL
;
5459 HMODULE hm_psapi
= NULL
;
5460 if (is_windows_9x () == TRUE
)
5464 if (g_b_init_get_process_memory_info
== 0)
5466 g_b_init_get_process_memory_info
= 1;
5467 hm_psapi
= LoadLibrary ("Psapi.dll");
5469 s_pfn_Get_Process_Memory_Info
= (GetProcessMemoryInfo_Proc
)
5470 GetProcAddress (hm_psapi
, "GetProcessMemoryInfo");
5472 if (s_pfn_Get_Process_Memory_Info
== NULL
)
5476 return s_pfn_Get_Process_Memory_Info (h_proc
, mem_counters
, bufsize
);
5480 get_process_working_set_size (HANDLE h_proc
,
5484 static GetProcessWorkingSetSize_Proc
5485 s_pfn_Get_Process_Working_Set_Size
= NULL
;
5487 if (is_windows_9x () == TRUE
)
5491 if (g_b_init_get_process_working_set_size
== 0)
5493 g_b_init_get_process_working_set_size
= 1;
5494 s_pfn_Get_Process_Working_Set_Size
= (GetProcessWorkingSetSize_Proc
)
5495 GetProcAddress (GetModuleHandle ("kernel32.dll"),
5496 "GetProcessWorkingSetSize");
5498 if (s_pfn_Get_Process_Working_Set_Size
== NULL
)
5502 return s_pfn_Get_Process_Working_Set_Size (h_proc
, minrss
, maxrss
);
5506 global_memory_status (MEMORYSTATUS
*buf
)
5508 static GlobalMemoryStatus_Proc s_pfn_Global_Memory_Status
= NULL
;
5510 if (is_windows_9x () == TRUE
)
5514 if (g_b_init_global_memory_status
== 0)
5516 g_b_init_global_memory_status
= 1;
5517 s_pfn_Global_Memory_Status
= (GlobalMemoryStatus_Proc
)
5518 GetProcAddress (GetModuleHandle ("kernel32.dll"),
5519 "GlobalMemoryStatus");
5521 if (s_pfn_Global_Memory_Status
== NULL
)
5525 return s_pfn_Global_Memory_Status (buf
);
5529 global_memory_status_ex (MEMORY_STATUS_EX
*buf
)
5531 static GlobalMemoryStatusEx_Proc s_pfn_Global_Memory_Status_Ex
= NULL
;
5533 if (is_windows_9x () == TRUE
)
5537 if (g_b_init_global_memory_status_ex
== 0)
5539 g_b_init_global_memory_status_ex
= 1;
5540 s_pfn_Global_Memory_Status_Ex
= (GlobalMemoryStatusEx_Proc
)
5541 GetProcAddress (GetModuleHandle ("kernel32.dll"),
5542 "GlobalMemoryStatusEx");
5544 if (s_pfn_Global_Memory_Status_Ex
== NULL
)
5548 return s_pfn_Global_Memory_Status_Ex (buf
);
5552 list_system_processes (void)
5554 struct gcpro gcpro1
;
5555 Lisp_Object proclist
= Qnil
;
5558 h_snapshot
= create_toolhelp32_snapshot (TH32CS_SNAPPROCESS
, 0);
5560 if (h_snapshot
!= INVALID_HANDLE_VALUE
)
5562 PROCESSENTRY32 proc_entry
;
5568 proc_entry
.dwSize
= sizeof (PROCESSENTRY32
);
5569 for (res
= process32_first (h_snapshot
, &proc_entry
); res
;
5570 res
= process32_next (h_snapshot
, &proc_entry
))
5572 proc_id
= proc_entry
.th32ProcessID
;
5573 proclist
= Fcons (make_fixnum_or_float (proc_id
), proclist
);
5576 CloseHandle (h_snapshot
);
5578 proclist
= Fnreverse (proclist
);
5585 enable_privilege (LPCTSTR priv_name
, BOOL enable_p
, TOKEN_PRIVILEGES
*old_priv
)
5587 TOKEN_PRIVILEGES priv
;
5588 DWORD priv_size
= sizeof (priv
);
5589 DWORD opriv_size
= sizeof (*old_priv
);
5590 HANDLE h_token
= NULL
;
5591 HANDLE h_thread
= GetCurrentThread ();
5595 res
= open_thread_token (h_thread
,
5596 TOKEN_QUERY
| TOKEN_ADJUST_PRIVILEGES
,
5598 if (!res
&& GetLastError () == ERROR_NO_TOKEN
)
5600 if (impersonate_self (SecurityImpersonation
))
5601 res
= open_thread_token (h_thread
,
5602 TOKEN_QUERY
| TOKEN_ADJUST_PRIVILEGES
,
5607 priv
.PrivilegeCount
= 1;
5608 priv
.Privileges
[0].Attributes
= enable_p
? SE_PRIVILEGE_ENABLED
: 0;
5609 LookupPrivilegeValue (NULL
, priv_name
, &priv
.Privileges
[0].Luid
);
5610 if (AdjustTokenPrivileges (h_token
, FALSE
, &priv
, priv_size
,
5611 old_priv
, &opriv_size
)
5612 && GetLastError () != ERROR_NOT_ALL_ASSIGNED
)
5616 CloseHandle (h_token
);
5622 restore_privilege (TOKEN_PRIVILEGES
*priv
)
5624 DWORD priv_size
= sizeof (*priv
);
5625 HANDLE h_token
= NULL
;
5628 if (open_thread_token (GetCurrentThread (),
5629 TOKEN_QUERY
| TOKEN_ADJUST_PRIVILEGES
,
5632 if (AdjustTokenPrivileges (h_token
, FALSE
, priv
, priv_size
, NULL
, NULL
)
5633 && GetLastError () != ERROR_NOT_ALL_ASSIGNED
)
5637 CloseHandle (h_token
);
5643 ltime (ULONGLONG time_100ns
)
5645 ULONGLONG time_sec
= time_100ns
/ 10000000;
5646 int subsec
= time_100ns
% 10000000;
5647 return list4i (time_sec
>> 16, time_sec
& 0xffff,
5648 subsec
/ 10, subsec
% 10 * 100000);
5651 #define U64_TO_LISP_TIME(time) ltime (time)
5654 process_times (HANDLE h_proc
, Lisp_Object
*ctime
, Lisp_Object
*etime
,
5655 Lisp_Object
*stime
, Lisp_Object
*utime
, Lisp_Object
*ttime
,
5658 FILETIME ft_creation
, ft_exit
, ft_kernel
, ft_user
, ft_current
;
5659 ULONGLONG tem1
, tem2
, tem3
, tem
;
5662 || !get_process_times_fn
5663 || !(*get_process_times_fn
) (h_proc
, &ft_creation
, &ft_exit
,
5664 &ft_kernel
, &ft_user
))
5667 GetSystemTimeAsFileTime (&ft_current
);
5669 FILETIME_TO_U64 (tem1
, ft_kernel
);
5670 *stime
= U64_TO_LISP_TIME (tem1
);
5672 FILETIME_TO_U64 (tem2
, ft_user
);
5673 *utime
= U64_TO_LISP_TIME (tem2
);
5676 *ttime
= U64_TO_LISP_TIME (tem3
);
5678 FILETIME_TO_U64 (tem
, ft_creation
);
5679 /* Process no 4 (System) returns zero creation time. */
5682 *ctime
= U64_TO_LISP_TIME (tem
);
5686 FILETIME_TO_U64 (tem3
, ft_current
);
5687 tem
= (tem3
- utc_base
) - tem
;
5689 *etime
= U64_TO_LISP_TIME (tem
);
5693 *pcpu
= 100.0 * (tem1
+ tem2
) / tem
;
5704 system_process_attributes (Lisp_Object pid
)
5706 struct gcpro gcpro1
, gcpro2
, gcpro3
;
5707 Lisp_Object attrs
= Qnil
;
5708 Lisp_Object cmd_str
, decoded_cmd
, tem
;
5709 HANDLE h_snapshot
, h_proc
;
5712 char uname
[UNLEN
+1], gname
[GNLEN
+1], domain
[1025];
5713 DWORD ulength
= sizeof (uname
), dlength
= sizeof (domain
), needed
;
5714 DWORD glength
= sizeof (gname
);
5715 HANDLE token
= NULL
;
5716 SID_NAME_USE user_type
;
5717 unsigned char *buf
= NULL
;
5719 TOKEN_USER user_token
;
5720 TOKEN_PRIMARY_GROUP group_token
;
5723 PROCESS_MEMORY_COUNTERS mem
;
5724 PROCESS_MEMORY_COUNTERS_EX mem_ex
;
5725 SIZE_T minrss
, maxrss
;
5727 MEMORY_STATUS_EX memstex
;
5728 double totphys
= 0.0;
5729 Lisp_Object ctime
, stime
, utime
, etime
, ttime
;
5731 BOOL result
= FALSE
;
5733 CHECK_NUMBER_OR_FLOAT (pid
);
5734 proc_id
= FLOATP (pid
) ? XFLOAT_DATA (pid
) : XINT (pid
);
5736 h_snapshot
= create_toolhelp32_snapshot (TH32CS_SNAPPROCESS
, 0);
5738 GCPRO3 (attrs
, decoded_cmd
, tem
);
5740 if (h_snapshot
!= INVALID_HANDLE_VALUE
)
5745 pe
.dwSize
= sizeof (PROCESSENTRY32
);
5746 for (res
= process32_first (h_snapshot
, &pe
); res
;
5747 res
= process32_next (h_snapshot
, &pe
))
5749 if (proc_id
== pe
.th32ProcessID
)
5752 decoded_cmd
= build_string ("Idle");
5755 /* Decode the command name from locale-specific
5757 cmd_str
= make_unibyte_string (pe
.szExeFile
,
5758 strlen (pe
.szExeFile
));
5760 code_convert_string_norecord (cmd_str
,
5761 Vlocale_coding_system
, 0);
5763 attrs
= Fcons (Fcons (Qcomm
, decoded_cmd
), attrs
);
5764 attrs
= Fcons (Fcons (Qppid
,
5765 make_fixnum_or_float (pe
.th32ParentProcessID
)),
5767 attrs
= Fcons (Fcons (Qpri
, make_number (pe
.pcPriClassBase
)),
5769 attrs
= Fcons (Fcons (Qthcount
,
5770 make_fixnum_or_float (pe
.cntThreads
)),
5777 CloseHandle (h_snapshot
);
5786 h_proc
= OpenProcess (PROCESS_QUERY_INFORMATION
| PROCESS_VM_READ
,
5788 /* If we were denied a handle to the process, try again after
5789 enabling the SeDebugPrivilege in our process. */
5792 TOKEN_PRIVILEGES priv_current
;
5794 if (enable_privilege (SE_DEBUG_NAME
, TRUE
, &priv_current
))
5796 h_proc
= OpenProcess (PROCESS_QUERY_INFORMATION
| PROCESS_VM_READ
,
5798 restore_privilege (&priv_current
);
5804 result
= open_process_token (h_proc
, TOKEN_QUERY
, &token
);
5807 result
= get_token_information (token
, TokenUser
, NULL
, 0, &blen
);
5808 if (!result
&& GetLastError () == ERROR_INSUFFICIENT_BUFFER
)
5810 buf
= xmalloc (blen
);
5811 result
= get_token_information (token
, TokenUser
,
5812 (LPVOID
)buf
, blen
, &needed
);
5815 memcpy (&user_token
, buf
, sizeof (user_token
));
5816 if (!w32_cached_id (user_token
.User
.Sid
, &euid
, uname
))
5818 euid
= get_rid (user_token
.User
.Sid
);
5819 result
= lookup_account_sid (NULL
, user_token
.User
.Sid
,
5824 w32_add_to_cache (user_token
.User
.Sid
, euid
, uname
);
5827 strcpy (uname
, "unknown");
5831 ulength
= strlen (uname
);
5837 /* Determine a reasonable euid and gid values. */
5838 if (xstrcasecmp ("administrator", uname
) == 0)
5840 euid
= 500; /* well-known Administrator uid */
5841 egid
= 513; /* well-known None gid */
5845 /* Get group id and name. */
5846 result
= get_token_information (token
, TokenPrimaryGroup
,
5847 (LPVOID
)buf
, blen
, &needed
);
5848 if (!result
&& GetLastError () == ERROR_INSUFFICIENT_BUFFER
)
5850 buf
= xrealloc (buf
, blen
= needed
);
5851 result
= get_token_information (token
, TokenPrimaryGroup
,
5852 (LPVOID
)buf
, blen
, &needed
);
5856 memcpy (&group_token
, buf
, sizeof (group_token
));
5857 if (!w32_cached_id (group_token
.PrimaryGroup
, &egid
, gname
))
5859 egid
= get_rid (group_token
.PrimaryGroup
);
5860 dlength
= sizeof (domain
);
5862 lookup_account_sid (NULL
, group_token
.PrimaryGroup
,
5863 gname
, &glength
, NULL
, &dlength
,
5866 w32_add_to_cache (group_token
.PrimaryGroup
,
5870 strcpy (gname
, "None");
5874 glength
= strlen (gname
);
5882 if (!is_windows_9x ())
5884 /* We couldn't open the process token, presumably because of
5885 insufficient access rights. Assume this process is run
5887 strcpy (uname
, "SYSTEM");
5888 strcpy (gname
, "None");
5889 euid
= 18; /* SYSTEM */
5890 egid
= 513; /* None */
5891 glength
= strlen (gname
);
5892 ulength
= strlen (uname
);
5894 /* If we are running under Windows 9X, where security calls are
5895 not supported, we assume all processes are run by the current
5897 else if (GetUserName (uname
, &ulength
))
5899 if (xstrcasecmp ("administrator", uname
) == 0)
5904 strcpy (gname
, "None");
5905 glength
= strlen (gname
);
5906 ulength
= strlen (uname
);
5912 strcpy (uname
, "administrator");
5913 ulength
= strlen (uname
);
5914 strcpy (gname
, "None");
5915 glength
= strlen (gname
);
5918 CloseHandle (token
);
5921 attrs
= Fcons (Fcons (Qeuid
, make_fixnum_or_float (euid
)), attrs
);
5922 tem
= make_unibyte_string (uname
, ulength
);
5923 attrs
= Fcons (Fcons (Quser
,
5924 code_convert_string_norecord (tem
, Vlocale_coding_system
, 0)),
5926 attrs
= Fcons (Fcons (Qegid
, make_fixnum_or_float (egid
)), attrs
);
5927 tem
= make_unibyte_string (gname
, glength
);
5928 attrs
= Fcons (Fcons (Qgroup
,
5929 code_convert_string_norecord (tem
, Vlocale_coding_system
, 0)),
5932 if (global_memory_status_ex (&memstex
))
5933 #if __GNUC__ || (defined (_MSC_VER) && _MSC_VER >= 1300)
5934 totphys
= memstex
.ullTotalPhys
/ 1024.0;
5936 /* Visual Studio 6 cannot convert an unsigned __int64 type to
5937 double, so we need to do this for it... */
5939 DWORD tot_hi
= memstex
.ullTotalPhys
>> 32;
5940 DWORD tot_md
= (memstex
.ullTotalPhys
& 0x00000000ffffffff) >> 10;
5941 DWORD tot_lo
= memstex
.ullTotalPhys
% 1024;
5943 totphys
= tot_hi
* 4194304.0 + tot_md
+ tot_lo
/ 1024.0;
5945 #endif /* __GNUC__ || _MSC_VER >= 1300 */
5946 else if (global_memory_status (&memst
))
5947 totphys
= memst
.dwTotalPhys
/ 1024.0;
5950 && get_process_memory_info (h_proc
, (PROCESS_MEMORY_COUNTERS
*)&mem_ex
,
5953 SIZE_T rss
= mem_ex
.WorkingSetSize
/ 1024;
5955 attrs
= Fcons (Fcons (Qmajflt
,
5956 make_fixnum_or_float (mem_ex
.PageFaultCount
)),
5958 attrs
= Fcons (Fcons (Qvsize
,
5959 make_fixnum_or_float (mem_ex
.PrivateUsage
/ 1024)),
5961 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (rss
)), attrs
);
5963 attrs
= Fcons (Fcons (Qpmem
, make_float (100. * rss
/ totphys
)), attrs
);
5966 && get_process_memory_info (h_proc
, &mem
, sizeof (mem
)))
5968 SIZE_T rss
= mem_ex
.WorkingSetSize
/ 1024;
5970 attrs
= Fcons (Fcons (Qmajflt
,
5971 make_fixnum_or_float (mem
.PageFaultCount
)),
5973 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (rss
)), attrs
);
5975 attrs
= Fcons (Fcons (Qpmem
, make_float (100. * rss
/ totphys
)), attrs
);
5978 && get_process_working_set_size (h_proc
, &minrss
, &maxrss
))
5980 DWORD rss
= maxrss
/ 1024;
5982 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (maxrss
/ 1024)), attrs
);
5984 attrs
= Fcons (Fcons (Qpmem
, make_float (100. * rss
/ totphys
)), attrs
);
5987 if (process_times (h_proc
, &ctime
, &etime
, &stime
, &utime
, &ttime
, &pcpu
))
5989 attrs
= Fcons (Fcons (Qutime
, utime
), attrs
);
5990 attrs
= Fcons (Fcons (Qstime
, stime
), attrs
);
5991 attrs
= Fcons (Fcons (Qtime
, ttime
), attrs
);
5992 attrs
= Fcons (Fcons (Qstart
, ctime
), attrs
);
5993 attrs
= Fcons (Fcons (Qetime
, etime
), attrs
);
5994 attrs
= Fcons (Fcons (Qpcpu
, make_float (pcpu
)), attrs
);
5997 /* FIXME: Retrieve command line by walking the PEB of the process. */
6000 CloseHandle (h_proc
);
6006 /* Wrappers for winsock functions to map between our file descriptors
6007 and winsock's handles; also set h_errno for convenience.
6009 To allow Emacs to run on systems which don't have winsock support
6010 installed, we dynamically link to winsock on startup if present, and
6011 otherwise provide the minimum necessary functionality
6012 (eg. gethostname). */
6014 /* function pointers for relevant socket functions */
6015 int (PASCAL
*pfn_WSAStartup
) (WORD wVersionRequired
, LPWSADATA lpWSAData
);
6016 void (PASCAL
*pfn_WSASetLastError
) (int iError
);
6017 int (PASCAL
*pfn_WSAGetLastError
) (void);
6018 int (PASCAL
*pfn_WSAEventSelect
) (SOCKET s
, HANDLE hEventObject
, long lNetworkEvents
);
6019 HANDLE (PASCAL
*pfn_WSACreateEvent
) (void);
6020 int (PASCAL
*pfn_WSACloseEvent
) (HANDLE hEvent
);
6021 int (PASCAL
*pfn_socket
) (int af
, int type
, int protocol
);
6022 int (PASCAL
*pfn_bind
) (SOCKET s
, const struct sockaddr
*addr
, int namelen
);
6023 int (PASCAL
*pfn_connect
) (SOCKET s
, const struct sockaddr
*addr
, int namelen
);
6024 int (PASCAL
*pfn_ioctlsocket
) (SOCKET s
, long cmd
, u_long
*argp
);
6025 int (PASCAL
*pfn_recv
) (SOCKET s
, char * buf
, int len
, int flags
);
6026 int (PASCAL
*pfn_send
) (SOCKET s
, const char * buf
, int len
, int flags
);
6027 int (PASCAL
*pfn_closesocket
) (SOCKET s
);
6028 int (PASCAL
*pfn_shutdown
) (SOCKET s
, int how
);
6029 int (PASCAL
*pfn_WSACleanup
) (void);
6031 u_short (PASCAL
*pfn_htons
) (u_short hostshort
);
6032 u_short (PASCAL
*pfn_ntohs
) (u_short netshort
);
6033 unsigned long (PASCAL
*pfn_inet_addr
) (const char * cp
);
6034 int (PASCAL
*pfn_gethostname
) (char * name
, int namelen
);
6035 struct hostent
* (PASCAL
*pfn_gethostbyname
) (const char * name
);
6036 struct servent
* (PASCAL
*pfn_getservbyname
) (const char * name
, const char * proto
);
6037 int (PASCAL
*pfn_getpeername
) (SOCKET s
, struct sockaddr
*addr
, int * namelen
);
6038 int (PASCAL
*pfn_setsockopt
) (SOCKET s
, int level
, int optname
,
6039 const char * optval
, int optlen
);
6040 int (PASCAL
*pfn_listen
) (SOCKET s
, int backlog
);
6041 int (PASCAL
*pfn_getsockname
) (SOCKET s
, struct sockaddr
* name
,
6043 SOCKET (PASCAL
*pfn_accept
) (SOCKET s
, struct sockaddr
* addr
, int * addrlen
);
6044 int (PASCAL
*pfn_recvfrom
) (SOCKET s
, char * buf
, int len
, int flags
,
6045 struct sockaddr
* from
, int * fromlen
);
6046 int (PASCAL
*pfn_sendto
) (SOCKET s
, const char * buf
, int len
, int flags
,
6047 const struct sockaddr
* to
, int tolen
);
6049 /* SetHandleInformation is only needed to make sockets non-inheritable. */
6050 BOOL (WINAPI
*pfn_SetHandleInformation
) (HANDLE object
, DWORD mask
, DWORD flags
);
6051 #ifndef HANDLE_FLAG_INHERIT
6052 #define HANDLE_FLAG_INHERIT 1
6056 static int winsock_inuse
;
6061 if (winsock_lib
!= NULL
&& winsock_inuse
== 0)
6063 /* Not sure what would cause WSAENETDOWN, or even if it can happen
6064 after WSAStartup returns successfully, but it seems reasonable
6065 to allow unloading winsock anyway in that case. */
6066 if (pfn_WSACleanup () == 0 ||
6067 pfn_WSAGetLastError () == WSAENETDOWN
)
6069 if (FreeLibrary (winsock_lib
))
6078 init_winsock (int load_now
)
6080 WSADATA winsockData
;
6082 if (winsock_lib
!= NULL
)
6085 pfn_SetHandleInformation
6086 = (void *) GetProcAddress (GetModuleHandle ("kernel32.dll"),
6087 "SetHandleInformation");
6089 winsock_lib
= LoadLibrary ("Ws2_32.dll");
6091 if (winsock_lib
!= NULL
)
6093 /* dynamically link to socket functions */
6095 #define LOAD_PROC(fn) \
6096 if ((pfn_##fn = (void *) GetProcAddress (winsock_lib, #fn)) == NULL) \
6099 LOAD_PROC (WSAStartup
);
6100 LOAD_PROC (WSASetLastError
);
6101 LOAD_PROC (WSAGetLastError
);
6102 LOAD_PROC (WSAEventSelect
);
6103 LOAD_PROC (WSACreateEvent
);
6104 LOAD_PROC (WSACloseEvent
);
6107 LOAD_PROC (connect
);
6108 LOAD_PROC (ioctlsocket
);
6111 LOAD_PROC (closesocket
);
6112 LOAD_PROC (shutdown
);
6115 LOAD_PROC (inet_addr
);
6116 LOAD_PROC (gethostname
);
6117 LOAD_PROC (gethostbyname
);
6118 LOAD_PROC (getservbyname
);
6119 LOAD_PROC (getpeername
);
6120 LOAD_PROC (WSACleanup
);
6121 LOAD_PROC (setsockopt
);
6123 LOAD_PROC (getsockname
);
6125 LOAD_PROC (recvfrom
);
6129 /* specify version 1.1 of winsock */
6130 if (pfn_WSAStartup (0x101, &winsockData
) == 0)
6132 if (winsockData
.wVersion
!= 0x101)
6137 /* Report that winsock exists and is usable, but leave
6138 socket functions disabled. I am assuming that calling
6139 WSAStartup does not require any network interaction,
6140 and in particular does not cause or require a dial-up
6141 connection to be established. */
6144 FreeLibrary (winsock_lib
);
6152 FreeLibrary (winsock_lib
);
6162 /* Function to map winsock error codes to errno codes for those errno
6163 code defined in errno.h (errno values not defined by errno.h are
6164 already in nt/inc/sys/socket.h). */
6171 if (winsock_lib
== NULL
)
6174 wsa_err
= pfn_WSAGetLastError ();
6178 case WSAEACCES
: errno
= EACCES
; break;
6179 case WSAEBADF
: errno
= EBADF
; break;
6180 case WSAEFAULT
: errno
= EFAULT
; break;
6181 case WSAEINTR
: errno
= EINTR
; break;
6182 case WSAEINVAL
: errno
= EINVAL
; break;
6183 case WSAEMFILE
: errno
= EMFILE
; break;
6184 case WSAENAMETOOLONG
: errno
= ENAMETOOLONG
; break;
6185 case WSAENOTEMPTY
: errno
= ENOTEMPTY
; break;
6186 default: errno
= wsa_err
; break;
6194 if (winsock_lib
!= NULL
)
6195 pfn_WSASetLastError (0);
6198 /* Extend strerror to handle the winsock-specific error codes. */
6202 } _wsa_errlist
[] = {
6203 {WSAEINTR
, "Interrupted function call"},
6204 {WSAEBADF
, "Bad file descriptor"},
6205 {WSAEACCES
, "Permission denied"},
6206 {WSAEFAULT
, "Bad address"},
6207 {WSAEINVAL
, "Invalid argument"},
6208 {WSAEMFILE
, "Too many open files"},
6210 {WSAEWOULDBLOCK
, "Resource temporarily unavailable"},
6211 {WSAEINPROGRESS
, "Operation now in progress"},
6212 {WSAEALREADY
, "Operation already in progress"},
6213 {WSAENOTSOCK
, "Socket operation on non-socket"},
6214 {WSAEDESTADDRREQ
, "Destination address required"},
6215 {WSAEMSGSIZE
, "Message too long"},
6216 {WSAEPROTOTYPE
, "Protocol wrong type for socket"},
6217 {WSAENOPROTOOPT
, "Bad protocol option"},
6218 {WSAEPROTONOSUPPORT
, "Protocol not supported"},
6219 {WSAESOCKTNOSUPPORT
, "Socket type not supported"},
6220 {WSAEOPNOTSUPP
, "Operation not supported"},
6221 {WSAEPFNOSUPPORT
, "Protocol family not supported"},
6222 {WSAEAFNOSUPPORT
, "Address family not supported by protocol family"},
6223 {WSAEADDRINUSE
, "Address already in use"},
6224 {WSAEADDRNOTAVAIL
, "Cannot assign requested address"},
6225 {WSAENETDOWN
, "Network is down"},
6226 {WSAENETUNREACH
, "Network is unreachable"},
6227 {WSAENETRESET
, "Network dropped connection on reset"},
6228 {WSAECONNABORTED
, "Software caused connection abort"},
6229 {WSAECONNRESET
, "Connection reset by peer"},
6230 {WSAENOBUFS
, "No buffer space available"},
6231 {WSAEISCONN
, "Socket is already connected"},
6232 {WSAENOTCONN
, "Socket is not connected"},
6233 {WSAESHUTDOWN
, "Cannot send after socket shutdown"},
6234 {WSAETOOMANYREFS
, "Too many references"}, /* not sure */
6235 {WSAETIMEDOUT
, "Connection timed out"},
6236 {WSAECONNREFUSED
, "Connection refused"},
6237 {WSAELOOP
, "Network loop"}, /* not sure */
6238 {WSAENAMETOOLONG
, "Name is too long"},
6239 {WSAEHOSTDOWN
, "Host is down"},
6240 {WSAEHOSTUNREACH
, "No route to host"},
6241 {WSAENOTEMPTY
, "Buffer not empty"}, /* not sure */
6242 {WSAEPROCLIM
, "Too many processes"},
6243 {WSAEUSERS
, "Too many users"}, /* not sure */
6244 {WSAEDQUOT
, "Double quote in host name"}, /* really not sure */
6245 {WSAESTALE
, "Data is stale"}, /* not sure */
6246 {WSAEREMOTE
, "Remote error"}, /* not sure */
6248 {WSASYSNOTREADY
, "Network subsystem is unavailable"},
6249 {WSAVERNOTSUPPORTED
, "WINSOCK.DLL version out of range"},
6250 {WSANOTINITIALISED
, "Winsock not initialized successfully"},
6251 {WSAEDISCON
, "Graceful shutdown in progress"},
6253 {WSAENOMORE
, "No more operations allowed"}, /* not sure */
6254 {WSAECANCELLED
, "Operation cancelled"}, /* not sure */
6255 {WSAEINVALIDPROCTABLE
, "Invalid procedure table from service provider"},
6256 {WSAEINVALIDPROVIDER
, "Invalid service provider version number"},
6257 {WSAEPROVIDERFAILEDINIT
, "Unable to initialize a service provider"},
6258 {WSASYSCALLFAILURE
, "System call failure"},
6259 {WSASERVICE_NOT_FOUND
, "Service not found"}, /* not sure */
6260 {WSATYPE_NOT_FOUND
, "Class type not found"},
6261 {WSA_E_NO_MORE
, "No more resources available"}, /* really not sure */
6262 {WSA_E_CANCELLED
, "Operation already cancelled"}, /* really not sure */
6263 {WSAEREFUSED
, "Operation refused"}, /* not sure */
6266 {WSAHOST_NOT_FOUND
, "Host not found"},
6267 {WSATRY_AGAIN
, "Authoritative host not found during name lookup"},
6268 {WSANO_RECOVERY
, "Non-recoverable error during name lookup"},
6269 {WSANO_DATA
, "Valid name, no data record of requested type"},
6275 sys_strerror (int error_no
)
6278 static char unknown_msg
[40];
6280 if (error_no
>= 0 && error_no
< sys_nerr
)
6281 return sys_errlist
[error_no
];
6283 for (i
= 0; _wsa_errlist
[i
].errnum
>= 0; i
++)
6284 if (_wsa_errlist
[i
].errnum
== error_no
)
6285 return _wsa_errlist
[i
].msg
;
6287 sprintf (unknown_msg
, "Unidentified error: %d", error_no
);
6291 /* [andrewi 3-May-96] I've had conflicting results using both methods,
6292 but I believe the method of keeping the socket handle separate (and
6293 insuring it is not inheritable) is the correct one. */
6295 #define SOCK_HANDLE(fd) ((SOCKET) fd_info[fd].hnd)
6297 static int socket_to_fd (SOCKET s
);
6300 sys_socket (int af
, int type
, int protocol
)
6304 if (winsock_lib
== NULL
)
6307 return INVALID_SOCKET
;
6312 /* call the real socket function */
6313 s
= pfn_socket (af
, type
, protocol
);
6315 if (s
!= INVALID_SOCKET
)
6316 return socket_to_fd (s
);
6322 /* Convert a SOCKET to a file descriptor. */
6324 socket_to_fd (SOCKET s
)
6329 /* Although under NT 3.5 _open_osfhandle will accept a socket
6330 handle, if opened with SO_OPENTYPE == SO_SYNCHRONOUS_NONALERT,
6331 that does not work under NT 3.1. However, we can get the same
6332 effect by using a backdoor function to replace an existing
6333 descriptor handle with the one we want. */
6335 /* allocate a file descriptor (with appropriate flags) */
6336 fd
= _open ("NUL:", _O_RDWR
);
6339 /* Make a non-inheritable copy of the socket handle. Note
6340 that it is possible that sockets aren't actually kernel
6341 handles, which appears to be the case on Windows 9x when
6342 the MS Proxy winsock client is installed. */
6344 /* Apparently there is a bug in NT 3.51 with some service
6345 packs, which prevents using DuplicateHandle to make a
6346 socket handle non-inheritable (causes WSACleanup to
6347 hang). The work-around is to use SetHandleInformation
6348 instead if it is available and implemented. */
6349 if (pfn_SetHandleInformation
)
6351 pfn_SetHandleInformation ((HANDLE
) s
, HANDLE_FLAG_INHERIT
, 0);
6355 HANDLE parent
= GetCurrentProcess ();
6356 HANDLE new_s
= INVALID_HANDLE_VALUE
;
6358 if (DuplicateHandle (parent
,
6364 DUPLICATE_SAME_ACCESS
))
6366 /* It is possible that DuplicateHandle succeeds even
6367 though the socket wasn't really a kernel handle,
6368 because a real handle has the same value. So
6369 test whether the new handle really is a socket. */
6370 long nonblocking
= 0;
6371 if (pfn_ioctlsocket ((SOCKET
) new_s
, FIONBIO
, &nonblocking
) == 0)
6373 pfn_closesocket (s
);
6378 CloseHandle (new_s
);
6383 eassert (fd
< MAXDESC
);
6384 fd_info
[fd
].hnd
= (HANDLE
) s
;
6386 /* set our own internal flags */
6387 fd_info
[fd
].flags
= FILE_SOCKET
| FILE_BINARY
| FILE_READ
| FILE_WRITE
;
6393 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
6395 /* attach child_process to fd_info */
6396 if (fd_info
[ fd
].cp
!= NULL
)
6398 DebPrint (("sys_socket: fd_info[%d] apparently in use!\n", fd
));
6402 fd_info
[ fd
].cp
= cp
;
6405 winsock_inuse
++; /* count open sockets */
6413 pfn_closesocket (s
);
6419 sys_bind (int s
, const struct sockaddr
* addr
, int namelen
)
6421 if (winsock_lib
== NULL
)
6424 return SOCKET_ERROR
;
6428 if (fd_info
[s
].flags
& FILE_SOCKET
)
6430 int rc
= pfn_bind (SOCK_HANDLE (s
), addr
, namelen
);
6431 if (rc
== SOCKET_ERROR
)
6436 return SOCKET_ERROR
;
6440 sys_connect (int s
, const struct sockaddr
* name
, int namelen
)
6442 if (winsock_lib
== NULL
)
6445 return SOCKET_ERROR
;
6449 if (fd_info
[s
].flags
& FILE_SOCKET
)
6451 int rc
= pfn_connect (SOCK_HANDLE (s
), name
, namelen
);
6452 if (rc
== SOCKET_ERROR
)
6457 return SOCKET_ERROR
;
6461 sys_htons (u_short hostshort
)
6463 return (winsock_lib
!= NULL
) ?
6464 pfn_htons (hostshort
) : hostshort
;
6468 sys_ntohs (u_short netshort
)
6470 return (winsock_lib
!= NULL
) ?
6471 pfn_ntohs (netshort
) : netshort
;
6475 sys_inet_addr (const char * cp
)
6477 return (winsock_lib
!= NULL
) ?
6478 pfn_inet_addr (cp
) : INADDR_NONE
;
6482 sys_gethostname (char * name
, int namelen
)
6484 if (winsock_lib
!= NULL
)
6489 retval
= pfn_gethostname (name
, namelen
);
6490 if (retval
== SOCKET_ERROR
)
6495 if (namelen
> MAX_COMPUTERNAME_LENGTH
)
6496 return !GetComputerName (name
, (DWORD
*)&namelen
);
6499 return SOCKET_ERROR
;
6503 sys_gethostbyname (const char * name
)
6505 struct hostent
* host
;
6506 int h_err
= h_errno
;
6508 if (winsock_lib
== NULL
)
6510 h_errno
= NO_RECOVERY
;
6516 host
= pfn_gethostbyname (name
);
6528 sys_getservbyname (const char * name
, const char * proto
)
6530 struct servent
* serv
;
6532 if (winsock_lib
== NULL
)
6539 serv
= pfn_getservbyname (name
, proto
);
6546 sys_getpeername (int s
, struct sockaddr
*addr
, int * namelen
)
6548 if (winsock_lib
== NULL
)
6551 return SOCKET_ERROR
;
6555 if (fd_info
[s
].flags
& FILE_SOCKET
)
6557 int rc
= pfn_getpeername (SOCK_HANDLE (s
), addr
, namelen
);
6558 if (rc
== SOCKET_ERROR
)
6563 return SOCKET_ERROR
;
6567 sys_shutdown (int s
, int how
)
6569 if (winsock_lib
== NULL
)
6572 return SOCKET_ERROR
;
6576 if (fd_info
[s
].flags
& FILE_SOCKET
)
6578 int rc
= pfn_shutdown (SOCK_HANDLE (s
), how
);
6579 if (rc
== SOCKET_ERROR
)
6584 return SOCKET_ERROR
;
6588 sys_setsockopt (int s
, int level
, int optname
, const void * optval
, int optlen
)
6590 if (winsock_lib
== NULL
)
6593 return SOCKET_ERROR
;
6597 if (fd_info
[s
].flags
& FILE_SOCKET
)
6599 int rc
= pfn_setsockopt (SOCK_HANDLE (s
), level
, optname
,
6600 (const char *)optval
, optlen
);
6601 if (rc
== SOCKET_ERROR
)
6606 return SOCKET_ERROR
;
6610 sys_listen (int s
, int backlog
)
6612 if (winsock_lib
== NULL
)
6615 return SOCKET_ERROR
;
6619 if (fd_info
[s
].flags
& FILE_SOCKET
)
6621 int rc
= pfn_listen (SOCK_HANDLE (s
), backlog
);
6622 if (rc
== SOCKET_ERROR
)
6625 fd_info
[s
].flags
|= FILE_LISTEN
;
6629 return SOCKET_ERROR
;
6633 sys_getsockname (int s
, struct sockaddr
* name
, int * namelen
)
6635 if (winsock_lib
== NULL
)
6638 return SOCKET_ERROR
;
6642 if (fd_info
[s
].flags
& FILE_SOCKET
)
6644 int rc
= pfn_getsockname (SOCK_HANDLE (s
), name
, namelen
);
6645 if (rc
== SOCKET_ERROR
)
6650 return SOCKET_ERROR
;
6654 sys_accept (int s
, struct sockaddr
* addr
, int * addrlen
)
6656 if (winsock_lib
== NULL
)
6663 if (fd_info
[s
].flags
& FILE_LISTEN
)
6665 SOCKET t
= pfn_accept (SOCK_HANDLE (s
), addr
, addrlen
);
6667 if (t
== INVALID_SOCKET
)
6670 fd
= socket_to_fd (t
);
6674 fd_info
[s
].cp
->status
= STATUS_READ_ACKNOWLEDGED
;
6675 ResetEvent (fd_info
[s
].cp
->char_avail
);
6684 sys_recvfrom (int s
, char * buf
, int len
, int flags
,
6685 struct sockaddr
* from
, int * fromlen
)
6687 if (winsock_lib
== NULL
)
6690 return SOCKET_ERROR
;
6694 if (fd_info
[s
].flags
& FILE_SOCKET
)
6696 int rc
= pfn_recvfrom (SOCK_HANDLE (s
), buf
, len
, flags
, from
, fromlen
);
6697 if (rc
== SOCKET_ERROR
)
6702 return SOCKET_ERROR
;
6706 sys_sendto (int s
, const char * buf
, int len
, int flags
,
6707 const struct sockaddr
* to
, int tolen
)
6709 if (winsock_lib
== NULL
)
6712 return SOCKET_ERROR
;
6716 if (fd_info
[s
].flags
& FILE_SOCKET
)
6718 int rc
= pfn_sendto (SOCK_HANDLE (s
), buf
, len
, flags
, to
, tolen
);
6719 if (rc
== SOCKET_ERROR
)
6724 return SOCKET_ERROR
;
6727 /* Windows does not have an fcntl function. Provide an implementation
6728 solely for making sockets non-blocking. */
6730 fcntl (int s
, int cmd
, int options
)
6732 if (winsock_lib
== NULL
)
6739 if (fd_info
[s
].flags
& FILE_SOCKET
)
6741 if (cmd
== F_SETFL
&& options
== O_NONBLOCK
)
6743 unsigned long nblock
= 1;
6744 int rc
= pfn_ioctlsocket (SOCK_HANDLE (s
), FIONBIO
, &nblock
);
6745 if (rc
== SOCKET_ERROR
)
6747 /* Keep track of the fact that we set this to non-blocking. */
6748 fd_info
[s
].flags
|= FILE_NDELAY
;
6754 return SOCKET_ERROR
;
6758 return SOCKET_ERROR
;
6762 /* Shadow main io functions: we need to handle pipes and sockets more
6763 intelligently, and implement non-blocking mode as well. */
6776 if (fd
< MAXDESC
&& fd_info
[fd
].cp
)
6778 child_process
* cp
= fd_info
[fd
].cp
;
6780 fd_info
[fd
].cp
= NULL
;
6782 if (CHILD_ACTIVE (cp
))
6784 /* if last descriptor to active child_process then cleanup */
6786 for (i
= 0; i
< MAXDESC
; i
++)
6790 if (fd_info
[i
].cp
== cp
)
6795 if (fd_info
[fd
].flags
& FILE_SOCKET
)
6797 if (winsock_lib
== NULL
) emacs_abort ();
6799 pfn_shutdown (SOCK_HANDLE (fd
), 2);
6800 rc
= pfn_closesocket (SOCK_HANDLE (fd
));
6802 winsock_inuse
--; /* count open sockets */
6804 /* If the process handle is NULL, it's either a socket
6805 or serial connection, or a subprocess that was
6806 already reaped by reap_subprocess, but whose
6807 resources were not yet freed, because its output was
6808 not fully read yet by the time it was reaped. (This
6809 usually happens with async subprocesses whose output
6810 is being read by Emacs.) Otherwise, this process was
6811 not reaped yet, so we set its FD to a negative value
6812 to make sure sys_select will eventually get to
6813 calling the SIGCHLD handler for it, which will then
6814 invoke waitpid and reap_subprocess. */
6815 if (cp
->procinfo
.hProcess
== NULL
)
6823 if (fd
>= 0 && fd
< MAXDESC
)
6824 fd_info
[fd
].flags
= 0;
6826 /* Note that sockets do not need special treatment here (at least on
6827 NT and Windows 95 using the standard tcp/ip stacks) - it appears that
6828 closesocket is equivalent to CloseHandle, which is to be expected
6829 because socket handles are fully fledged kernel handles. */
6841 if (new_fd
>= 0 && new_fd
< MAXDESC
)
6843 /* duplicate our internal info as well */
6844 fd_info
[new_fd
] = fd_info
[fd
];
6850 sys_dup2 (int src
, int dst
)
6854 if (dst
< 0 || dst
>= MAXDESC
)
6860 /* make sure we close the destination first if it's a pipe or socket */
6861 if (src
!= dst
&& fd_info
[dst
].flags
!= 0)
6864 rc
= _dup2 (src
, dst
);
6867 /* duplicate our internal info as well */
6868 fd_info
[dst
] = fd_info
[src
];
6873 /* Unix pipe() has only one arg */
6875 sys_pipe (int * phandles
)
6880 /* make pipe handles non-inheritable; when we spawn a child, we
6881 replace the relevant handle with an inheritable one. Also put
6882 pipes into binary mode; we will do text mode translation ourselves
6884 rc
= _pipe (phandles
, 0, _O_NOINHERIT
| _O_BINARY
);
6888 /* Protect against overflow, since Windows can open more handles than
6889 our fd_info array has room for. */
6890 if (phandles
[0] >= MAXDESC
|| phandles
[1] >= MAXDESC
)
6892 _close (phandles
[0]);
6893 _close (phandles
[1]);
6899 flags
= FILE_PIPE
| FILE_READ
| FILE_BINARY
;
6900 fd_info
[phandles
[0]].flags
= flags
;
6902 flags
= FILE_PIPE
| FILE_WRITE
| FILE_BINARY
;
6903 fd_info
[phandles
[1]].flags
= flags
;
6910 /* Function to do blocking read of one byte, needed to implement
6911 select. It is only allowed on communication ports, sockets, or
6914 _sys_read_ahead (int fd
)
6919 if (fd
< 0 || fd
>= MAXDESC
)
6920 return STATUS_READ_ERROR
;
6922 cp
= fd_info
[fd
].cp
;
6924 if (cp
== NULL
|| cp
->fd
!= fd
|| cp
->status
!= STATUS_READ_READY
)
6925 return STATUS_READ_ERROR
;
6927 if ((fd_info
[fd
].flags
& (FILE_PIPE
| FILE_SERIAL
| FILE_SOCKET
)) == 0
6928 || (fd_info
[fd
].flags
& FILE_READ
) == 0)
6930 DebPrint (("_sys_read_ahead: internal error: fd %d is not a pipe, serial port, or socket!\n", fd
));
6934 cp
->status
= STATUS_READ_IN_PROGRESS
;
6936 if (fd_info
[fd
].flags
& FILE_PIPE
)
6938 rc
= _read (fd
, &cp
->chr
, sizeof (char));
6940 /* Give subprocess time to buffer some more output for us before
6941 reporting that input is available; we need this because Windows 95
6942 connects DOS programs to pipes by making the pipe appear to be
6943 the normal console stdout - as a result most DOS programs will
6944 write to stdout without buffering, ie. one character at a
6945 time. Even some W32 programs do this - "dir" in a command
6946 shell on NT is very slow if we don't do this. */
6949 int wait
= w32_pipe_read_delay
;
6955 /* Yield remainder of our time slice, effectively giving a
6956 temporary priority boost to the child process. */
6960 else if (fd_info
[fd
].flags
& FILE_SERIAL
)
6962 HANDLE hnd
= fd_info
[fd
].hnd
;
6963 OVERLAPPED
*ovl
= &fd_info
[fd
].cp
->ovl_read
;
6966 /* Configure timeouts for blocking read. */
6967 if (!GetCommTimeouts (hnd
, &ct
))
6969 cp
->status
= STATUS_READ_ERROR
;
6970 return STATUS_READ_ERROR
;
6972 ct
.ReadIntervalTimeout
= 0;
6973 ct
.ReadTotalTimeoutMultiplier
= 0;
6974 ct
.ReadTotalTimeoutConstant
= 0;
6975 if (!SetCommTimeouts (hnd
, &ct
))
6977 cp
->status
= STATUS_READ_ERROR
;
6978 return STATUS_READ_ERROR
;
6981 if (!ReadFile (hnd
, &cp
->chr
, sizeof (char), (DWORD
*) &rc
, ovl
))
6983 if (GetLastError () != ERROR_IO_PENDING
)
6985 cp
->status
= STATUS_READ_ERROR
;
6986 return STATUS_READ_ERROR
;
6988 if (!GetOverlappedResult (hnd
, ovl
, (DWORD
*) &rc
, TRUE
))
6990 cp
->status
= STATUS_READ_ERROR
;
6991 return STATUS_READ_ERROR
;
6995 else if (fd_info
[fd
].flags
& FILE_SOCKET
)
6997 unsigned long nblock
= 0;
6998 /* We always want this to block, so temporarily disable NDELAY. */
6999 if (fd_info
[fd
].flags
& FILE_NDELAY
)
7000 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
7002 rc
= pfn_recv (SOCK_HANDLE (fd
), &cp
->chr
, sizeof (char), 0);
7004 if (fd_info
[fd
].flags
& FILE_NDELAY
)
7007 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
7011 if (rc
== sizeof (char))
7012 cp
->status
= STATUS_READ_SUCCEEDED
;
7014 cp
->status
= STATUS_READ_FAILED
;
7020 _sys_wait_accept (int fd
)
7026 if (fd
< 0 || fd
>= MAXDESC
)
7027 return STATUS_READ_ERROR
;
7029 cp
= fd_info
[fd
].cp
;
7031 if (cp
== NULL
|| cp
->fd
!= fd
|| cp
->status
!= STATUS_READ_READY
)
7032 return STATUS_READ_ERROR
;
7034 cp
->status
= STATUS_READ_FAILED
;
7036 hEv
= pfn_WSACreateEvent ();
7037 rc
= pfn_WSAEventSelect (SOCK_HANDLE (fd
), hEv
, FD_ACCEPT
);
7038 if (rc
!= SOCKET_ERROR
)
7040 rc
= WaitForSingleObject (hEv
, INFINITE
);
7041 pfn_WSAEventSelect (SOCK_HANDLE (fd
), NULL
, 0);
7042 if (rc
== WAIT_OBJECT_0
)
7043 cp
->status
= STATUS_READ_SUCCEEDED
;
7045 pfn_WSACloseEvent (hEv
);
7051 sys_read (int fd
, char * buffer
, unsigned int count
)
7056 char * orig_buffer
= buffer
;
7064 if (fd
< MAXDESC
&& fd_info
[fd
].flags
& (FILE_PIPE
| FILE_SOCKET
| FILE_SERIAL
))
7066 child_process
*cp
= fd_info
[fd
].cp
;
7068 if ((fd_info
[fd
].flags
& FILE_READ
) == 0)
7076 /* re-read CR carried over from last read */
7077 if (fd_info
[fd
].flags
& FILE_LAST_CR
)
7079 if (fd_info
[fd
].flags
& FILE_BINARY
) emacs_abort ();
7083 fd_info
[fd
].flags
&= ~FILE_LAST_CR
;
7086 /* presence of a child_process structure means we are operating in
7087 non-blocking mode - otherwise we just call _read directly.
7088 Note that the child_process structure might be missing because
7089 reap_subprocess has been called; in this case the pipe is
7090 already broken, so calling _read on it is okay. */
7093 int current_status
= cp
->status
;
7095 switch (current_status
)
7097 case STATUS_READ_FAILED
:
7098 case STATUS_READ_ERROR
:
7099 /* report normal EOF if nothing in buffer */
7101 fd_info
[fd
].flags
|= FILE_AT_EOF
;
7104 case STATUS_READ_READY
:
7105 case STATUS_READ_IN_PROGRESS
:
7106 DebPrint (("sys_read called when read is in progress\n"));
7107 errno
= EWOULDBLOCK
;
7110 case STATUS_READ_SUCCEEDED
:
7111 /* consume read-ahead char */
7112 *buffer
++ = cp
->chr
;
7115 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
7116 ResetEvent (cp
->char_avail
);
7118 case STATUS_READ_ACKNOWLEDGED
:
7122 DebPrint (("sys_read: bad status %d\n", current_status
));
7127 if (fd_info
[fd
].flags
& FILE_PIPE
)
7129 PeekNamedPipe ((HANDLE
) _get_osfhandle (fd
), NULL
, 0, NULL
, &waiting
, NULL
);
7130 to_read
= min (waiting
, (DWORD
) count
);
7133 nchars
+= _read (fd
, buffer
, to_read
);
7135 else if (fd_info
[fd
].flags
& FILE_SERIAL
)
7137 HANDLE hnd
= fd_info
[fd
].hnd
;
7138 OVERLAPPED
*ovl
= &fd_info
[fd
].cp
->ovl_read
;
7144 /* Configure timeouts for non-blocking read. */
7145 if (!GetCommTimeouts (hnd
, &ct
))
7150 ct
.ReadIntervalTimeout
= MAXDWORD
;
7151 ct
.ReadTotalTimeoutMultiplier
= 0;
7152 ct
.ReadTotalTimeoutConstant
= 0;
7153 if (!SetCommTimeouts (hnd
, &ct
))
7159 if (!ResetEvent (ovl
->hEvent
))
7164 if (!ReadFile (hnd
, buffer
, count
, (DWORD
*) &rc
, ovl
))
7166 if (GetLastError () != ERROR_IO_PENDING
)
7171 if (!GetOverlappedResult (hnd
, ovl
, (DWORD
*) &rc
, TRUE
))
7180 else /* FILE_SOCKET */
7182 if (winsock_lib
== NULL
) emacs_abort ();
7184 /* do the equivalent of a non-blocking read */
7185 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONREAD
, &waiting
);
7186 if (waiting
== 0 && nchars
== 0)
7188 errno
= EWOULDBLOCK
;
7194 /* always use binary mode for sockets */
7195 int res
= pfn_recv (SOCK_HANDLE (fd
), buffer
, count
, 0);
7196 if (res
== SOCKET_ERROR
)
7198 DebPrint (("sys_read.recv failed with error %d on socket %ld\n",
7199 pfn_WSAGetLastError (), SOCK_HANDLE (fd
)));
7209 int nread
= _read (fd
, buffer
, count
);
7212 else if (nchars
== 0)
7217 fd_info
[fd
].flags
|= FILE_AT_EOF
;
7218 /* Perform text mode translation if required. */
7219 else if ((fd_info
[fd
].flags
& FILE_BINARY
) == 0)
7221 nchars
= crlf_to_lf (nchars
, orig_buffer
);
7222 /* If buffer contains only CR, return that. To be absolutely
7223 sure we should attempt to read the next char, but in
7224 practice a CR to be followed by LF would not appear by
7225 itself in the buffer. */
7226 if (nchars
> 1 && orig_buffer
[nchars
- 1] == 0x0d)
7228 fd_info
[fd
].flags
|= FILE_LAST_CR
;
7234 nchars
= _read (fd
, buffer
, count
);
7239 /* From w32xfns.c */
7240 extern HANDLE interrupt_handle
;
7242 /* For now, don't bother with a non-blocking mode */
7244 sys_write (int fd
, const void * buffer
, unsigned int count
)
7254 if (fd
< MAXDESC
&& fd_info
[fd
].flags
& (FILE_PIPE
| FILE_SOCKET
| FILE_SERIAL
))
7256 if ((fd_info
[fd
].flags
& FILE_WRITE
) == 0)
7262 /* Perform text mode translation if required. */
7263 if ((fd_info
[fd
].flags
& FILE_BINARY
) == 0)
7265 char * tmpbuf
= alloca (count
* 2);
7266 unsigned char * src
= (void *)buffer
;
7267 unsigned char * dst
= tmpbuf
;
7272 unsigned char *next
;
7273 /* copy next line or remaining bytes */
7274 next
= _memccpy (dst
, src
, '\n', nbytes
);
7277 /* copied one line ending with '\n' */
7278 int copied
= next
- dst
;
7281 /* insert '\r' before '\n' */
7288 /* copied remaining partial line -> now finished */
7295 if (fd
< MAXDESC
&& fd_info
[fd
].flags
& FILE_SERIAL
)
7297 HANDLE hnd
= (HANDLE
) _get_osfhandle (fd
);
7298 OVERLAPPED
*ovl
= &fd_info
[fd
].cp
->ovl_write
;
7299 HANDLE wait_hnd
[2] = { interrupt_handle
, ovl
->hEvent
};
7302 if (!WriteFile (hnd
, buffer
, count
, (DWORD
*) &nchars
, ovl
))
7304 if (GetLastError () != ERROR_IO_PENDING
)
7309 if (detect_input_pending ())
7310 active
= MsgWaitForMultipleObjects (2, wait_hnd
, FALSE
, INFINITE
,
7313 active
= WaitForMultipleObjects (2, wait_hnd
, FALSE
, INFINITE
);
7314 if (active
== WAIT_OBJECT_0
)
7315 { /* User pressed C-g, cancel write, then leave. Don't bother
7316 cleaning up as we may only get stuck in buggy drivers. */
7317 PurgeComm (hnd
, PURGE_TXABORT
| PURGE_TXCLEAR
);
7322 if (active
== WAIT_OBJECT_0
+ 1
7323 && !GetOverlappedResult (hnd
, ovl
, (DWORD
*) &nchars
, TRUE
))
7330 else if (fd
< MAXDESC
&& fd_info
[fd
].flags
& FILE_SOCKET
)
7332 unsigned long nblock
= 0;
7333 if (winsock_lib
== NULL
) emacs_abort ();
7335 /* TODO: implement select() properly so non-blocking I/O works. */
7336 /* For now, make sure the write blocks. */
7337 if (fd_info
[fd
].flags
& FILE_NDELAY
)
7338 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
7340 nchars
= pfn_send (SOCK_HANDLE (fd
), buffer
, count
, 0);
7342 /* Set the socket back to non-blocking if it was before,
7343 for other operations that support it. */
7344 if (fd_info
[fd
].flags
& FILE_NDELAY
)
7347 pfn_ioctlsocket (SOCK_HANDLE (fd
), FIONBIO
, &nblock
);
7350 if (nchars
== SOCKET_ERROR
)
7352 DebPrint (("sys_write.send failed with error %d on socket %ld\n",
7353 pfn_WSAGetLastError (), SOCK_HANDLE (fd
)));
7359 /* Some networked filesystems don't like too large writes, so
7360 break them into smaller chunks. See the Comments section of
7361 the MSDN documentation of WriteFile for details behind the
7362 choice of the value of CHUNK below. See also the thread
7363 http://thread.gmane.org/gmane.comp.version-control.git/145294
7364 in the git mailing list. */
7365 const unsigned char *p
= buffer
;
7366 const unsigned chunk
= 30 * 1024 * 1024;
7371 unsigned this_chunk
= count
< chunk
? count
: chunk
;
7372 int n
= _write (fd
, p
, this_chunk
);
7380 else if (n
< this_chunk
)
7390 /* The Windows CRT functions are "optimized for speed", so they don't
7391 check for timezone and DST changes if they were last called less
7392 than 1 minute ago (see http://support.microsoft.com/kb/821231). So
7393 all Emacs features that repeatedly call time functions (e.g.,
7394 display-time) are in real danger of missing timezone and DST
7395 changes. Calling tzset before each localtime call fixes that. */
7397 sys_localtime (const time_t *t
)
7400 return localtime (t
);
7405 /* Try loading LIBRARY_ID from the file(s) specified in
7406 Vdynamic_library_alist. If the library is loaded successfully,
7407 return the handle of the DLL, and record the filename in the
7408 property :loaded-from of LIBRARY_ID. If the library could not be
7409 found, or when it was already loaded (because the handle is not
7410 recorded anywhere, and so is lost after use), return NULL.
7412 We could also save the handle in :loaded-from, but currently
7413 there's no use case for it. */
7415 w32_delayed_load (Lisp_Object library_id
)
7417 HMODULE library_dll
= NULL
;
7419 CHECK_SYMBOL (library_id
);
7421 if (CONSP (Vdynamic_library_alist
)
7422 && NILP (Fassq (library_id
, Vlibrary_cache
)))
7424 Lisp_Object found
= Qnil
;
7425 Lisp_Object dlls
= Fassq (library_id
, Vdynamic_library_alist
);
7428 for (dlls
= XCDR (dlls
); CONSP (dlls
); dlls
= XCDR (dlls
))
7430 CHECK_STRING_CAR (dlls
);
7431 if ((library_dll
= LoadLibrary (SDATA (XCAR (dlls
)))))
7433 char name
[MAX_PATH
];
7436 len
= GetModuleFileNameA (library_dll
, name
, sizeof (name
));
7437 found
= Fcons (XCAR (dlls
),
7439 /* Possibly truncated */
7440 ? make_specified_string (name
, -1, len
, 1)
7446 Fput (library_id
, QCloaded_from
, found
);
7454 check_windows_init_file (void)
7456 /* A common indication that Emacs is not installed properly is when
7457 it cannot find the Windows installation file. If this file does
7458 not exist in the expected place, tell the user. */
7460 if (!noninteractive
&& !inhibit_window_system
7461 /* Vload_path is not yet initialized when we are loading
7463 && NILP (Vpurify_flag
))
7465 Lisp_Object init_file
;
7468 init_file
= build_string ("term/w32-win");
7469 fd
= openp (Vload_path
, init_file
, Fget_load_suffixes (), NULL
, Qnil
);
7472 Lisp_Object load_path_print
= Fprin1_to_string (Vload_path
, Qnil
);
7473 char *init_file_name
= SDATA (init_file
);
7474 char *load_path
= SDATA (load_path_print
);
7475 char *buffer
= alloca (1024
7476 + strlen (init_file_name
)
7477 + strlen (load_path
));
7480 "The Emacs Windows initialization file \"%s.el\" "
7481 "could not be found in your Emacs installation. "
7482 "Emacs checked the following directories for this file:\n"
7484 "When Emacs cannot find this file, it usually means that it "
7485 "was not installed properly, or its distribution file was "
7486 "not unpacked properly.\nSee the README.W32 file in the "
7487 "top-level Emacs directory for more information.",
7488 init_file_name
, load_path
);
7491 "Emacs Abort Dialog",
7492 MB_OK
| MB_ICONEXCLAMATION
| MB_TASKMODAL
);
7493 /* Use the low-level system abort. */
7504 term_ntproc (int ignored
)
7510 /* shutdown the socket interface if necessary */
7517 init_ntproc (int dumping
)
7519 sigset_t initial_mask
= 0;
7521 /* Initialize the socket interface now if available and requested by
7522 the user by defining PRELOAD_WINSOCK; otherwise loading will be
7523 delayed until open-network-stream is called (w32-has-winsock can
7524 also be used to dynamically load or reload winsock).
7526 Conveniently, init_environment is called before us, so
7527 PRELOAD_WINSOCK can be set in the registry. */
7529 /* Always initialize this correctly. */
7532 if (getenv ("PRELOAD_WINSOCK") != NULL
)
7533 init_winsock (TRUE
);
7535 /* Initial preparation for subprocess support: replace our standard
7536 handles with non-inheritable versions. */
7539 HANDLE stdin_save
= INVALID_HANDLE_VALUE
;
7540 HANDLE stdout_save
= INVALID_HANDLE_VALUE
;
7541 HANDLE stderr_save
= INVALID_HANDLE_VALUE
;
7543 parent
= GetCurrentProcess ();
7545 /* ignore errors when duplicating and closing; typically the
7546 handles will be invalid when running as a gui program. */
7547 DuplicateHandle (parent
,
7548 GetStdHandle (STD_INPUT_HANDLE
),
7553 DUPLICATE_SAME_ACCESS
);
7555 DuplicateHandle (parent
,
7556 GetStdHandle (STD_OUTPUT_HANDLE
),
7561 DUPLICATE_SAME_ACCESS
);
7563 DuplicateHandle (parent
,
7564 GetStdHandle (STD_ERROR_HANDLE
),
7569 DUPLICATE_SAME_ACCESS
);
7575 if (stdin_save
!= INVALID_HANDLE_VALUE
)
7576 _open_osfhandle ((intptr_t) stdin_save
, O_TEXT
);
7578 _open ("nul", O_TEXT
| O_NOINHERIT
| O_RDONLY
);
7581 if (stdout_save
!= INVALID_HANDLE_VALUE
)
7582 _open_osfhandle ((intptr_t) stdout_save
, O_TEXT
);
7584 _open ("nul", O_TEXT
| O_NOINHERIT
| O_WRONLY
);
7587 if (stderr_save
!= INVALID_HANDLE_VALUE
)
7588 _open_osfhandle ((intptr_t) stderr_save
, O_TEXT
);
7590 _open ("nul", O_TEXT
| O_NOINHERIT
| O_WRONLY
);
7594 /* unfortunately, atexit depends on implementation of malloc */
7595 /* atexit (term_ntproc); */
7598 /* Make sure we start with all signals unblocked. */
7599 sigprocmask (SIG_SETMASK
, &initial_mask
, NULL
);
7600 signal (SIGABRT
, term_ntproc
);
7604 /* determine which drives are fixed, for GetCachedVolumeInformation */
7606 /* GetDriveType must have trailing backslash. */
7607 char drive
[] = "A:\\";
7609 /* Loop over all possible drive letters */
7610 while (*drive
<= 'Z')
7612 /* Record if this drive letter refers to a fixed drive. */
7613 fixed_drives
[DRIVE_INDEX (*drive
)] =
7614 (GetDriveType (drive
) == DRIVE_FIXED
);
7619 /* Reset the volume info cache. */
7620 volume_cache
= NULL
;
7625 shutdown_handler ensures that buffers' autosave files are
7626 up to date when the user logs off, or the system shuts down.
7629 shutdown_handler (DWORD type
)
7631 /* Ctrl-C and Ctrl-Break are already suppressed, so don't handle them. */
7632 if (type
== CTRL_CLOSE_EVENT
/* User closes console window. */
7633 || type
== CTRL_LOGOFF_EVENT
/* User logs off. */
7634 || type
== CTRL_SHUTDOWN_EVENT
) /* User shutsdown. */
7636 /* Shut down cleanly, making sure autosave files are up to date. */
7637 shut_down_emacs (0, Qnil
);
7640 /* Allow other handlers to handle this signal. */
7645 globals_of_w32 is used to initialize those global variables that
7646 must always be initialized on startup even when the global variable
7647 initialized is non zero (see the function main in emacs.c).
7650 globals_of_w32 (void)
7652 HMODULE kernel32
= GetModuleHandle ("kernel32.dll");
7654 get_process_times_fn
= (GetProcessTimes_Proc
)
7655 GetProcAddress (kernel32
, "GetProcessTimes");
7657 DEFSYM (QCloaded_from
, ":loaded-from");
7659 g_b_init_is_windows_9x
= 0;
7660 g_b_init_open_process_token
= 0;
7661 g_b_init_get_token_information
= 0;
7662 g_b_init_lookup_account_sid
= 0;
7663 g_b_init_get_sid_sub_authority
= 0;
7664 g_b_init_get_sid_sub_authority_count
= 0;
7665 g_b_init_get_security_info
= 0;
7666 g_b_init_get_file_security
= 0;
7667 g_b_init_get_security_descriptor_owner
= 0;
7668 g_b_init_get_security_descriptor_group
= 0;
7669 g_b_init_is_valid_sid
= 0;
7670 g_b_init_create_toolhelp32_snapshot
= 0;
7671 g_b_init_process32_first
= 0;
7672 g_b_init_process32_next
= 0;
7673 g_b_init_open_thread_token
= 0;
7674 g_b_init_impersonate_self
= 0;
7675 g_b_init_revert_to_self
= 0;
7676 g_b_init_get_process_memory_info
= 0;
7677 g_b_init_get_process_working_set_size
= 0;
7678 g_b_init_global_memory_status
= 0;
7679 g_b_init_global_memory_status_ex
= 0;
7680 g_b_init_equal_sid
= 0;
7681 g_b_init_copy_sid
= 0;
7682 g_b_init_get_length_sid
= 0;
7683 g_b_init_get_native_system_info
= 0;
7684 g_b_init_get_system_times
= 0;
7685 g_b_init_create_symbolic_link
= 0;
7686 g_b_init_get_security_descriptor_dacl
= 0;
7687 g_b_init_convert_sd_to_sddl
= 0;
7688 g_b_init_convert_sddl_to_sd
= 0;
7689 g_b_init_is_valid_security_descriptor
= 0;
7690 g_b_init_set_file_security
= 0;
7691 num_of_processors
= 0;
7692 /* The following sets a handler for shutdown notifications for
7693 console apps. This actually applies to Emacs in both console and
7694 GUI modes, since we had to fool windows into thinking emacs is a
7695 console application to get console mode to work. */
7696 SetConsoleCtrlHandler (shutdown_handler
, TRUE
);
7698 /* "None" is the default group name on standalone workstations. */
7699 strcpy (dflt_group_name
, "None");
7701 /* Reset, in case it has some value inherited from dump time. */
7702 w32_stat_get_owner_group
= 0;
7705 /* For make-serial-process */
7707 serial_open (char *port
)
7713 hnd
= CreateFile (port
, GENERIC_READ
| GENERIC_WRITE
, 0, 0,
7714 OPEN_EXISTING
, FILE_FLAG_OVERLAPPED
, 0);
7715 if (hnd
== INVALID_HANDLE_VALUE
)
7716 error ("Could not open %s", port
);
7717 fd
= (int) _open_osfhandle ((intptr_t) hnd
, 0);
7719 error ("Could not open %s", port
);
7723 error ("Could not create child process");
7725 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
7726 fd_info
[ fd
].hnd
= hnd
;
7727 fd_info
[ fd
].flags
|=
7728 FILE_READ
| FILE_WRITE
| FILE_BINARY
| FILE_SERIAL
;
7729 if (fd_info
[ fd
].cp
!= NULL
)
7731 error ("fd_info[fd = %d] is already in use", fd
);
7733 fd_info
[ fd
].cp
= cp
;
7734 cp
->ovl_read
.hEvent
= CreateEvent (NULL
, TRUE
, FALSE
, NULL
);
7735 if (cp
->ovl_read
.hEvent
== NULL
)
7736 error ("Could not create read event");
7737 cp
->ovl_write
.hEvent
= CreateEvent (NULL
, TRUE
, FALSE
, NULL
);
7738 if (cp
->ovl_write
.hEvent
== NULL
)
7739 error ("Could not create write event");
7744 /* For serial-process-configure */
7746 serial_configure (struct Lisp_Process
*p
, Lisp_Object contact
)
7748 Lisp_Object childp2
= Qnil
;
7749 Lisp_Object tem
= Qnil
;
7753 char summary
[4] = "???"; /* This usually becomes "8N1". */
7755 if ((fd_info
[ p
->outfd
].flags
& FILE_SERIAL
) == 0)
7756 error ("Not a serial process");
7757 hnd
= fd_info
[ p
->outfd
].hnd
;
7759 childp2
= Fcopy_sequence (p
->childp
);
7761 /* Initialize timeouts for blocking read and blocking write. */
7762 if (!GetCommTimeouts (hnd
, &ct
))
7763 error ("GetCommTimeouts() failed");
7764 ct
.ReadIntervalTimeout
= 0;
7765 ct
.ReadTotalTimeoutMultiplier
= 0;
7766 ct
.ReadTotalTimeoutConstant
= 0;
7767 ct
.WriteTotalTimeoutMultiplier
= 0;
7768 ct
.WriteTotalTimeoutConstant
= 0;
7769 if (!SetCommTimeouts (hnd
, &ct
))
7770 error ("SetCommTimeouts() failed");
7771 /* Read port attributes and prepare default configuration. */
7772 memset (&dcb
, 0, sizeof (dcb
));
7773 dcb
.DCBlength
= sizeof (DCB
);
7774 if (!GetCommState (hnd
, &dcb
))
7775 error ("GetCommState() failed");
7778 dcb
.fAbortOnError
= FALSE
;
7779 /* dcb.XonLim and dcb.XoffLim are set by GetCommState() */
7784 /* Configure speed. */
7785 if (!NILP (Fplist_member (contact
, QCspeed
)))
7786 tem
= Fplist_get (contact
, QCspeed
);
7788 tem
= Fplist_get (p
->childp
, QCspeed
);
7790 dcb
.BaudRate
= XINT (tem
);
7791 childp2
= Fplist_put (childp2
, QCspeed
, tem
);
7793 /* Configure bytesize. */
7794 if (!NILP (Fplist_member (contact
, QCbytesize
)))
7795 tem
= Fplist_get (contact
, QCbytesize
);
7797 tem
= Fplist_get (p
->childp
, QCbytesize
);
7799 tem
= make_number (8);
7801 if (XINT (tem
) != 7 && XINT (tem
) != 8)
7802 error (":bytesize must be nil (8), 7, or 8");
7803 dcb
.ByteSize
= XINT (tem
);
7804 summary
[0] = XINT (tem
) + '0';
7805 childp2
= Fplist_put (childp2
, QCbytesize
, tem
);
7807 /* Configure parity. */
7808 if (!NILP (Fplist_member (contact
, QCparity
)))
7809 tem
= Fplist_get (contact
, QCparity
);
7811 tem
= Fplist_get (p
->childp
, QCparity
);
7812 if (!NILP (tem
) && !EQ (tem
, Qeven
) && !EQ (tem
, Qodd
))
7813 error (":parity must be nil (no parity), `even', or `odd'");
7814 dcb
.fParity
= FALSE
;
7815 dcb
.Parity
= NOPARITY
;
7816 dcb
.fErrorChar
= FALSE
;
7821 else if (EQ (tem
, Qeven
))
7825 dcb
.Parity
= EVENPARITY
;
7826 dcb
.fErrorChar
= TRUE
;
7828 else if (EQ (tem
, Qodd
))
7832 dcb
.Parity
= ODDPARITY
;
7833 dcb
.fErrorChar
= TRUE
;
7835 childp2
= Fplist_put (childp2
, QCparity
, tem
);
7837 /* Configure stopbits. */
7838 if (!NILP (Fplist_member (contact
, QCstopbits
)))
7839 tem
= Fplist_get (contact
, QCstopbits
);
7841 tem
= Fplist_get (p
->childp
, QCstopbits
);
7843 tem
= make_number (1);
7845 if (XINT (tem
) != 1 && XINT (tem
) != 2)
7846 error (":stopbits must be nil (1 stopbit), 1, or 2");
7847 summary
[2] = XINT (tem
) + '0';
7848 if (XINT (tem
) == 1)
7849 dcb
.StopBits
= ONESTOPBIT
;
7850 else if (XINT (tem
) == 2)
7851 dcb
.StopBits
= TWOSTOPBITS
;
7852 childp2
= Fplist_put (childp2
, QCstopbits
, tem
);
7854 /* Configure flowcontrol. */
7855 if (!NILP (Fplist_member (contact
, QCflowcontrol
)))
7856 tem
= Fplist_get (contact
, QCflowcontrol
);
7858 tem
= Fplist_get (p
->childp
, QCflowcontrol
);
7859 if (!NILP (tem
) && !EQ (tem
, Qhw
) && !EQ (tem
, Qsw
))
7860 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
7861 dcb
.fOutxCtsFlow
= FALSE
;
7862 dcb
.fOutxDsrFlow
= FALSE
;
7863 dcb
.fDtrControl
= DTR_CONTROL_DISABLE
;
7864 dcb
.fDsrSensitivity
= FALSE
;
7865 dcb
.fTXContinueOnXoff
= FALSE
;
7868 dcb
.fRtsControl
= RTS_CONTROL_DISABLE
;
7869 dcb
.XonChar
= 17; /* Control-Q */
7870 dcb
.XoffChar
= 19; /* Control-S */
7873 /* Already configured. */
7875 else if (EQ (tem
, Qhw
))
7877 dcb
.fRtsControl
= RTS_CONTROL_HANDSHAKE
;
7878 dcb
.fOutxCtsFlow
= TRUE
;
7880 else if (EQ (tem
, Qsw
))
7885 childp2
= Fplist_put (childp2
, QCflowcontrol
, tem
);
7887 /* Activate configuration. */
7888 if (!SetCommState (hnd
, &dcb
))
7889 error ("SetCommState() failed");
7891 childp2
= Fplist_put (childp2
, QCsummary
, build_string (summary
));
7892 pset_childp (p
, childp2
);
7898 emacs_gnutls_pull (gnutls_transport_ptr_t p
, void* buf
, size_t sz
)
7903 struct Lisp_Process
*process
= (struct Lisp_Process
*)p
;
7904 int fd
= process
->infd
;
7906 n
= sys_read (fd
, (char*)buf
, sz
);
7913 /* Translate the WSAEWOULDBLOCK alias EWOULDBLOCK to EAGAIN. */
7914 if (err
== EWOULDBLOCK
)
7917 emacs_gnutls_transport_set_errno (process
->gnutls_state
, err
);
7923 emacs_gnutls_push (gnutls_transport_ptr_t p
, const void* buf
, size_t sz
)
7925 struct Lisp_Process
*process
= (struct Lisp_Process
*)p
;
7926 int fd
= process
->outfd
;
7927 ssize_t n
= sys_write (fd
, buf
, sz
);
7929 /* 0 or more bytes written means everything went fine. */
7933 /* Negative bytes written means we got an error in errno.
7934 Translate the WSAEWOULDBLOCK alias EWOULDBLOCK to EAGAIN. */
7935 emacs_gnutls_transport_set_errno (process
->gnutls_state
,
7936 errno
== EWOULDBLOCK
? EAGAIN
: errno
);
7940 #endif /* HAVE_GNUTLS */