]> code.delx.au - gnu-emacs/blob - src/w32.c
Merge branch 'master' into xwidget
[gnu-emacs] / src / w32.c
1 /* Utility and Unix shadow routines for GNU Emacs on the Microsoft Windows API.
2
3 Copyright (C) 1994-1995, 2000-2015 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 /*
21 Geoff Voelker (voelker@cs.washington.edu) 7-29-94
22 */
23
24 #include <mingw_time.h>
25 #include <stddef.h> /* for offsetof */
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <float.h> /* for DBL_EPSILON */
29 #include <io.h>
30 #include <errno.h>
31 #include <fcntl.h>
32 #include <ctype.h>
33 #include <signal.h>
34 #include <sys/file.h>
35 #include <time.h> /* must be before nt/inc/sys/time.h, for MinGW64 */
36 #include <sys/time.h>
37 #include <sys/utime.h>
38 #include <math.h>
39
40 /* must include CRT headers *before* config.h */
41
42 #include <config.h>
43 #include <mbstring.h> /* for _mbspbrk, _mbslwr, _mbsrchr, ... */
44
45 #undef access
46 #undef chdir
47 #undef chmod
48 #undef creat
49 #undef ctime
50 #undef fopen
51 #undef link
52 #undef mkdir
53 #undef open
54 #undef rename
55 #undef rmdir
56 #undef unlink
57
58 #undef close
59 #undef dup
60 #undef dup2
61 #undef pipe
62 #undef read
63 #undef write
64
65 #undef strerror
66
67 #undef localtime
68
69 #include "lisp.h"
70 #include "epaths.h" /* for SHELL */
71
72 #include <pwd.h>
73 #include <grp.h>
74
75 /* MinGW64 defines these in its _mingw.h. */
76 #ifndef _ANONYMOUS_UNION
77 # define _ANONYMOUS_UNION
78 #endif
79 #ifndef _ANONYMOUS_STRUCT
80 # define _ANONYMOUS_STRUCT
81 #endif
82 #include <windows.h>
83 /* Some versions of compiler define MEMORYSTATUSEX, some don't, so we
84 use a different name to avoid compilation problems. */
85 typedef struct _MEMORY_STATUS_EX {
86 DWORD dwLength;
87 DWORD dwMemoryLoad;
88 DWORDLONG ullTotalPhys;
89 DWORDLONG ullAvailPhys;
90 DWORDLONG ullTotalPageFile;
91 DWORDLONG ullAvailPageFile;
92 DWORDLONG ullTotalVirtual;
93 DWORDLONG ullAvailVirtual;
94 DWORDLONG ullAvailExtendedVirtual;
95 } MEMORY_STATUS_EX,*LPMEMORY_STATUS_EX;
96
97 /* These are here so that GDB would know about these data types. This
98 allows to attach GDB to Emacs when a fatal exception is triggered
99 and Windows pops up the "application needs to be closed" dialog.
100 At that point, _gnu_exception_handler, the top-level exception
101 handler installed by the MinGW startup code, is somewhere on the
102 call-stack of the main thread, so going to that call frame and
103 looking at the argument to _gnu_exception_handler, which is a
104 PEXCEPTION_POINTERS pointer, can reveal the exception code
105 (excptr->ExceptionRecord->ExceptionCode) and the address where the
106 exception happened (excptr->ExceptionRecord->ExceptionAddress), as
107 well as some additional information specific to the exception. */
108 PEXCEPTION_POINTERS excptr;
109 PEXCEPTION_RECORD excprec;
110 PCONTEXT ctxrec;
111
112 #include <lmcons.h>
113 #include <shlobj.h>
114
115 #include <tlhelp32.h>
116 #include <psapi.h>
117 #ifndef _MSC_VER
118 #include <w32api.h>
119 #endif
120 #if _WIN32_WINNT < 0x0500
121 #if !defined (__MINGW32__) || __W32API_MAJOR_VERSION < 3 || (__W32API_MAJOR_VERSION == 3 && __W32API_MINOR_VERSION < 15)
122 /* This either is not in psapi.h or guarded by higher value of
123 _WIN32_WINNT than what we use. w32api supplied with MinGW 3.15
124 defines it in psapi.h */
125 typedef struct _PROCESS_MEMORY_COUNTERS_EX {
126 DWORD cb;
127 DWORD PageFaultCount;
128 SIZE_T PeakWorkingSetSize;
129 SIZE_T WorkingSetSize;
130 SIZE_T QuotaPeakPagedPoolUsage;
131 SIZE_T QuotaPagedPoolUsage;
132 SIZE_T QuotaPeakNonPagedPoolUsage;
133 SIZE_T QuotaNonPagedPoolUsage;
134 SIZE_T PagefileUsage;
135 SIZE_T PeakPagefileUsage;
136 SIZE_T PrivateUsage;
137 } PROCESS_MEMORY_COUNTERS_EX,*PPROCESS_MEMORY_COUNTERS_EX;
138 #endif
139 #endif
140
141 #include <winioctl.h>
142 #include <aclapi.h>
143 #include <sddl.h>
144
145 #include <sys/acl.h>
146 #include <acl.h>
147
148 /* This is not in MinGW's sddl.h (but they are in MSVC headers), so we
149 define them by hand if not already defined. */
150 #ifndef SDDL_REVISION_1
151 #define SDDL_REVISION_1 1
152 #endif /* SDDL_REVISION_1 */
153
154 #if defined(_MSC_VER) || defined(MINGW_W64)
155 /* MSVC and MinGW64 don't provide the definition of
156 REPARSE_DATA_BUFFER and the associated macros, except on ntifs.h,
157 which cannot be included because it triggers conflicts with other
158 Windows API headers. So we define it here by hand. */
159
160 typedef struct _REPARSE_DATA_BUFFER {
161 ULONG ReparseTag;
162 USHORT ReparseDataLength;
163 USHORT Reserved;
164 union {
165 struct {
166 USHORT SubstituteNameOffset;
167 USHORT SubstituteNameLength;
168 USHORT PrintNameOffset;
169 USHORT PrintNameLength;
170 ULONG Flags;
171 WCHAR PathBuffer[1];
172 } SymbolicLinkReparseBuffer;
173 struct {
174 USHORT SubstituteNameOffset;
175 USHORT SubstituteNameLength;
176 USHORT PrintNameOffset;
177 USHORT PrintNameLength;
178 WCHAR PathBuffer[1];
179 } MountPointReparseBuffer;
180 struct {
181 UCHAR DataBuffer[1];
182 } GenericReparseBuffer;
183 } DUMMYUNIONNAME;
184 } REPARSE_DATA_BUFFER, *PREPARSE_DATA_BUFFER;
185
186 #ifndef FILE_DEVICE_FILE_SYSTEM
187 #define FILE_DEVICE_FILE_SYSTEM 9
188 #endif
189 #ifndef METHOD_BUFFERED
190 #define METHOD_BUFFERED 0
191 #endif
192 #ifndef FILE_ANY_ACCESS
193 #define FILE_ANY_ACCESS 0x00000000
194 #endif
195 #ifndef CTL_CODE
196 #define CTL_CODE(t,f,m,a) (((t)<<16)|((a)<<14)|((f)<<2)|(m))
197 #endif
198 /* MinGW64 defines FSCTL_GET_REPARSE_POINT on winioctl.h. */
199 #ifndef FSCTL_GET_REPARSE_POINT
200 #define FSCTL_GET_REPARSE_POINT \
201 CTL_CODE(FILE_DEVICE_FILE_SYSTEM, 42, METHOD_BUFFERED, FILE_ANY_ACCESS)
202 #endif
203 #endif
204
205 /* TCP connection support. */
206 #include <sys/socket.h>
207 #undef socket
208 #undef bind
209 #undef connect
210 #undef htons
211 #undef ntohs
212 #undef inet_addr
213 #undef gethostname
214 #undef gethostbyname
215 #undef getservbyname
216 #undef getpeername
217 #undef shutdown
218 #undef setsockopt
219 #undef listen
220 #undef getsockname
221 #undef accept
222 #undef recvfrom
223 #undef sendto
224
225 #include <iphlpapi.h> /* should be after winsock2.h */
226
227 #include "w32.h"
228 #include <dirent.h>
229 #include "w32common.h"
230 #include "w32heap.h"
231 #include "w32select.h"
232 #include "systime.h"
233 #include "dispextern.h" /* for xstrcasecmp */
234 #include "coding.h" /* for Vlocale_coding_system */
235
236 #include "careadlinkat.h"
237 #include "allocator.h"
238
239 /* For serial_configure and serial_open. */
240 #include "process.h"
241
242 typedef HRESULT (WINAPI * ShGetFolderPath_fn)
243 (IN HWND, IN int, IN HANDLE, IN DWORD, OUT char *);
244
245 void globals_of_w32 (void);
246 static DWORD get_rid (PSID);
247 static int is_symlink (const char *);
248 static char * chase_symlinks (const char *);
249 static int enable_privilege (LPCTSTR, BOOL, TOKEN_PRIVILEGES *);
250 static int restore_privilege (TOKEN_PRIVILEGES *);
251 static BOOL WINAPI revert_to_self (void);
252
253 static int sys_access (const char *, int);
254 extern void *e_malloc (size_t);
255 extern int sys_select (int, SELECT_TYPE *, SELECT_TYPE *, SELECT_TYPE *,
256 struct timespec *, void *);
257 extern int sys_dup (int);
258
259
260
261 \f
262 /* Initialization states.
263
264 WARNING: If you add any more such variables for additional APIs,
265 you MUST add initialization for them to globals_of_w32
266 below. This is because these variables might get set
267 to non-NULL values during dumping, but the dumped Emacs
268 cannot reuse those values, because it could be run on a
269 different version of the OS, where API addresses are
270 different. */
271 static BOOL g_b_init_is_windows_9x;
272 static BOOL g_b_init_open_process_token;
273 static BOOL g_b_init_get_token_information;
274 static BOOL g_b_init_lookup_account_sid;
275 static BOOL g_b_init_get_sid_sub_authority;
276 static BOOL g_b_init_get_sid_sub_authority_count;
277 static BOOL g_b_init_get_security_info;
278 static BOOL g_b_init_get_file_security_w;
279 static BOOL g_b_init_get_file_security_a;
280 static BOOL g_b_init_get_security_descriptor_owner;
281 static BOOL g_b_init_get_security_descriptor_group;
282 static BOOL g_b_init_is_valid_sid;
283 static BOOL g_b_init_create_toolhelp32_snapshot;
284 static BOOL g_b_init_process32_first;
285 static BOOL g_b_init_process32_next;
286 static BOOL g_b_init_open_thread_token;
287 static BOOL g_b_init_impersonate_self;
288 static BOOL g_b_init_revert_to_self;
289 static BOOL g_b_init_get_process_memory_info;
290 static BOOL g_b_init_get_process_working_set_size;
291 static BOOL g_b_init_global_memory_status;
292 static BOOL g_b_init_global_memory_status_ex;
293 static BOOL g_b_init_get_length_sid;
294 static BOOL g_b_init_equal_sid;
295 static BOOL g_b_init_copy_sid;
296 static BOOL g_b_init_get_native_system_info;
297 static BOOL g_b_init_get_system_times;
298 static BOOL g_b_init_create_symbolic_link_w;
299 static BOOL g_b_init_create_symbolic_link_a;
300 static BOOL g_b_init_get_security_descriptor_dacl;
301 static BOOL g_b_init_convert_sd_to_sddl;
302 static BOOL g_b_init_convert_sddl_to_sd;
303 static BOOL g_b_init_is_valid_security_descriptor;
304 static BOOL g_b_init_set_file_security_w;
305 static BOOL g_b_init_set_file_security_a;
306 static BOOL g_b_init_set_named_security_info_w;
307 static BOOL g_b_init_set_named_security_info_a;
308 static BOOL g_b_init_get_adapters_info;
309
310 BOOL g_b_init_compare_string_w;
311
312 /*
313 BEGIN: Wrapper functions around OpenProcessToken
314 and other functions in advapi32.dll that are only
315 supported in Windows NT / 2k / XP
316 */
317 /* ** Function pointer typedefs ** */
318 typedef BOOL (WINAPI * OpenProcessToken_Proc) (
319 HANDLE ProcessHandle,
320 DWORD DesiredAccess,
321 PHANDLE TokenHandle);
322 typedef BOOL (WINAPI * GetTokenInformation_Proc) (
323 HANDLE TokenHandle,
324 TOKEN_INFORMATION_CLASS TokenInformationClass,
325 LPVOID TokenInformation,
326 DWORD TokenInformationLength,
327 PDWORD ReturnLength);
328 typedef BOOL (WINAPI * GetProcessTimes_Proc) (
329 HANDLE process_handle,
330 LPFILETIME creation_time,
331 LPFILETIME exit_time,
332 LPFILETIME kernel_time,
333 LPFILETIME user_time);
334
335 GetProcessTimes_Proc get_process_times_fn = NULL;
336
337 #ifdef _UNICODE
338 const char * const LookupAccountSid_Name = "LookupAccountSidW";
339 #else
340 const char * const LookupAccountSid_Name = "LookupAccountSidA";
341 #endif
342 typedef BOOL (WINAPI * LookupAccountSid_Proc) (
343 LPCTSTR lpSystemName,
344 PSID Sid,
345 LPTSTR Name,
346 LPDWORD cbName,
347 LPTSTR DomainName,
348 LPDWORD cbDomainName,
349 PSID_NAME_USE peUse);
350 typedef PDWORD (WINAPI * GetSidSubAuthority_Proc) (
351 PSID pSid,
352 DWORD n);
353 typedef PUCHAR (WINAPI * GetSidSubAuthorityCount_Proc) (
354 PSID pSid);
355 typedef DWORD (WINAPI * GetSecurityInfo_Proc) (
356 HANDLE handle,
357 SE_OBJECT_TYPE ObjectType,
358 SECURITY_INFORMATION SecurityInfo,
359 PSID *ppsidOwner,
360 PSID *ppsidGroup,
361 PACL *ppDacl,
362 PACL *ppSacl,
363 PSECURITY_DESCRIPTOR *ppSecurityDescriptor);
364 typedef BOOL (WINAPI * GetFileSecurityW_Proc) (
365 LPCWSTR lpFileName,
366 SECURITY_INFORMATION RequestedInformation,
367 PSECURITY_DESCRIPTOR pSecurityDescriptor,
368 DWORD nLength,
369 LPDWORD lpnLengthNeeded);
370 typedef BOOL (WINAPI * GetFileSecurityA_Proc) (
371 LPCSTR lpFileName,
372 SECURITY_INFORMATION RequestedInformation,
373 PSECURITY_DESCRIPTOR pSecurityDescriptor,
374 DWORD nLength,
375 LPDWORD lpnLengthNeeded);
376 typedef BOOL (WINAPI *SetFileSecurityW_Proc) (
377 LPCWSTR lpFileName,
378 SECURITY_INFORMATION SecurityInformation,
379 PSECURITY_DESCRIPTOR pSecurityDescriptor);
380 typedef BOOL (WINAPI *SetFileSecurityA_Proc) (
381 LPCSTR lpFileName,
382 SECURITY_INFORMATION SecurityInformation,
383 PSECURITY_DESCRIPTOR pSecurityDescriptor);
384 typedef DWORD (WINAPI *SetNamedSecurityInfoW_Proc) (
385 LPCWSTR lpObjectName,
386 SE_OBJECT_TYPE ObjectType,
387 SECURITY_INFORMATION SecurityInformation,
388 PSID psidOwner,
389 PSID psidGroup,
390 PACL pDacl,
391 PACL pSacl);
392 typedef DWORD (WINAPI *SetNamedSecurityInfoA_Proc) (
393 LPCSTR lpObjectName,
394 SE_OBJECT_TYPE ObjectType,
395 SECURITY_INFORMATION SecurityInformation,
396 PSID psidOwner,
397 PSID psidGroup,
398 PACL pDacl,
399 PACL pSacl);
400 typedef BOOL (WINAPI * GetSecurityDescriptorOwner_Proc) (
401 PSECURITY_DESCRIPTOR pSecurityDescriptor,
402 PSID *pOwner,
403 LPBOOL lpbOwnerDefaulted);
404 typedef BOOL (WINAPI * GetSecurityDescriptorGroup_Proc) (
405 PSECURITY_DESCRIPTOR pSecurityDescriptor,
406 PSID *pGroup,
407 LPBOOL lpbGroupDefaulted);
408 typedef BOOL (WINAPI *GetSecurityDescriptorDacl_Proc) (
409 PSECURITY_DESCRIPTOR pSecurityDescriptor,
410 LPBOOL lpbDaclPresent,
411 PACL *pDacl,
412 LPBOOL lpbDaclDefaulted);
413 typedef BOOL (WINAPI * IsValidSid_Proc) (
414 PSID sid);
415 typedef HANDLE (WINAPI * CreateToolhelp32Snapshot_Proc) (
416 DWORD dwFlags,
417 DWORD th32ProcessID);
418 typedef BOOL (WINAPI * Process32First_Proc) (
419 HANDLE hSnapshot,
420 LPPROCESSENTRY32 lppe);
421 typedef BOOL (WINAPI * Process32Next_Proc) (
422 HANDLE hSnapshot,
423 LPPROCESSENTRY32 lppe);
424 typedef BOOL (WINAPI * OpenThreadToken_Proc) (
425 HANDLE ThreadHandle,
426 DWORD DesiredAccess,
427 BOOL OpenAsSelf,
428 PHANDLE TokenHandle);
429 typedef BOOL (WINAPI * ImpersonateSelf_Proc) (
430 SECURITY_IMPERSONATION_LEVEL ImpersonationLevel);
431 typedef BOOL (WINAPI * RevertToSelf_Proc) (void);
432 typedef BOOL (WINAPI * GetProcessMemoryInfo_Proc) (
433 HANDLE Process,
434 PPROCESS_MEMORY_COUNTERS ppsmemCounters,
435 DWORD cb);
436 typedef BOOL (WINAPI * GetProcessWorkingSetSize_Proc) (
437 HANDLE hProcess,
438 PSIZE_T lpMinimumWorkingSetSize,
439 PSIZE_T lpMaximumWorkingSetSize);
440 typedef BOOL (WINAPI * GlobalMemoryStatus_Proc) (
441 LPMEMORYSTATUS lpBuffer);
442 typedef BOOL (WINAPI * GlobalMemoryStatusEx_Proc) (
443 LPMEMORY_STATUS_EX lpBuffer);
444 typedef BOOL (WINAPI * CopySid_Proc) (
445 DWORD nDestinationSidLength,
446 PSID pDestinationSid,
447 PSID pSourceSid);
448 typedef BOOL (WINAPI * EqualSid_Proc) (
449 PSID pSid1,
450 PSID pSid2);
451 typedef DWORD (WINAPI * GetLengthSid_Proc) (
452 PSID pSid);
453 typedef void (WINAPI * GetNativeSystemInfo_Proc) (
454 LPSYSTEM_INFO lpSystemInfo);
455 typedef BOOL (WINAPI * GetSystemTimes_Proc) (
456 LPFILETIME lpIdleTime,
457 LPFILETIME lpKernelTime,
458 LPFILETIME lpUserTime);
459 typedef BOOLEAN (WINAPI *CreateSymbolicLinkW_Proc) (
460 LPCWSTR lpSymlinkFileName,
461 LPCWSTR lpTargetFileName,
462 DWORD dwFlags);
463 typedef BOOLEAN (WINAPI *CreateSymbolicLinkA_Proc) (
464 LPCSTR lpSymlinkFileName,
465 LPCSTR lpTargetFileName,
466 DWORD dwFlags);
467 typedef BOOL (WINAPI *ConvertStringSecurityDescriptorToSecurityDescriptor_Proc) (
468 LPCTSTR StringSecurityDescriptor,
469 DWORD StringSDRevision,
470 PSECURITY_DESCRIPTOR *SecurityDescriptor,
471 PULONG SecurityDescriptorSize);
472 typedef BOOL (WINAPI *ConvertSecurityDescriptorToStringSecurityDescriptor_Proc) (
473 PSECURITY_DESCRIPTOR SecurityDescriptor,
474 DWORD RequestedStringSDRevision,
475 SECURITY_INFORMATION SecurityInformation,
476 LPTSTR *StringSecurityDescriptor,
477 PULONG StringSecurityDescriptorLen);
478 typedef BOOL (WINAPI *IsValidSecurityDescriptor_Proc) (PSECURITY_DESCRIPTOR);
479 typedef DWORD (WINAPI *GetAdaptersInfo_Proc) (
480 PIP_ADAPTER_INFO pAdapterInfo,
481 PULONG pOutBufLen);
482
483 int (WINAPI *pMultiByteToWideChar)(UINT,DWORD,LPCSTR,int,LPWSTR,int);
484 int (WINAPI *pWideCharToMultiByte)(UINT,DWORD,LPCWSTR,int,LPSTR,int,LPCSTR,LPBOOL);
485
486 /* ** A utility function ** */
487 static BOOL
488 is_windows_9x (void)
489 {
490 static BOOL s_b_ret = 0;
491 OSVERSIONINFO os_ver;
492 if (g_b_init_is_windows_9x == 0)
493 {
494 g_b_init_is_windows_9x = 1;
495 ZeroMemory (&os_ver, sizeof (OSVERSIONINFO));
496 os_ver.dwOSVersionInfoSize = sizeof (OSVERSIONINFO);
497 if (GetVersionEx (&os_ver))
498 {
499 s_b_ret = (os_ver.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS);
500 }
501 }
502 return s_b_ret;
503 }
504
505 static Lisp_Object ltime (ULONGLONG);
506
507 /* Get total user and system times for get-internal-run-time.
508 Returns a list of integers if the times are provided by the OS
509 (NT derivatives), otherwise it returns the result of current-time. */
510 Lisp_Object
511 w32_get_internal_run_time (void)
512 {
513 if (get_process_times_fn)
514 {
515 FILETIME create, exit, kernel, user;
516 HANDLE proc = GetCurrentProcess ();
517 if ((*get_process_times_fn) (proc, &create, &exit, &kernel, &user))
518 {
519 LARGE_INTEGER user_int, kernel_int, total;
520 user_int.LowPart = user.dwLowDateTime;
521 user_int.HighPart = user.dwHighDateTime;
522 kernel_int.LowPart = kernel.dwLowDateTime;
523 kernel_int.HighPart = kernel.dwHighDateTime;
524 total.QuadPart = user_int.QuadPart + kernel_int.QuadPart;
525 return ltime (total.QuadPart);
526 }
527 }
528
529 return Fcurrent_time ();
530 }
531
532 /* ** The wrapper functions ** */
533
534 static BOOL WINAPI
535 open_process_token (HANDLE ProcessHandle,
536 DWORD DesiredAccess,
537 PHANDLE TokenHandle)
538 {
539 static OpenProcessToken_Proc s_pfn_Open_Process_Token = NULL;
540 HMODULE hm_advapi32 = NULL;
541 if (is_windows_9x () == TRUE)
542 {
543 return FALSE;
544 }
545 if (g_b_init_open_process_token == 0)
546 {
547 g_b_init_open_process_token = 1;
548 hm_advapi32 = LoadLibrary ("Advapi32.dll");
549 s_pfn_Open_Process_Token =
550 (OpenProcessToken_Proc) GetProcAddress (hm_advapi32, "OpenProcessToken");
551 }
552 if (s_pfn_Open_Process_Token == NULL)
553 {
554 return FALSE;
555 }
556 return (
557 s_pfn_Open_Process_Token (
558 ProcessHandle,
559 DesiredAccess,
560 TokenHandle)
561 );
562 }
563
564 static BOOL WINAPI
565 get_token_information (HANDLE TokenHandle,
566 TOKEN_INFORMATION_CLASS TokenInformationClass,
567 LPVOID TokenInformation,
568 DWORD TokenInformationLength,
569 PDWORD ReturnLength)
570 {
571 static GetTokenInformation_Proc s_pfn_Get_Token_Information = NULL;
572 HMODULE hm_advapi32 = NULL;
573 if (is_windows_9x () == TRUE)
574 {
575 return FALSE;
576 }
577 if (g_b_init_get_token_information == 0)
578 {
579 g_b_init_get_token_information = 1;
580 hm_advapi32 = LoadLibrary ("Advapi32.dll");
581 s_pfn_Get_Token_Information =
582 (GetTokenInformation_Proc) GetProcAddress (hm_advapi32, "GetTokenInformation");
583 }
584 if (s_pfn_Get_Token_Information == NULL)
585 {
586 return FALSE;
587 }
588 return (
589 s_pfn_Get_Token_Information (
590 TokenHandle,
591 TokenInformationClass,
592 TokenInformation,
593 TokenInformationLength,
594 ReturnLength)
595 );
596 }
597
598 static BOOL WINAPI
599 lookup_account_sid (LPCTSTR lpSystemName,
600 PSID Sid,
601 LPTSTR Name,
602 LPDWORD cbName,
603 LPTSTR DomainName,
604 LPDWORD cbDomainName,
605 PSID_NAME_USE peUse)
606 {
607 static LookupAccountSid_Proc s_pfn_Lookup_Account_Sid = NULL;
608 HMODULE hm_advapi32 = NULL;
609 if (is_windows_9x () == TRUE)
610 {
611 return FALSE;
612 }
613 if (g_b_init_lookup_account_sid == 0)
614 {
615 g_b_init_lookup_account_sid = 1;
616 hm_advapi32 = LoadLibrary ("Advapi32.dll");
617 s_pfn_Lookup_Account_Sid =
618 (LookupAccountSid_Proc) GetProcAddress (hm_advapi32, LookupAccountSid_Name);
619 }
620 if (s_pfn_Lookup_Account_Sid == NULL)
621 {
622 return FALSE;
623 }
624 return (
625 s_pfn_Lookup_Account_Sid (
626 lpSystemName,
627 Sid,
628 Name,
629 cbName,
630 DomainName,
631 cbDomainName,
632 peUse)
633 );
634 }
635
636 static PDWORD WINAPI
637 get_sid_sub_authority (PSID pSid, DWORD n)
638 {
639 static GetSidSubAuthority_Proc s_pfn_Get_Sid_Sub_Authority = NULL;
640 static DWORD zero = 0U;
641 HMODULE hm_advapi32 = NULL;
642 if (is_windows_9x () == TRUE)
643 {
644 return &zero;
645 }
646 if (g_b_init_get_sid_sub_authority == 0)
647 {
648 g_b_init_get_sid_sub_authority = 1;
649 hm_advapi32 = LoadLibrary ("Advapi32.dll");
650 s_pfn_Get_Sid_Sub_Authority =
651 (GetSidSubAuthority_Proc) GetProcAddress (
652 hm_advapi32, "GetSidSubAuthority");
653 }
654 if (s_pfn_Get_Sid_Sub_Authority == NULL)
655 {
656 return &zero;
657 }
658 return (s_pfn_Get_Sid_Sub_Authority (pSid, n));
659 }
660
661 static PUCHAR WINAPI
662 get_sid_sub_authority_count (PSID pSid)
663 {
664 static GetSidSubAuthorityCount_Proc s_pfn_Get_Sid_Sub_Authority_Count = NULL;
665 static UCHAR zero = 0U;
666 HMODULE hm_advapi32 = NULL;
667 if (is_windows_9x () == TRUE)
668 {
669 return &zero;
670 }
671 if (g_b_init_get_sid_sub_authority_count == 0)
672 {
673 g_b_init_get_sid_sub_authority_count = 1;
674 hm_advapi32 = LoadLibrary ("Advapi32.dll");
675 s_pfn_Get_Sid_Sub_Authority_Count =
676 (GetSidSubAuthorityCount_Proc) GetProcAddress (
677 hm_advapi32, "GetSidSubAuthorityCount");
678 }
679 if (s_pfn_Get_Sid_Sub_Authority_Count == NULL)
680 {
681 return &zero;
682 }
683 return (s_pfn_Get_Sid_Sub_Authority_Count (pSid));
684 }
685
686 static DWORD WINAPI
687 get_security_info (HANDLE handle,
688 SE_OBJECT_TYPE ObjectType,
689 SECURITY_INFORMATION SecurityInfo,
690 PSID *ppsidOwner,
691 PSID *ppsidGroup,
692 PACL *ppDacl,
693 PACL *ppSacl,
694 PSECURITY_DESCRIPTOR *ppSecurityDescriptor)
695 {
696 static GetSecurityInfo_Proc s_pfn_Get_Security_Info = NULL;
697 HMODULE hm_advapi32 = NULL;
698 if (is_windows_9x () == TRUE)
699 {
700 return FALSE;
701 }
702 if (g_b_init_get_security_info == 0)
703 {
704 g_b_init_get_security_info = 1;
705 hm_advapi32 = LoadLibrary ("Advapi32.dll");
706 s_pfn_Get_Security_Info =
707 (GetSecurityInfo_Proc) GetProcAddress (
708 hm_advapi32, "GetSecurityInfo");
709 }
710 if (s_pfn_Get_Security_Info == NULL)
711 {
712 return FALSE;
713 }
714 return (s_pfn_Get_Security_Info (handle, ObjectType, SecurityInfo,
715 ppsidOwner, ppsidGroup, ppDacl, ppSacl,
716 ppSecurityDescriptor));
717 }
718
719 static BOOL WINAPI
720 get_file_security (const char *lpFileName,
721 SECURITY_INFORMATION RequestedInformation,
722 PSECURITY_DESCRIPTOR pSecurityDescriptor,
723 DWORD nLength,
724 LPDWORD lpnLengthNeeded)
725 {
726 static GetFileSecurityA_Proc s_pfn_Get_File_SecurityA = NULL;
727 static GetFileSecurityW_Proc s_pfn_Get_File_SecurityW = NULL;
728 HMODULE hm_advapi32 = NULL;
729 if (is_windows_9x () == TRUE)
730 {
731 errno = ENOTSUP;
732 return FALSE;
733 }
734 if (w32_unicode_filenames)
735 {
736 wchar_t filename_w[MAX_PATH];
737
738 if (g_b_init_get_file_security_w == 0)
739 {
740 g_b_init_get_file_security_w = 1;
741 hm_advapi32 = LoadLibrary ("Advapi32.dll");
742 s_pfn_Get_File_SecurityW =
743 (GetFileSecurityW_Proc) GetProcAddress (hm_advapi32,
744 "GetFileSecurityW");
745 }
746 if (s_pfn_Get_File_SecurityW == NULL)
747 {
748 errno = ENOTSUP;
749 return FALSE;
750 }
751 filename_to_utf16 (lpFileName, filename_w);
752 return (s_pfn_Get_File_SecurityW (filename_w, RequestedInformation,
753 pSecurityDescriptor, nLength,
754 lpnLengthNeeded));
755 }
756 else
757 {
758 char filename_a[MAX_PATH];
759
760 if (g_b_init_get_file_security_a == 0)
761 {
762 g_b_init_get_file_security_a = 1;
763 hm_advapi32 = LoadLibrary ("Advapi32.dll");
764 s_pfn_Get_File_SecurityA =
765 (GetFileSecurityA_Proc) GetProcAddress (hm_advapi32,
766 "GetFileSecurityA");
767 }
768 if (s_pfn_Get_File_SecurityA == NULL)
769 {
770 errno = ENOTSUP;
771 return FALSE;
772 }
773 filename_to_ansi (lpFileName, filename_a);
774 return (s_pfn_Get_File_SecurityA (filename_a, RequestedInformation,
775 pSecurityDescriptor, nLength,
776 lpnLengthNeeded));
777 }
778 }
779
780 static BOOL WINAPI
781 set_file_security (const char *lpFileName,
782 SECURITY_INFORMATION SecurityInformation,
783 PSECURITY_DESCRIPTOR pSecurityDescriptor)
784 {
785 static SetFileSecurityW_Proc s_pfn_Set_File_SecurityW = NULL;
786 static SetFileSecurityA_Proc s_pfn_Set_File_SecurityA = NULL;
787 HMODULE hm_advapi32 = NULL;
788 if (is_windows_9x () == TRUE)
789 {
790 errno = ENOTSUP;
791 return FALSE;
792 }
793 if (w32_unicode_filenames)
794 {
795 wchar_t filename_w[MAX_PATH];
796
797 if (g_b_init_set_file_security_w == 0)
798 {
799 g_b_init_set_file_security_w = 1;
800 hm_advapi32 = LoadLibrary ("Advapi32.dll");
801 s_pfn_Set_File_SecurityW =
802 (SetFileSecurityW_Proc) GetProcAddress (hm_advapi32,
803 "SetFileSecurityW");
804 }
805 if (s_pfn_Set_File_SecurityW == NULL)
806 {
807 errno = ENOTSUP;
808 return FALSE;
809 }
810 filename_to_utf16 (lpFileName, filename_w);
811 return (s_pfn_Set_File_SecurityW (filename_w, SecurityInformation,
812 pSecurityDescriptor));
813 }
814 else
815 {
816 char filename_a[MAX_PATH];
817
818 if (g_b_init_set_file_security_a == 0)
819 {
820 g_b_init_set_file_security_a = 1;
821 hm_advapi32 = LoadLibrary ("Advapi32.dll");
822 s_pfn_Set_File_SecurityA =
823 (SetFileSecurityA_Proc) GetProcAddress (hm_advapi32,
824 "SetFileSecurityA");
825 }
826 if (s_pfn_Set_File_SecurityA == NULL)
827 {
828 errno = ENOTSUP;
829 return FALSE;
830 }
831 filename_to_ansi (lpFileName, filename_a);
832 return (s_pfn_Set_File_SecurityA (filename_a, SecurityInformation,
833 pSecurityDescriptor));
834 }
835 }
836
837 static DWORD WINAPI
838 set_named_security_info (LPCTSTR lpObjectName,
839 SE_OBJECT_TYPE ObjectType,
840 SECURITY_INFORMATION SecurityInformation,
841 PSID psidOwner,
842 PSID psidGroup,
843 PACL pDacl,
844 PACL pSacl)
845 {
846 static SetNamedSecurityInfoW_Proc s_pfn_Set_Named_Security_InfoW = NULL;
847 static SetNamedSecurityInfoA_Proc s_pfn_Set_Named_Security_InfoA = NULL;
848 HMODULE hm_advapi32 = NULL;
849 if (is_windows_9x () == TRUE)
850 {
851 errno = ENOTSUP;
852 return ENOTSUP;
853 }
854 if (w32_unicode_filenames)
855 {
856 wchar_t filename_w[MAX_PATH];
857
858 if (g_b_init_set_named_security_info_w == 0)
859 {
860 g_b_init_set_named_security_info_w = 1;
861 hm_advapi32 = LoadLibrary ("Advapi32.dll");
862 s_pfn_Set_Named_Security_InfoW =
863 (SetNamedSecurityInfoW_Proc) GetProcAddress (hm_advapi32,
864 "SetNamedSecurityInfoW");
865 }
866 if (s_pfn_Set_Named_Security_InfoW == NULL)
867 {
868 errno = ENOTSUP;
869 return ENOTSUP;
870 }
871 filename_to_utf16 (lpObjectName, filename_w);
872 return (s_pfn_Set_Named_Security_InfoW (filename_w, ObjectType,
873 SecurityInformation, psidOwner,
874 psidGroup, pDacl, pSacl));
875 }
876 else
877 {
878 char filename_a[MAX_PATH];
879
880 if (g_b_init_set_named_security_info_a == 0)
881 {
882 g_b_init_set_named_security_info_a = 1;
883 hm_advapi32 = LoadLibrary ("Advapi32.dll");
884 s_pfn_Set_Named_Security_InfoA =
885 (SetNamedSecurityInfoA_Proc) GetProcAddress (hm_advapi32,
886 "SetNamedSecurityInfoA");
887 }
888 if (s_pfn_Set_Named_Security_InfoA == NULL)
889 {
890 errno = ENOTSUP;
891 return ENOTSUP;
892 }
893 filename_to_ansi (lpObjectName, filename_a);
894 return (s_pfn_Set_Named_Security_InfoA (filename_a, ObjectType,
895 SecurityInformation, psidOwner,
896 psidGroup, pDacl, pSacl));
897 }
898 }
899
900 static BOOL WINAPI
901 get_security_descriptor_owner (PSECURITY_DESCRIPTOR pSecurityDescriptor,
902 PSID *pOwner,
903 LPBOOL lpbOwnerDefaulted)
904 {
905 static GetSecurityDescriptorOwner_Proc s_pfn_Get_Security_Descriptor_Owner = NULL;
906 HMODULE hm_advapi32 = NULL;
907 if (is_windows_9x () == TRUE)
908 {
909 errno = ENOTSUP;
910 return FALSE;
911 }
912 if (g_b_init_get_security_descriptor_owner == 0)
913 {
914 g_b_init_get_security_descriptor_owner = 1;
915 hm_advapi32 = LoadLibrary ("Advapi32.dll");
916 s_pfn_Get_Security_Descriptor_Owner =
917 (GetSecurityDescriptorOwner_Proc) GetProcAddress (
918 hm_advapi32, "GetSecurityDescriptorOwner");
919 }
920 if (s_pfn_Get_Security_Descriptor_Owner == NULL)
921 {
922 errno = ENOTSUP;
923 return FALSE;
924 }
925 return (s_pfn_Get_Security_Descriptor_Owner (pSecurityDescriptor, pOwner,
926 lpbOwnerDefaulted));
927 }
928
929 static BOOL WINAPI
930 get_security_descriptor_group (PSECURITY_DESCRIPTOR pSecurityDescriptor,
931 PSID *pGroup,
932 LPBOOL lpbGroupDefaulted)
933 {
934 static GetSecurityDescriptorGroup_Proc s_pfn_Get_Security_Descriptor_Group = NULL;
935 HMODULE hm_advapi32 = NULL;
936 if (is_windows_9x () == TRUE)
937 {
938 errno = ENOTSUP;
939 return FALSE;
940 }
941 if (g_b_init_get_security_descriptor_group == 0)
942 {
943 g_b_init_get_security_descriptor_group = 1;
944 hm_advapi32 = LoadLibrary ("Advapi32.dll");
945 s_pfn_Get_Security_Descriptor_Group =
946 (GetSecurityDescriptorGroup_Proc) GetProcAddress (
947 hm_advapi32, "GetSecurityDescriptorGroup");
948 }
949 if (s_pfn_Get_Security_Descriptor_Group == NULL)
950 {
951 errno = ENOTSUP;
952 return FALSE;
953 }
954 return (s_pfn_Get_Security_Descriptor_Group (pSecurityDescriptor, pGroup,
955 lpbGroupDefaulted));
956 }
957
958 static BOOL WINAPI
959 get_security_descriptor_dacl (PSECURITY_DESCRIPTOR pSecurityDescriptor,
960 LPBOOL lpbDaclPresent,
961 PACL *pDacl,
962 LPBOOL lpbDaclDefaulted)
963 {
964 static GetSecurityDescriptorDacl_Proc s_pfn_Get_Security_Descriptor_Dacl = NULL;
965 HMODULE hm_advapi32 = NULL;
966 if (is_windows_9x () == TRUE)
967 {
968 errno = ENOTSUP;
969 return FALSE;
970 }
971 if (g_b_init_get_security_descriptor_dacl == 0)
972 {
973 g_b_init_get_security_descriptor_dacl = 1;
974 hm_advapi32 = LoadLibrary ("Advapi32.dll");
975 s_pfn_Get_Security_Descriptor_Dacl =
976 (GetSecurityDescriptorDacl_Proc) GetProcAddress (
977 hm_advapi32, "GetSecurityDescriptorDacl");
978 }
979 if (s_pfn_Get_Security_Descriptor_Dacl == NULL)
980 {
981 errno = ENOTSUP;
982 return FALSE;
983 }
984 return (s_pfn_Get_Security_Descriptor_Dacl (pSecurityDescriptor,
985 lpbDaclPresent, pDacl,
986 lpbDaclDefaulted));
987 }
988
989 static BOOL WINAPI
990 is_valid_sid (PSID sid)
991 {
992 static IsValidSid_Proc s_pfn_Is_Valid_Sid = NULL;
993 HMODULE hm_advapi32 = NULL;
994 if (is_windows_9x () == TRUE)
995 {
996 return FALSE;
997 }
998 if (g_b_init_is_valid_sid == 0)
999 {
1000 g_b_init_is_valid_sid = 1;
1001 hm_advapi32 = LoadLibrary ("Advapi32.dll");
1002 s_pfn_Is_Valid_Sid =
1003 (IsValidSid_Proc) GetProcAddress (
1004 hm_advapi32, "IsValidSid");
1005 }
1006 if (s_pfn_Is_Valid_Sid == NULL)
1007 {
1008 return FALSE;
1009 }
1010 return (s_pfn_Is_Valid_Sid (sid));
1011 }
1012
1013 static BOOL WINAPI
1014 equal_sid (PSID sid1, PSID sid2)
1015 {
1016 static EqualSid_Proc s_pfn_Equal_Sid = NULL;
1017 HMODULE hm_advapi32 = NULL;
1018 if (is_windows_9x () == TRUE)
1019 {
1020 return FALSE;
1021 }
1022 if (g_b_init_equal_sid == 0)
1023 {
1024 g_b_init_equal_sid = 1;
1025 hm_advapi32 = LoadLibrary ("Advapi32.dll");
1026 s_pfn_Equal_Sid =
1027 (EqualSid_Proc) GetProcAddress (
1028 hm_advapi32, "EqualSid");
1029 }
1030 if (s_pfn_Equal_Sid == NULL)
1031 {
1032 return FALSE;
1033 }
1034 return (s_pfn_Equal_Sid (sid1, sid2));
1035 }
1036
1037 static DWORD WINAPI
1038 get_length_sid (PSID sid)
1039 {
1040 static GetLengthSid_Proc s_pfn_Get_Length_Sid = NULL;
1041 HMODULE hm_advapi32 = NULL;
1042 if (is_windows_9x () == TRUE)
1043 {
1044 return 0;
1045 }
1046 if (g_b_init_get_length_sid == 0)
1047 {
1048 g_b_init_get_length_sid = 1;
1049 hm_advapi32 = LoadLibrary ("Advapi32.dll");
1050 s_pfn_Get_Length_Sid =
1051 (GetLengthSid_Proc) GetProcAddress (
1052 hm_advapi32, "GetLengthSid");
1053 }
1054 if (s_pfn_Get_Length_Sid == NULL)
1055 {
1056 return 0;
1057 }
1058 return (s_pfn_Get_Length_Sid (sid));
1059 }
1060
1061 static BOOL WINAPI
1062 copy_sid (DWORD destlen, PSID dest, PSID src)
1063 {
1064 static CopySid_Proc s_pfn_Copy_Sid = NULL;
1065 HMODULE hm_advapi32 = NULL;
1066 if (is_windows_9x () == TRUE)
1067 {
1068 return FALSE;
1069 }
1070 if (g_b_init_copy_sid == 0)
1071 {
1072 g_b_init_copy_sid = 1;
1073 hm_advapi32 = LoadLibrary ("Advapi32.dll");
1074 s_pfn_Copy_Sid =
1075 (CopySid_Proc) GetProcAddress (
1076 hm_advapi32, "CopySid");
1077 }
1078 if (s_pfn_Copy_Sid == NULL)
1079 {
1080 return FALSE;
1081 }
1082 return (s_pfn_Copy_Sid (destlen, dest, src));
1083 }
1084
1085 /*
1086 END: Wrapper functions around OpenProcessToken
1087 and other functions in advapi32.dll that are only
1088 supported in Windows NT / 2k / XP
1089 */
1090
1091 static void WINAPI
1092 get_native_system_info (LPSYSTEM_INFO lpSystemInfo)
1093 {
1094 static GetNativeSystemInfo_Proc s_pfn_Get_Native_System_Info = NULL;
1095 if (is_windows_9x () != TRUE)
1096 {
1097 if (g_b_init_get_native_system_info == 0)
1098 {
1099 g_b_init_get_native_system_info = 1;
1100 s_pfn_Get_Native_System_Info =
1101 (GetNativeSystemInfo_Proc)GetProcAddress (GetModuleHandle ("kernel32.dll"),
1102 "GetNativeSystemInfo");
1103 }
1104 if (s_pfn_Get_Native_System_Info != NULL)
1105 s_pfn_Get_Native_System_Info (lpSystemInfo);
1106 }
1107 else
1108 lpSystemInfo->dwNumberOfProcessors = -1;
1109 }
1110
1111 static BOOL WINAPI
1112 get_system_times (LPFILETIME lpIdleTime,
1113 LPFILETIME lpKernelTime,
1114 LPFILETIME lpUserTime)
1115 {
1116 static GetSystemTimes_Proc s_pfn_Get_System_times = NULL;
1117 if (is_windows_9x () == TRUE)
1118 {
1119 return FALSE;
1120 }
1121 if (g_b_init_get_system_times == 0)
1122 {
1123 g_b_init_get_system_times = 1;
1124 s_pfn_Get_System_times =
1125 (GetSystemTimes_Proc)GetProcAddress (GetModuleHandle ("kernel32.dll"),
1126 "GetSystemTimes");
1127 }
1128 if (s_pfn_Get_System_times == NULL)
1129 return FALSE;
1130 return (s_pfn_Get_System_times (lpIdleTime, lpKernelTime, lpUserTime));
1131 }
1132
1133 static BOOLEAN WINAPI
1134 create_symbolic_link (LPCSTR lpSymlinkFilename,
1135 LPCSTR lpTargetFileName,
1136 DWORD dwFlags)
1137 {
1138 static CreateSymbolicLinkW_Proc s_pfn_Create_Symbolic_LinkW = NULL;
1139 static CreateSymbolicLinkA_Proc s_pfn_Create_Symbolic_LinkA = NULL;
1140 BOOLEAN retval;
1141
1142 if (is_windows_9x () == TRUE)
1143 {
1144 errno = ENOSYS;
1145 return 0;
1146 }
1147 if (w32_unicode_filenames)
1148 {
1149 wchar_t symfn_w[MAX_PATH], tgtfn_w[MAX_PATH];
1150
1151 if (g_b_init_create_symbolic_link_w == 0)
1152 {
1153 g_b_init_create_symbolic_link_w = 1;
1154 s_pfn_Create_Symbolic_LinkW =
1155 (CreateSymbolicLinkW_Proc)GetProcAddress (GetModuleHandle ("kernel32.dll"),
1156 "CreateSymbolicLinkW");
1157 }
1158 if (s_pfn_Create_Symbolic_LinkW == NULL)
1159 {
1160 errno = ENOSYS;
1161 return 0;
1162 }
1163
1164 filename_to_utf16 (lpSymlinkFilename, symfn_w);
1165 filename_to_utf16 (lpTargetFileName, tgtfn_w);
1166 retval = s_pfn_Create_Symbolic_LinkW (symfn_w, tgtfn_w, dwFlags);
1167 /* If we were denied creation of the symlink, try again after
1168 enabling the SeCreateSymbolicLinkPrivilege for our process. */
1169 if (!retval)
1170 {
1171 TOKEN_PRIVILEGES priv_current;
1172
1173 if (enable_privilege (SE_CREATE_SYMBOLIC_LINK_NAME, TRUE,
1174 &priv_current))
1175 {
1176 retval = s_pfn_Create_Symbolic_LinkW (symfn_w, tgtfn_w, dwFlags);
1177 restore_privilege (&priv_current);
1178 revert_to_self ();
1179 }
1180 }
1181 }
1182 else
1183 {
1184 char symfn_a[MAX_PATH], tgtfn_a[MAX_PATH];
1185
1186 if (g_b_init_create_symbolic_link_a == 0)
1187 {
1188 g_b_init_create_symbolic_link_a = 1;
1189 s_pfn_Create_Symbolic_LinkA =
1190 (CreateSymbolicLinkA_Proc)GetProcAddress (GetModuleHandle ("kernel32.dll"),
1191 "CreateSymbolicLinkA");
1192 }
1193 if (s_pfn_Create_Symbolic_LinkA == NULL)
1194 {
1195 errno = ENOSYS;
1196 return 0;
1197 }
1198
1199 filename_to_ansi (lpSymlinkFilename, symfn_a);
1200 filename_to_ansi (lpTargetFileName, tgtfn_a);
1201 retval = s_pfn_Create_Symbolic_LinkA (symfn_a, tgtfn_a, dwFlags);
1202 /* If we were denied creation of the symlink, try again after
1203 enabling the SeCreateSymbolicLinkPrivilege for our process. */
1204 if (!retval)
1205 {
1206 TOKEN_PRIVILEGES priv_current;
1207
1208 if (enable_privilege (SE_CREATE_SYMBOLIC_LINK_NAME, TRUE,
1209 &priv_current))
1210 {
1211 retval = s_pfn_Create_Symbolic_LinkA (symfn_a, tgtfn_a, dwFlags);
1212 restore_privilege (&priv_current);
1213 revert_to_self ();
1214 }
1215 }
1216 }
1217 return retval;
1218 }
1219
1220 static BOOL WINAPI
1221 is_valid_security_descriptor (PSECURITY_DESCRIPTOR pSecurityDescriptor)
1222 {
1223 static IsValidSecurityDescriptor_Proc s_pfn_Is_Valid_Security_Descriptor_Proc = NULL;
1224
1225 if (is_windows_9x () == TRUE)
1226 {
1227 errno = ENOTSUP;
1228 return FALSE;
1229 }
1230
1231 if (g_b_init_is_valid_security_descriptor == 0)
1232 {
1233 g_b_init_is_valid_security_descriptor = 1;
1234 s_pfn_Is_Valid_Security_Descriptor_Proc =
1235 (IsValidSecurityDescriptor_Proc)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1236 "IsValidSecurityDescriptor");
1237 }
1238 if (s_pfn_Is_Valid_Security_Descriptor_Proc == NULL)
1239 {
1240 errno = ENOTSUP;
1241 return FALSE;
1242 }
1243
1244 return s_pfn_Is_Valid_Security_Descriptor_Proc (pSecurityDescriptor);
1245 }
1246
1247 static BOOL WINAPI
1248 convert_sd_to_sddl (PSECURITY_DESCRIPTOR SecurityDescriptor,
1249 DWORD RequestedStringSDRevision,
1250 SECURITY_INFORMATION SecurityInformation,
1251 LPTSTR *StringSecurityDescriptor,
1252 PULONG StringSecurityDescriptorLen)
1253 {
1254 static ConvertSecurityDescriptorToStringSecurityDescriptor_Proc s_pfn_Convert_SD_To_SDDL = NULL;
1255 BOOL retval;
1256
1257 if (is_windows_9x () == TRUE)
1258 {
1259 errno = ENOTSUP;
1260 return FALSE;
1261 }
1262
1263 if (g_b_init_convert_sd_to_sddl == 0)
1264 {
1265 g_b_init_convert_sd_to_sddl = 1;
1266 #ifdef _UNICODE
1267 s_pfn_Convert_SD_To_SDDL =
1268 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1269 "ConvertSecurityDescriptorToStringSecurityDescriptorW");
1270 #else
1271 s_pfn_Convert_SD_To_SDDL =
1272 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1273 "ConvertSecurityDescriptorToStringSecurityDescriptorA");
1274 #endif
1275 }
1276 if (s_pfn_Convert_SD_To_SDDL == NULL)
1277 {
1278 errno = ENOTSUP;
1279 return FALSE;
1280 }
1281
1282 retval = s_pfn_Convert_SD_To_SDDL (SecurityDescriptor,
1283 RequestedStringSDRevision,
1284 SecurityInformation,
1285 StringSecurityDescriptor,
1286 StringSecurityDescriptorLen);
1287
1288 return retval;
1289 }
1290
1291 static BOOL WINAPI
1292 convert_sddl_to_sd (LPCTSTR StringSecurityDescriptor,
1293 DWORD StringSDRevision,
1294 PSECURITY_DESCRIPTOR *SecurityDescriptor,
1295 PULONG SecurityDescriptorSize)
1296 {
1297 static ConvertStringSecurityDescriptorToSecurityDescriptor_Proc s_pfn_Convert_SDDL_To_SD = NULL;
1298 BOOL retval;
1299
1300 if (is_windows_9x () == TRUE)
1301 {
1302 errno = ENOTSUP;
1303 return FALSE;
1304 }
1305
1306 if (g_b_init_convert_sddl_to_sd == 0)
1307 {
1308 g_b_init_convert_sddl_to_sd = 1;
1309 #ifdef _UNICODE
1310 s_pfn_Convert_SDDL_To_SD =
1311 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1312 "ConvertStringSecurityDescriptorToSecurityDescriptorW");
1313 #else
1314 s_pfn_Convert_SDDL_To_SD =
1315 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc)GetProcAddress (GetModuleHandle ("Advapi32.dll"),
1316 "ConvertStringSecurityDescriptorToSecurityDescriptorA");
1317 #endif
1318 }
1319 if (s_pfn_Convert_SDDL_To_SD == NULL)
1320 {
1321 errno = ENOTSUP;
1322 return FALSE;
1323 }
1324
1325 retval = s_pfn_Convert_SDDL_To_SD (StringSecurityDescriptor,
1326 StringSDRevision,
1327 SecurityDescriptor,
1328 SecurityDescriptorSize);
1329
1330 return retval;
1331 }
1332
1333 static DWORD WINAPI
1334 get_adapters_info (PIP_ADAPTER_INFO pAdapterInfo, PULONG pOutBufLen)
1335 {
1336 static GetAdaptersInfo_Proc s_pfn_Get_Adapters_Info = NULL;
1337 HMODULE hm_iphlpapi = NULL;
1338
1339 if (is_windows_9x () == TRUE)
1340 return ERROR_NOT_SUPPORTED;
1341
1342 if (g_b_init_get_adapters_info == 0)
1343 {
1344 g_b_init_get_adapters_info = 1;
1345 hm_iphlpapi = LoadLibrary ("Iphlpapi.dll");
1346 if (hm_iphlpapi)
1347 s_pfn_Get_Adapters_Info = (GetAdaptersInfo_Proc)
1348 GetProcAddress (hm_iphlpapi, "GetAdaptersInfo");
1349 }
1350 if (s_pfn_Get_Adapters_Info == NULL)
1351 return ERROR_NOT_SUPPORTED;
1352 return s_pfn_Get_Adapters_Info (pAdapterInfo, pOutBufLen);
1353 }
1354
1355 \f
1356
1357 /* Return 1 if P is a valid pointer to an object of size SIZE. Return
1358 0 if P is NOT a valid pointer. Return -1 if we cannot validate P.
1359
1360 This is called from alloc.c:valid_pointer_p. */
1361 int
1362 w32_valid_pointer_p (void *p, int size)
1363 {
1364 SIZE_T done;
1365 HANDLE h = OpenProcess (PROCESS_VM_READ, FALSE, GetCurrentProcessId ());
1366
1367 if (h)
1368 {
1369 unsigned char *buf = alloca (size);
1370 int retval = ReadProcessMemory (h, p, buf, size, &done);
1371
1372 CloseHandle (h);
1373 return retval;
1374 }
1375 else
1376 return -1;
1377 }
1378
1379 \f
1380
1381 /* Here's an overview of how the Windows build supports file names
1382 that cannot be encoded by the current system codepage.
1383
1384 From the POV of Lisp and layers of C code above the functions here,
1385 Emacs on Windows pretends that its file names are encoded in UTF-8;
1386 see encode_file and decode_file on coding.c. Any file name that is
1387 passed as a unibyte string to C functions defined here is assumed
1388 to be in UTF-8 encoding. Any file name returned by functions
1389 defined here must be in UTF-8 encoding, with only a few exceptions
1390 reserved for a couple of special cases. (Be sure to use
1391 MAX_UTF8_PATH for char arrays that store UTF-8 encoded file names,
1392 as they can be much longer than MAX_PATH!)
1393
1394 The UTF-8 encoded file names cannot be passed to system APIs, as
1395 Windows does not support that. Therefore, they are converted
1396 either to UTF-16 or to the ANSI codepage, depending on the value of
1397 w32-unicode-filenames, before calling any system APIs or CRT library
1398 functions. The default value of that variable is determined by the
1399 OS on which Emacs runs: nil on Windows 9X and t otherwise, but the
1400 user can change that default (although I don't see why would she
1401 want to).
1402
1403 The 4 functions defined below, filename_to_utf16, filename_to_ansi,
1404 filename_from_utf16, and filename_from_ansi, are the workhorses of
1405 these conversions. They rely on Windows native APIs
1406 MultiByteToWideChar and WideCharToMultiByte; we cannot use
1407 functions from coding.c here, because they allocate memory, which
1408 is a bad idea on the level of libc, which is what the functions
1409 here emulate. (If you worry about performance due to constant
1410 conversion back and forth from UTF-8 to UTF-16, then don't: first,
1411 it was measured to take only a few microseconds on a not-so-fast
1412 machine, and second, that's exactly what the ANSI APIs we used
1413 before did anyway, because they are just thin wrappers around the
1414 Unicode APIs.)
1415
1416 The variables file-name-coding-system and default-file-name-coding-system
1417 still exist, but are actually used only when a file name needs to
1418 be converted to the ANSI codepage. This happens all the time when
1419 w32-unicode-filenames is nil, but can also happen from time to time
1420 when it is t. Otherwise, these variables have no effect on file-name
1421 encoding when w32-unicode-filenames is t; this is similar to
1422 selection-coding-system.
1423
1424 This arrangement works very well, but it has a few gotchas and
1425 limitations:
1426
1427 . Lisp code that encodes or decodes file names manually should
1428 normally use 'utf-8' as the coding-system on Windows,
1429 disregarding file-name-coding-system. This is a somewhat
1430 unpleasant consequence, but it cannot be avoided. Fortunately,
1431 very few Lisp packages need to do that.
1432
1433 More generally, passing to library functions (e.g., fopen or
1434 opendir) file names already encoded in the ANSI codepage is
1435 explicitly *verboten*, as all those functions, as shadowed and
1436 emulated here, assume they will receive UTF-8 encoded file names.
1437
1438 For the same reasons, no CRT function or Win32 API can be called
1439 directly in Emacs sources, without either converting the file
1440 names from UTF-8 to UTF-16 or ANSI codepage, or going through
1441 some shadowing function defined here.
1442
1443 . Environment variables stored in Vprocess_environment are encoded
1444 in the ANSI codepage, so if getenv/egetenv is used for a variable
1445 whose value is a file name or a list of directories, it needs to
1446 be converted to UTF-8, before it is used as argument to functions
1447 or decoded into a Lisp string.
1448
1449 . File names passed to external libraries, like the image libraries
1450 and GnuTLS, need special handling. These libraries generally
1451 don't support UTF-16 or UTF-8 file names, so they must get file
1452 names encoded in the ANSI codepage. To facilitate using these
1453 libraries with file names that are not encodable in the ANSI
1454 codepage, use the function ansi_encode_filename, which will try
1455 to use the short 8+3 alias of a file name if that file name is
1456 not encodable in the ANSI codepage. See image.c and gnutls.c for
1457 examples of how this should be done.
1458
1459 . Running subprocesses in non-ASCII directories and with non-ASCII
1460 file arguments is limited to the current codepage (even though
1461 Emacs is perfectly capable of finding an executable program file
1462 in a directory whose name cannot be encoded in the current
1463 codepage). This is because the command-line arguments are
1464 encoded _before_ they get to the w32-specific level, and the
1465 encoding is not known in advance (it doesn't have to be the
1466 current ANSI codepage), so w32proc.c functions cannot re-encode
1467 them in UTF-16. This should be fixed, but will also require
1468 changes in cmdproxy. The current limitation is not terribly bad
1469 anyway, since very few, if any, Windows console programs that are
1470 likely to be invoked by Emacs support UTF-16 encoded command
1471 lines.
1472
1473 . For similar reasons, server.el and emacsclient are also limited
1474 to the current ANSI codepage for now.
1475
1476 . Emacs itself can only handle command-line arguments encoded in
1477 the current codepage.
1478
1479 . Turning on w32-unicode-filename on Windows 9X (if it at all
1480 works) requires UNICOWS.DLL, which is thus a requirement even in
1481 non-GUI sessions, something the we previously avoided. */
1482
1483 \f
1484
1485 /* Converting file names from UTF-8 to either UTF-16 or the ANSI
1486 codepage defined by file-name-coding-system. */
1487
1488 /* Current codepage for encoding file names. */
1489 static int file_name_codepage;
1490
1491 /* Produce a Windows ANSI codepage suitable for encoding file names.
1492 Return the information about that codepage in CP_INFO. */
1493 static int
1494 codepage_for_filenames (CPINFO *cp_info)
1495 {
1496 /* A simple cache to avoid calling GetCPInfo every time we need to
1497 encode/decode a file name. The file-name encoding is not
1498 supposed to be changed too frequently, if ever. */
1499 static Lisp_Object last_file_name_encoding;
1500 static CPINFO cp;
1501 Lisp_Object current_encoding;
1502
1503 current_encoding = Vfile_name_coding_system;
1504 if (NILP (current_encoding))
1505 current_encoding = Vdefault_file_name_coding_system;
1506
1507 if (!EQ (last_file_name_encoding, current_encoding))
1508 {
1509 /* Default to the current ANSI codepage. */
1510 file_name_codepage = w32_ansi_code_page;
1511
1512 if (NILP (current_encoding))
1513 {
1514 char *cpname = SDATA (SYMBOL_NAME (current_encoding));
1515 char *cp = NULL, *end;
1516 int cpnum;
1517
1518 if (strncmp (cpname, "cp", 2) == 0)
1519 cp = cpname + 2;
1520 else if (strncmp (cpname, "windows-", 8) == 0)
1521 cp = cpname + 8;
1522
1523 if (cp)
1524 {
1525 end = cp;
1526 cpnum = strtol (cp, &end, 10);
1527 if (cpnum && *end == '\0' && end - cp >= 2)
1528 file_name_codepage = cpnum;
1529 }
1530 }
1531
1532 if (!file_name_codepage)
1533 file_name_codepage = CP_ACP; /* CP_ACP = 0, but let's not assume that */
1534
1535 if (!GetCPInfo (file_name_codepage, &cp))
1536 {
1537 file_name_codepage = CP_ACP;
1538 if (!GetCPInfo (file_name_codepage, &cp))
1539 emacs_abort ();
1540 }
1541 }
1542 if (cp_info)
1543 *cp_info = cp;
1544
1545 return file_name_codepage;
1546 }
1547
1548 int
1549 filename_to_utf16 (const char *fn_in, wchar_t *fn_out)
1550 {
1551 int result = pMultiByteToWideChar (CP_UTF8, MB_ERR_INVALID_CHARS, fn_in, -1,
1552 fn_out, MAX_PATH);
1553
1554 if (!result)
1555 {
1556 DWORD err = GetLastError ();
1557
1558 switch (err)
1559 {
1560 case ERROR_INVALID_FLAGS:
1561 case ERROR_INVALID_PARAMETER:
1562 errno = EINVAL;
1563 break;
1564 case ERROR_INSUFFICIENT_BUFFER:
1565 case ERROR_NO_UNICODE_TRANSLATION:
1566 default:
1567 errno = ENOENT;
1568 break;
1569 }
1570 return -1;
1571 }
1572 return 0;
1573 }
1574
1575 int
1576 filename_from_utf16 (const wchar_t *fn_in, char *fn_out)
1577 {
1578 int result = pWideCharToMultiByte (CP_UTF8, 0, fn_in, -1,
1579 fn_out, MAX_UTF8_PATH, NULL, NULL);
1580
1581 if (!result)
1582 {
1583 DWORD err = GetLastError ();
1584
1585 switch (err)
1586 {
1587 case ERROR_INVALID_FLAGS:
1588 case ERROR_INVALID_PARAMETER:
1589 errno = EINVAL;
1590 break;
1591 case ERROR_INSUFFICIENT_BUFFER:
1592 case ERROR_NO_UNICODE_TRANSLATION:
1593 default:
1594 errno = ENOENT;
1595 break;
1596 }
1597 return -1;
1598 }
1599 return 0;
1600 }
1601
1602 int
1603 filename_to_ansi (const char *fn_in, char *fn_out)
1604 {
1605 wchar_t fn_utf16[MAX_PATH];
1606
1607 if (filename_to_utf16 (fn_in, fn_utf16) == 0)
1608 {
1609 int result;
1610 int codepage = codepage_for_filenames (NULL);
1611
1612 result = pWideCharToMultiByte (codepage, 0, fn_utf16, -1,
1613 fn_out, MAX_PATH, NULL, NULL);
1614 if (!result)
1615 {
1616 DWORD err = GetLastError ();
1617
1618 switch (err)
1619 {
1620 case ERROR_INVALID_FLAGS:
1621 case ERROR_INVALID_PARAMETER:
1622 errno = EINVAL;
1623 break;
1624 case ERROR_INSUFFICIENT_BUFFER:
1625 case ERROR_NO_UNICODE_TRANSLATION:
1626 default:
1627 errno = ENOENT;
1628 break;
1629 }
1630 return -1;
1631 }
1632 return 0;
1633 }
1634 return -1;
1635 }
1636
1637 int
1638 filename_from_ansi (const char *fn_in, char *fn_out)
1639 {
1640 wchar_t fn_utf16[MAX_PATH];
1641 int codepage = codepage_for_filenames (NULL);
1642 int result = pMultiByteToWideChar (codepage, MB_ERR_INVALID_CHARS, fn_in, -1,
1643 fn_utf16, MAX_PATH);
1644
1645 if (!result)
1646 {
1647 DWORD err = GetLastError ();
1648
1649 switch (err)
1650 {
1651 case ERROR_INVALID_FLAGS:
1652 case ERROR_INVALID_PARAMETER:
1653 errno = EINVAL;
1654 break;
1655 case ERROR_INSUFFICIENT_BUFFER:
1656 case ERROR_NO_UNICODE_TRANSLATION:
1657 default:
1658 errno = ENOENT;
1659 break;
1660 }
1661 return -1;
1662 }
1663 return filename_from_utf16 (fn_utf16, fn_out);
1664 }
1665
1666 \f
1667
1668 /* The directory where we started, in UTF-8. */
1669 static char startup_dir[MAX_UTF8_PATH];
1670
1671 /* Get the current working directory. */
1672 char *
1673 getcwd (char *dir, int dirsize)
1674 {
1675 if (!dirsize)
1676 {
1677 errno = EINVAL;
1678 return NULL;
1679 }
1680 if (dirsize <= strlen (startup_dir))
1681 {
1682 errno = ERANGE;
1683 return NULL;
1684 }
1685 #if 0
1686 if (GetCurrentDirectory (MAXPATHLEN, dir) > 0)
1687 return dir;
1688 return NULL;
1689 #else
1690 /* Emacs doesn't actually change directory itself, it stays in the
1691 same directory where it was started. */
1692 strcpy (dir, startup_dir);
1693 return dir;
1694 #endif
1695 }
1696
1697 /* Emulate getloadavg. */
1698
1699 struct load_sample {
1700 time_t sample_time;
1701 ULONGLONG idle;
1702 ULONGLONG kernel;
1703 ULONGLONG user;
1704 };
1705
1706 /* Number of processors on this machine. */
1707 static unsigned num_of_processors;
1708
1709 /* We maintain 1-sec samples for the last 16 minutes in a circular buffer. */
1710 static struct load_sample samples[16*60];
1711 static int first_idx = -1, last_idx = -1;
1712 static int max_idx = ARRAYELTS (samples);
1713
1714 static int
1715 buf_next (int from)
1716 {
1717 int next_idx = from + 1;
1718
1719 if (next_idx >= max_idx)
1720 next_idx = 0;
1721
1722 return next_idx;
1723 }
1724
1725 static int
1726 buf_prev (int from)
1727 {
1728 int prev_idx = from - 1;
1729
1730 if (prev_idx < 0)
1731 prev_idx = max_idx - 1;
1732
1733 return prev_idx;
1734 }
1735
1736 static void
1737 sample_system_load (ULONGLONG *idle, ULONGLONG *kernel, ULONGLONG *user)
1738 {
1739 SYSTEM_INFO sysinfo;
1740 FILETIME ft_idle, ft_user, ft_kernel;
1741
1742 /* Initialize the number of processors on this machine. */
1743 if (num_of_processors <= 0)
1744 {
1745 get_native_system_info (&sysinfo);
1746 num_of_processors = sysinfo.dwNumberOfProcessors;
1747 if (num_of_processors <= 0)
1748 {
1749 GetSystemInfo (&sysinfo);
1750 num_of_processors = sysinfo.dwNumberOfProcessors;
1751 }
1752 if (num_of_processors <= 0)
1753 num_of_processors = 1;
1754 }
1755
1756 /* TODO: Take into account threads that are ready to run, by
1757 sampling the "\System\Processor Queue Length" performance
1758 counter. The code below accounts only for threads that are
1759 actually running. */
1760
1761 if (get_system_times (&ft_idle, &ft_kernel, &ft_user))
1762 {
1763 ULARGE_INTEGER uidle, ukernel, uuser;
1764
1765 memcpy (&uidle, &ft_idle, sizeof (ft_idle));
1766 memcpy (&ukernel, &ft_kernel, sizeof (ft_kernel));
1767 memcpy (&uuser, &ft_user, sizeof (ft_user));
1768 *idle = uidle.QuadPart;
1769 *kernel = ukernel.QuadPart;
1770 *user = uuser.QuadPart;
1771 }
1772 else
1773 {
1774 *idle = 0;
1775 *kernel = 0;
1776 *user = 0;
1777 }
1778 }
1779
1780 /* Produce the load average for a given time interval, using the
1781 samples in the samples[] array. WHICH can be 0, 1, or 2, meaning
1782 1-minute, 5-minute, or 15-minute average, respectively. */
1783 static double
1784 getavg (int which)
1785 {
1786 double retval = -1.0;
1787 double tdiff;
1788 int idx;
1789 double span = (which == 0 ? 1.0 : (which == 1 ? 5.0 : 15.0)) * 60;
1790 time_t now = samples[last_idx].sample_time;
1791
1792 if (first_idx != last_idx)
1793 {
1794 for (idx = buf_prev (last_idx); ; idx = buf_prev (idx))
1795 {
1796 tdiff = difftime (now, samples[idx].sample_time);
1797 if (tdiff >= span - 2*DBL_EPSILON*now)
1798 {
1799 long double sys =
1800 samples[last_idx].kernel + samples[last_idx].user
1801 - (samples[idx].kernel + samples[idx].user);
1802 long double idl = samples[last_idx].idle - samples[idx].idle;
1803
1804 retval = (1.0 - idl / sys) * num_of_processors;
1805 break;
1806 }
1807 if (idx == first_idx)
1808 break;
1809 }
1810 }
1811
1812 return retval;
1813 }
1814
1815 int
1816 getloadavg (double loadavg[], int nelem)
1817 {
1818 int elem;
1819 ULONGLONG idle, kernel, user;
1820 time_t now = time (NULL);
1821
1822 /* If system time jumped back for some reason, delete all samples
1823 whose time is later than the current wall-clock time. This
1824 prevents load average figures from becoming frozen for prolonged
1825 periods of time, when system time is reset backwards. */
1826 if (last_idx >= 0)
1827 {
1828 while (difftime (now, samples[last_idx].sample_time) < -1.0)
1829 {
1830 if (last_idx == first_idx)
1831 {
1832 first_idx = last_idx = -1;
1833 break;
1834 }
1835 last_idx = buf_prev (last_idx);
1836 }
1837 }
1838
1839 /* Store another sample. We ignore samples that are less than 1 sec
1840 apart. */
1841 if (last_idx < 0
1842 || (difftime (now, samples[last_idx].sample_time)
1843 >= 1.0 - 2*DBL_EPSILON*now))
1844 {
1845 sample_system_load (&idle, &kernel, &user);
1846 last_idx = buf_next (last_idx);
1847 samples[last_idx].sample_time = now;
1848 samples[last_idx].idle = idle;
1849 samples[last_idx].kernel = kernel;
1850 samples[last_idx].user = user;
1851 /* If the buffer has more that 15 min worth of samples, discard
1852 the old ones. */
1853 if (first_idx == -1)
1854 first_idx = last_idx;
1855 while (first_idx != last_idx
1856 && (difftime (now, samples[first_idx].sample_time)
1857 >= 15.0*60 + 2*DBL_EPSILON*now))
1858 first_idx = buf_next (first_idx);
1859 }
1860
1861 for (elem = 0; elem < nelem; elem++)
1862 {
1863 double avg = getavg (elem);
1864
1865 if (avg < 0)
1866 break;
1867 loadavg[elem] = avg;
1868 }
1869
1870 return elem;
1871 }
1872
1873 /* Emulate getpwuid, getpwnam and others. */
1874
1875 #define PASSWD_FIELD_SIZE 256
1876
1877 static char dflt_passwd_name[PASSWD_FIELD_SIZE];
1878 static char dflt_passwd_passwd[PASSWD_FIELD_SIZE];
1879 static char dflt_passwd_gecos[PASSWD_FIELD_SIZE];
1880 static char dflt_passwd_dir[MAX_UTF8_PATH];
1881 static char dflt_passwd_shell[MAX_UTF8_PATH];
1882
1883 static struct passwd dflt_passwd =
1884 {
1885 dflt_passwd_name,
1886 dflt_passwd_passwd,
1887 0,
1888 0,
1889 0,
1890 dflt_passwd_gecos,
1891 dflt_passwd_dir,
1892 dflt_passwd_shell,
1893 };
1894
1895 static char dflt_group_name[GNLEN+1];
1896
1897 static struct group dflt_group =
1898 {
1899 /* When group information is not available, we return this as the
1900 group for all files. */
1901 dflt_group_name,
1902 0,
1903 };
1904
1905 unsigned
1906 getuid (void)
1907 {
1908 return dflt_passwd.pw_uid;
1909 }
1910
1911 unsigned
1912 geteuid (void)
1913 {
1914 /* I could imagine arguing for checking to see whether the user is
1915 in the Administrators group and returning a UID of 0 for that
1916 case, but I don't know how wise that would be in the long run. */
1917 return getuid ();
1918 }
1919
1920 unsigned
1921 getgid (void)
1922 {
1923 return dflt_passwd.pw_gid;
1924 }
1925
1926 unsigned
1927 getegid (void)
1928 {
1929 return getgid ();
1930 }
1931
1932 struct passwd *
1933 getpwuid (unsigned uid)
1934 {
1935 if (uid == dflt_passwd.pw_uid)
1936 return &dflt_passwd;
1937 return NULL;
1938 }
1939
1940 struct group *
1941 getgrgid (gid_t gid)
1942 {
1943 return &dflt_group;
1944 }
1945
1946 struct passwd *
1947 getpwnam (char *name)
1948 {
1949 struct passwd *pw;
1950
1951 pw = getpwuid (getuid ());
1952 if (!pw)
1953 return pw;
1954
1955 if (xstrcasecmp (name, pw->pw_name))
1956 return NULL;
1957
1958 return pw;
1959 }
1960
1961 static void
1962 init_user_info (void)
1963 {
1964 /* Find the user's real name by opening the process token and
1965 looking up the name associated with the user-sid in that token.
1966
1967 Use the relative portion of the identifier authority value from
1968 the user-sid as the user id value (same for group id using the
1969 primary group sid from the process token). */
1970
1971 char uname[UNLEN+1], gname[GNLEN+1], domain[1025];
1972 DWORD ulength = sizeof (uname), dlength = sizeof (domain), needed;
1973 DWORD glength = sizeof (gname);
1974 HANDLE token = NULL;
1975 SID_NAME_USE user_type;
1976 unsigned char *buf = NULL;
1977 DWORD blen = 0;
1978 TOKEN_USER user_token;
1979 TOKEN_PRIMARY_GROUP group_token;
1980 BOOL result;
1981
1982 result = open_process_token (GetCurrentProcess (), TOKEN_QUERY, &token);
1983 if (result)
1984 {
1985 result = get_token_information (token, TokenUser, NULL, 0, &blen);
1986 if (!result && GetLastError () == ERROR_INSUFFICIENT_BUFFER)
1987 {
1988 buf = xmalloc (blen);
1989 result = get_token_information (token, TokenUser,
1990 (LPVOID)buf, blen, &needed);
1991 if (result)
1992 {
1993 memcpy (&user_token, buf, sizeof (user_token));
1994 result = lookup_account_sid (NULL, user_token.User.Sid,
1995 uname, &ulength,
1996 domain, &dlength, &user_type);
1997 }
1998 }
1999 else
2000 result = FALSE;
2001 }
2002 if (result)
2003 {
2004 strcpy (dflt_passwd.pw_name, uname);
2005 /* Determine a reasonable uid value. */
2006 if (xstrcasecmp ("administrator", uname) == 0)
2007 {
2008 dflt_passwd.pw_uid = 500; /* well-known Administrator uid */
2009 dflt_passwd.pw_gid = 513; /* well-known None gid */
2010 }
2011 else
2012 {
2013 /* Use the last sub-authority value of the RID, the relative
2014 portion of the SID, as user/group ID. */
2015 dflt_passwd.pw_uid = get_rid (user_token.User.Sid);
2016
2017 /* Get group id and name. */
2018 result = get_token_information (token, TokenPrimaryGroup,
2019 (LPVOID)buf, blen, &needed);
2020 if (!result && GetLastError () == ERROR_INSUFFICIENT_BUFFER)
2021 {
2022 buf = xrealloc (buf, blen = needed);
2023 result = get_token_information (token, TokenPrimaryGroup,
2024 (LPVOID)buf, blen, &needed);
2025 }
2026 if (result)
2027 {
2028 memcpy (&group_token, buf, sizeof (group_token));
2029 dflt_passwd.pw_gid = get_rid (group_token.PrimaryGroup);
2030 dlength = sizeof (domain);
2031 /* If we can get at the real Primary Group name, use that.
2032 Otherwise, the default group name was already set to
2033 "None" in globals_of_w32. */
2034 if (lookup_account_sid (NULL, group_token.PrimaryGroup,
2035 gname, &glength, NULL, &dlength,
2036 &user_type))
2037 strcpy (dflt_group_name, gname);
2038 }
2039 else
2040 dflt_passwd.pw_gid = dflt_passwd.pw_uid;
2041 }
2042 }
2043 /* If security calls are not supported (presumably because we
2044 are running under Windows 9X), fallback to this: */
2045 else if (GetUserName (uname, &ulength))
2046 {
2047 strcpy (dflt_passwd.pw_name, uname);
2048 if (xstrcasecmp ("administrator", uname) == 0)
2049 dflt_passwd.pw_uid = 0;
2050 else
2051 dflt_passwd.pw_uid = 123;
2052 dflt_passwd.pw_gid = dflt_passwd.pw_uid;
2053 }
2054 else
2055 {
2056 strcpy (dflt_passwd.pw_name, "unknown");
2057 dflt_passwd.pw_uid = 123;
2058 dflt_passwd.pw_gid = 123;
2059 }
2060 dflt_group.gr_gid = dflt_passwd.pw_gid;
2061
2062 /* Set dir and shell from environment variables. */
2063 if (w32_unicode_filenames)
2064 {
2065 wchar_t *home = _wgetenv (L"HOME");
2066 wchar_t *shell = _wgetenv (L"SHELL");
2067
2068 /* Ensure HOME and SHELL are defined. */
2069 if (home == NULL)
2070 emacs_abort ();
2071 if (shell == NULL)
2072 emacs_abort ();
2073 filename_from_utf16 (home, dflt_passwd.pw_dir);
2074 filename_from_utf16 (shell, dflt_passwd.pw_shell);
2075 }
2076 else
2077 {
2078 char *home = getenv ("HOME");
2079 char *shell = getenv ("SHELL");
2080
2081 if (home == NULL)
2082 emacs_abort ();
2083 if (shell == NULL)
2084 emacs_abort ();
2085 filename_from_ansi (home, dflt_passwd.pw_dir);
2086 filename_from_ansi (shell, dflt_passwd.pw_shell);
2087 }
2088
2089 xfree (buf);
2090 if (token)
2091 CloseHandle (token);
2092 }
2093
2094 int
2095 random (void)
2096 {
2097 /* rand () on NT gives us 15 random bits...hack together 30 bits. */
2098 return ((rand () << 15) | rand ());
2099 }
2100
2101 void
2102 srandom (int seed)
2103 {
2104 srand (seed);
2105 }
2106
2107 /* Return the maximum length in bytes of a multibyte character
2108 sequence encoded in the current ANSI codepage. This is required to
2109 correctly walk the encoded file names one character at a time. */
2110 static int
2111 max_filename_mbslen (void)
2112 {
2113 CPINFO cp_info;
2114
2115 codepage_for_filenames (&cp_info);
2116 return cp_info.MaxCharSize;
2117 }
2118
2119 /* Normalize filename by converting in-place all of its path
2120 separators to the separator specified by PATH_SEP. */
2121
2122 static void
2123 normalize_filename (register char *fp, char path_sep)
2124 {
2125 char *p2;
2126
2127 /* Always lower-case drive letters a-z, even if the filesystem
2128 preserves case in filenames.
2129 This is so filenames can be compared by string comparison
2130 functions that are case-sensitive. Even case-preserving filesystems
2131 do not distinguish case in drive letters. */
2132 p2 = fp + 1;
2133
2134 if (*p2 == ':' && *fp >= 'A' && *fp <= 'Z')
2135 {
2136 *fp += 'a' - 'A';
2137 fp += 2;
2138 }
2139
2140 while (*fp)
2141 {
2142 if ((*fp == '/' || *fp == '\\') && *fp != path_sep)
2143 *fp = path_sep;
2144 fp++;
2145 }
2146 }
2147
2148 /* Destructively turn backslashes into slashes. */
2149 void
2150 dostounix_filename (register char *p)
2151 {
2152 normalize_filename (p, '/');
2153 }
2154
2155 /* Destructively turn slashes into backslashes. */
2156 void
2157 unixtodos_filename (register char *p)
2158 {
2159 normalize_filename (p, '\\');
2160 }
2161
2162 /* Remove all CR's that are followed by a LF.
2163 (From msdos.c...probably should figure out a way to share it,
2164 although this code isn't going to ever change.) */
2165 static int
2166 crlf_to_lf (register int n, register unsigned char *buf)
2167 {
2168 unsigned char *np = buf;
2169 unsigned char *startp = buf;
2170 unsigned char *endp = buf + n;
2171
2172 if (n == 0)
2173 return n;
2174 while (buf < endp - 1)
2175 {
2176 if (*buf == 0x0d)
2177 {
2178 if (*(++buf) != 0x0a)
2179 *np++ = 0x0d;
2180 }
2181 else
2182 *np++ = *buf++;
2183 }
2184 if (buf < endp)
2185 *np++ = *buf++;
2186 return np - startp;
2187 }
2188
2189 /* Parse the root part of file name, if present. Return length and
2190 optionally store pointer to char after root. */
2191 static int
2192 parse_root (const char * name, const char ** pPath)
2193 {
2194 const char * start = name;
2195
2196 if (name == NULL)
2197 return 0;
2198
2199 /* find the root name of the volume if given */
2200 if (isalpha (name[0]) && name[1] == ':')
2201 {
2202 /* skip past drive specifier */
2203 name += 2;
2204 if (IS_DIRECTORY_SEP (name[0]))
2205 name++;
2206 }
2207 else if (IS_DIRECTORY_SEP (name[0]) && IS_DIRECTORY_SEP (name[1]))
2208 {
2209 int slashes = 2;
2210
2211 name += 2;
2212 do
2213 {
2214 if (IS_DIRECTORY_SEP (*name) && --slashes == 0)
2215 break;
2216 name++;
2217 }
2218 while ( *name );
2219 if (IS_DIRECTORY_SEP (name[0]))
2220 name++;
2221 }
2222
2223 if (pPath)
2224 *pPath = name;
2225
2226 return name - start;
2227 }
2228
2229 /* Get long base name for name; name is assumed to be absolute. */
2230 static int
2231 get_long_basename (char * name, char * buf, int size)
2232 {
2233 HANDLE dir_handle = INVALID_HANDLE_VALUE;
2234 char fname_utf8[MAX_UTF8_PATH];
2235 int len = 0;
2236 int cstatus = -1;
2237
2238 /* Must be valid filename, no wild cards or other invalid characters. */
2239 if (strpbrk (name, "*?|<>\""))
2240 return 0;
2241
2242 if (w32_unicode_filenames)
2243 {
2244 wchar_t fname_utf16[MAX_PATH];
2245 WIN32_FIND_DATAW find_data_wide;
2246
2247 filename_to_utf16 (name, fname_utf16);
2248 dir_handle = FindFirstFileW (fname_utf16, &find_data_wide);
2249 if (dir_handle != INVALID_HANDLE_VALUE)
2250 cstatus = filename_from_utf16 (find_data_wide.cFileName, fname_utf8);
2251 }
2252 else
2253 {
2254 char fname_ansi[MAX_PATH];
2255 WIN32_FIND_DATAA find_data_ansi;
2256
2257 filename_to_ansi (name, fname_ansi);
2258 /* If the ANSI name includes ? characters, it is not encodable
2259 in the ANSI codepage. In that case, we deliver the question
2260 marks to the caller; calling FindFirstFileA in this case
2261 could return some unrelated file name in the same
2262 directory. */
2263 if (_mbspbrk (fname_ansi, "?"))
2264 {
2265 /* Find the basename of fname_ansi. */
2266 char *p = strrchr (fname_ansi, '\\');
2267
2268 if (!p)
2269 p = fname_ansi;
2270 else
2271 p++;
2272 cstatus = filename_from_ansi (p, fname_utf8);
2273 }
2274 else
2275 {
2276 dir_handle = FindFirstFileA (fname_ansi, &find_data_ansi);
2277 if (dir_handle != INVALID_HANDLE_VALUE)
2278 cstatus = filename_from_ansi (find_data_ansi.cFileName, fname_utf8);
2279 }
2280 }
2281
2282 if (cstatus == 0 && (len = strlen (fname_utf8)) < size)
2283 memcpy (buf, fname_utf8, len + 1);
2284 else
2285 len = 0;
2286
2287 if (dir_handle != INVALID_HANDLE_VALUE)
2288 FindClose (dir_handle);
2289
2290 return len;
2291 }
2292
2293 /* Get long name for file, if possible (assumed to be absolute). */
2294 BOOL
2295 w32_get_long_filename (const char * name, char * buf, int size)
2296 {
2297 char * o = buf;
2298 char * p;
2299 const char * q;
2300 char full[ MAX_UTF8_PATH ];
2301 int len;
2302
2303 len = strlen (name);
2304 if (len >= MAX_UTF8_PATH)
2305 return FALSE;
2306
2307 /* Use local copy for destructive modification. */
2308 memcpy (full, name, len+1);
2309 unixtodos_filename (full);
2310
2311 /* Copy root part verbatim. */
2312 len = parse_root (full, (const char **)&p);
2313 memcpy (o, full, len);
2314 o += len;
2315 *o = '\0';
2316 size -= len;
2317
2318 while (p != NULL && *p)
2319 {
2320 q = p;
2321 p = strchr (q, '\\');
2322 if (p) *p = '\0';
2323 len = get_long_basename (full, o, size);
2324 if (len > 0)
2325 {
2326 o += len;
2327 size -= len;
2328 if (p != NULL)
2329 {
2330 *p++ = '\\';
2331 if (size < 2)
2332 return FALSE;
2333 *o++ = '\\';
2334 size--;
2335 *o = '\0';
2336 }
2337 }
2338 else
2339 return FALSE;
2340 }
2341
2342 return TRUE;
2343 }
2344
2345 unsigned int
2346 w32_get_short_filename (const char * name, char * buf, int size)
2347 {
2348 if (w32_unicode_filenames)
2349 {
2350 wchar_t name_utf16[MAX_PATH], short_name[MAX_PATH];
2351 unsigned int retval;
2352
2353 filename_to_utf16 (name, name_utf16);
2354 retval = GetShortPathNameW (name_utf16, short_name, size);
2355 if (retval && retval < size)
2356 filename_from_utf16 (short_name, buf);
2357 return retval;
2358 }
2359 else
2360 {
2361 char name_ansi[MAX_PATH];
2362
2363 filename_to_ansi (name, name_ansi);
2364 return GetShortPathNameA (name_ansi, buf, size);
2365 }
2366 }
2367
2368 /* Re-encode FILENAME, a UTF-8 encoded unibyte string, using the
2369 MS-Windows ANSI codepage. If FILENAME includes characters not
2370 supported by the ANSI codepage, return the 8+3 alias of FILENAME,
2371 if it exists. This is needed because the w32 build wants to
2372 support file names outside of the system locale, but image
2373 libraries typically don't support wide (a.k.a. "Unicode") APIs
2374 required for that. */
2375
2376 Lisp_Object
2377 ansi_encode_filename (Lisp_Object filename)
2378 {
2379 Lisp_Object encoded_filename;
2380 char fname[MAX_PATH];
2381
2382 filename_to_ansi (SSDATA (filename), fname);
2383 if (_mbspbrk (fname, "?"))
2384 {
2385 char shortname[MAX_PATH];
2386
2387 if (w32_get_short_filename (SDATA (filename), shortname, MAX_PATH))
2388 {
2389 dostounix_filename (shortname);
2390 encoded_filename = build_string (shortname);
2391 }
2392 else
2393 encoded_filename = build_unibyte_string (fname);
2394 }
2395 else
2396 encoded_filename = build_unibyte_string (fname);
2397 return encoded_filename;
2398 }
2399
2400 static int
2401 is_unc_volume (const char *filename)
2402 {
2403 const char *ptr = filename;
2404
2405 if (!IS_DIRECTORY_SEP (ptr[0]) || !IS_DIRECTORY_SEP (ptr[1]) || !ptr[2])
2406 return 0;
2407
2408 if (strpbrk (ptr + 2, "*?|<>\"\\/"))
2409 return 0;
2410
2411 return 1;
2412 }
2413
2414 /* Emulate the Posix unsetenv. */
2415 int
2416 unsetenv (const char *name)
2417 {
2418 char *var;
2419 size_t name_len;
2420
2421 if (name == NULL || *name == '\0' || strchr (name, '=') != NULL)
2422 {
2423 errno = EINVAL;
2424 return -1;
2425 }
2426 name_len = strlen (name);
2427 /* MS docs says an environment variable cannot be longer than 32K. */
2428 if (name_len > 32767)
2429 {
2430 errno = ENOMEM;
2431 return 0;
2432 }
2433 /* It is safe to use 'alloca' with 32K size, since the stack is at
2434 least 2MB, and we set it to 8MB in the link command line. */
2435 var = alloca (name_len + 2);
2436 strncpy (var, name, name_len);
2437 var[name_len++] = '=';
2438 var[name_len] = '\0';
2439 return _putenv (var);
2440 }
2441
2442 /* MS _putenv doesn't support removing a variable when the argument
2443 does not include the '=' character, so we fix that here. */
2444 int
2445 sys_putenv (char *str)
2446 {
2447 const char *const name_end = strchr (str, '=');
2448
2449 if (name_end == NULL)
2450 {
2451 /* Remove the variable from the environment. */
2452 return unsetenv (str);
2453 }
2454
2455 return _putenv (str);
2456 }
2457
2458 #define REG_ROOT "SOFTWARE\\GNU\\Emacs"
2459
2460 LPBYTE
2461 w32_get_resource (char *key, LPDWORD lpdwtype)
2462 {
2463 LPBYTE lpvalue;
2464 HKEY hrootkey = NULL;
2465 DWORD cbData;
2466
2467 /* Check both the current user and the local machine to see if
2468 we have any resources. */
2469
2470 if (RegOpenKeyEx (HKEY_CURRENT_USER, REG_ROOT, 0, KEY_READ, &hrootkey) == ERROR_SUCCESS)
2471 {
2472 lpvalue = NULL;
2473
2474 if (RegQueryValueEx (hrootkey, key, NULL, NULL, NULL, &cbData) == ERROR_SUCCESS
2475 && (lpvalue = xmalloc (cbData)) != NULL
2476 && RegQueryValueEx (hrootkey, key, NULL, lpdwtype, lpvalue, &cbData) == ERROR_SUCCESS)
2477 {
2478 RegCloseKey (hrootkey);
2479 return (lpvalue);
2480 }
2481
2482 xfree (lpvalue);
2483
2484 RegCloseKey (hrootkey);
2485 }
2486
2487 if (RegOpenKeyEx (HKEY_LOCAL_MACHINE, REG_ROOT, 0, KEY_READ, &hrootkey) == ERROR_SUCCESS)
2488 {
2489 lpvalue = NULL;
2490
2491 if (RegQueryValueEx (hrootkey, key, NULL, NULL, NULL, &cbData) == ERROR_SUCCESS
2492 && (lpvalue = xmalloc (cbData)) != NULL
2493 && RegQueryValueEx (hrootkey, key, NULL, lpdwtype, lpvalue, &cbData) == ERROR_SUCCESS)
2494 {
2495 RegCloseKey (hrootkey);
2496 return (lpvalue);
2497 }
2498
2499 xfree (lpvalue);
2500
2501 RegCloseKey (hrootkey);
2502 }
2503
2504 return (NULL);
2505 }
2506
2507 /* The argv[] array holds ANSI-encoded strings, and so this function
2508 works with ANS_encoded strings. */
2509 void
2510 init_environment (char ** argv)
2511 {
2512 static const char * const tempdirs[] = {
2513 "$TMPDIR", "$TEMP", "$TMP", "c:/"
2514 };
2515
2516 int i;
2517
2518 const int imax = ARRAYELTS (tempdirs);
2519
2520 /* Implementation note: This function explicitly works with ANSI
2521 file names, not with UTF-8 encoded file names. This is because
2522 this function pushes variables into the Emacs's environment, and
2523 the environment variables are always assumed to be in the
2524 locale-specific encoding. Do NOT call any functions that accept
2525 UTF-8 file names from this function! */
2526
2527 /* Make sure they have a usable $TMPDIR. Many Emacs functions use
2528 temporary files and assume "/tmp" if $TMPDIR is unset, which
2529 will break on DOS/Windows. Refuse to work if we cannot find
2530 a directory, not even "c:/", usable for that purpose. */
2531 for (i = 0; i < imax ; i++)
2532 {
2533 const char *tmp = tempdirs[i];
2534
2535 if (*tmp == '$')
2536 tmp = getenv (tmp + 1);
2537 /* Note that `access' can lie to us if the directory resides on a
2538 read-only filesystem, like CD-ROM or a write-protected floppy.
2539 The only way to be really sure is to actually create a file and
2540 see if it succeeds. But I think that's too much to ask. */
2541
2542 /* MSVCRT's _access crashes with D_OK, so we use our replacement. */
2543 if (tmp && sys_access (tmp, D_OK) == 0)
2544 {
2545 char * var = alloca (strlen (tmp) + 8);
2546 sprintf (var, "TMPDIR=%s", tmp);
2547 _putenv (strdup (var));
2548 break;
2549 }
2550 }
2551 if (i >= imax)
2552 cmd_error_internal
2553 (Fcons (Qerror,
2554 Fcons (build_string ("no usable temporary directories found!!"),
2555 Qnil)),
2556 "While setting TMPDIR: ");
2557
2558 /* Check for environment variables and use registry settings if they
2559 don't exist. Fallback on default values where applicable. */
2560 {
2561 int i;
2562 LPBYTE lpval;
2563 DWORD dwType;
2564 char locale_name[32];
2565 char default_home[MAX_PATH];
2566 int appdata = 0;
2567
2568 static const struct env_entry
2569 {
2570 char * name;
2571 char * def_value;
2572 } dflt_envvars[] =
2573 {
2574 /* If the default value is NULL, we will use the value from the
2575 outside environment or the Registry, but will not push the
2576 variable into the Emacs environment if it is defined neither
2577 in the Registry nor in the outside environment. */
2578 {"HOME", "C:/"},
2579 {"PRELOAD_WINSOCK", NULL},
2580 {"emacs_dir", "C:/emacs"},
2581 {"EMACSLOADPATH", NULL},
2582 {"SHELL", "cmdproxy.exe"}, /* perhaps it is somewhere on PATH */
2583 {"EMACSDATA", NULL},
2584 {"EMACSPATH", NULL},
2585 {"INFOPATH", NULL},
2586 {"EMACSDOC", NULL},
2587 {"TERM", "cmd"},
2588 {"LANG", NULL},
2589 };
2590
2591 #define N_ENV_VARS ARRAYELTS (dflt_envvars)
2592
2593 /* We need to copy dflt_envvars[] and work on the copy because we
2594 don't want the dumped Emacs to inherit the values of
2595 environment variables we saw during dumping (which could be on
2596 a different system). The defaults above must be left intact. */
2597 struct env_entry env_vars[N_ENV_VARS];
2598
2599 for (i = 0; i < N_ENV_VARS; i++)
2600 env_vars[i] = dflt_envvars[i];
2601
2602 /* For backwards compatibility, check if a .emacs file exists in C:/
2603 If not, then we can try to default to the appdata directory under the
2604 user's profile, which is more likely to be writable. */
2605 if (sys_access ("C:/.emacs", F_OK) != 0)
2606 {
2607 HRESULT profile_result;
2608 /* Dynamically load ShGetFolderPath, as it won't exist on versions
2609 of Windows 95 and NT4 that have not been updated to include
2610 MSIE 5. */
2611 ShGetFolderPath_fn get_folder_path;
2612 get_folder_path = (ShGetFolderPath_fn)
2613 GetProcAddress (GetModuleHandle ("shell32.dll"), "SHGetFolderPathA");
2614
2615 if (get_folder_path != NULL)
2616 {
2617 profile_result = get_folder_path (NULL, CSIDL_APPDATA, NULL,
2618 0, default_home);
2619
2620 /* If we can't get the appdata dir, revert to old behavior. */
2621 if (profile_result == S_OK)
2622 {
2623 env_vars[0].def_value = default_home;
2624 appdata = 1;
2625 }
2626 }
2627 }
2628
2629 /* Get default locale info and use it for LANG. */
2630 if (GetLocaleInfo (LOCALE_USER_DEFAULT,
2631 LOCALE_SABBREVLANGNAME | LOCALE_USE_CP_ACP,
2632 locale_name, sizeof (locale_name)))
2633 {
2634 for (i = 0; i < N_ENV_VARS; i++)
2635 {
2636 if (strcmp (env_vars[i].name, "LANG") == 0)
2637 {
2638 env_vars[i].def_value = locale_name;
2639 break;
2640 }
2641 }
2642 }
2643
2644 #define SET_ENV_BUF_SIZE (4 * MAX_PATH) /* to cover EMACSLOADPATH */
2645
2646 /* Treat emacs_dir specially: set it unconditionally based on our
2647 location. */
2648 {
2649 char *p;
2650 char modname[MAX_PATH];
2651
2652 if (!GetModuleFileNameA (NULL, modname, MAX_PATH))
2653 emacs_abort ();
2654 if ((p = _mbsrchr (modname, '\\')) == NULL)
2655 emacs_abort ();
2656 *p = 0;
2657
2658 if ((p = _mbsrchr (modname, '\\'))
2659 /* From bin means installed Emacs, from src means uninstalled. */
2660 && (xstrcasecmp (p, "\\bin") == 0 || xstrcasecmp (p, "\\src") == 0))
2661 {
2662 char buf[SET_ENV_BUF_SIZE];
2663 int within_build_tree = xstrcasecmp (p, "\\src") == 0;
2664
2665 *p = 0;
2666 for (p = modname; *p; p = CharNext (p))
2667 if (*p == '\\') *p = '/';
2668
2669 _snprintf (buf, sizeof (buf)-1, "emacs_dir=%s", modname);
2670 _putenv (strdup (buf));
2671 /* If we are running from the Posix-like build tree, define
2672 SHELL to point to our own cmdproxy. The loop below will
2673 then disregard PATH_EXEC and the default value. */
2674 if (within_build_tree)
2675 {
2676 _snprintf (buf, sizeof (buf) - 1,
2677 "SHELL=%s/nt/cmdproxy.exe", modname);
2678 _putenv (strdup (buf));
2679 }
2680 }
2681 }
2682
2683 for (i = 0; i < N_ENV_VARS; i++)
2684 {
2685 if (!getenv (env_vars[i].name))
2686 {
2687 int dont_free = 0;
2688 char bufc[SET_ENV_BUF_SIZE];
2689
2690 if ((lpval = w32_get_resource (env_vars[i].name, &dwType)) == NULL
2691 /* Also ignore empty environment variables. */
2692 || *lpval == 0)
2693 {
2694 xfree (lpval);
2695 dont_free = 1;
2696 if (strcmp (env_vars[i].name, "SHELL") == 0)
2697 {
2698 /* Look for cmdproxy.exe in every directory in
2699 PATH_EXEC. FIXME: This does not find cmdproxy
2700 in nt/ when we run uninstalled. */
2701 char fname[MAX_PATH];
2702 const char *pstart = PATH_EXEC, *pend;
2703
2704 do {
2705 pend = _mbschr (pstart, ';');
2706 if (!pend)
2707 pend = pstart + strlen (pstart);
2708 /* Be defensive against series of ;;; characters. */
2709 if (pend > pstart)
2710 {
2711 strncpy (fname, pstart, pend - pstart);
2712 fname[pend - pstart] = '/';
2713 strcpy (&fname[pend - pstart + 1], "cmdproxy.exe");
2714 ExpandEnvironmentStrings ((LPSTR) fname, bufc,
2715 sizeof (bufc));
2716 if (sys_access (bufc, F_OK) == 0)
2717 {
2718 lpval = bufc;
2719 dwType = REG_SZ;
2720 break;
2721 }
2722 }
2723 if (*pend)
2724 pstart = pend + 1;
2725 else
2726 pstart = pend;
2727 if (!*pstart)
2728 {
2729 /* If not found in any directory, use the
2730 default as the last resort. */
2731 lpval = env_vars[i].def_value;
2732 dwType = REG_EXPAND_SZ;
2733 }
2734 } while (*pstart);
2735 }
2736 else
2737 {
2738 lpval = env_vars[i].def_value;
2739 dwType = REG_EXPAND_SZ;
2740 }
2741 if (strcmp (env_vars[i].name, "HOME") == 0 && !appdata)
2742 Vdelayed_warnings_list
2743 = Fcons (listn (CONSTYPE_HEAP, 2,
2744 intern ("initialization"),
2745 build_string ("Setting HOME to C:\\ by default is deprecated")),
2746 Vdelayed_warnings_list);
2747 }
2748
2749 if (lpval)
2750 {
2751 char buf1[SET_ENV_BUF_SIZE], buf2[SET_ENV_BUF_SIZE];
2752
2753 if (dwType == REG_EXPAND_SZ)
2754 ExpandEnvironmentStrings ((LPSTR) lpval, buf1, sizeof (buf1));
2755 else if (dwType == REG_SZ)
2756 strcpy (buf1, lpval);
2757 if (dwType == REG_EXPAND_SZ || dwType == REG_SZ)
2758 {
2759 _snprintf (buf2, sizeof (buf2)-1, "%s=%s", env_vars[i].name,
2760 buf1);
2761 _putenv (strdup (buf2));
2762 }
2763
2764 if (!dont_free)
2765 xfree (lpval);
2766 }
2767 }
2768 }
2769 }
2770
2771 /* Rebuild system configuration to reflect invoking system. */
2772 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
2773
2774 /* Another special case: on NT, the PATH variable is actually named
2775 "Path" although cmd.exe (perhaps NT itself) arranges for
2776 environment variable lookup and setting to be case insensitive.
2777 However, Emacs assumes a fully case sensitive environment, so we
2778 need to change "Path" to "PATH" to match the expectations of
2779 various elisp packages. We do this by the sneaky method of
2780 modifying the string in the C runtime environ entry.
2781
2782 The same applies to COMSPEC. */
2783 {
2784 char ** envp;
2785
2786 for (envp = environ; *envp; envp++)
2787 if (_strnicmp (*envp, "PATH=", 5) == 0)
2788 memcpy (*envp, "PATH=", 5);
2789 else if (_strnicmp (*envp, "COMSPEC=", 8) == 0)
2790 memcpy (*envp, "COMSPEC=", 8);
2791 }
2792
2793 /* Remember the initial working directory for getcwd. */
2794 /* FIXME: Do we need to resolve possible symlinks in startup_dir?
2795 Does it matter anywhere in Emacs? */
2796 if (w32_unicode_filenames)
2797 {
2798 wchar_t wstartup_dir[MAX_PATH];
2799
2800 if (!GetCurrentDirectoryW (MAX_PATH, wstartup_dir))
2801 emacs_abort ();
2802 filename_from_utf16 (wstartup_dir, startup_dir);
2803 }
2804 else
2805 {
2806 char astartup_dir[MAX_PATH];
2807
2808 if (!GetCurrentDirectoryA (MAX_PATH, astartup_dir))
2809 emacs_abort ();
2810 filename_from_ansi (astartup_dir, startup_dir);
2811 }
2812
2813 {
2814 static char modname[MAX_PATH];
2815
2816 if (!GetModuleFileNameA (NULL, modname, MAX_PATH))
2817 emacs_abort ();
2818 argv[0] = modname;
2819 }
2820
2821 /* Determine if there is a middle mouse button, to allow parse_button
2822 to decide whether right mouse events should be mouse-2 or
2823 mouse-3. */
2824 w32_num_mouse_buttons = GetSystemMetrics (SM_CMOUSEBUTTONS);
2825
2826 init_user_info ();
2827 }
2828
2829 /* Called from expand-file-name when default-directory is not a string. */
2830
2831 char *
2832 emacs_root_dir (void)
2833 {
2834 static char root_dir[MAX_UTF8_PATH];
2835 const char *p;
2836
2837 p = getenv ("emacs_dir");
2838 if (p == NULL)
2839 emacs_abort ();
2840 filename_from_ansi (p, root_dir);
2841 root_dir[parse_root (root_dir, NULL)] = '\0';
2842 dostounix_filename (root_dir);
2843 return root_dir;
2844 }
2845
2846 #include <sys/timeb.h>
2847
2848 /* Emulate gettimeofday (Ulrich Leodolter, 1/11/95). */
2849 int
2850 gettimeofday (struct timeval *__restrict tv, struct timezone *__restrict tz)
2851 {
2852 struct _timeb tb;
2853 _ftime (&tb);
2854
2855 tv->tv_sec = tb.time;
2856 tv->tv_usec = tb.millitm * 1000L;
2857 /* Implementation note: _ftime sometimes doesn't update the dstflag
2858 according to the new timezone when the system timezone is
2859 changed. We could fix that by using GetSystemTime and
2860 GetTimeZoneInformation, but that doesn't seem necessary, since
2861 Emacs always calls gettimeofday with the 2nd argument NULL (see
2862 current_emacs_time). */
2863 if (tz)
2864 {
2865 tz->tz_minuteswest = tb.timezone; /* minutes west of Greenwich */
2866 tz->tz_dsttime = tb.dstflag; /* type of dst correction */
2867 }
2868 return 0;
2869 }
2870
2871 /* Emulate fdutimens. */
2872
2873 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2874 TIMESPEC[0] and TIMESPEC[1], respectively.
2875 FD must be either negative -- in which case it is ignored --
2876 or a file descriptor that is open on FILE.
2877 If FD is nonnegative, then FILE can be NULL, which means
2878 use just futimes instead of utimes.
2879 If TIMESPEC is null, FAIL.
2880 Return 0 on success, -1 (setting errno) on failure. */
2881
2882 int
2883 fdutimens (int fd, char const *file, struct timespec const timespec[2])
2884 {
2885 if (!timespec)
2886 {
2887 errno = ENOSYS;
2888 return -1;
2889 }
2890 if (fd < 0 && !file)
2891 {
2892 errno = EBADF;
2893 return -1;
2894 }
2895 /* _futime's prototype defines 2nd arg as having the type 'struct
2896 _utimbuf', while utime needs to accept 'struct utimbuf' for
2897 compatibility with Posix. So we need to use 2 different (but
2898 equivalent) types to avoid compiler warnings, sigh. */
2899 if (fd >= 0)
2900 {
2901 struct _utimbuf _ut;
2902
2903 _ut.actime = timespec[0].tv_sec;
2904 _ut.modtime = timespec[1].tv_sec;
2905 return _futime (fd, &_ut);
2906 }
2907 else
2908 {
2909 struct utimbuf ut;
2910
2911 ut.actime = timespec[0].tv_sec;
2912 ut.modtime = timespec[1].tv_sec;
2913 /* Call 'utime', which is implemented below, not the MS library
2914 function, which fails on directories. */
2915 return utime (file, &ut);
2916 }
2917 }
2918
2919
2920 /* ------------------------------------------------------------------------- */
2921 /* IO support and wrapper functions for the Windows API. */
2922 /* ------------------------------------------------------------------------- */
2923
2924 /* Place a wrapper around the MSVC version of ctime. It returns NULL
2925 on network directories, so we handle that case here.
2926 (Ulrich Leodolter, 1/11/95). */
2927 char *
2928 sys_ctime (const time_t *t)
2929 {
2930 char *str = (char *) ctime (t);
2931 return (str ? str : "Sun Jan 01 00:00:00 1970");
2932 }
2933
2934 /* Emulate sleep...we could have done this with a define, but that
2935 would necessitate including windows.h in the files that used it.
2936 This is much easier. */
2937 void
2938 sys_sleep (int seconds)
2939 {
2940 Sleep (seconds * 1000);
2941 }
2942
2943 /* Internal MSVC functions for low-level descriptor munging */
2944 extern int __cdecl _set_osfhnd (int fd, long h);
2945 extern int __cdecl _free_osfhnd (int fd);
2946
2947 /* parallel array of private info on file handles */
2948 filedesc fd_info [ MAXDESC ];
2949
2950 typedef struct volume_info_data {
2951 struct volume_info_data * next;
2952
2953 /* time when info was obtained */
2954 DWORD timestamp;
2955
2956 /* actual volume info */
2957 char * root_dir;
2958 DWORD serialnum;
2959 DWORD maxcomp;
2960 DWORD flags;
2961 char * name;
2962 char * type;
2963 } volume_info_data;
2964
2965 /* Global referenced by various functions. */
2966 static volume_info_data volume_info;
2967
2968 /* Vector to indicate which drives are local and fixed (for which cached
2969 data never expires). */
2970 static BOOL fixed_drives[26];
2971
2972 /* Consider cached volume information to be stale if older than 10s,
2973 at least for non-local drives. Info for fixed drives is never stale. */
2974 #define DRIVE_INDEX( c ) ( (c) <= 'Z' ? (c) - 'A' : (c) - 'a' )
2975 #define VOLINFO_STILL_VALID( root_dir, info ) \
2976 ( ( isalpha (root_dir[0]) && \
2977 fixed_drives[ DRIVE_INDEX (root_dir[0]) ] ) \
2978 || GetTickCount () - info->timestamp < 10000 )
2979
2980 /* Cache support functions. */
2981
2982 /* Simple linked list with linear search is sufficient. */
2983 static volume_info_data *volume_cache = NULL;
2984
2985 static volume_info_data *
2986 lookup_volume_info (char * root_dir)
2987 {
2988 volume_info_data * info;
2989
2990 for (info = volume_cache; info; info = info->next)
2991 if (xstrcasecmp (info->root_dir, root_dir) == 0)
2992 break;
2993 return info;
2994 }
2995
2996 static void
2997 add_volume_info (char * root_dir, volume_info_data * info)
2998 {
2999 info->root_dir = xstrdup (root_dir);
3000 unixtodos_filename (info->root_dir);
3001 info->next = volume_cache;
3002 volume_cache = info;
3003 }
3004
3005
3006 /* Wrapper for GetVolumeInformation, which uses caching to avoid
3007 performance penalty (~2ms on 486 for local drives, 7.5ms for local
3008 cdrom drive, ~5-10ms or more for remote drives on LAN). */
3009 static volume_info_data *
3010 GetCachedVolumeInformation (char * root_dir)
3011 {
3012 volume_info_data * info;
3013 char default_root[ MAX_UTF8_PATH ];
3014 char name[MAX_PATH+1];
3015 char type[MAX_PATH+1];
3016
3017 /* NULL for root_dir means use root from current directory. */
3018 if (root_dir == NULL)
3019 {
3020 if (w32_unicode_filenames)
3021 {
3022 wchar_t curdirw[MAX_PATH];
3023
3024 if (GetCurrentDirectoryW (MAX_PATH, curdirw) == 0)
3025 return NULL;
3026 filename_from_utf16 (curdirw, default_root);
3027 }
3028 else
3029 {
3030 char curdira[MAX_PATH];
3031
3032 if (GetCurrentDirectoryA (MAX_PATH, curdira) == 0)
3033 return NULL;
3034 filename_from_ansi (curdira, default_root);
3035 }
3036 parse_root (default_root, (const char **)&root_dir);
3037 *root_dir = 0;
3038 root_dir = default_root;
3039 }
3040
3041 /* Local fixed drives can be cached permanently. Removable drives
3042 cannot be cached permanently, since the volume name and serial
3043 number (if nothing else) can change. Remote drives should be
3044 treated as if they are removable, since there is no sure way to
3045 tell whether they are or not. Also, the UNC association of drive
3046 letters mapped to remote volumes can be changed at any time (even
3047 by other processes) without notice.
3048
3049 As a compromise, so we can benefit from caching info for remote
3050 volumes, we use a simple expiry mechanism to invalidate cache
3051 entries that are more than ten seconds old. */
3052
3053 #if 0
3054 /* No point doing this, because WNetGetConnection is even slower than
3055 GetVolumeInformation, consistently taking ~50ms on a 486 (FWIW,
3056 GetDriveType is about the only call of this type which does not
3057 involve network access, and so is extremely quick). */
3058
3059 /* Map drive letter to UNC if remote. */
3060 if (isalpha (root_dir[0]) && !fixed[DRIVE_INDEX (root_dir[0])])
3061 {
3062 char remote_name[ 256 ];
3063 char drive[3] = { root_dir[0], ':' };
3064
3065 if (WNetGetConnection (drive, remote_name, sizeof (remote_name))
3066 == NO_ERROR)
3067 /* do something */ ;
3068 }
3069 #endif
3070
3071 info = lookup_volume_info (root_dir);
3072
3073 if (info == NULL || ! VOLINFO_STILL_VALID (root_dir, info))
3074 {
3075 DWORD serialnum;
3076 DWORD maxcomp;
3077 DWORD flags;
3078
3079 /* Info is not cached, or is stale. */
3080 if (w32_unicode_filenames)
3081 {
3082 wchar_t root_w[MAX_PATH];
3083 wchar_t name_w[MAX_PATH+1];
3084 wchar_t type_w[MAX_PATH+1];
3085
3086 filename_to_utf16 (root_dir, root_w);
3087 if (!GetVolumeInformationW (root_w,
3088 name_w, sizeof (name_w),
3089 &serialnum,
3090 &maxcomp,
3091 &flags,
3092 type_w, sizeof (type_w)))
3093 return NULL;
3094 /* Hmm... not really 100% correct, as these 2 are not file
3095 names... */
3096 filename_from_utf16 (name_w, name);
3097 filename_from_utf16 (type_w, type);
3098 }
3099 else
3100 {
3101 char root_a[MAX_PATH];
3102 char name_a[MAX_PATH+1];
3103 char type_a[MAX_PATH+1];
3104
3105 filename_to_ansi (root_dir, root_a);
3106 if (!GetVolumeInformationA (root_a,
3107 name_a, sizeof (name_a),
3108 &serialnum,
3109 &maxcomp,
3110 &flags,
3111 type_a, sizeof (type_a)))
3112 return NULL;
3113 filename_from_ansi (name_a, name);
3114 filename_from_ansi (type_a, type);
3115 }
3116
3117 /* Cache the volume information for future use, overwriting existing
3118 entry if present. */
3119 if (info == NULL)
3120 {
3121 info = xmalloc (sizeof (volume_info_data));
3122 add_volume_info (root_dir, info);
3123 }
3124 else
3125 {
3126 xfree (info->name);
3127 xfree (info->type);
3128 }
3129
3130 info->name = xstrdup (name);
3131 unixtodos_filename (info->name);
3132 info->serialnum = serialnum;
3133 info->maxcomp = maxcomp;
3134 info->flags = flags;
3135 info->type = xstrdup (type);
3136 info->timestamp = GetTickCount ();
3137 }
3138
3139 return info;
3140 }
3141
3142 /* Get information on the volume where NAME is held; set path pointer to
3143 start of pathname in NAME (past UNC header\volume header if present),
3144 if pPath is non-NULL.
3145
3146 Note: if NAME includes symlinks, the information is for the volume
3147 of the symlink, not of its target. That's because, even though
3148 GetVolumeInformation returns information about the symlink target
3149 of its argument, we only pass the root directory to
3150 GetVolumeInformation, not the full NAME. */
3151 static int
3152 get_volume_info (const char * name, const char ** pPath)
3153 {
3154 char temp[MAX_UTF8_PATH];
3155 char *rootname = NULL; /* default to current volume */
3156 volume_info_data * info;
3157 int root_len = parse_root (name, pPath);
3158
3159 if (name == NULL)
3160 return FALSE;
3161
3162 /* Copy the root name of the volume, if given. */
3163 if (root_len)
3164 {
3165 strncpy (temp, name, root_len);
3166 temp[root_len] = '\0';
3167 unixtodos_filename (temp);
3168 rootname = temp;
3169 }
3170
3171 info = GetCachedVolumeInformation (rootname);
3172 if (info != NULL)
3173 {
3174 /* Set global referenced by other functions. */
3175 volume_info = *info;
3176 return TRUE;
3177 }
3178 return FALSE;
3179 }
3180
3181 /* Determine if volume is FAT format (ie. only supports short 8.3
3182 names); also set path pointer to start of pathname in name, if
3183 pPath is non-NULL. */
3184 static int
3185 is_fat_volume (const char * name, const char ** pPath)
3186 {
3187 if (get_volume_info (name, pPath))
3188 return (volume_info.maxcomp == 12);
3189 return FALSE;
3190 }
3191
3192 /* Convert all slashes in a filename to backslashes, and map filename
3193 to a valid 8.3 name if necessary. The result is a pointer to a
3194 static buffer, so CAVEAT EMPTOR! */
3195 const char *
3196 map_w32_filename (const char * name, const char ** pPath)
3197 {
3198 static char shortname[MAX_UTF8_PATH];
3199 char * str = shortname;
3200 char c;
3201 char * path;
3202 const char * save_name = name;
3203
3204 if (strlen (name) >= sizeof (shortname))
3205 {
3206 /* Return a filename which will cause callers to fail. */
3207 strcpy (shortname, "?");
3208 return shortname;
3209 }
3210
3211 if (is_fat_volume (name, (const char **)&path)) /* truncate to 8.3 */
3212 {
3213 register int left = 8; /* maximum number of chars in part */
3214 register int extn = 0; /* extension added? */
3215 register int dots = 2; /* maximum number of dots allowed */
3216
3217 while (name < path)
3218 *str++ = *name++; /* skip past UNC header */
3219
3220 while ((c = *name++))
3221 {
3222 switch ( c )
3223 {
3224 case ':':
3225 case '\\':
3226 case '/':
3227 *str++ = (c == ':' ? ':' : '\\');
3228 extn = 0; /* reset extension flags */
3229 dots = 2; /* max 2 dots */
3230 left = 8; /* max length 8 for main part */
3231 break;
3232 case '.':
3233 if ( dots )
3234 {
3235 /* Convert path components of the form .xxx to _xxx,
3236 but leave . and .. as they are. This allows .emacs
3237 to be read as _emacs, for example. */
3238
3239 if (! *name ||
3240 *name == '.' ||
3241 IS_DIRECTORY_SEP (*name))
3242 {
3243 *str++ = '.';
3244 dots--;
3245 }
3246 else
3247 {
3248 *str++ = '_';
3249 left--;
3250 dots = 0;
3251 }
3252 }
3253 else if ( !extn )
3254 {
3255 *str++ = '.';
3256 extn = 1; /* we've got an extension */
3257 left = 3; /* 3 chars in extension */
3258 }
3259 else
3260 {
3261 /* any embedded dots after the first are converted to _ */
3262 *str++ = '_';
3263 }
3264 break;
3265 case '~':
3266 case '#': /* don't lose these, they're important */
3267 if ( ! left )
3268 str[-1] = c; /* replace last character of part */
3269 /* FALLTHRU */
3270 default:
3271 if ( left && 'A' <= c && c <= 'Z' )
3272 {
3273 *str++ = tolower (c); /* map to lower case (looks nicer) */
3274 left--;
3275 dots = 0; /* started a path component */
3276 }
3277 break;
3278 }
3279 }
3280 *str = '\0';
3281 }
3282 else
3283 {
3284 strcpy (shortname, name);
3285 unixtodos_filename (shortname);
3286 }
3287
3288 if (pPath)
3289 *pPath = shortname + (path - save_name);
3290
3291 return shortname;
3292 }
3293
3294 static int
3295 is_exec (const char * name)
3296 {
3297 char * p = strrchr (name, '.');
3298 return
3299 (p != NULL
3300 && (xstrcasecmp (p, ".exe") == 0 ||
3301 xstrcasecmp (p, ".com") == 0 ||
3302 xstrcasecmp (p, ".bat") == 0 ||
3303 xstrcasecmp (p, ".cmd") == 0));
3304 }
3305
3306 /* Emulate the Unix directory procedures opendir, closedir, and
3307 readdir. We rename them to sys_* names because some versions of
3308 MinGW startup code call opendir and readdir to glob wildcards, and
3309 the code that calls them doesn't grok UTF-8 encoded file names we
3310 produce in dirent->d_name[]. */
3311
3312 struct dirent dir_static; /* simulated directory contents */
3313 static HANDLE dir_find_handle = INVALID_HANDLE_VALUE;
3314 static int dir_is_fat;
3315 static char dir_pathname[MAX_UTF8_PATH];
3316 static WIN32_FIND_DATAW dir_find_data_w;
3317 static WIN32_FIND_DATAA dir_find_data_a;
3318 #define DIR_FIND_DATA_W 1
3319 #define DIR_FIND_DATA_A 2
3320 static int last_dir_find_data = -1;
3321
3322 /* Support shares on a network resource as subdirectories of a read-only
3323 root directory. */
3324 static HANDLE wnet_enum_handle = INVALID_HANDLE_VALUE;
3325 static HANDLE open_unc_volume (const char *);
3326 static void *read_unc_volume (HANDLE, wchar_t *, char *, int);
3327 static void close_unc_volume (HANDLE);
3328
3329 DIR *
3330 sys_opendir (const char *filename)
3331 {
3332 DIR *dirp;
3333
3334 /* Opening is done by FindFirstFile. However, a read is inherent to
3335 this operation, so we defer the open until read time. */
3336
3337 if (dir_find_handle != INVALID_HANDLE_VALUE)
3338 return NULL;
3339 if (wnet_enum_handle != INVALID_HANDLE_VALUE)
3340 return NULL;
3341
3342 /* Note: We don't support traversal of UNC volumes via symlinks.
3343 Doing so would mean punishing 99.99% of use cases by resolving
3344 all the possible symlinks in FILENAME, recursively. */
3345 if (is_unc_volume (filename))
3346 {
3347 wnet_enum_handle = open_unc_volume (filename);
3348 if (wnet_enum_handle == INVALID_HANDLE_VALUE)
3349 return NULL;
3350 }
3351
3352 if (!(dirp = (DIR *) malloc (sizeof (DIR))))
3353 return NULL;
3354
3355 dirp->dd_fd = 0;
3356 dirp->dd_loc = 0;
3357 dirp->dd_size = 0;
3358
3359 strncpy (dir_pathname, map_w32_filename (filename, NULL), MAX_UTF8_PATH - 1);
3360 dir_pathname[MAX_UTF8_PATH - 1] = '\0';
3361 /* Note: We don't support symlinks to file names on FAT volumes.
3362 Doing so would mean punishing 99.99% of use cases by resolving
3363 all the possible symlinks in FILENAME, recursively. */
3364 dir_is_fat = is_fat_volume (filename, NULL);
3365
3366 return dirp;
3367 }
3368
3369 void
3370 sys_closedir (DIR *dirp)
3371 {
3372 /* If we have a find-handle open, close it. */
3373 if (dir_find_handle != INVALID_HANDLE_VALUE)
3374 {
3375 FindClose (dir_find_handle);
3376 dir_find_handle = INVALID_HANDLE_VALUE;
3377 }
3378 else if (wnet_enum_handle != INVALID_HANDLE_VALUE)
3379 {
3380 close_unc_volume (wnet_enum_handle);
3381 wnet_enum_handle = INVALID_HANDLE_VALUE;
3382 }
3383 xfree ((char *) dirp);
3384 }
3385
3386 struct dirent *
3387 sys_readdir (DIR *dirp)
3388 {
3389 int downcase = !NILP (Vw32_downcase_file_names);
3390
3391 if (wnet_enum_handle != INVALID_HANDLE_VALUE)
3392 {
3393 if (!read_unc_volume (wnet_enum_handle,
3394 dir_find_data_w.cFileName,
3395 dir_find_data_a.cFileName,
3396 MAX_PATH))
3397 return NULL;
3398 }
3399 /* If we aren't dir_finding, do a find-first, otherwise do a find-next. */
3400 else if (dir_find_handle == INVALID_HANDLE_VALUE)
3401 {
3402 char filename[MAX_UTF8_PATH + 2];
3403 int ln;
3404
3405 strcpy (filename, dir_pathname);
3406 ln = strlen (filename);
3407 if (!IS_DIRECTORY_SEP (filename[ln - 1]))
3408 filename[ln++] = '\\';
3409 strcpy (filename + ln, "*");
3410
3411 /* Note: No need to resolve symlinks in FILENAME, because
3412 FindFirst opens the directory that is the target of a
3413 symlink. */
3414 if (w32_unicode_filenames)
3415 {
3416 wchar_t fnw[MAX_PATH];
3417
3418 filename_to_utf16 (filename, fnw);
3419 dir_find_handle = FindFirstFileW (fnw, &dir_find_data_w);
3420 }
3421 else
3422 {
3423 char fna[MAX_PATH];
3424
3425 filename_to_ansi (filename, fna);
3426 /* If FILENAME is not representable by the current ANSI
3427 codepage, we don't want FindFirstFileA to interpret the
3428 '?' characters as a wildcard. */
3429 if (_mbspbrk (fna, "?"))
3430 dir_find_handle = INVALID_HANDLE_VALUE;
3431 else
3432 dir_find_handle = FindFirstFileA (fna, &dir_find_data_a);
3433 }
3434
3435 if (dir_find_handle == INVALID_HANDLE_VALUE)
3436 {
3437 /* Any changes in the value of errno here should be in sync
3438 with what directory_files_internal does when it calls
3439 readdir. */
3440 switch (GetLastError ())
3441 {
3442 /* Windows uses this value when FindFirstFile finds no
3443 files that match the wildcard. This is not supposed
3444 to happen, since our wildcard is "*", but just in
3445 case, if there's some weird empty directory with not
3446 even "." and ".." entries... */
3447 case ERROR_FILE_NOT_FOUND:
3448 errno = 0;
3449 /* FALLTHRU */
3450 default:
3451 break;
3452 case ERROR_ACCESS_DENIED:
3453 case ERROR_NETWORK_ACCESS_DENIED:
3454 errno = EACCES;
3455 break;
3456 case ERROR_PATH_NOT_FOUND:
3457 case ERROR_INVALID_DRIVE:
3458 case ERROR_BAD_NETPATH:
3459 case ERROR_BAD_NET_NAME:
3460 errno = ENOENT;
3461 break;
3462 }
3463 return NULL;
3464 }
3465 }
3466 else if (w32_unicode_filenames)
3467 {
3468 if (!FindNextFileW (dir_find_handle, &dir_find_data_w))
3469 {
3470 errno = 0;
3471 return NULL;
3472 }
3473 }
3474 else
3475 {
3476 if (!FindNextFileA (dir_find_handle, &dir_find_data_a))
3477 {
3478 errno = 0;
3479 return NULL;
3480 }
3481 }
3482
3483 /* Emacs never uses this value, so don't bother making it match
3484 value returned by stat(). */
3485 dir_static.d_ino = 1;
3486
3487 if (w32_unicode_filenames)
3488 {
3489 if (downcase || dir_is_fat)
3490 {
3491 wchar_t tem[MAX_PATH];
3492
3493 wcscpy (tem, dir_find_data_w.cFileName);
3494 CharLowerW (tem);
3495 filename_from_utf16 (tem, dir_static.d_name);
3496 }
3497 else
3498 filename_from_utf16 (dir_find_data_w.cFileName, dir_static.d_name);
3499 last_dir_find_data = DIR_FIND_DATA_W;
3500 }
3501 else
3502 {
3503 char tem[MAX_PATH];
3504
3505 /* If the file name in cFileName[] includes `?' characters, it
3506 means the original file name used characters that cannot be
3507 represented by the current ANSI codepage. To avoid total
3508 lossage, retrieve the short 8+3 alias of the long file
3509 name. */
3510 if (_mbspbrk (dir_find_data_a.cFileName, "?"))
3511 {
3512 strcpy (tem, dir_find_data_a.cAlternateFileName);
3513 /* 8+3 aliases are returned in all caps, which could break
3514 various alists that look at filenames' extensions. */
3515 downcase = 1;
3516 }
3517 else if (downcase || dir_is_fat)
3518 strcpy (tem, dir_find_data_a.cFileName);
3519 else
3520 filename_from_ansi (dir_find_data_a.cFileName, dir_static.d_name);
3521 if (downcase || dir_is_fat)
3522 {
3523 _mbslwr (tem);
3524 filename_from_ansi (tem, dir_static.d_name);
3525 }
3526 last_dir_find_data = DIR_FIND_DATA_A;
3527 }
3528
3529 dir_static.d_namlen = strlen (dir_static.d_name);
3530 dir_static.d_reclen = sizeof (struct dirent) - MAX_UTF8_PATH + 3 +
3531 dir_static.d_namlen - dir_static.d_namlen % 4;
3532
3533 return &dir_static;
3534 }
3535
3536 static HANDLE
3537 open_unc_volume (const char *path)
3538 {
3539 const char *fn = map_w32_filename (path, NULL);
3540 DWORD result;
3541 HANDLE henum;
3542
3543 if (w32_unicode_filenames)
3544 {
3545 NETRESOURCEW nrw;
3546 wchar_t fnw[MAX_PATH];
3547
3548 nrw.dwScope = RESOURCE_GLOBALNET;
3549 nrw.dwType = RESOURCETYPE_DISK;
3550 nrw.dwDisplayType = RESOURCEDISPLAYTYPE_SERVER;
3551 nrw.dwUsage = RESOURCEUSAGE_CONTAINER;
3552 nrw.lpLocalName = NULL;
3553 filename_to_utf16 (fn, fnw);
3554 nrw.lpRemoteName = fnw;
3555 nrw.lpComment = NULL;
3556 nrw.lpProvider = NULL;
3557
3558 result = WNetOpenEnumW (RESOURCE_GLOBALNET, RESOURCETYPE_DISK,
3559 RESOURCEUSAGE_CONNECTABLE, &nrw, &henum);
3560 }
3561 else
3562 {
3563 NETRESOURCEA nra;
3564 char fna[MAX_PATH];
3565
3566 nra.dwScope = RESOURCE_GLOBALNET;
3567 nra.dwType = RESOURCETYPE_DISK;
3568 nra.dwDisplayType = RESOURCEDISPLAYTYPE_SERVER;
3569 nra.dwUsage = RESOURCEUSAGE_CONTAINER;
3570 nra.lpLocalName = NULL;
3571 filename_to_ansi (fn, fna);
3572 nra.lpRemoteName = fna;
3573 nra.lpComment = NULL;
3574 nra.lpProvider = NULL;
3575
3576 result = WNetOpenEnumA (RESOURCE_GLOBALNET, RESOURCETYPE_DISK,
3577 RESOURCEUSAGE_CONNECTABLE, &nra, &henum);
3578 }
3579 if (result == NO_ERROR)
3580 return henum;
3581 else
3582 {
3583 /* Make sure directory_files_internal reports a sensible error. */
3584 errno = ENOENT;
3585 return INVALID_HANDLE_VALUE;
3586 }
3587 }
3588
3589 static void *
3590 read_unc_volume (HANDLE henum, wchar_t *fname_w, char *fname_a, int size)
3591 {
3592 DWORD count;
3593 int result;
3594 char *buffer;
3595 DWORD bufsize = 512;
3596 void *retval;
3597
3598 count = 1;
3599 if (w32_unicode_filenames)
3600 {
3601 wchar_t *ptrw;
3602
3603 bufsize *= 2;
3604 buffer = alloca (bufsize);
3605 result = WNetEnumResourceW (henum, &count, buffer, &bufsize);
3606 if (result != NO_ERROR)
3607 return NULL;
3608 /* WNetEnumResource returns \\resource\share...skip forward to "share". */
3609 ptrw = ((LPNETRESOURCEW) buffer)->lpRemoteName;
3610 ptrw += 2;
3611 while (*ptrw && *ptrw != L'/' && *ptrw != L'\\') ptrw++;
3612 ptrw++;
3613 wcsncpy (fname_w, ptrw, size);
3614 retval = fname_w;
3615 }
3616 else
3617 {
3618 int dbcs_p = max_filename_mbslen () > 1;
3619 char *ptra;
3620
3621 buffer = alloca (bufsize);
3622 result = WNetEnumResourceA (henum, &count, buffer, &bufsize);
3623 if (result != NO_ERROR)
3624 return NULL;
3625 ptra = ((LPNETRESOURCEA) buffer)->lpRemoteName;
3626 ptra += 2;
3627 if (!dbcs_p)
3628 while (*ptra && !IS_DIRECTORY_SEP (*ptra)) ptra++;
3629 else
3630 {
3631 while (*ptra && !IS_DIRECTORY_SEP (*ptra))
3632 ptra = CharNextExA (file_name_codepage, ptra, 0);
3633 }
3634 ptra++;
3635 strncpy (fname_a, ptra, size);
3636 retval = fname_a;
3637 }
3638
3639 return retval;
3640 }
3641
3642 static void
3643 close_unc_volume (HANDLE henum)
3644 {
3645 if (henum != INVALID_HANDLE_VALUE)
3646 WNetCloseEnum (henum);
3647 }
3648
3649 static DWORD
3650 unc_volume_file_attributes (const char *path)
3651 {
3652 HANDLE henum;
3653 DWORD attrs;
3654
3655 henum = open_unc_volume (path);
3656 if (henum == INVALID_HANDLE_VALUE)
3657 return -1;
3658
3659 attrs = FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_DIRECTORY;
3660
3661 close_unc_volume (henum);
3662
3663 return attrs;
3664 }
3665
3666 /* Ensure a network connection is authenticated. */
3667 static void
3668 logon_network_drive (const char *path)
3669 {
3670 char share[MAX_UTF8_PATH];
3671 int n_slashes;
3672 char drive[4];
3673 UINT drvtype;
3674 char *p;
3675 DWORD val;
3676
3677 if (IS_DIRECTORY_SEP (path[0]) && IS_DIRECTORY_SEP (path[1]))
3678 drvtype = DRIVE_REMOTE;
3679 else if (path[0] == '\0' || path[1] != ':')
3680 drvtype = GetDriveType (NULL);
3681 else
3682 {
3683 drive[0] = path[0];
3684 drive[1] = ':';
3685 drive[2] = '\\';
3686 drive[3] = '\0';
3687 drvtype = GetDriveType (drive);
3688 }
3689
3690 /* Only logon to networked drives. */
3691 if (drvtype != DRIVE_REMOTE)
3692 return;
3693
3694 n_slashes = 2;
3695 strncpy (share, path, MAX_UTF8_PATH);
3696 /* Truncate to just server and share name. */
3697 for (p = share + 2; *p && p < share + MAX_UTF8_PATH; p++)
3698 {
3699 if (IS_DIRECTORY_SEP (*p) && ++n_slashes > 3)
3700 {
3701 *p = '\0';
3702 break;
3703 }
3704 }
3705
3706 if (w32_unicode_filenames)
3707 {
3708 NETRESOURCEW resourcew;
3709 wchar_t share_w[MAX_PATH];
3710
3711 resourcew.dwScope = RESOURCE_GLOBALNET;
3712 resourcew.dwType = RESOURCETYPE_DISK;
3713 resourcew.dwDisplayType = RESOURCEDISPLAYTYPE_SHARE;
3714 resourcew.dwUsage = RESOURCEUSAGE_CONTAINER;
3715 resourcew.lpLocalName = NULL;
3716 filename_to_utf16 (share, share_w);
3717 resourcew.lpRemoteName = share_w;
3718 resourcew.lpProvider = NULL;
3719
3720 val = WNetAddConnection2W (&resourcew, NULL, NULL, CONNECT_INTERACTIVE);
3721 }
3722 else
3723 {
3724 NETRESOURCEA resourcea;
3725 char share_a[MAX_PATH];
3726
3727 resourcea.dwScope = RESOURCE_GLOBALNET;
3728 resourcea.dwType = RESOURCETYPE_DISK;
3729 resourcea.dwDisplayType = RESOURCEDISPLAYTYPE_SHARE;
3730 resourcea.dwUsage = RESOURCEUSAGE_CONTAINER;
3731 resourcea.lpLocalName = NULL;
3732 filename_to_ansi (share, share_a);
3733 resourcea.lpRemoteName = share_a;
3734 resourcea.lpProvider = NULL;
3735
3736 val = WNetAddConnection2A (&resourcea, NULL, NULL, CONNECT_INTERACTIVE);
3737 }
3738
3739 switch (val)
3740 {
3741 case NO_ERROR:
3742 case ERROR_ALREADY_ASSIGNED:
3743 break;
3744 case ERROR_ACCESS_DENIED:
3745 case ERROR_LOGON_FAILURE:
3746 errno = EACCES;
3747 break;
3748 case ERROR_BUSY:
3749 errno = EAGAIN;
3750 break;
3751 case ERROR_BAD_NET_NAME:
3752 case ERROR_NO_NET_OR_BAD_PATH:
3753 case ERROR_NO_NETWORK:
3754 case ERROR_CANCELLED:
3755 default:
3756 errno = ENOENT;
3757 break;
3758 }
3759 }
3760
3761 /* Emulate faccessat(2). */
3762 int
3763 faccessat (int dirfd, const char * path, int mode, int flags)
3764 {
3765 DWORD attributes;
3766
3767 if (dirfd != AT_FDCWD
3768 && !(IS_DIRECTORY_SEP (path[0])
3769 || IS_DEVICE_SEP (path[1])))
3770 {
3771 errno = EBADF;
3772 return -1;
3773 }
3774
3775 /* MSVCRT implementation of 'access' doesn't recognize D_OK, and its
3776 newer versions blow up when passed D_OK. */
3777 path = map_w32_filename (path, NULL);
3778 /* If the last element of PATH is a symlink, we need to resolve it
3779 to get the attributes of its target file. Note: any symlinks in
3780 PATH elements other than the last one are transparently resolved
3781 by GetFileAttributes below. */
3782 if ((volume_info.flags & FILE_SUPPORTS_REPARSE_POINTS) != 0
3783 && (flags & AT_SYMLINK_NOFOLLOW) == 0)
3784 path = chase_symlinks (path);
3785
3786 if (w32_unicode_filenames)
3787 {
3788 wchar_t path_w[MAX_PATH];
3789
3790 filename_to_utf16 (path, path_w);
3791 attributes = GetFileAttributesW (path_w);
3792 }
3793 else
3794 {
3795 char path_a[MAX_PATH];
3796
3797 filename_to_ansi (path, path_a);
3798 attributes = GetFileAttributesA (path_a);
3799 }
3800
3801 if (attributes == -1)
3802 {
3803 DWORD w32err = GetLastError ();
3804
3805 switch (w32err)
3806 {
3807 case ERROR_INVALID_NAME:
3808 case ERROR_BAD_PATHNAME:
3809 if (is_unc_volume (path))
3810 {
3811 attributes = unc_volume_file_attributes (path);
3812 if (attributes == -1)
3813 {
3814 errno = EACCES;
3815 return -1;
3816 }
3817 break;
3818 }
3819 /* FALLTHROUGH */
3820 case ERROR_FILE_NOT_FOUND:
3821 case ERROR_BAD_NETPATH:
3822 errno = ENOENT;
3823 break;
3824 default:
3825 errno = EACCES;
3826 break;
3827 }
3828 return -1;
3829 }
3830 if ((mode & X_OK) != 0
3831 && !(is_exec (path) || (attributes & FILE_ATTRIBUTE_DIRECTORY) != 0))
3832 {
3833 errno = EACCES;
3834 return -1;
3835 }
3836 if ((mode & W_OK) != 0 && (attributes & FILE_ATTRIBUTE_READONLY) != 0)
3837 {
3838 errno = EACCES;
3839 return -1;
3840 }
3841 if ((mode & D_OK) != 0 && (attributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
3842 {
3843 errno = EACCES;
3844 return -1;
3845 }
3846 return 0;
3847 }
3848
3849 /* A version of 'access' to be used locally with file names in
3850 locale-specific encoding. Does not resolve symlinks and does not
3851 support file names on FAT12 and FAT16 volumes, but that's OK, since
3852 we only invoke this function for files inside the Emacs source or
3853 installation tree, on directories (so any symlinks should have the
3854 directory bit set), and on short file names such as "C:/.emacs". */
3855 static int
3856 sys_access (const char *fname, int mode)
3857 {
3858 char fname_copy[MAX_PATH], *p;
3859 DWORD attributes;
3860
3861 strcpy (fname_copy, fname);
3862 /* Do the equivalent of unixtodos_filename. */
3863 for (p = fname_copy; *p; p = CharNext (p))
3864 if (*p == '/')
3865 *p = '\\';
3866
3867 if ((attributes = GetFileAttributesA (fname_copy)) == -1)
3868 {
3869 DWORD w32err = GetLastError ();
3870
3871 switch (w32err)
3872 {
3873 case ERROR_INVALID_NAME:
3874 case ERROR_BAD_PATHNAME:
3875 case ERROR_FILE_NOT_FOUND:
3876 case ERROR_BAD_NETPATH:
3877 errno = ENOENT;
3878 break;
3879 default:
3880 errno = EACCES;
3881 break;
3882 }
3883 return -1;
3884 }
3885 if ((mode & X_OK) != 0
3886 && !(is_exec (fname_copy)
3887 || (attributes & FILE_ATTRIBUTE_DIRECTORY) != 0))
3888 {
3889 errno = EACCES;
3890 return -1;
3891 }
3892 if ((mode & W_OK) != 0 && (attributes & FILE_ATTRIBUTE_READONLY) != 0)
3893 {
3894 errno = EACCES;
3895 return -1;
3896 }
3897 if ((mode & D_OK) != 0 && (attributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
3898 {
3899 errno = EACCES;
3900 return -1;
3901 }
3902 return 0;
3903 }
3904
3905 /* Shadow some MSVC runtime functions to map requests for long filenames
3906 to reasonable short names if necessary. This was originally added to
3907 permit running Emacs on NT 3.1 on a FAT partition, which doesn't support
3908 long file names. */
3909
3910 int
3911 sys_chdir (const char * path)
3912 {
3913 path = map_w32_filename (path, NULL);
3914 if (w32_unicode_filenames)
3915 {
3916 wchar_t newdir_w[MAX_PATH];
3917
3918 if (filename_to_utf16 (path, newdir_w) == 0)
3919 return _wchdir (newdir_w);
3920 return -1;
3921 }
3922 else
3923 {
3924 char newdir_a[MAX_PATH];
3925
3926 if (filename_to_ansi (path, newdir_a) == 0)
3927 return _chdir (newdir_a);
3928 return -1;
3929 }
3930 }
3931
3932 int
3933 sys_chmod (const char * path, int mode)
3934 {
3935 path = chase_symlinks (map_w32_filename (path, NULL));
3936 if (w32_unicode_filenames)
3937 {
3938 wchar_t path_w[MAX_PATH];
3939
3940 filename_to_utf16 (path, path_w);
3941 return _wchmod (path_w, mode);
3942 }
3943 else
3944 {
3945 char path_a[MAX_PATH];
3946
3947 filename_to_ansi (path, path_a);
3948 return _chmod (path_a, mode);
3949 }
3950 }
3951
3952 int
3953 sys_creat (const char * path, int mode)
3954 {
3955 path = map_w32_filename (path, NULL);
3956 if (w32_unicode_filenames)
3957 {
3958 wchar_t path_w[MAX_PATH];
3959
3960 filename_to_utf16 (path, path_w);
3961 return _wcreat (path_w, mode);
3962 }
3963 else
3964 {
3965 char path_a[MAX_PATH];
3966
3967 filename_to_ansi (path, path_a);
3968 return _creat (path_a, mode);
3969 }
3970 }
3971
3972 FILE *
3973 sys_fopen (const char * path, const char * mode)
3974 {
3975 int fd;
3976 int oflag;
3977 const char * mode_save = mode;
3978
3979 /* Force all file handles to be non-inheritable. This is necessary to
3980 ensure child processes don't unwittingly inherit handles that might
3981 prevent future file access. */
3982
3983 if (mode[0] == 'r')
3984 oflag = O_RDONLY;
3985 else if (mode[0] == 'w' || mode[0] == 'a')
3986 oflag = O_WRONLY | O_CREAT | O_TRUNC;
3987 else
3988 return NULL;
3989
3990 /* Only do simplistic option parsing. */
3991 while (*++mode)
3992 if (mode[0] == '+')
3993 {
3994 oflag &= ~(O_RDONLY | O_WRONLY);
3995 oflag |= O_RDWR;
3996 }
3997 else if (mode[0] == 'b')
3998 {
3999 oflag &= ~O_TEXT;
4000 oflag |= O_BINARY;
4001 }
4002 else if (mode[0] == 't')
4003 {
4004 oflag &= ~O_BINARY;
4005 oflag |= O_TEXT;
4006 }
4007 else break;
4008
4009 path = map_w32_filename (path, NULL);
4010 if (w32_unicode_filenames)
4011 {
4012 wchar_t path_w[MAX_PATH];
4013
4014 filename_to_utf16 (path, path_w);
4015 fd = _wopen (path_w, oflag | _O_NOINHERIT, 0644);
4016 }
4017 else
4018 {
4019 char path_a[MAX_PATH];
4020
4021 filename_to_ansi (path, path_a);
4022 fd = _open (path_a, oflag | _O_NOINHERIT, 0644);
4023 }
4024 if (fd < 0)
4025 return NULL;
4026
4027 return _fdopen (fd, mode_save);
4028 }
4029
4030 /* This only works on NTFS volumes, but is useful to have. */
4031 int
4032 sys_link (const char * old, const char * new)
4033 {
4034 HANDLE fileh;
4035 int result = -1;
4036 char oldname[MAX_UTF8_PATH], newname[MAX_UTF8_PATH];
4037 wchar_t oldname_w[MAX_PATH];
4038 char oldname_a[MAX_PATH];
4039
4040 if (old == NULL || new == NULL)
4041 {
4042 errno = ENOENT;
4043 return -1;
4044 }
4045
4046 strcpy (oldname, map_w32_filename (old, NULL));
4047 strcpy (newname, map_w32_filename (new, NULL));
4048
4049 if (w32_unicode_filenames)
4050 {
4051 filename_to_utf16 (oldname, oldname_w);
4052 fileh = CreateFileW (oldname_w, 0, 0, NULL, OPEN_EXISTING,
4053 FILE_FLAG_BACKUP_SEMANTICS, NULL);
4054 }
4055 else
4056 {
4057 filename_to_ansi (oldname, oldname_a);
4058 fileh = CreateFileA (oldname_a, 0, 0, NULL, OPEN_EXISTING,
4059 FILE_FLAG_BACKUP_SEMANTICS, NULL);
4060 }
4061 if (fileh != INVALID_HANDLE_VALUE)
4062 {
4063 int wlen;
4064
4065 /* Confusingly, the "alternate" stream name field does not apply
4066 when restoring a hard link, and instead contains the actual
4067 stream data for the link (ie. the name of the link to create).
4068 The WIN32_STREAM_ID structure before the cStreamName field is
4069 the stream header, which is then immediately followed by the
4070 stream data. */
4071
4072 struct {
4073 WIN32_STREAM_ID wid;
4074 WCHAR wbuffer[MAX_PATH]; /* extra space for link name */
4075 } data;
4076
4077 /* We used to pass MB_PRECOMPOSED as the 2nd arg here, but MSDN
4078 indicates that flag is unsupported for CP_UTF8, and OTOH says
4079 it is the default anyway. */
4080 wlen = pMultiByteToWideChar (CP_UTF8, 0, newname, -1,
4081 data.wid.cStreamName, MAX_PATH);
4082 if (wlen > 0)
4083 {
4084 LPVOID context = NULL;
4085 DWORD wbytes = 0;
4086
4087 data.wid.dwStreamId = BACKUP_LINK;
4088 data.wid.dwStreamAttributes = 0;
4089 data.wid.Size.LowPart = wlen * sizeof (WCHAR);
4090 data.wid.Size.HighPart = 0;
4091 data.wid.dwStreamNameSize = 0;
4092
4093 if (BackupWrite (fileh, (LPBYTE)&data,
4094 offsetof (WIN32_STREAM_ID, cStreamName)
4095 + data.wid.Size.LowPart,
4096 &wbytes, FALSE, FALSE, &context)
4097 && BackupWrite (fileh, NULL, 0, &wbytes, TRUE, FALSE, &context))
4098 {
4099 /* succeeded */
4100 result = 0;
4101 }
4102 else
4103 {
4104 DWORD err = GetLastError ();
4105 DWORD attributes;
4106
4107 switch (err)
4108 {
4109 case ERROR_ACCESS_DENIED:
4110 /* This is what happens when OLDNAME is a directory,
4111 since Windows doesn't support hard links to
4112 directories. Posix says to set errno to EPERM in
4113 that case. */
4114 if (w32_unicode_filenames)
4115 attributes = GetFileAttributesW (oldname_w);
4116 else
4117 attributes = GetFileAttributesA (oldname_a);
4118 if (attributes != -1
4119 && (attributes & FILE_ATTRIBUTE_DIRECTORY) != 0)
4120 errno = EPERM;
4121 else if (attributes == -1
4122 && is_unc_volume (oldname)
4123 && unc_volume_file_attributes (oldname) != -1)
4124 errno = EPERM;
4125 else
4126 errno = EACCES;
4127 break;
4128 case ERROR_TOO_MANY_LINKS:
4129 errno = EMLINK;
4130 break;
4131 case ERROR_NOT_SAME_DEVICE:
4132 errno = EXDEV;
4133 break;
4134 default:
4135 errno = EINVAL;
4136 break;
4137 }
4138 }
4139 }
4140
4141 CloseHandle (fileh);
4142 }
4143 else
4144 errno = ENOENT;
4145
4146 return result;
4147 }
4148
4149 int
4150 sys_mkdir (const char * path)
4151 {
4152 path = map_w32_filename (path, NULL);
4153
4154 if (w32_unicode_filenames)
4155 {
4156 wchar_t path_w[MAX_PATH];
4157
4158 filename_to_utf16 (path, path_w);
4159 return _wmkdir (path_w);
4160 }
4161 else
4162 {
4163 char path_a[MAX_PATH];
4164
4165 filename_to_ansi (path, path_a);
4166 return _mkdir (path_a);
4167 }
4168 }
4169
4170 int
4171 sys_open (const char * path, int oflag, int mode)
4172 {
4173 const char* mpath = map_w32_filename (path, NULL);
4174 int res = -1;
4175
4176 if (w32_unicode_filenames)
4177 {
4178 wchar_t mpath_w[MAX_PATH];
4179
4180 filename_to_utf16 (mpath, mpath_w);
4181 /* If possible, try to open file without _O_CREAT, to be able to
4182 write to existing hidden and system files. Force all file
4183 handles to be non-inheritable. */
4184 if ((oflag & (_O_CREAT | _O_EXCL)) != (_O_CREAT | _O_EXCL))
4185 res = _wopen (mpath_w, (oflag & ~_O_CREAT) | _O_NOINHERIT, mode);
4186 if (res < 0)
4187 res = _wopen (mpath_w, oflag | _O_NOINHERIT, mode);
4188 }
4189 else
4190 {
4191 char mpath_a[MAX_PATH];
4192
4193 filename_to_ansi (mpath, mpath_a);
4194 if ((oflag & (_O_CREAT | _O_EXCL)) != (_O_CREAT | _O_EXCL))
4195 res = _open (mpath_a, (oflag & ~_O_CREAT) | _O_NOINHERIT, mode);
4196 if (res < 0)
4197 res = _open (mpath_a, oflag | _O_NOINHERIT, mode);
4198 }
4199
4200 return res;
4201 }
4202
4203 /* Implementation of mkostemp for MS-Windows, to avoid race conditions
4204 when using mktemp.
4205
4206 Standard algorithm for generating a temporary file name seems to be
4207 use pid or tid with a letter on the front (in place of the 6 X's)
4208 and cycle through the letters to find a unique name. We extend
4209 that to allow any reasonable character as the first of the 6 X's,
4210 so that the number of simultaneously used temporary files will be
4211 greater. */
4212
4213 int
4214 mkostemp (char * template, int flags)
4215 {
4216 char * p;
4217 int i, fd = -1;
4218 unsigned uid = GetCurrentThreadId ();
4219 int save_errno = errno;
4220 static char first_char[] = "abcdefghijklmnopqrstuvwyz0123456789!%-_@#";
4221
4222 errno = EINVAL;
4223 if (template == NULL)
4224 return -1;
4225
4226 p = template + strlen (template);
4227 i = 5;
4228 /* replace up to the last 5 X's with uid in decimal */
4229 while (--p >= template && p[0] == 'X' && --i >= 0)
4230 {
4231 p[0] = '0' + uid % 10;
4232 uid /= 10;
4233 }
4234
4235 if (i < 0 && p[0] == 'X')
4236 {
4237 i = 0;
4238 do
4239 {
4240 p[0] = first_char[i];
4241 if ((fd = sys_open (template,
4242 flags | _O_CREAT | _O_EXCL | _O_RDWR,
4243 S_IRUSR | S_IWUSR)) >= 0
4244 || errno != EEXIST)
4245 {
4246 if (fd >= 0)
4247 errno = save_errno;
4248 return fd;
4249 }
4250 }
4251 while (++i < sizeof (first_char));
4252 }
4253
4254 /* Template is badly formed or else we can't generate a unique name. */
4255 return -1;
4256 }
4257
4258 int
4259 fchmod (int fd, mode_t mode)
4260 {
4261 return 0;
4262 }
4263
4264 int
4265 sys_rename_replace (const char *oldname, const char *newname, BOOL force)
4266 {
4267 BOOL result;
4268 char temp[MAX_UTF8_PATH], temp_a[MAX_PATH];;
4269 int newname_dev;
4270 int oldname_dev;
4271 bool have_temp_a = false;
4272
4273 /* MoveFile on Windows 95 doesn't correctly change the short file name
4274 alias in a number of circumstances (it is not easy to predict when
4275 just by looking at oldname and newname, unfortunately). In these
4276 cases, renaming through a temporary name avoids the problem.
4277
4278 A second problem on Windows 95 is that renaming through a temp name when
4279 newname is uppercase fails (the final long name ends up in
4280 lowercase, although the short alias might be uppercase) UNLESS the
4281 long temp name is not 8.3.
4282
4283 So, on Windows 95 we always rename through a temp name, and we make sure
4284 the temp name has a long extension to ensure correct renaming. */
4285
4286 strcpy (temp, map_w32_filename (oldname, NULL));
4287
4288 /* volume_info is set indirectly by map_w32_filename. */
4289 oldname_dev = volume_info.serialnum;
4290
4291 if (os_subtype == OS_9X)
4292 {
4293 char * o;
4294 char * p;
4295 int i = 0;
4296 char oldname_a[MAX_PATH];
4297
4298 oldname = map_w32_filename (oldname, NULL);
4299 filename_to_ansi (oldname, oldname_a);
4300 filename_to_ansi (temp, temp_a);
4301 if ((o = strrchr (oldname_a, '\\')))
4302 o++;
4303 else
4304 o = (char *) oldname_a;
4305
4306 if ((p = strrchr (temp_a, '\\')))
4307 p++;
4308 else
4309 p = temp_a;
4310
4311 do
4312 {
4313 /* Force temp name to require a manufactured 8.3 alias - this
4314 seems to make the second rename work properly. */
4315 sprintf (p, "_.%s.%u", o, i);
4316 i++;
4317 result = rename (oldname_a, temp_a);
4318 }
4319 /* This loop must surely terminate! */
4320 while (result < 0 && errno == EEXIST);
4321 if (result < 0)
4322 return -1;
4323 have_temp_a = true;
4324 }
4325
4326 /* If FORCE, emulate Unix behavior - newname is deleted if it already exists
4327 (at least if it is a file; don't do this for directories).
4328
4329 Since we mustn't do this if we are just changing the case of the
4330 file name (we would end up deleting the file we are trying to
4331 rename!), we let rename detect if the destination file already
4332 exists - that way we avoid the possible pitfalls of trying to
4333 determine ourselves whether two names really refer to the same
4334 file, which is not always possible in the general case. (Consider
4335 all the permutations of shared or subst'd drives, etc.) */
4336
4337 newname = map_w32_filename (newname, NULL);
4338
4339 /* volume_info is set indirectly by map_w32_filename. */
4340 newname_dev = volume_info.serialnum;
4341
4342 if (w32_unicode_filenames)
4343 {
4344 wchar_t temp_w[MAX_PATH], newname_w[MAX_PATH];
4345
4346 filename_to_utf16 (temp, temp_w);
4347 filename_to_utf16 (newname, newname_w);
4348 result = _wrename (temp_w, newname_w);
4349 if (result < 0 && force)
4350 {
4351 DWORD w32err = GetLastError ();
4352
4353 if (errno == EACCES
4354 && newname_dev != oldname_dev)
4355 {
4356 /* The implementation of `rename' on Windows does not return
4357 errno = EXDEV when you are moving a directory to a
4358 different storage device (ex. logical disk). It returns
4359 EACCES instead. So here we handle such situations and
4360 return EXDEV. */
4361 DWORD attributes;
4362
4363 if ((attributes = GetFileAttributesW (temp_w)) != -1
4364 && (attributes & FILE_ATTRIBUTE_DIRECTORY))
4365 errno = EXDEV;
4366 }
4367 else if (errno == EEXIST)
4368 {
4369 if (_wchmod (newname_w, 0666) != 0)
4370 return result;
4371 if (_wunlink (newname_w) != 0)
4372 return result;
4373 result = _wrename (temp_w, newname_w);
4374 }
4375 else if (w32err == ERROR_PRIVILEGE_NOT_HELD
4376 && is_symlink (temp))
4377 {
4378 /* This is Windows prohibiting the user from creating a
4379 symlink in another place, since that requires
4380 privileges. */
4381 errno = EPERM;
4382 }
4383 }
4384 }
4385 else
4386 {
4387 char newname_a[MAX_PATH];
4388
4389 if (!have_temp_a)
4390 filename_to_ansi (temp, temp_a);
4391 filename_to_ansi (newname, newname_a);
4392 result = rename (temp_a, newname_a);
4393 if (result < 0 && force)
4394 {
4395 DWORD w32err = GetLastError ();
4396
4397 if (errno == EACCES
4398 && newname_dev != oldname_dev)
4399 {
4400 DWORD attributes;
4401
4402 if ((attributes = GetFileAttributesA (temp_a)) != -1
4403 && (attributes & FILE_ATTRIBUTE_DIRECTORY))
4404 errno = EXDEV;
4405 }
4406 else if (errno == EEXIST)
4407 {
4408 if (_chmod (newname_a, 0666) != 0)
4409 return result;
4410 if (_unlink (newname_a) != 0)
4411 return result;
4412 result = rename (temp_a, newname_a);
4413 }
4414 else if (w32err == ERROR_PRIVILEGE_NOT_HELD
4415 && is_symlink (temp))
4416 errno = EPERM;
4417 }
4418 }
4419
4420 return result;
4421 }
4422
4423 int
4424 sys_rename (char const *old, char const *new)
4425 {
4426 return sys_rename_replace (old, new, TRUE);
4427 }
4428
4429 int
4430 sys_rmdir (const char * path)
4431 {
4432 path = map_w32_filename (path, NULL);
4433
4434 if (w32_unicode_filenames)
4435 {
4436 wchar_t path_w[MAX_PATH];
4437
4438 filename_to_utf16 (path, path_w);
4439 return _wrmdir (path_w);
4440 }
4441 else
4442 {
4443 char path_a[MAX_PATH];
4444
4445 filename_to_ansi (path, path_a);
4446 return _rmdir (path_a);
4447 }
4448 }
4449
4450 int
4451 sys_unlink (const char * path)
4452 {
4453 path = map_w32_filename (path, NULL);
4454
4455 if (w32_unicode_filenames)
4456 {
4457 wchar_t path_w[MAX_PATH];
4458
4459 filename_to_utf16 (path, path_w);
4460 /* On Unix, unlink works without write permission. */
4461 _wchmod (path_w, 0666);
4462 return _wunlink (path_w);
4463 }
4464 else
4465 {
4466 char path_a[MAX_PATH];
4467
4468 filename_to_ansi (path, path_a);
4469 _chmod (path_a, 0666);
4470 return _unlink (path_a);
4471 }
4472 }
4473
4474 static FILETIME utc_base_ft;
4475 static ULONGLONG utc_base; /* In 100ns units */
4476 static int init = 0;
4477
4478 #define FILETIME_TO_U64(result, ft) \
4479 do { \
4480 ULARGE_INTEGER uiTemp; \
4481 uiTemp.LowPart = (ft).dwLowDateTime; \
4482 uiTemp.HighPart = (ft).dwHighDateTime; \
4483 result = uiTemp.QuadPart; \
4484 } while (0)
4485
4486 static void
4487 initialize_utc_base (void)
4488 {
4489 /* Determine the delta between 1-Jan-1601 and 1-Jan-1970. */
4490 SYSTEMTIME st;
4491
4492 st.wYear = 1970;
4493 st.wMonth = 1;
4494 st.wDay = 1;
4495 st.wHour = 0;
4496 st.wMinute = 0;
4497 st.wSecond = 0;
4498 st.wMilliseconds = 0;
4499
4500 SystemTimeToFileTime (&st, &utc_base_ft);
4501 FILETIME_TO_U64 (utc_base, utc_base_ft);
4502 }
4503
4504 static time_t
4505 convert_time (FILETIME ft)
4506 {
4507 ULONGLONG tmp;
4508
4509 if (!init)
4510 {
4511 initialize_utc_base ();
4512 init = 1;
4513 }
4514
4515 if (CompareFileTime (&ft, &utc_base_ft) < 0)
4516 return 0;
4517
4518 FILETIME_TO_U64 (tmp, ft);
4519 return (time_t) ((tmp - utc_base) / 10000000L);
4520 }
4521
4522 static void
4523 convert_from_time_t (time_t time, FILETIME * pft)
4524 {
4525 ULARGE_INTEGER tmp;
4526
4527 if (!init)
4528 {
4529 initialize_utc_base ();
4530 init = 1;
4531 }
4532
4533 /* time in 100ns units since 1-Jan-1601 */
4534 tmp.QuadPart = (ULONGLONG) time * 10000000L + utc_base;
4535 pft->dwHighDateTime = tmp.HighPart;
4536 pft->dwLowDateTime = tmp.LowPart;
4537 }
4538
4539 static PSECURITY_DESCRIPTOR
4540 get_file_security_desc_by_handle (HANDLE h)
4541 {
4542 PSECURITY_DESCRIPTOR psd = NULL;
4543 DWORD err;
4544 SECURITY_INFORMATION si = OWNER_SECURITY_INFORMATION
4545 | GROUP_SECURITY_INFORMATION /* | DACL_SECURITY_INFORMATION */ ;
4546
4547 err = get_security_info (h, SE_FILE_OBJECT, si,
4548 NULL, NULL, NULL, NULL, &psd);
4549 if (err != ERROR_SUCCESS)
4550 return NULL;
4551
4552 return psd;
4553 }
4554
4555 static PSECURITY_DESCRIPTOR
4556 get_file_security_desc_by_name (const char *fname)
4557 {
4558 PSECURITY_DESCRIPTOR psd = NULL;
4559 DWORD sd_len, err;
4560 SECURITY_INFORMATION si = OWNER_SECURITY_INFORMATION
4561 | GROUP_SECURITY_INFORMATION /* | DACL_SECURITY_INFORMATION */ ;
4562
4563 if (!get_file_security (fname, si, psd, 0, &sd_len))
4564 {
4565 err = GetLastError ();
4566 if (err != ERROR_INSUFFICIENT_BUFFER)
4567 return NULL;
4568 }
4569
4570 psd = xmalloc (sd_len);
4571 if (!get_file_security (fname, si, psd, sd_len, &sd_len))
4572 {
4573 xfree (psd);
4574 return NULL;
4575 }
4576
4577 return psd;
4578 }
4579
4580 static DWORD
4581 get_rid (PSID sid)
4582 {
4583 unsigned n_subauthorities;
4584
4585 /* Use the last sub-authority value of the RID, the relative
4586 portion of the SID, as user/group ID. */
4587 n_subauthorities = *get_sid_sub_authority_count (sid);
4588 if (n_subauthorities < 1)
4589 return 0; /* the "World" RID */
4590 return *get_sid_sub_authority (sid, n_subauthorities - 1);
4591 }
4592
4593 /* Caching SID and account values for faster lokup. */
4594
4595 struct w32_id {
4596 unsigned rid;
4597 struct w32_id *next;
4598 char name[GNLEN+1];
4599 unsigned char sid[FLEXIBLE_ARRAY_MEMBER];
4600 };
4601
4602 static struct w32_id *w32_idlist;
4603
4604 static int
4605 w32_cached_id (PSID sid, unsigned *id, char *name)
4606 {
4607 struct w32_id *tail, *found;
4608
4609 for (found = NULL, tail = w32_idlist; tail; tail = tail->next)
4610 {
4611 if (equal_sid ((PSID)tail->sid, sid))
4612 {
4613 found = tail;
4614 break;
4615 }
4616 }
4617 if (found)
4618 {
4619 *id = found->rid;
4620 strcpy (name, found->name);
4621 return 1;
4622 }
4623 else
4624 return 0;
4625 }
4626
4627 static void
4628 w32_add_to_cache (PSID sid, unsigned id, char *name)
4629 {
4630 DWORD sid_len;
4631 struct w32_id *new_entry;
4632
4633 /* We don't want to leave behind stale cache from when Emacs was
4634 dumped. */
4635 if (initialized)
4636 {
4637 sid_len = get_length_sid (sid);
4638 new_entry = xmalloc (offsetof (struct w32_id, sid) + sid_len);
4639 if (new_entry)
4640 {
4641 new_entry->rid = id;
4642 strcpy (new_entry->name, name);
4643 copy_sid (sid_len, (PSID)new_entry->sid, sid);
4644 new_entry->next = w32_idlist;
4645 w32_idlist = new_entry;
4646 }
4647 }
4648 }
4649
4650 #define UID 1
4651 #define GID 2
4652
4653 static int
4654 get_name_and_id (PSECURITY_DESCRIPTOR psd, unsigned *id, char *nm, int what)
4655 {
4656 PSID sid = NULL;
4657 BOOL dflt;
4658 SID_NAME_USE ignore;
4659 char name[UNLEN+1];
4660 DWORD name_len = sizeof (name);
4661 char domain[1024];
4662 DWORD domain_len = sizeof (domain);
4663 int use_dflt = 0;
4664 int result;
4665
4666 if (what == UID)
4667 result = get_security_descriptor_owner (psd, &sid, &dflt);
4668 else if (what == GID)
4669 result = get_security_descriptor_group (psd, &sid, &dflt);
4670 else
4671 result = 0;
4672
4673 if (!result || !is_valid_sid (sid))
4674 use_dflt = 1;
4675 else if (!w32_cached_id (sid, id, nm))
4676 {
4677 if (!lookup_account_sid (NULL, sid, name, &name_len,
4678 domain, &domain_len, &ignore)
4679 || name_len > UNLEN+1)
4680 use_dflt = 1;
4681 else
4682 {
4683 *id = get_rid (sid);
4684 strcpy (nm, name);
4685 w32_add_to_cache (sid, *id, name);
4686 }
4687 }
4688 return use_dflt;
4689 }
4690
4691 static void
4692 get_file_owner_and_group (PSECURITY_DESCRIPTOR psd, struct stat *st)
4693 {
4694 int dflt_usr = 0, dflt_grp = 0;
4695
4696 if (!psd)
4697 {
4698 dflt_usr = 1;
4699 dflt_grp = 1;
4700 }
4701 else
4702 {
4703 if (get_name_and_id (psd, &st->st_uid, st->st_uname, UID))
4704 dflt_usr = 1;
4705 if (get_name_and_id (psd, &st->st_gid, st->st_gname, GID))
4706 dflt_grp = 1;
4707 }
4708 /* Consider files to belong to current user/group, if we cannot get
4709 more accurate information. */
4710 if (dflt_usr)
4711 {
4712 st->st_uid = dflt_passwd.pw_uid;
4713 strcpy (st->st_uname, dflt_passwd.pw_name);
4714 }
4715 if (dflt_grp)
4716 {
4717 st->st_gid = dflt_passwd.pw_gid;
4718 strcpy (st->st_gname, dflt_group.gr_name);
4719 }
4720 }
4721
4722 /* Return non-zero if NAME is a potentially slow filesystem. */
4723 int
4724 is_slow_fs (const char *name)
4725 {
4726 char drive_root[4];
4727 UINT devtype;
4728
4729 if (IS_DIRECTORY_SEP (name[0]) && IS_DIRECTORY_SEP (name[1]))
4730 devtype = DRIVE_REMOTE; /* assume UNC name is remote */
4731 else if (!(strlen (name) >= 2 && IS_DEVICE_SEP (name[1])))
4732 devtype = GetDriveType (NULL); /* use root of current drive */
4733 else
4734 {
4735 /* GetDriveType needs the root directory of the drive. */
4736 strncpy (drive_root, name, 2);
4737 drive_root[2] = '\\';
4738 drive_root[3] = '\0';
4739 devtype = GetDriveType (drive_root);
4740 }
4741 return !(devtype == DRIVE_FIXED || devtype == DRIVE_RAMDISK);
4742 }
4743
4744 /* If this is non-zero, the caller wants accurate information about
4745 file's owner and group, which could be expensive to get. dired.c
4746 uses this flag when needed for the job at hand. */
4747 int w32_stat_get_owner_group;
4748
4749 /* MSVC stat function can't cope with UNC names and has other bugs, so
4750 replace it with our own. This also allows us to calculate consistent
4751 inode values and owner/group without hacks in the main Emacs code,
4752 and support file names encoded in UTF-8. */
4753
4754 static int
4755 stat_worker (const char * path, struct stat * buf, int follow_symlinks)
4756 {
4757 char *name, *save_name, *r;
4758 WIN32_FIND_DATAW wfd_w;
4759 WIN32_FIND_DATAA wfd_a;
4760 HANDLE fh;
4761 unsigned __int64 fake_inode = 0;
4762 int permission;
4763 int len;
4764 int rootdir = FALSE;
4765 PSECURITY_DESCRIPTOR psd = NULL;
4766 int is_a_symlink = 0;
4767 DWORD file_flags = FILE_FLAG_BACKUP_SEMANTICS;
4768 DWORD access_rights = 0;
4769 DWORD fattrs = 0, serialnum = 0, fs_high = 0, fs_low = 0, nlinks = 1;
4770 FILETIME ctime, atime, wtime;
4771 wchar_t name_w[MAX_PATH];
4772 char name_a[MAX_PATH];
4773
4774 if (path == NULL || buf == NULL)
4775 {
4776 errno = EFAULT;
4777 return -1;
4778 }
4779
4780 save_name = name = (char *) map_w32_filename (path, &path);
4781 /* Must be valid filename, no wild cards or other invalid
4782 characters. */
4783 if (strpbrk (name, "*?|<>\""))
4784 {
4785 errno = ENOENT;
4786 return -1;
4787 }
4788
4789 len = strlen (name);
4790 /* Allocate 1 extra byte so that we could append a slash to a root
4791 directory, down below. */
4792 name = strcpy (alloca (len + 2), name);
4793
4794 /* Avoid a somewhat costly call to is_symlink if the filesystem
4795 doesn't support symlinks. */
4796 if ((volume_info.flags & FILE_SUPPORTS_REPARSE_POINTS) != 0)
4797 is_a_symlink = is_symlink (name);
4798
4799 /* Plan A: Open the file and get all the necessary information via
4800 the resulting handle. This solves several issues in one blow:
4801
4802 . retrieves attributes for the target of a symlink, if needed
4803 . gets attributes of root directories and symlinks pointing to
4804 root directories, thus avoiding the need for special-casing
4805 these and detecting them by examining the file-name format
4806 . retrieves more accurate attributes (e.g., non-zero size for
4807 some directories, esp. directories that are junction points)
4808 . correctly resolves "c:/..", "/.." and similar file names
4809 . avoids run-time penalties for 99% of use cases
4810
4811 Plan A is always tried first, unless the user asked not to (but
4812 if the file is a symlink and we need to follow links, we try Plan
4813 A even if the user asked not to).
4814
4815 If Plan A fails, we go to Plan B (below), where various
4816 potentially expensive techniques must be used to handle "special"
4817 files such as UNC volumes etc. */
4818 if (!(NILP (Vw32_get_true_file_attributes)
4819 || (EQ (Vw32_get_true_file_attributes, Qlocal) && is_slow_fs (name)))
4820 /* Following symlinks requires getting the info by handle. */
4821 || (is_a_symlink && follow_symlinks))
4822 {
4823 BY_HANDLE_FILE_INFORMATION info;
4824
4825 if (is_a_symlink && !follow_symlinks)
4826 file_flags |= FILE_FLAG_OPEN_REPARSE_POINT;
4827 /* READ_CONTROL access rights are required to get security info
4828 by handle. But if the OS doesn't support security in the
4829 first place, we don't need to try. */
4830 if (is_windows_9x () != TRUE)
4831 access_rights |= READ_CONTROL;
4832
4833 if (w32_unicode_filenames)
4834 {
4835 filename_to_utf16 (name, name_w);
4836 fh = CreateFileW (name_w, access_rights, 0, NULL, OPEN_EXISTING,
4837 file_flags, NULL);
4838 /* If CreateFile fails with READ_CONTROL, try again with
4839 zero as access rights. */
4840 if (fh == INVALID_HANDLE_VALUE && access_rights)
4841 fh = CreateFileW (name_w, 0, 0, NULL, OPEN_EXISTING,
4842 file_flags, NULL);
4843 }
4844 else
4845 {
4846 filename_to_ansi (name, name_a);
4847 fh = CreateFileA (name_a, access_rights, 0, NULL, OPEN_EXISTING,
4848 file_flags, NULL);
4849 if (fh == INVALID_HANDLE_VALUE && access_rights)
4850 fh = CreateFileA (name_a, 0, 0, NULL, OPEN_EXISTING,
4851 file_flags, NULL);
4852 }
4853 if (fh == INVALID_HANDLE_VALUE)
4854 goto no_true_file_attributes;
4855
4856 /* This is more accurate in terms of getting the correct number
4857 of links, but is quite slow (it is noticeable when Emacs is
4858 making a list of file name completions). */
4859 if (GetFileInformationByHandle (fh, &info))
4860 {
4861 nlinks = info.nNumberOfLinks;
4862 /* Might as well use file index to fake inode values, but this
4863 is not guaranteed to be unique unless we keep a handle open
4864 all the time (even then there are situations where it is
4865 not unique). Reputedly, there are at most 48 bits of info
4866 (on NTFS, presumably less on FAT). */
4867 fake_inode = info.nFileIndexHigh;
4868 fake_inode <<= 32;
4869 fake_inode += info.nFileIndexLow;
4870 serialnum = info.dwVolumeSerialNumber;
4871 fs_high = info.nFileSizeHigh;
4872 fs_low = info.nFileSizeLow;
4873 ctime = info.ftCreationTime;
4874 atime = info.ftLastAccessTime;
4875 wtime = info.ftLastWriteTime;
4876 fattrs = info.dwFileAttributes;
4877 }
4878 else
4879 {
4880 /* We don't go to Plan B here, because it's not clear that
4881 it's a good idea. The only known use case where
4882 CreateFile succeeds, but GetFileInformationByHandle fails
4883 (with ERROR_INVALID_FUNCTION) is for character devices
4884 such as NUL, PRN, etc. For these, switching to Plan B is
4885 a net loss, because we lose the character device
4886 attribute returned by GetFileType below (FindFirstFile
4887 doesn't set that bit in the attributes), and the other
4888 fields don't make sense for character devices anyway.
4889 Emacs doesn't really care for non-file entities in the
4890 context of l?stat, so neither do we. */
4891
4892 /* w32err is assigned so one could put a breakpoint here and
4893 examine its value, when GetFileInformationByHandle
4894 fails. */
4895 DWORD w32err = GetLastError ();
4896
4897 switch (w32err)
4898 {
4899 case ERROR_FILE_NOT_FOUND: /* can this ever happen? */
4900 errno = ENOENT;
4901 return -1;
4902 }
4903 }
4904
4905 /* Test for a symlink before testing for a directory, since
4906 symlinks to directories have the directory bit set, but we
4907 don't want them to appear as directories. */
4908 if (is_a_symlink && !follow_symlinks)
4909 buf->st_mode = S_IFLNK;
4910 else if (fattrs & FILE_ATTRIBUTE_DIRECTORY)
4911 buf->st_mode = S_IFDIR;
4912 else
4913 {
4914 DWORD ftype = GetFileType (fh);
4915
4916 switch (ftype)
4917 {
4918 case FILE_TYPE_DISK:
4919 buf->st_mode = S_IFREG;
4920 break;
4921 case FILE_TYPE_PIPE:
4922 buf->st_mode = S_IFIFO;
4923 break;
4924 case FILE_TYPE_CHAR:
4925 case FILE_TYPE_UNKNOWN:
4926 default:
4927 buf->st_mode = S_IFCHR;
4928 }
4929 }
4930 /* We produce the fallback owner and group data, based on the
4931 current user that runs Emacs, in the following cases:
4932
4933 . caller didn't request owner and group info
4934 . this is Windows 9X
4935 . getting security by handle failed, and we need to produce
4936 information for the target of a symlink (this is better
4937 than producing a potentially misleading info about the
4938 symlink itself)
4939
4940 If getting security by handle fails, and we don't need to
4941 resolve symlinks, we try getting security by name. */
4942 if (!w32_stat_get_owner_group || is_windows_9x () == TRUE)
4943 get_file_owner_and_group (NULL, buf);
4944 else
4945 {
4946 psd = get_file_security_desc_by_handle (fh);
4947 if (psd)
4948 {
4949 get_file_owner_and_group (psd, buf);
4950 LocalFree (psd);
4951 }
4952 else if (!(is_a_symlink && follow_symlinks))
4953 {
4954 psd = get_file_security_desc_by_name (name);
4955 get_file_owner_and_group (psd, buf);
4956 xfree (psd);
4957 }
4958 else
4959 get_file_owner_and_group (NULL, buf);
4960 }
4961 CloseHandle (fh);
4962 }
4963 else
4964 {
4965 no_true_file_attributes:
4966 /* Plan B: Either getting a handle on the file failed, or the
4967 caller explicitly asked us to not bother making this
4968 information more accurate.
4969
4970 Implementation note: In Plan B, we never bother to resolve
4971 symlinks, even if we got here because we tried Plan A and
4972 failed. That's because, even if the caller asked for extra
4973 precision by setting Vw32_get_true_file_attributes to t,
4974 resolving symlinks requires acquiring a file handle to the
4975 symlink, which we already know will fail. And if the user
4976 did not ask for extra precision, resolving symlinks will fly
4977 in the face of that request, since the user then wants the
4978 lightweight version of the code. */
4979 rootdir = (path >= save_name + len - 1
4980 && (IS_DIRECTORY_SEP (*path) || *path == 0));
4981
4982 /* If name is "c:/.." or "/.." then stat "c:/" or "/". */
4983 r = IS_DEVICE_SEP (name[1]) ? &name[2] : name;
4984 if (IS_DIRECTORY_SEP (r[0])
4985 && r[1] == '.' && r[2] == '.' && r[3] == '\0')
4986 r[1] = r[2] = '\0';
4987
4988 /* Note: If NAME is a symlink to the root of a UNC volume
4989 (i.e. "\\SERVER"), we will not detect that here, and we will
4990 return data about the symlink as result of FindFirst below.
4991 This is unfortunate, but that marginal use case does not
4992 justify a call to chase_symlinks which would impose a penalty
4993 on all the other use cases. (We get here for symlinks to
4994 roots of UNC volumes because CreateFile above fails for them,
4995 unlike with symlinks to root directories X:\ of drives.) */
4996 if (is_unc_volume (name))
4997 {
4998 fattrs = unc_volume_file_attributes (name);
4999 if (fattrs == -1)
5000 return -1;
5001
5002 ctime = atime = wtime = utc_base_ft;
5003 }
5004 else if (rootdir)
5005 {
5006 /* Make sure root directories end in a slash. */
5007 if (!IS_DIRECTORY_SEP (name[len-1]))
5008 strcpy (name + len, "\\");
5009 if (GetDriveType (name) < 2)
5010 {
5011 errno = ENOENT;
5012 return -1;
5013 }
5014
5015 fattrs = FILE_ATTRIBUTE_DIRECTORY;
5016 ctime = atime = wtime = utc_base_ft;
5017 }
5018 else
5019 {
5020 int have_wfd = -1;
5021
5022 /* Make sure non-root directories do NOT end in a slash,
5023 otherwise FindFirstFile might fail. */
5024 if (IS_DIRECTORY_SEP (name[len-1]))
5025 name[len - 1] = 0;
5026
5027 /* (This is hacky, but helps when doing file completions on
5028 network drives.) Optimize by using information available from
5029 active readdir if possible. */
5030 len = strlen (dir_pathname);
5031 if (IS_DIRECTORY_SEP (dir_pathname[len-1]))
5032 len--;
5033 if (dir_find_handle != INVALID_HANDLE_VALUE
5034 && last_dir_find_data != -1
5035 && !(is_a_symlink && follow_symlinks)
5036 /* The 2 file-name comparisons below support only ASCII
5037 characters, and will lose (compare not equal) when
5038 the file names include non-ASCII characters that are
5039 the same but for the case. However, doing this
5040 properly involves: (a) converting both file names to
5041 UTF-16, (b) lower-casing both names using CharLowerW,
5042 and (c) comparing the results; this would be quite a
5043 bit slower, whereas Plan B is for users who want
5044 lightweight albeit inaccurate version of 'stat'. */
5045 && c_strncasecmp (save_name, dir_pathname, len) == 0
5046 && IS_DIRECTORY_SEP (name[len])
5047 && xstrcasecmp (name + len + 1, dir_static.d_name) == 0)
5048 {
5049 have_wfd = last_dir_find_data;
5050 /* This was the last entry returned by readdir. */
5051 if (last_dir_find_data == DIR_FIND_DATA_W)
5052 wfd_w = dir_find_data_w;
5053 else
5054 wfd_a = dir_find_data_a;
5055 }
5056 else
5057 {
5058 logon_network_drive (name);
5059
5060 if (w32_unicode_filenames)
5061 {
5062 filename_to_utf16 (name, name_w);
5063 fh = FindFirstFileW (name_w, &wfd_w);
5064 have_wfd = DIR_FIND_DATA_W;
5065 }
5066 else
5067 {
5068 filename_to_ansi (name, name_a);
5069 /* If NAME includes characters not representable by
5070 the current ANSI codepage, filename_to_ansi
5071 usually replaces them with a '?'. We don't want
5072 to let FindFirstFileA interpret those as wildcards,
5073 and "succeed", returning us data from some random
5074 file in the same directory. */
5075 if (_mbspbrk (name_a, "?"))
5076 fh = INVALID_HANDLE_VALUE;
5077 else
5078 fh = FindFirstFileA (name_a, &wfd_a);
5079 have_wfd = DIR_FIND_DATA_A;
5080 }
5081 if (fh == INVALID_HANDLE_VALUE)
5082 {
5083 errno = ENOENT;
5084 return -1;
5085 }
5086 FindClose (fh);
5087 }
5088 /* Note: if NAME is a symlink, the information we get from
5089 FindFirstFile is for the symlink, not its target. */
5090 if (have_wfd == DIR_FIND_DATA_W)
5091 {
5092 fattrs = wfd_w.dwFileAttributes;
5093 ctime = wfd_w.ftCreationTime;
5094 atime = wfd_w.ftLastAccessTime;
5095 wtime = wfd_w.ftLastWriteTime;
5096 fs_high = wfd_w.nFileSizeHigh;
5097 fs_low = wfd_w.nFileSizeLow;
5098 }
5099 else
5100 {
5101 fattrs = wfd_a.dwFileAttributes;
5102 ctime = wfd_a.ftCreationTime;
5103 atime = wfd_a.ftLastAccessTime;
5104 wtime = wfd_a.ftLastWriteTime;
5105 fs_high = wfd_a.nFileSizeHigh;
5106 fs_low = wfd_a.nFileSizeLow;
5107 }
5108 fake_inode = 0;
5109 nlinks = 1;
5110 serialnum = volume_info.serialnum;
5111 }
5112 if (is_a_symlink && !follow_symlinks)
5113 buf->st_mode = S_IFLNK;
5114 else if (fattrs & FILE_ATTRIBUTE_DIRECTORY)
5115 buf->st_mode = S_IFDIR;
5116 else
5117 buf->st_mode = S_IFREG;
5118
5119 get_file_owner_and_group (NULL, buf);
5120 }
5121
5122 buf->st_ino = fake_inode;
5123
5124 buf->st_dev = serialnum;
5125 buf->st_rdev = serialnum;
5126
5127 buf->st_size = fs_high;
5128 buf->st_size <<= 32;
5129 buf->st_size += fs_low;
5130 buf->st_nlink = nlinks;
5131
5132 /* Convert timestamps to Unix format. */
5133 buf->st_mtime = convert_time (wtime);
5134 buf->st_atime = convert_time (atime);
5135 if (buf->st_atime == 0) buf->st_atime = buf->st_mtime;
5136 buf->st_ctime = convert_time (ctime);
5137 if (buf->st_ctime == 0) buf->st_ctime = buf->st_mtime;
5138
5139 /* determine rwx permissions */
5140 if (is_a_symlink && !follow_symlinks)
5141 permission = S_IREAD | S_IWRITE | S_IEXEC; /* Posix expectations */
5142 else
5143 {
5144 if (fattrs & FILE_ATTRIBUTE_READONLY)
5145 permission = S_IREAD;
5146 else
5147 permission = S_IREAD | S_IWRITE;
5148
5149 if (fattrs & FILE_ATTRIBUTE_DIRECTORY)
5150 permission |= S_IEXEC;
5151 else if (is_exec (name))
5152 permission |= S_IEXEC;
5153 }
5154
5155 buf->st_mode |= permission | (permission >> 3) | (permission >> 6);
5156
5157 return 0;
5158 }
5159
5160 int
5161 stat (const char * path, struct stat * buf)
5162 {
5163 return stat_worker (path, buf, 1);
5164 }
5165
5166 int
5167 lstat (const char * path, struct stat * buf)
5168 {
5169 return stat_worker (path, buf, 0);
5170 }
5171
5172 int
5173 fstatat (int fd, char const *name, struct stat *st, int flags)
5174 {
5175 /* Rely on a hack: an open directory is modeled as file descriptor 0.
5176 This is good enough for the current usage in Emacs, but is fragile.
5177
5178 FIXME: Add proper support for fdopendir, fstatat, readlinkat.
5179 Gnulib does this and can serve as a model. */
5180 char fullname[MAX_UTF8_PATH];
5181
5182 if (fd != AT_FDCWD)
5183 {
5184 char lastc = dir_pathname[strlen (dir_pathname) - 1];
5185
5186 if (_snprintf (fullname, sizeof fullname, "%s%s%s",
5187 dir_pathname, IS_DIRECTORY_SEP (lastc) ? "" : "/", name)
5188 < 0)
5189 {
5190 errno = ENAMETOOLONG;
5191 return -1;
5192 }
5193 name = fullname;
5194 }
5195
5196 return stat_worker (name, st, ! (flags & AT_SYMLINK_NOFOLLOW));
5197 }
5198
5199 /* Provide fstat and utime as well as stat for consistent handling of
5200 file timestamps. */
5201 int
5202 fstat (int desc, struct stat * buf)
5203 {
5204 HANDLE fh = (HANDLE) _get_osfhandle (desc);
5205 BY_HANDLE_FILE_INFORMATION info;
5206 unsigned __int64 fake_inode;
5207 int permission;
5208
5209 switch (GetFileType (fh) & ~FILE_TYPE_REMOTE)
5210 {
5211 case FILE_TYPE_DISK:
5212 buf->st_mode = S_IFREG;
5213 if (!GetFileInformationByHandle (fh, &info))
5214 {
5215 errno = EACCES;
5216 return -1;
5217 }
5218 break;
5219 case FILE_TYPE_PIPE:
5220 buf->st_mode = S_IFIFO;
5221 goto non_disk;
5222 case FILE_TYPE_CHAR:
5223 case FILE_TYPE_UNKNOWN:
5224 default:
5225 buf->st_mode = S_IFCHR;
5226 non_disk:
5227 memset (&info, 0, sizeof (info));
5228 info.dwFileAttributes = 0;
5229 info.ftCreationTime = utc_base_ft;
5230 info.ftLastAccessTime = utc_base_ft;
5231 info.ftLastWriteTime = utc_base_ft;
5232 }
5233
5234 if (info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
5235 buf->st_mode = S_IFDIR;
5236
5237 buf->st_nlink = info.nNumberOfLinks;
5238 /* Might as well use file index to fake inode values, but this
5239 is not guaranteed to be unique unless we keep a handle open
5240 all the time (even then there are situations where it is
5241 not unique). Reputedly, there are at most 48 bits of info
5242 (on NTFS, presumably less on FAT). */
5243 fake_inode = info.nFileIndexHigh;
5244 fake_inode <<= 32;
5245 fake_inode += info.nFileIndexLow;
5246
5247 /* MSVC defines _ino_t to be short; other libc's might not. */
5248 if (sizeof (buf->st_ino) == 2)
5249 buf->st_ino = fake_inode ^ (fake_inode >> 16);
5250 else
5251 buf->st_ino = fake_inode;
5252
5253 /* If the caller so requested, get the true file owner and group.
5254 Otherwise, consider the file to belong to the current user. */
5255 if (!w32_stat_get_owner_group || is_windows_9x () == TRUE)
5256 get_file_owner_and_group (NULL, buf);
5257 else
5258 {
5259 PSECURITY_DESCRIPTOR psd = NULL;
5260
5261 psd = get_file_security_desc_by_handle (fh);
5262 if (psd)
5263 {
5264 get_file_owner_and_group (psd, buf);
5265 LocalFree (psd);
5266 }
5267 else
5268 get_file_owner_and_group (NULL, buf);
5269 }
5270
5271 buf->st_dev = info.dwVolumeSerialNumber;
5272 buf->st_rdev = info.dwVolumeSerialNumber;
5273
5274 buf->st_size = info.nFileSizeHigh;
5275 buf->st_size <<= 32;
5276 buf->st_size += info.nFileSizeLow;
5277
5278 /* Convert timestamps to Unix format. */
5279 buf->st_mtime = convert_time (info.ftLastWriteTime);
5280 buf->st_atime = convert_time (info.ftLastAccessTime);
5281 if (buf->st_atime == 0) buf->st_atime = buf->st_mtime;
5282 buf->st_ctime = convert_time (info.ftCreationTime);
5283 if (buf->st_ctime == 0) buf->st_ctime = buf->st_mtime;
5284
5285 /* determine rwx permissions */
5286 if (info.dwFileAttributes & FILE_ATTRIBUTE_READONLY)
5287 permission = S_IREAD;
5288 else
5289 permission = S_IREAD | S_IWRITE;
5290
5291 if (info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
5292 permission |= S_IEXEC;
5293 else
5294 {
5295 #if 0 /* no way of knowing the filename */
5296 char * p = strrchr (name, '.');
5297 if (p != NULL &&
5298 (xstrcasecmp (p, ".exe") == 0 ||
5299 xstrcasecmp (p, ".com") == 0 ||
5300 xstrcasecmp (p, ".bat") == 0 ||
5301 xstrcasecmp (p, ".cmd") == 0))
5302 permission |= S_IEXEC;
5303 #endif
5304 }
5305
5306 buf->st_mode |= permission | (permission >> 3) | (permission >> 6);
5307
5308 return 0;
5309 }
5310
5311 /* A version of 'utime' which handles directories as well as
5312 files. */
5313
5314 int
5315 utime (const char *name, struct utimbuf *times)
5316 {
5317 struct utimbuf deftime;
5318 HANDLE fh;
5319 FILETIME mtime;
5320 FILETIME atime;
5321
5322 if (times == NULL)
5323 {
5324 deftime.modtime = deftime.actime = time (NULL);
5325 times = &deftime;
5326 }
5327
5328 if (w32_unicode_filenames)
5329 {
5330 wchar_t name_utf16[MAX_PATH];
5331
5332 if (filename_to_utf16 (name, name_utf16) != 0)
5333 return -1; /* errno set by filename_to_utf16 */
5334
5335 /* Need write access to set times. */
5336 fh = CreateFileW (name_utf16, FILE_WRITE_ATTRIBUTES,
5337 /* If NAME specifies a directory, FILE_SHARE_DELETE
5338 allows other processes to delete files inside it,
5339 while we have the directory open. */
5340 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
5341 0, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
5342 }
5343 else
5344 {
5345 char name_ansi[MAX_PATH];
5346
5347 if (filename_to_ansi (name, name_ansi) != 0)
5348 return -1; /* errno set by filename_to_ansi */
5349
5350 fh = CreateFileA (name_ansi, FILE_WRITE_ATTRIBUTES,
5351 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
5352 0, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
5353 }
5354 if (fh != INVALID_HANDLE_VALUE)
5355 {
5356 convert_from_time_t (times->actime, &atime);
5357 convert_from_time_t (times->modtime, &mtime);
5358 if (!SetFileTime (fh, NULL, &atime, &mtime))
5359 {
5360 CloseHandle (fh);
5361 errno = EACCES;
5362 return -1;
5363 }
5364 CloseHandle (fh);
5365 }
5366 else
5367 {
5368 DWORD err = GetLastError ();
5369
5370 switch (err)
5371 {
5372 case ERROR_FILE_NOT_FOUND:
5373 case ERROR_PATH_NOT_FOUND:
5374 case ERROR_INVALID_DRIVE:
5375 case ERROR_BAD_NETPATH:
5376 case ERROR_DEV_NOT_EXIST:
5377 /* ERROR_INVALID_NAME is the error CreateFile sets when the
5378 file name includes ?s, i.e. translation to ANSI failed. */
5379 case ERROR_INVALID_NAME:
5380 errno = ENOENT;
5381 break;
5382 case ERROR_TOO_MANY_OPEN_FILES:
5383 errno = ENFILE;
5384 break;
5385 case ERROR_ACCESS_DENIED:
5386 case ERROR_SHARING_VIOLATION:
5387 errno = EACCES;
5388 break;
5389 default:
5390 errno = EINVAL;
5391 break;
5392 }
5393 return -1;
5394 }
5395 return 0;
5396 }
5397
5398 int
5399 sys_umask (int mode)
5400 {
5401 static int current_mask;
5402 int retval, arg = 0;
5403
5404 /* The only bit we really support is the write bit. Files are
5405 always readable on MS-Windows, and the execute bit does not exist
5406 at all. */
5407 /* FIXME: if the GROUP and OTHER bits are reset, we should use ACLs
5408 to prevent access by other users on NTFS. */
5409 if ((mode & S_IWRITE) != 0)
5410 arg |= S_IWRITE;
5411
5412 retval = _umask (arg);
5413 /* Merge into the return value the bits they've set the last time,
5414 which msvcrt.dll ignores and never returns. Emacs insists on its
5415 notion of mask being identical to what we return. */
5416 retval |= (current_mask & ~S_IWRITE);
5417 current_mask = mode;
5418
5419 return retval;
5420 }
5421
5422 \f
5423 /* Symlink-related functions. */
5424 #ifndef SYMBOLIC_LINK_FLAG_DIRECTORY
5425 #define SYMBOLIC_LINK_FLAG_DIRECTORY 0x1
5426 #endif
5427
5428 int
5429 symlink (char const *filename, char const *linkname)
5430 {
5431 char linkfn[MAX_UTF8_PATH], *tgtfn;
5432 DWORD flags = 0;
5433 int dir_access, filename_ends_in_slash;
5434
5435 /* Diagnostics follows Posix as much as possible. */
5436 if (filename == NULL || linkname == NULL)
5437 {
5438 errno = EFAULT;
5439 return -1;
5440 }
5441 if (!*filename)
5442 {
5443 errno = ENOENT;
5444 return -1;
5445 }
5446 if (strlen (filename) > MAX_UTF8_PATH || strlen (linkname) > MAX_UTF8_PATH)
5447 {
5448 errno = ENAMETOOLONG;
5449 return -1;
5450 }
5451
5452 strcpy (linkfn, map_w32_filename (linkname, NULL));
5453 if ((volume_info.flags & FILE_SUPPORTS_REPARSE_POINTS) == 0)
5454 {
5455 errno = EPERM;
5456 return -1;
5457 }
5458
5459 /* Note: since empty FILENAME was already rejected, we can safely
5460 refer to FILENAME[1]. */
5461 if (!(IS_DIRECTORY_SEP (filename[0]) || IS_DEVICE_SEP (filename[1])))
5462 {
5463 /* Non-absolute FILENAME is understood as being relative to
5464 LINKNAME's directory. We need to prepend that directory to
5465 FILENAME to get correct results from faccessat below, since
5466 otherwise it will interpret FILENAME relative to the
5467 directory where the Emacs process runs. Note that
5468 make-symbolic-link always makes sure LINKNAME is a fully
5469 expanded file name. */
5470 char tem[MAX_UTF8_PATH];
5471 char *p = linkfn + strlen (linkfn);
5472
5473 while (p > linkfn && !IS_ANY_SEP (p[-1]))
5474 p--;
5475 if (p > linkfn)
5476 strncpy (tem, linkfn, p - linkfn);
5477 strcpy (tem + (p - linkfn), filename);
5478 dir_access = faccessat (AT_FDCWD, tem, D_OK, AT_EACCESS);
5479 }
5480 else
5481 dir_access = faccessat (AT_FDCWD, filename, D_OK, AT_EACCESS);
5482
5483 /* Since Windows distinguishes between symlinks to directories and
5484 to files, we provide a kludgy feature: if FILENAME doesn't
5485 exist, but ends in a slash, we create a symlink to directory. If
5486 FILENAME exists and is a directory, we always create a symlink to
5487 directory. */
5488 filename_ends_in_slash = IS_DIRECTORY_SEP (filename[strlen (filename) - 1]);
5489 if (dir_access == 0 || filename_ends_in_slash)
5490 flags = SYMBOLIC_LINK_FLAG_DIRECTORY;
5491
5492 tgtfn = (char *)map_w32_filename (filename, NULL);
5493 if (filename_ends_in_slash)
5494 tgtfn[strlen (tgtfn) - 1] = '\0';
5495
5496 errno = 0;
5497 if (!create_symbolic_link (linkfn, tgtfn, flags))
5498 {
5499 /* ENOSYS is set by create_symbolic_link, when it detects that
5500 the OS doesn't support the CreateSymbolicLink API. */
5501 if (errno != ENOSYS)
5502 {
5503 DWORD w32err = GetLastError ();
5504
5505 switch (w32err)
5506 {
5507 /* ERROR_SUCCESS is sometimes returned when LINKFN and
5508 TGTFN point to the same file name, go figure. */
5509 case ERROR_SUCCESS:
5510 case ERROR_FILE_EXISTS:
5511 errno = EEXIST;
5512 break;
5513 case ERROR_ACCESS_DENIED:
5514 errno = EACCES;
5515 break;
5516 case ERROR_FILE_NOT_FOUND:
5517 case ERROR_PATH_NOT_FOUND:
5518 case ERROR_BAD_NETPATH:
5519 case ERROR_INVALID_REPARSE_DATA:
5520 errno = ENOENT;
5521 break;
5522 case ERROR_DIRECTORY:
5523 errno = EISDIR;
5524 break;
5525 case ERROR_PRIVILEGE_NOT_HELD:
5526 case ERROR_NOT_ALL_ASSIGNED:
5527 errno = EPERM;
5528 break;
5529 case ERROR_DISK_FULL:
5530 errno = ENOSPC;
5531 break;
5532 default:
5533 errno = EINVAL;
5534 break;
5535 }
5536 }
5537 return -1;
5538 }
5539 return 0;
5540 }
5541
5542 /* A quick inexpensive test of whether FILENAME identifies a file that
5543 is a symlink. Returns non-zero if it is, zero otherwise. FILENAME
5544 must already be in the normalized form returned by
5545 map_w32_filename.
5546
5547 Note: for repeated operations on many files, it is best to test
5548 whether the underlying volume actually supports symlinks, by
5549 testing the FILE_SUPPORTS_REPARSE_POINTS bit in volume's flags, and
5550 avoid the call to this function if it doesn't. That's because the
5551 call to GetFileAttributes takes a non-negligible time, especially
5552 on non-local or removable filesystems. See stat_worker for an
5553 example of how to do that. */
5554 static int
5555 is_symlink (const char *filename)
5556 {
5557 DWORD attrs;
5558 wchar_t filename_w[MAX_PATH];
5559 char filename_a[MAX_PATH];
5560 WIN32_FIND_DATAW wfdw;
5561 WIN32_FIND_DATAA wfda;
5562 HANDLE fh;
5563 int attrs_mean_symlink;
5564
5565 if (w32_unicode_filenames)
5566 {
5567 filename_to_utf16 (filename, filename_w);
5568 attrs = GetFileAttributesW (filename_w);
5569 }
5570 else
5571 {
5572 filename_to_ansi (filename, filename_a);
5573 attrs = GetFileAttributesA (filename_a);
5574 }
5575 if (attrs == -1)
5576 {
5577 DWORD w32err = GetLastError ();
5578
5579 switch (w32err)
5580 {
5581 case ERROR_BAD_NETPATH: /* network share, can't be a symlink */
5582 break;
5583 case ERROR_ACCESS_DENIED:
5584 errno = EACCES;
5585 break;
5586 case ERROR_FILE_NOT_FOUND:
5587 case ERROR_PATH_NOT_FOUND:
5588 default:
5589 errno = ENOENT;
5590 break;
5591 }
5592 return 0;
5593 }
5594 if ((attrs & FILE_ATTRIBUTE_REPARSE_POINT) == 0)
5595 return 0;
5596 logon_network_drive (filename);
5597 if (w32_unicode_filenames)
5598 {
5599 fh = FindFirstFileW (filename_w, &wfdw);
5600 attrs_mean_symlink =
5601 (wfdw.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) != 0
5602 && (wfdw.dwReserved0 & IO_REPARSE_TAG_SYMLINK) == IO_REPARSE_TAG_SYMLINK;
5603 }
5604 else if (_mbspbrk (filename_a, "?"))
5605 {
5606 /* filename_to_ansi failed to convert the file name. */
5607 errno = ENOENT;
5608 return 0;
5609 }
5610 else
5611 {
5612 fh = FindFirstFileA (filename_a, &wfda);
5613 attrs_mean_symlink =
5614 (wfda.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) != 0
5615 && (wfda.dwReserved0 & IO_REPARSE_TAG_SYMLINK) == IO_REPARSE_TAG_SYMLINK;
5616 }
5617 if (fh == INVALID_HANDLE_VALUE)
5618 return 0;
5619 FindClose (fh);
5620 return attrs_mean_symlink;
5621 }
5622
5623 /* If NAME identifies a symbolic link, copy into BUF the file name of
5624 the symlink's target. Copy at most BUF_SIZE bytes, and do NOT
5625 null-terminate the target name, even if it fits. Return the number
5626 of bytes copied, or -1 if NAME is not a symlink or any error was
5627 encountered while resolving it. The file name copied into BUF is
5628 encoded in the current ANSI codepage. */
5629 ssize_t
5630 readlink (const char *name, char *buf, size_t buf_size)
5631 {
5632 const char *path;
5633 TOKEN_PRIVILEGES privs;
5634 int restore_privs = 0;
5635 HANDLE sh;
5636 ssize_t retval;
5637 char resolved[MAX_UTF8_PATH];
5638
5639 if (name == NULL)
5640 {
5641 errno = EFAULT;
5642 return -1;
5643 }
5644 if (!*name)
5645 {
5646 errno = ENOENT;
5647 return -1;
5648 }
5649
5650 path = map_w32_filename (name, NULL);
5651
5652 if (strlen (path) > MAX_UTF8_PATH)
5653 {
5654 errno = ENAMETOOLONG;
5655 return -1;
5656 }
5657
5658 errno = 0;
5659 if (is_windows_9x () == TRUE
5660 || (volume_info.flags & FILE_SUPPORTS_REPARSE_POINTS) == 0
5661 || !is_symlink (path))
5662 {
5663 if (!errno)
5664 errno = EINVAL; /* not a symlink */
5665 return -1;
5666 }
5667
5668 /* Done with simple tests, now we're in for some _real_ work. */
5669 if (enable_privilege (SE_BACKUP_NAME, TRUE, &privs))
5670 restore_privs = 1;
5671 /* Implementation note: From here and onward, don't return early,
5672 since that will fail to restore the original set of privileges of
5673 the calling thread. */
5674
5675 retval = -1; /* not too optimistic, are we? */
5676
5677 /* Note: In the next call to CreateFile, we use zero as the 2nd
5678 argument because, when the symlink is a hidden/system file,
5679 e.g. 'C:\Users\All Users', GENERIC_READ fails with
5680 ERROR_ACCESS_DENIED. Zero seems to work just fine, both for file
5681 and directory symlinks. */
5682 if (w32_unicode_filenames)
5683 {
5684 wchar_t path_w[MAX_PATH];
5685
5686 filename_to_utf16 (path, path_w);
5687 sh = CreateFileW (path_w, 0, 0, NULL, OPEN_EXISTING,
5688 FILE_FLAG_OPEN_REPARSE_POINT
5689 | FILE_FLAG_BACKUP_SEMANTICS,
5690 NULL);
5691 }
5692 else
5693 {
5694 char path_a[MAX_PATH];
5695
5696 filename_to_ansi (path, path_a);
5697 sh = CreateFileA (path_a, 0, 0, NULL, OPEN_EXISTING,
5698 FILE_FLAG_OPEN_REPARSE_POINT
5699 | FILE_FLAG_BACKUP_SEMANTICS,
5700 NULL);
5701 }
5702 if (sh != INVALID_HANDLE_VALUE)
5703 {
5704 BYTE reparse_buf[MAXIMUM_REPARSE_DATA_BUFFER_SIZE];
5705 REPARSE_DATA_BUFFER *reparse_data = (REPARSE_DATA_BUFFER *)&reparse_buf[0];
5706 DWORD retbytes;
5707
5708 if (!DeviceIoControl (sh, FSCTL_GET_REPARSE_POINT, NULL, 0,
5709 reparse_buf, MAXIMUM_REPARSE_DATA_BUFFER_SIZE,
5710 &retbytes, NULL))
5711 errno = EIO;
5712 else if (reparse_data->ReparseTag != IO_REPARSE_TAG_SYMLINK)
5713 errno = EINVAL;
5714 else
5715 {
5716 /* Copy the link target name, in wide characters, from
5717 reparse_data, then convert it to multibyte encoding in
5718 the current locale's codepage. */
5719 WCHAR *lwname;
5720 size_t lname_size;
5721 USHORT lwname_len =
5722 reparse_data->SymbolicLinkReparseBuffer.PrintNameLength;
5723 WCHAR *lwname_src =
5724 reparse_data->SymbolicLinkReparseBuffer.PathBuffer
5725 + reparse_data->SymbolicLinkReparseBuffer.PrintNameOffset/sizeof(WCHAR);
5726 size_t size_to_copy = buf_size;
5727
5728 /* According to MSDN, PrintNameLength does not include the
5729 terminating null character. */
5730 lwname = alloca ((lwname_len + 1) * sizeof(WCHAR));
5731 memcpy (lwname, lwname_src, lwname_len);
5732 lwname[lwname_len/sizeof(WCHAR)] = 0; /* null-terminate */
5733 filename_from_utf16 (lwname, resolved);
5734 dostounix_filename (resolved);
5735 lname_size = strlen (resolved) + 1;
5736 if (lname_size <= buf_size)
5737 size_to_copy = lname_size;
5738 strncpy (buf, resolved, size_to_copy);
5739 /* Success! */
5740 retval = size_to_copy;
5741 }
5742 CloseHandle (sh);
5743 }
5744 else
5745 {
5746 /* CreateFile failed. */
5747 DWORD w32err2 = GetLastError ();
5748
5749 switch (w32err2)
5750 {
5751 case ERROR_FILE_NOT_FOUND:
5752 case ERROR_PATH_NOT_FOUND:
5753 errno = ENOENT;
5754 break;
5755 case ERROR_ACCESS_DENIED:
5756 case ERROR_TOO_MANY_OPEN_FILES:
5757 errno = EACCES;
5758 break;
5759 default:
5760 errno = EPERM;
5761 break;
5762 }
5763 }
5764 if (restore_privs)
5765 {
5766 restore_privilege (&privs);
5767 revert_to_self ();
5768 }
5769
5770 return retval;
5771 }
5772
5773 ssize_t
5774 readlinkat (int fd, char const *name, char *buffer,
5775 size_t buffer_size)
5776 {
5777 /* Rely on a hack: an open directory is modeled as file descriptor 0,
5778 as in fstatat. FIXME: Add proper support for readlinkat. */
5779 char fullname[MAX_UTF8_PATH];
5780
5781 if (fd != AT_FDCWD)
5782 {
5783 if (_snprintf (fullname, sizeof fullname, "%s/%s", dir_pathname, name)
5784 < 0)
5785 {
5786 errno = ENAMETOOLONG;
5787 return -1;
5788 }
5789 name = fullname;
5790 }
5791
5792 return readlink (name, buffer, buffer_size);
5793 }
5794
5795 /* If FILE is a symlink, return its target (stored in a static
5796 buffer); otherwise return FILE.
5797
5798 This function repeatedly resolves symlinks in the last component of
5799 a chain of symlink file names, as in foo -> bar -> baz -> ...,
5800 until it arrives at a file whose last component is not a symlink,
5801 or some error occurs. It returns the target of the last
5802 successfully resolved symlink in the chain. If it succeeds to
5803 resolve even a single symlink, the value returned is an absolute
5804 file name with backslashes (result of GetFullPathName). By
5805 contrast, if the original FILE is returned, it is unaltered.
5806
5807 Note: This function can set errno even if it succeeds.
5808
5809 Implementation note: we only resolve the last portion ("basename")
5810 of the argument FILE and of each following file in the chain,
5811 disregarding any possible symlinks in its leading directories.
5812 This is because Windows system calls and library functions
5813 transparently resolve symlinks in leading directories and return
5814 correct information, as long as the basename is not a symlink. */
5815 static char *
5816 chase_symlinks (const char *file)
5817 {
5818 static char target[MAX_UTF8_PATH];
5819 char link[MAX_UTF8_PATH];
5820 wchar_t target_w[MAX_PATH], link_w[MAX_PATH];
5821 char target_a[MAX_PATH], link_a[MAX_PATH];
5822 ssize_t res, link_len;
5823 int loop_count = 0;
5824
5825 if (is_windows_9x () == TRUE || !is_symlink (file))
5826 return (char *)file;
5827
5828 if (w32_unicode_filenames)
5829 {
5830 wchar_t file_w[MAX_PATH];
5831
5832 filename_to_utf16 (file, file_w);
5833 if (GetFullPathNameW (file_w, MAX_PATH, link_w, NULL) == 0)
5834 return (char *)file;
5835 filename_from_utf16 (link_w, link);
5836 }
5837 else
5838 {
5839 char file_a[MAX_PATH];
5840
5841 filename_to_ansi (file, file_a);
5842 if (GetFullPathNameA (file_a, MAX_PATH, link_a, NULL) == 0)
5843 return (char *)file;
5844 filename_from_ansi (link_a, link);
5845 }
5846 link_len = strlen (link);
5847
5848 target[0] = '\0';
5849 do {
5850
5851 /* Remove trailing slashes, as we want to resolve the last
5852 non-trivial part of the link name. */
5853 while (link_len > 3 && IS_DIRECTORY_SEP (link[link_len-1]))
5854 link[link_len--] = '\0';
5855
5856 res = readlink (link, target, MAX_UTF8_PATH);
5857 if (res > 0)
5858 {
5859 target[res] = '\0';
5860 if (!(IS_DEVICE_SEP (target[1])
5861 || (IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1]))))
5862 {
5863 /* Target is relative. Append it to the directory part of
5864 the symlink, then copy the result back to target. */
5865 char *p = link + link_len;
5866
5867 while (p > link && !IS_ANY_SEP (p[-1]))
5868 p--;
5869 strcpy (p, target);
5870 strcpy (target, link);
5871 }
5872 /* Resolve any "." and ".." to get a fully-qualified file name
5873 in link[] again. */
5874 if (w32_unicode_filenames)
5875 {
5876 filename_to_utf16 (target, target_w);
5877 link_len = GetFullPathNameW (target_w, MAX_PATH, link_w, NULL);
5878 if (link_len > 0)
5879 filename_from_utf16 (link_w, link);
5880 }
5881 else
5882 {
5883 filename_to_ansi (target, target_a);
5884 link_len = GetFullPathNameA (target_a, MAX_PATH, link_a, NULL);
5885 if (link_len > 0)
5886 filename_from_ansi (link_a, link);
5887 }
5888 link_len = strlen (link);
5889 }
5890 } while (res > 0 && link_len > 0 && ++loop_count <= 100);
5891
5892 if (loop_count > 100)
5893 errno = ELOOP;
5894
5895 if (target[0] == '\0') /* not a single call to readlink succeeded */
5896 return (char *)file;
5897 return target;
5898 }
5899
5900 \f
5901 /* Posix ACL emulation. */
5902
5903 int
5904 acl_valid (acl_t acl)
5905 {
5906 return is_valid_security_descriptor ((PSECURITY_DESCRIPTOR)acl) ? 0 : -1;
5907 }
5908
5909 char *
5910 acl_to_text (acl_t acl, ssize_t *size)
5911 {
5912 LPTSTR str_acl;
5913 SECURITY_INFORMATION flags =
5914 OWNER_SECURITY_INFORMATION |
5915 GROUP_SECURITY_INFORMATION |
5916 DACL_SECURITY_INFORMATION;
5917 char *retval = NULL;
5918 ULONG local_size;
5919 int e = errno;
5920
5921 errno = 0;
5922
5923 if (convert_sd_to_sddl ((PSECURITY_DESCRIPTOR)acl, SDDL_REVISION_1, flags, &str_acl, &local_size))
5924 {
5925 errno = e;
5926 /* We don't want to mix heaps, so we duplicate the string in our
5927 heap and free the one allocated by the API. */
5928 retval = xstrdup (str_acl);
5929 if (size)
5930 *size = local_size;
5931 LocalFree (str_acl);
5932 }
5933 else if (errno != ENOTSUP)
5934 errno = EINVAL;
5935
5936 return retval;
5937 }
5938
5939 acl_t
5940 acl_from_text (const char *acl_str)
5941 {
5942 PSECURITY_DESCRIPTOR psd, retval = NULL;
5943 ULONG sd_size;
5944 int e = errno;
5945
5946 errno = 0;
5947
5948 if (convert_sddl_to_sd (acl_str, SDDL_REVISION_1, &psd, &sd_size))
5949 {
5950 errno = e;
5951 retval = xmalloc (sd_size);
5952 memcpy (retval, psd, sd_size);
5953 LocalFree (psd);
5954 }
5955 else if (errno != ENOTSUP)
5956 errno = EINVAL;
5957
5958 return retval;
5959 }
5960
5961 int
5962 acl_free (void *ptr)
5963 {
5964 xfree (ptr);
5965 return 0;
5966 }
5967
5968 acl_t
5969 acl_get_file (const char *fname, acl_type_t type)
5970 {
5971 PSECURITY_DESCRIPTOR psd = NULL;
5972 const char *filename;
5973
5974 if (type == ACL_TYPE_ACCESS)
5975 {
5976 DWORD sd_len, err;
5977 SECURITY_INFORMATION si =
5978 OWNER_SECURITY_INFORMATION |
5979 GROUP_SECURITY_INFORMATION |
5980 DACL_SECURITY_INFORMATION ;
5981 int e = errno;
5982
5983 filename = map_w32_filename (fname, NULL);
5984 if ((volume_info.flags & FILE_SUPPORTS_REPARSE_POINTS) != 0)
5985 fname = chase_symlinks (filename);
5986 else
5987 fname = filename;
5988
5989 errno = 0;
5990 if (!get_file_security (fname, si, psd, 0, &sd_len)
5991 && errno != ENOTSUP)
5992 {
5993 err = GetLastError ();
5994 if (err == ERROR_INSUFFICIENT_BUFFER)
5995 {
5996 psd = xmalloc (sd_len);
5997 if (!get_file_security (fname, si, psd, sd_len, &sd_len))
5998 {
5999 xfree (psd);
6000 errno = EIO;
6001 psd = NULL;
6002 }
6003 }
6004 else if (err == ERROR_FILE_NOT_FOUND
6005 || err == ERROR_PATH_NOT_FOUND
6006 /* ERROR_INVALID_NAME is what we get if
6007 w32-unicode-filenames is nil and the file cannot
6008 be encoded in the current ANSI codepage. */
6009 || err == ERROR_INVALID_NAME)
6010 errno = ENOENT;
6011 else
6012 errno = EIO;
6013 }
6014 else if (!errno)
6015 errno = e;
6016 }
6017 else if (type != ACL_TYPE_DEFAULT)
6018 errno = EINVAL;
6019
6020 return psd;
6021 }
6022
6023 int
6024 acl_set_file (const char *fname, acl_type_t type, acl_t acl)
6025 {
6026 TOKEN_PRIVILEGES old1, old2;
6027 DWORD err;
6028 int st = 0, retval = -1;
6029 SECURITY_INFORMATION flags = 0;
6030 PSID psidOwner, psidGroup;
6031 PACL pacl;
6032 BOOL dflt;
6033 BOOL dacl_present;
6034 int e;
6035 const char *filename;
6036
6037 if (acl_valid (acl) != 0
6038 || (type != ACL_TYPE_DEFAULT && type != ACL_TYPE_ACCESS))
6039 {
6040 errno = EINVAL;
6041 return -1;
6042 }
6043
6044 if (type == ACL_TYPE_DEFAULT)
6045 {
6046 errno = ENOSYS;
6047 return -1;
6048 }
6049
6050 filename = map_w32_filename (fname, NULL);
6051 if ((volume_info.flags & FILE_SUPPORTS_REPARSE_POINTS) != 0)
6052 fname = chase_symlinks (filename);
6053 else
6054 fname = filename;
6055
6056 if (get_security_descriptor_owner ((PSECURITY_DESCRIPTOR)acl, &psidOwner,
6057 &dflt)
6058 && psidOwner)
6059 flags |= OWNER_SECURITY_INFORMATION;
6060 if (get_security_descriptor_group ((PSECURITY_DESCRIPTOR)acl, &psidGroup,
6061 &dflt)
6062 && psidGroup)
6063 flags |= GROUP_SECURITY_INFORMATION;
6064 if (get_security_descriptor_dacl ((PSECURITY_DESCRIPTOR)acl, &dacl_present,
6065 &pacl, &dflt)
6066 && dacl_present)
6067 flags |= DACL_SECURITY_INFORMATION;
6068 if (!flags)
6069 return 0;
6070
6071 /* According to KB-245153, setting the owner will succeed if either:
6072 (1) the caller is the user who will be the new owner, and has the
6073 SE_TAKE_OWNERSHIP privilege, or
6074 (2) the caller has the SE_RESTORE privilege, in which case she can
6075 set any valid user or group as the owner
6076
6077 We request below both SE_TAKE_OWNERSHIP and SE_RESTORE
6078 privileges, and disregard any failures in obtaining them. If
6079 these privileges cannot be obtained, and do not already exist in
6080 the calling thread's security token, this function could fail
6081 with EPERM. */
6082 if (enable_privilege (SE_TAKE_OWNERSHIP_NAME, TRUE, &old1))
6083 st++;
6084 if (enable_privilege (SE_RESTORE_NAME, TRUE, &old2))
6085 st++;
6086
6087 e = errno;
6088 errno = 0;
6089 /* SetFileSecurity is deprecated by MS, and sometimes fails when
6090 DACL inheritance is involved, but it seems to preserve ownership
6091 better than SetNamedSecurityInfo, which is important e.g., in
6092 copy-file. */
6093 if (!set_file_security (fname, flags, (PSECURITY_DESCRIPTOR)acl))
6094 {
6095 err = GetLastError ();
6096
6097 if (errno != ENOTSUP)
6098 err = set_named_security_info (fname, SE_FILE_OBJECT, flags,
6099 psidOwner, psidGroup, pacl, NULL);
6100 }
6101 else
6102 err = ERROR_SUCCESS;
6103 if (err != ERROR_SUCCESS)
6104 {
6105 if (errno == ENOTSUP)
6106 ;
6107 else if (err == ERROR_INVALID_OWNER
6108 || err == ERROR_NOT_ALL_ASSIGNED
6109 || err == ERROR_ACCESS_DENIED)
6110 {
6111 /* Maybe the requested ACL and the one the file already has
6112 are identical, in which case we can silently ignore the
6113 failure. (And no, Windows doesn't.) */
6114 acl_t current_acl = acl_get_file (fname, ACL_TYPE_ACCESS);
6115
6116 errno = EPERM;
6117 if (current_acl)
6118 {
6119 char *acl_from = acl_to_text (current_acl, NULL);
6120 char *acl_to = acl_to_text (acl, NULL);
6121
6122 if (acl_from && acl_to && xstrcasecmp (acl_from, acl_to) == 0)
6123 {
6124 retval = 0;
6125 errno = e;
6126 }
6127 if (acl_from)
6128 acl_free (acl_from);
6129 if (acl_to)
6130 acl_free (acl_to);
6131 acl_free (current_acl);
6132 }
6133 }
6134 else if (err == ERROR_FILE_NOT_FOUND
6135 || err == ERROR_PATH_NOT_FOUND
6136 /* ERROR_INVALID_NAME is what we get if
6137 w32-unicode-filenames is nil and the file cannot be
6138 encoded in the current ANSI codepage. */
6139 || err == ERROR_INVALID_NAME)
6140 errno = ENOENT;
6141 else
6142 errno = EACCES;
6143 }
6144 else
6145 {
6146 retval = 0;
6147 errno = e;
6148 }
6149
6150 if (st)
6151 {
6152 if (st >= 2)
6153 restore_privilege (&old2);
6154 restore_privilege (&old1);
6155 revert_to_self ();
6156 }
6157
6158 return retval;
6159 }
6160
6161 \f
6162 /* MS-Windows version of careadlinkat (cf. ../lib/careadlinkat.c). We
6163 have a fixed max size for file names, so we don't need the kind of
6164 alloc/malloc/realloc dance the gnulib version does. We also don't
6165 support FD-relative symlinks. */
6166 char *
6167 careadlinkat (int fd, char const *filename,
6168 char *buffer, size_t buffer_size,
6169 struct allocator const *alloc,
6170 ssize_t (*preadlinkat) (int, char const *, char *, size_t))
6171 {
6172 char linkname[MAX_UTF8_PATH];
6173 ssize_t link_size;
6174
6175 link_size = preadlinkat (fd, filename, linkname, sizeof(linkname));
6176
6177 if (link_size > 0)
6178 {
6179 char *retval = buffer;
6180
6181 linkname[link_size++] = '\0';
6182 if (link_size > buffer_size)
6183 retval = (char *)(alloc ? alloc->allocate : xmalloc) (link_size);
6184 if (retval)
6185 memcpy (retval, linkname, link_size);
6186
6187 return retval;
6188 }
6189 return NULL;
6190 }
6191
6192 int
6193 w32_copy_file (const char *from, const char *to,
6194 int keep_time, int preserve_ownership, int copy_acls)
6195 {
6196 acl_t acl = NULL;
6197 BOOL copy_result;
6198 wchar_t from_w[MAX_PATH], to_w[MAX_PATH];
6199 char from_a[MAX_PATH], to_a[MAX_PATH];
6200
6201 /* We ignore preserve_ownership for now. */
6202 preserve_ownership = preserve_ownership;
6203
6204 if (copy_acls)
6205 {
6206 acl = acl_get_file (from, ACL_TYPE_ACCESS);
6207 if (acl == NULL && acl_errno_valid (errno))
6208 return -2;
6209 }
6210 if (w32_unicode_filenames)
6211 {
6212 filename_to_utf16 (from, from_w);
6213 filename_to_utf16 (to, to_w);
6214 copy_result = CopyFileW (from_w, to_w, FALSE);
6215 }
6216 else
6217 {
6218 filename_to_ansi (from, from_a);
6219 filename_to_ansi (to, to_a);
6220 copy_result = CopyFileA (from_a, to_a, FALSE);
6221 }
6222 if (!copy_result)
6223 {
6224 /* CopyFile doesn't set errno when it fails. By far the most
6225 "popular" reason is that the target is read-only. */
6226 DWORD err = GetLastError ();
6227
6228 switch (err)
6229 {
6230 case ERROR_FILE_NOT_FOUND:
6231 errno = ENOENT;
6232 break;
6233 case ERROR_ACCESS_DENIED:
6234 errno = EACCES;
6235 break;
6236 case ERROR_ENCRYPTION_FAILED:
6237 errno = EIO;
6238 break;
6239 default:
6240 errno = EPERM;
6241 break;
6242 }
6243
6244 if (acl)
6245 acl_free (acl);
6246 return -1;
6247 }
6248 /* CopyFile retains the timestamp by default. However, see
6249 "Community Additions" for CopyFile: it sounds like that is not
6250 entirely true. Testing on Windows XP confirms that modified time
6251 is copied, but creation and last-access times are not.
6252 FIXME? */
6253 else if (!keep_time)
6254 {
6255 struct timespec now;
6256 DWORD attributes;
6257
6258 if (w32_unicode_filenames)
6259 {
6260 /* Ensure file is writable while its times are set. */
6261 attributes = GetFileAttributesW (to_w);
6262 SetFileAttributesW (to_w, attributes & ~FILE_ATTRIBUTE_READONLY);
6263 now = current_timespec ();
6264 if (set_file_times (-1, to, now, now))
6265 {
6266 /* Restore original attributes. */
6267 SetFileAttributesW (to_w, attributes);
6268 if (acl)
6269 acl_free (acl);
6270 return -3;
6271 }
6272 /* Restore original attributes. */
6273 SetFileAttributesW (to_w, attributes);
6274 }
6275 else
6276 {
6277 attributes = GetFileAttributesA (to_a);
6278 SetFileAttributesA (to_a, attributes & ~FILE_ATTRIBUTE_READONLY);
6279 now = current_timespec ();
6280 if (set_file_times (-1, to, now, now))
6281 {
6282 SetFileAttributesA (to_a, attributes);
6283 if (acl)
6284 acl_free (acl);
6285 return -3;
6286 }
6287 SetFileAttributesA (to_a, attributes);
6288 }
6289 }
6290 if (acl != NULL)
6291 {
6292 bool fail =
6293 acl_set_file (to, ACL_TYPE_ACCESS, acl) != 0;
6294 acl_free (acl);
6295 if (fail && acl_errno_valid (errno))
6296 return -4;
6297 }
6298
6299 return 0;
6300 }
6301
6302 \f
6303 /* Support for browsing other processes and their attributes. See
6304 process.c for the Lisp bindings. */
6305
6306 /* Helper wrapper functions. */
6307
6308 static HANDLE WINAPI
6309 create_toolhelp32_snapshot (DWORD Flags, DWORD Ignored)
6310 {
6311 static CreateToolhelp32Snapshot_Proc s_pfn_Create_Toolhelp32_Snapshot = NULL;
6312
6313 if (g_b_init_create_toolhelp32_snapshot == 0)
6314 {
6315 g_b_init_create_toolhelp32_snapshot = 1;
6316 s_pfn_Create_Toolhelp32_Snapshot = (CreateToolhelp32Snapshot_Proc)
6317 GetProcAddress (GetModuleHandle ("kernel32.dll"),
6318 "CreateToolhelp32Snapshot");
6319 }
6320 if (s_pfn_Create_Toolhelp32_Snapshot == NULL)
6321 {
6322 return INVALID_HANDLE_VALUE;
6323 }
6324 return (s_pfn_Create_Toolhelp32_Snapshot (Flags, Ignored));
6325 }
6326
6327 static BOOL WINAPI
6328 process32_first (HANDLE hSnapshot, LPPROCESSENTRY32 lppe)
6329 {
6330 static Process32First_Proc s_pfn_Process32_First = NULL;
6331
6332 if (g_b_init_process32_first == 0)
6333 {
6334 g_b_init_process32_first = 1;
6335 s_pfn_Process32_First = (Process32First_Proc)
6336 GetProcAddress (GetModuleHandle ("kernel32.dll"),
6337 "Process32First");
6338 }
6339 if (s_pfn_Process32_First == NULL)
6340 {
6341 return FALSE;
6342 }
6343 return (s_pfn_Process32_First (hSnapshot, lppe));
6344 }
6345
6346 static BOOL WINAPI
6347 process32_next (HANDLE hSnapshot, LPPROCESSENTRY32 lppe)
6348 {
6349 static Process32Next_Proc s_pfn_Process32_Next = NULL;
6350
6351 if (g_b_init_process32_next == 0)
6352 {
6353 g_b_init_process32_next = 1;
6354 s_pfn_Process32_Next = (Process32Next_Proc)
6355 GetProcAddress (GetModuleHandle ("kernel32.dll"),
6356 "Process32Next");
6357 }
6358 if (s_pfn_Process32_Next == NULL)
6359 {
6360 return FALSE;
6361 }
6362 return (s_pfn_Process32_Next (hSnapshot, lppe));
6363 }
6364
6365 static BOOL WINAPI
6366 open_thread_token (HANDLE ThreadHandle,
6367 DWORD DesiredAccess,
6368 BOOL OpenAsSelf,
6369 PHANDLE TokenHandle)
6370 {
6371 static OpenThreadToken_Proc s_pfn_Open_Thread_Token = NULL;
6372 HMODULE hm_advapi32 = NULL;
6373 if (is_windows_9x () == TRUE)
6374 {
6375 SetLastError (ERROR_NOT_SUPPORTED);
6376 return FALSE;
6377 }
6378 if (g_b_init_open_thread_token == 0)
6379 {
6380 g_b_init_open_thread_token = 1;
6381 hm_advapi32 = LoadLibrary ("Advapi32.dll");
6382 s_pfn_Open_Thread_Token =
6383 (OpenThreadToken_Proc) GetProcAddress (hm_advapi32, "OpenThreadToken");
6384 }
6385 if (s_pfn_Open_Thread_Token == NULL)
6386 {
6387 SetLastError (ERROR_NOT_SUPPORTED);
6388 return FALSE;
6389 }
6390 return (
6391 s_pfn_Open_Thread_Token (
6392 ThreadHandle,
6393 DesiredAccess,
6394 OpenAsSelf,
6395 TokenHandle)
6396 );
6397 }
6398
6399 static BOOL WINAPI
6400 impersonate_self (SECURITY_IMPERSONATION_LEVEL ImpersonationLevel)
6401 {
6402 static ImpersonateSelf_Proc s_pfn_Impersonate_Self = NULL;
6403 HMODULE hm_advapi32 = NULL;
6404 if (is_windows_9x () == TRUE)
6405 {
6406 return FALSE;
6407 }
6408 if (g_b_init_impersonate_self == 0)
6409 {
6410 g_b_init_impersonate_self = 1;
6411 hm_advapi32 = LoadLibrary ("Advapi32.dll");
6412 s_pfn_Impersonate_Self =
6413 (ImpersonateSelf_Proc) GetProcAddress (hm_advapi32, "ImpersonateSelf");
6414 }
6415 if (s_pfn_Impersonate_Self == NULL)
6416 {
6417 return FALSE;
6418 }
6419 return s_pfn_Impersonate_Self (ImpersonationLevel);
6420 }
6421
6422 static BOOL WINAPI
6423 revert_to_self (void)
6424 {
6425 static RevertToSelf_Proc s_pfn_Revert_To_Self = NULL;
6426 HMODULE hm_advapi32 = NULL;
6427 if (is_windows_9x () == TRUE)
6428 {
6429 return FALSE;
6430 }
6431 if (g_b_init_revert_to_self == 0)
6432 {
6433 g_b_init_revert_to_self = 1;
6434 hm_advapi32 = LoadLibrary ("Advapi32.dll");
6435 s_pfn_Revert_To_Self =
6436 (RevertToSelf_Proc) GetProcAddress (hm_advapi32, "RevertToSelf");
6437 }
6438 if (s_pfn_Revert_To_Self == NULL)
6439 {
6440 return FALSE;
6441 }
6442 return s_pfn_Revert_To_Self ();
6443 }
6444
6445 static BOOL WINAPI
6446 get_process_memory_info (HANDLE h_proc,
6447 PPROCESS_MEMORY_COUNTERS mem_counters,
6448 DWORD bufsize)
6449 {
6450 static GetProcessMemoryInfo_Proc s_pfn_Get_Process_Memory_Info = NULL;
6451 HMODULE hm_psapi = NULL;
6452 if (is_windows_9x () == TRUE)
6453 {
6454 return FALSE;
6455 }
6456 if (g_b_init_get_process_memory_info == 0)
6457 {
6458 g_b_init_get_process_memory_info = 1;
6459 hm_psapi = LoadLibrary ("Psapi.dll");
6460 if (hm_psapi)
6461 s_pfn_Get_Process_Memory_Info = (GetProcessMemoryInfo_Proc)
6462 GetProcAddress (hm_psapi, "GetProcessMemoryInfo");
6463 }
6464 if (s_pfn_Get_Process_Memory_Info == NULL)
6465 {
6466 return FALSE;
6467 }
6468 return s_pfn_Get_Process_Memory_Info (h_proc, mem_counters, bufsize);
6469 }
6470
6471 static BOOL WINAPI
6472 get_process_working_set_size (HANDLE h_proc,
6473 PSIZE_T minrss,
6474 PSIZE_T maxrss)
6475 {
6476 static GetProcessWorkingSetSize_Proc
6477 s_pfn_Get_Process_Working_Set_Size = NULL;
6478
6479 if (is_windows_9x () == TRUE)
6480 {
6481 return FALSE;
6482 }
6483 if (g_b_init_get_process_working_set_size == 0)
6484 {
6485 g_b_init_get_process_working_set_size = 1;
6486 s_pfn_Get_Process_Working_Set_Size = (GetProcessWorkingSetSize_Proc)
6487 GetProcAddress (GetModuleHandle ("kernel32.dll"),
6488 "GetProcessWorkingSetSize");
6489 }
6490 if (s_pfn_Get_Process_Working_Set_Size == NULL)
6491 {
6492 return FALSE;
6493 }
6494 return s_pfn_Get_Process_Working_Set_Size (h_proc, minrss, maxrss);
6495 }
6496
6497 static BOOL WINAPI
6498 global_memory_status (MEMORYSTATUS *buf)
6499 {
6500 static GlobalMemoryStatus_Proc s_pfn_Global_Memory_Status = NULL;
6501
6502 if (is_windows_9x () == TRUE)
6503 {
6504 return FALSE;
6505 }
6506 if (g_b_init_global_memory_status == 0)
6507 {
6508 g_b_init_global_memory_status = 1;
6509 s_pfn_Global_Memory_Status = (GlobalMemoryStatus_Proc)
6510 GetProcAddress (GetModuleHandle ("kernel32.dll"),
6511 "GlobalMemoryStatus");
6512 }
6513 if (s_pfn_Global_Memory_Status == NULL)
6514 {
6515 return FALSE;
6516 }
6517 return s_pfn_Global_Memory_Status (buf);
6518 }
6519
6520 static BOOL WINAPI
6521 global_memory_status_ex (MEMORY_STATUS_EX *buf)
6522 {
6523 static GlobalMemoryStatusEx_Proc s_pfn_Global_Memory_Status_Ex = NULL;
6524
6525 if (is_windows_9x () == TRUE)
6526 {
6527 return FALSE;
6528 }
6529 if (g_b_init_global_memory_status_ex == 0)
6530 {
6531 g_b_init_global_memory_status_ex = 1;
6532 s_pfn_Global_Memory_Status_Ex = (GlobalMemoryStatusEx_Proc)
6533 GetProcAddress (GetModuleHandle ("kernel32.dll"),
6534 "GlobalMemoryStatusEx");
6535 }
6536 if (s_pfn_Global_Memory_Status_Ex == NULL)
6537 {
6538 return FALSE;
6539 }
6540 return s_pfn_Global_Memory_Status_Ex (buf);
6541 }
6542
6543 Lisp_Object
6544 list_system_processes (void)
6545 {
6546 struct gcpro gcpro1;
6547 Lisp_Object proclist = Qnil;
6548 HANDLE h_snapshot;
6549
6550 h_snapshot = create_toolhelp32_snapshot (TH32CS_SNAPPROCESS, 0);
6551
6552 if (h_snapshot != INVALID_HANDLE_VALUE)
6553 {
6554 PROCESSENTRY32 proc_entry;
6555 DWORD proc_id;
6556 BOOL res;
6557
6558 GCPRO1 (proclist);
6559
6560 proc_entry.dwSize = sizeof (PROCESSENTRY32);
6561 for (res = process32_first (h_snapshot, &proc_entry); res;
6562 res = process32_next (h_snapshot, &proc_entry))
6563 {
6564 proc_id = proc_entry.th32ProcessID;
6565 proclist = Fcons (make_fixnum_or_float (proc_id), proclist);
6566 }
6567
6568 CloseHandle (h_snapshot);
6569 UNGCPRO;
6570 proclist = Fnreverse (proclist);
6571 }
6572
6573 return proclist;
6574 }
6575
6576 static int
6577 enable_privilege (LPCTSTR priv_name, BOOL enable_p, TOKEN_PRIVILEGES *old_priv)
6578 {
6579 TOKEN_PRIVILEGES priv;
6580 DWORD priv_size = sizeof (priv);
6581 DWORD opriv_size = sizeof (*old_priv);
6582 HANDLE h_token = NULL;
6583 HANDLE h_thread = GetCurrentThread ();
6584 int ret_val = 0;
6585 BOOL res;
6586
6587 res = open_thread_token (h_thread,
6588 TOKEN_QUERY | TOKEN_ADJUST_PRIVILEGES,
6589 FALSE, &h_token);
6590 if (!res && GetLastError () == ERROR_NO_TOKEN)
6591 {
6592 if (impersonate_self (SecurityImpersonation))
6593 res = open_thread_token (h_thread,
6594 TOKEN_QUERY | TOKEN_ADJUST_PRIVILEGES,
6595 FALSE, &h_token);
6596 }
6597 if (res)
6598 {
6599 priv.PrivilegeCount = 1;
6600 priv.Privileges[0].Attributes = enable_p ? SE_PRIVILEGE_ENABLED : 0;
6601 LookupPrivilegeValue (NULL, priv_name, &priv.Privileges[0].Luid);
6602 if (AdjustTokenPrivileges (h_token, FALSE, &priv, priv_size,
6603 old_priv, &opriv_size)
6604 && GetLastError () != ERROR_NOT_ALL_ASSIGNED)
6605 ret_val = 1;
6606 }
6607 if (h_token)
6608 CloseHandle (h_token);
6609
6610 return ret_val;
6611 }
6612
6613 static int
6614 restore_privilege (TOKEN_PRIVILEGES *priv)
6615 {
6616 DWORD priv_size = sizeof (*priv);
6617 HANDLE h_token = NULL;
6618 int ret_val = 0;
6619
6620 if (open_thread_token (GetCurrentThread (),
6621 TOKEN_QUERY | TOKEN_ADJUST_PRIVILEGES,
6622 FALSE, &h_token))
6623 {
6624 if (AdjustTokenPrivileges (h_token, FALSE, priv, priv_size, NULL, NULL)
6625 && GetLastError () != ERROR_NOT_ALL_ASSIGNED)
6626 ret_val = 1;
6627 }
6628 if (h_token)
6629 CloseHandle (h_token);
6630
6631 return ret_val;
6632 }
6633
6634 static Lisp_Object
6635 ltime (ULONGLONG time_100ns)
6636 {
6637 ULONGLONG time_sec = time_100ns / 10000000;
6638 int subsec = time_100ns % 10000000;
6639 return list4i (time_sec >> 16, time_sec & 0xffff,
6640 subsec / 10, subsec % 10 * 100000);
6641 }
6642
6643 #define U64_TO_LISP_TIME(time) ltime (time)
6644
6645 static int
6646 process_times (HANDLE h_proc, Lisp_Object *ctime, Lisp_Object *etime,
6647 Lisp_Object *stime, Lisp_Object *utime, Lisp_Object *ttime,
6648 double *pcpu)
6649 {
6650 FILETIME ft_creation, ft_exit, ft_kernel, ft_user, ft_current;
6651 ULONGLONG tem1, tem2, tem3, tem;
6652
6653 if (!h_proc
6654 || !get_process_times_fn
6655 || !(*get_process_times_fn) (h_proc, &ft_creation, &ft_exit,
6656 &ft_kernel, &ft_user))
6657 return 0;
6658
6659 GetSystemTimeAsFileTime (&ft_current);
6660
6661 FILETIME_TO_U64 (tem1, ft_kernel);
6662 *stime = U64_TO_LISP_TIME (tem1);
6663
6664 FILETIME_TO_U64 (tem2, ft_user);
6665 *utime = U64_TO_LISP_TIME (tem2);
6666
6667 tem3 = tem1 + tem2;
6668 *ttime = U64_TO_LISP_TIME (tem3);
6669
6670 FILETIME_TO_U64 (tem, ft_creation);
6671 /* Process no 4 (System) returns zero creation time. */
6672 if (tem)
6673 tem -= utc_base;
6674 *ctime = U64_TO_LISP_TIME (tem);
6675
6676 if (tem)
6677 {
6678 FILETIME_TO_U64 (tem3, ft_current);
6679 tem = (tem3 - utc_base) - tem;
6680 }
6681 *etime = U64_TO_LISP_TIME (tem);
6682
6683 if (tem)
6684 {
6685 *pcpu = 100.0 * (tem1 + tem2) / tem;
6686 if (*pcpu > 100)
6687 *pcpu = 100.0;
6688 }
6689 else
6690 *pcpu = 0;
6691
6692 return 1;
6693 }
6694
6695 Lisp_Object
6696 system_process_attributes (Lisp_Object pid)
6697 {
6698 struct gcpro gcpro1, gcpro2, gcpro3;
6699 Lisp_Object attrs = Qnil;
6700 Lisp_Object cmd_str, decoded_cmd, tem;
6701 HANDLE h_snapshot, h_proc;
6702 DWORD proc_id;
6703 int found_proc = 0;
6704 char uname[UNLEN+1], gname[GNLEN+1], domain[1025];
6705 DWORD ulength = sizeof (uname), dlength = sizeof (domain), needed;
6706 DWORD glength = sizeof (gname);
6707 HANDLE token = NULL;
6708 SID_NAME_USE user_type;
6709 unsigned char *buf = NULL;
6710 DWORD blen = 0;
6711 TOKEN_USER user_token;
6712 TOKEN_PRIMARY_GROUP group_token;
6713 unsigned euid;
6714 unsigned egid;
6715 PROCESS_MEMORY_COUNTERS mem;
6716 PROCESS_MEMORY_COUNTERS_EX mem_ex;
6717 SIZE_T minrss, maxrss;
6718 MEMORYSTATUS memst;
6719 MEMORY_STATUS_EX memstex;
6720 double totphys = 0.0;
6721 Lisp_Object ctime, stime, utime, etime, ttime;
6722 double pcpu;
6723 BOOL result = FALSE;
6724
6725 CHECK_NUMBER_OR_FLOAT (pid);
6726 proc_id = FLOATP (pid) ? XFLOAT_DATA (pid) : XINT (pid);
6727
6728 h_snapshot = create_toolhelp32_snapshot (TH32CS_SNAPPROCESS, 0);
6729
6730 GCPRO3 (attrs, decoded_cmd, tem);
6731
6732 if (h_snapshot != INVALID_HANDLE_VALUE)
6733 {
6734 PROCESSENTRY32 pe;
6735 BOOL res;
6736
6737 pe.dwSize = sizeof (PROCESSENTRY32);
6738 for (res = process32_first (h_snapshot, &pe); res;
6739 res = process32_next (h_snapshot, &pe))
6740 {
6741 if (proc_id == pe.th32ProcessID)
6742 {
6743 if (proc_id == 0)
6744 decoded_cmd = build_string ("Idle");
6745 else
6746 {
6747 /* Decode the command name from locale-specific
6748 encoding. */
6749 cmd_str = build_unibyte_string (pe.szExeFile);
6750
6751 decoded_cmd =
6752 code_convert_string_norecord (cmd_str,
6753 Vlocale_coding_system, 0);
6754 }
6755 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
6756 attrs = Fcons (Fcons (Qppid,
6757 make_fixnum_or_float (pe.th32ParentProcessID)),
6758 attrs);
6759 attrs = Fcons (Fcons (Qpri, make_number (pe.pcPriClassBase)),
6760 attrs);
6761 attrs = Fcons (Fcons (Qthcount,
6762 make_fixnum_or_float (pe.cntThreads)),
6763 attrs);
6764 found_proc = 1;
6765 break;
6766 }
6767 }
6768
6769 CloseHandle (h_snapshot);
6770 }
6771
6772 if (!found_proc)
6773 {
6774 UNGCPRO;
6775 return Qnil;
6776 }
6777
6778 h_proc = OpenProcess (PROCESS_QUERY_INFORMATION | PROCESS_VM_READ,
6779 FALSE, proc_id);
6780 /* If we were denied a handle to the process, try again after
6781 enabling the SeDebugPrivilege in our process. */
6782 if (!h_proc)
6783 {
6784 TOKEN_PRIVILEGES priv_current;
6785
6786 if (enable_privilege (SE_DEBUG_NAME, TRUE, &priv_current))
6787 {
6788 h_proc = OpenProcess (PROCESS_QUERY_INFORMATION | PROCESS_VM_READ,
6789 FALSE, proc_id);
6790 restore_privilege (&priv_current);
6791 revert_to_self ();
6792 }
6793 }
6794 if (h_proc)
6795 {
6796 result = open_process_token (h_proc, TOKEN_QUERY, &token);
6797 if (result)
6798 {
6799 result = get_token_information (token, TokenUser, NULL, 0, &blen);
6800 if (!result && GetLastError () == ERROR_INSUFFICIENT_BUFFER)
6801 {
6802 buf = xmalloc (blen);
6803 result = get_token_information (token, TokenUser,
6804 (LPVOID)buf, blen, &needed);
6805 if (result)
6806 {
6807 memcpy (&user_token, buf, sizeof (user_token));
6808 if (!w32_cached_id (user_token.User.Sid, &euid, uname))
6809 {
6810 euid = get_rid (user_token.User.Sid);
6811 result = lookup_account_sid (NULL, user_token.User.Sid,
6812 uname, &ulength,
6813 domain, &dlength,
6814 &user_type);
6815 if (result)
6816 w32_add_to_cache (user_token.User.Sid, euid, uname);
6817 else
6818 {
6819 strcpy (uname, "unknown");
6820 result = TRUE;
6821 }
6822 }
6823 ulength = strlen (uname);
6824 }
6825 }
6826 }
6827 if (result)
6828 {
6829 /* Determine a reasonable euid and gid values. */
6830 if (xstrcasecmp ("administrator", uname) == 0)
6831 {
6832 euid = 500; /* well-known Administrator uid */
6833 egid = 513; /* well-known None gid */
6834 }
6835 else
6836 {
6837 /* Get group id and name. */
6838 result = get_token_information (token, TokenPrimaryGroup,
6839 (LPVOID)buf, blen, &needed);
6840 if (!result && GetLastError () == ERROR_INSUFFICIENT_BUFFER)
6841 {
6842 buf = xrealloc (buf, blen = needed);
6843 result = get_token_information (token, TokenPrimaryGroup,
6844 (LPVOID)buf, blen, &needed);
6845 }
6846 if (result)
6847 {
6848 memcpy (&group_token, buf, sizeof (group_token));
6849 if (!w32_cached_id (group_token.PrimaryGroup, &egid, gname))
6850 {
6851 egid = get_rid (group_token.PrimaryGroup);
6852 dlength = sizeof (domain);
6853 result =
6854 lookup_account_sid (NULL, group_token.PrimaryGroup,
6855 gname, &glength, NULL, &dlength,
6856 &user_type);
6857 if (result)
6858 w32_add_to_cache (group_token.PrimaryGroup,
6859 egid, gname);
6860 else
6861 {
6862 strcpy (gname, "None");
6863 result = TRUE;
6864 }
6865 }
6866 glength = strlen (gname);
6867 }
6868 }
6869 }
6870 xfree (buf);
6871 }
6872 if (!result)
6873 {
6874 if (!is_windows_9x ())
6875 {
6876 /* We couldn't open the process token, presumably because of
6877 insufficient access rights. Assume this process is run
6878 by the system. */
6879 strcpy (uname, "SYSTEM");
6880 strcpy (gname, "None");
6881 euid = 18; /* SYSTEM */
6882 egid = 513; /* None */
6883 glength = strlen (gname);
6884 ulength = strlen (uname);
6885 }
6886 /* If we are running under Windows 9X, where security calls are
6887 not supported, we assume all processes are run by the current
6888 user. */
6889 else if (GetUserName (uname, &ulength))
6890 {
6891 if (xstrcasecmp ("administrator", uname) == 0)
6892 euid = 0;
6893 else
6894 euid = 123;
6895 egid = euid;
6896 strcpy (gname, "None");
6897 glength = strlen (gname);
6898 ulength = strlen (uname);
6899 }
6900 else
6901 {
6902 euid = 123;
6903 egid = 123;
6904 strcpy (uname, "administrator");
6905 ulength = strlen (uname);
6906 strcpy (gname, "None");
6907 glength = strlen (gname);
6908 }
6909 if (token)
6910 CloseHandle (token);
6911 }
6912
6913 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (euid)), attrs);
6914 tem = make_unibyte_string (uname, ulength);
6915 attrs = Fcons (Fcons (Quser,
6916 code_convert_string_norecord (tem, Vlocale_coding_system, 0)),
6917 attrs);
6918 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (egid)), attrs);
6919 tem = make_unibyte_string (gname, glength);
6920 attrs = Fcons (Fcons (Qgroup,
6921 code_convert_string_norecord (tem, Vlocale_coding_system, 0)),
6922 attrs);
6923
6924 if (global_memory_status_ex (&memstex))
6925 #if __GNUC__ || (defined (_MSC_VER) && _MSC_VER >= 1300)
6926 totphys = memstex.ullTotalPhys / 1024.0;
6927 #else
6928 /* Visual Studio 6 cannot convert an unsigned __int64 type to
6929 double, so we need to do this for it... */
6930 {
6931 DWORD tot_hi = memstex.ullTotalPhys >> 32;
6932 DWORD tot_md = (memstex.ullTotalPhys & 0x00000000ffffffff) >> 10;
6933 DWORD tot_lo = memstex.ullTotalPhys % 1024;
6934
6935 totphys = tot_hi * 4194304.0 + tot_md + tot_lo / 1024.0;
6936 }
6937 #endif /* __GNUC__ || _MSC_VER >= 1300 */
6938 else if (global_memory_status (&memst))
6939 totphys = memst.dwTotalPhys / 1024.0;
6940
6941 if (h_proc
6942 && get_process_memory_info (h_proc, (PROCESS_MEMORY_COUNTERS *)&mem_ex,
6943 sizeof (mem_ex)))
6944 {
6945 SIZE_T rss = mem_ex.WorkingSetSize / 1024;
6946
6947 attrs = Fcons (Fcons (Qmajflt,
6948 make_fixnum_or_float (mem_ex.PageFaultCount)),
6949 attrs);
6950 attrs = Fcons (Fcons (Qvsize,
6951 make_fixnum_or_float (mem_ex.PrivateUsage / 1024)),
6952 attrs);
6953 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (rss)), attrs);
6954 if (totphys)
6955 attrs = Fcons (Fcons (Qpmem, make_float (100. * rss / totphys)), attrs);
6956 }
6957 else if (h_proc
6958 && get_process_memory_info (h_proc, &mem, sizeof (mem)))
6959 {
6960 SIZE_T rss = mem_ex.WorkingSetSize / 1024;
6961
6962 attrs = Fcons (Fcons (Qmajflt,
6963 make_fixnum_or_float (mem.PageFaultCount)),
6964 attrs);
6965 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (rss)), attrs);
6966 if (totphys)
6967 attrs = Fcons (Fcons (Qpmem, make_float (100. * rss / totphys)), attrs);
6968 }
6969 else if (h_proc
6970 && get_process_working_set_size (h_proc, &minrss, &maxrss))
6971 {
6972 DWORD rss = maxrss / 1024;
6973
6974 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (maxrss / 1024)), attrs);
6975 if (totphys)
6976 attrs = Fcons (Fcons (Qpmem, make_float (100. * rss / totphys)), attrs);
6977 }
6978
6979 if (process_times (h_proc, &ctime, &etime, &stime, &utime, &ttime, &pcpu))
6980 {
6981 attrs = Fcons (Fcons (Qutime, utime), attrs);
6982 attrs = Fcons (Fcons (Qstime, stime), attrs);
6983 attrs = Fcons (Fcons (Qtime, ttime), attrs);
6984 attrs = Fcons (Fcons (Qstart, ctime), attrs);
6985 attrs = Fcons (Fcons (Qetime, etime), attrs);
6986 attrs = Fcons (Fcons (Qpcpu, make_float (pcpu)), attrs);
6987 }
6988
6989 /* FIXME: Retrieve command line by walking the PEB of the process. */
6990
6991 if (h_proc)
6992 CloseHandle (h_proc);
6993 UNGCPRO;
6994 return attrs;
6995 }
6996
6997 int
6998 w32_memory_info (unsigned long long *totalram, unsigned long long *freeram,
6999 unsigned long long *totalswap, unsigned long long *freeswap)
7000 {
7001 MEMORYSTATUS memst;
7002 MEMORY_STATUS_EX memstex;
7003
7004 /* Use GlobalMemoryStatusEx if available, as it can report more than
7005 2GB of memory. */
7006 if (global_memory_status_ex (&memstex))
7007 {
7008 *totalram = memstex.ullTotalPhys;
7009 *freeram = memstex.ullAvailPhys;
7010 *totalswap = memstex.ullTotalPageFile;
7011 *freeswap = memstex.ullAvailPageFile;
7012 return 0;
7013 }
7014 else if (global_memory_status (&memst))
7015 {
7016 *totalram = memst.dwTotalPhys;
7017 *freeram = memst.dwAvailPhys;
7018 *totalswap = memst.dwTotalPageFile;
7019 *freeswap = memst.dwAvailPageFile;
7020 return 0;
7021 }
7022 else
7023 return -1;
7024 }
7025
7026 \f
7027 /* Wrappers for winsock functions to map between our file descriptors
7028 and winsock's handles; also set h_errno for convenience.
7029
7030 To allow Emacs to run on systems which don't have winsock support
7031 installed, we dynamically link to winsock on startup if present, and
7032 otherwise provide the minimum necessary functionality
7033 (eg. gethostname). */
7034
7035 /* function pointers for relevant socket functions */
7036 int (PASCAL *pfn_WSAStartup) (WORD wVersionRequired, LPWSADATA lpWSAData);
7037 void (PASCAL *pfn_WSASetLastError) (int iError);
7038 int (PASCAL *pfn_WSAGetLastError) (void);
7039 int (PASCAL *pfn_WSAEventSelect) (SOCKET s, HANDLE hEventObject, long lNetworkEvents);
7040 HANDLE (PASCAL *pfn_WSACreateEvent) (void);
7041 int (PASCAL *pfn_WSACloseEvent) (HANDLE hEvent);
7042 int (PASCAL *pfn_socket) (int af, int type, int protocol);
7043 int (PASCAL *pfn_bind) (SOCKET s, const struct sockaddr *addr, int namelen);
7044 int (PASCAL *pfn_connect) (SOCKET s, const struct sockaddr *addr, int namelen);
7045 int (PASCAL *pfn_ioctlsocket) (SOCKET s, long cmd, u_long *argp);
7046 int (PASCAL *pfn_recv) (SOCKET s, char * buf, int len, int flags);
7047 int (PASCAL *pfn_send) (SOCKET s, const char * buf, int len, int flags);
7048 int (PASCAL *pfn_closesocket) (SOCKET s);
7049 int (PASCAL *pfn_shutdown) (SOCKET s, int how);
7050 int (PASCAL *pfn_WSACleanup) (void);
7051
7052 u_short (PASCAL *pfn_htons) (u_short hostshort);
7053 u_short (PASCAL *pfn_ntohs) (u_short netshort);
7054 unsigned long (PASCAL *pfn_inet_addr) (const char * cp);
7055 int (PASCAL *pfn_gethostname) (char * name, int namelen);
7056 struct hostent * (PASCAL *pfn_gethostbyname) (const char * name);
7057 struct servent * (PASCAL *pfn_getservbyname) (const char * name, const char * proto);
7058 int (PASCAL *pfn_getpeername) (SOCKET s, struct sockaddr *addr, int * namelen);
7059 int (PASCAL *pfn_setsockopt) (SOCKET s, int level, int optname,
7060 const char * optval, int optlen);
7061 int (PASCAL *pfn_listen) (SOCKET s, int backlog);
7062 int (PASCAL *pfn_getsockname) (SOCKET s, struct sockaddr * name,
7063 int * namelen);
7064 SOCKET (PASCAL *pfn_accept) (SOCKET s, struct sockaddr * addr, int * addrlen);
7065 int (PASCAL *pfn_recvfrom) (SOCKET s, char * buf, int len, int flags,
7066 struct sockaddr * from, int * fromlen);
7067 int (PASCAL *pfn_sendto) (SOCKET s, const char * buf, int len, int flags,
7068 const struct sockaddr * to, int tolen);
7069
7070 /* SetHandleInformation is only needed to make sockets non-inheritable. */
7071 BOOL (WINAPI *pfn_SetHandleInformation) (HANDLE object, DWORD mask, DWORD flags);
7072 #ifndef HANDLE_FLAG_INHERIT
7073 #define HANDLE_FLAG_INHERIT 1
7074 #endif
7075
7076 HANDLE winsock_lib;
7077 static int winsock_inuse;
7078
7079 BOOL
7080 term_winsock (void)
7081 {
7082 if (winsock_lib != NULL && winsock_inuse == 0)
7083 {
7084 release_listen_threads ();
7085 /* Not sure what would cause WSAENETDOWN, or even if it can happen
7086 after WSAStartup returns successfully, but it seems reasonable
7087 to allow unloading winsock anyway in that case. */
7088 if (pfn_WSACleanup () == 0 ||
7089 pfn_WSAGetLastError () == WSAENETDOWN)
7090 {
7091 if (FreeLibrary (winsock_lib))
7092 winsock_lib = NULL;
7093 return TRUE;
7094 }
7095 }
7096 return FALSE;
7097 }
7098
7099 BOOL
7100 init_winsock (int load_now)
7101 {
7102 WSADATA winsockData;
7103
7104 if (winsock_lib != NULL)
7105 return TRUE;
7106
7107 pfn_SetHandleInformation
7108 = (void *) GetProcAddress (GetModuleHandle ("kernel32.dll"),
7109 "SetHandleInformation");
7110
7111 winsock_lib = LoadLibrary ("Ws2_32.dll");
7112
7113 if (winsock_lib != NULL)
7114 {
7115 /* dynamically link to socket functions */
7116
7117 #define LOAD_PROC(fn) \
7118 if ((pfn_##fn = (void *) GetProcAddress (winsock_lib, #fn)) == NULL) \
7119 goto fail;
7120
7121 LOAD_PROC (WSAStartup);
7122 LOAD_PROC (WSASetLastError);
7123 LOAD_PROC (WSAGetLastError);
7124 LOAD_PROC (WSAEventSelect);
7125 LOAD_PROC (WSACreateEvent);
7126 LOAD_PROC (WSACloseEvent);
7127 LOAD_PROC (socket);
7128 LOAD_PROC (bind);
7129 LOAD_PROC (connect);
7130 LOAD_PROC (ioctlsocket);
7131 LOAD_PROC (recv);
7132 LOAD_PROC (send);
7133 LOAD_PROC (closesocket);
7134 LOAD_PROC (shutdown);
7135 LOAD_PROC (htons);
7136 LOAD_PROC (ntohs);
7137 LOAD_PROC (inet_addr);
7138 LOAD_PROC (gethostname);
7139 LOAD_PROC (gethostbyname);
7140 LOAD_PROC (getservbyname);
7141 LOAD_PROC (getpeername);
7142 LOAD_PROC (WSACleanup);
7143 LOAD_PROC (setsockopt);
7144 LOAD_PROC (listen);
7145 LOAD_PROC (getsockname);
7146 LOAD_PROC (accept);
7147 LOAD_PROC (recvfrom);
7148 LOAD_PROC (sendto);
7149 #undef LOAD_PROC
7150
7151 /* specify version 1.1 of winsock */
7152 if (pfn_WSAStartup (0x101, &winsockData) == 0)
7153 {
7154 if (winsockData.wVersion != 0x101)
7155 goto fail;
7156
7157 if (!load_now)
7158 {
7159 /* Report that winsock exists and is usable, but leave
7160 socket functions disabled. I am assuming that calling
7161 WSAStartup does not require any network interaction,
7162 and in particular does not cause or require a dial-up
7163 connection to be established. */
7164
7165 pfn_WSACleanup ();
7166 FreeLibrary (winsock_lib);
7167 winsock_lib = NULL;
7168 }
7169 winsock_inuse = 0;
7170 return TRUE;
7171 }
7172
7173 fail:
7174 FreeLibrary (winsock_lib);
7175 winsock_lib = NULL;
7176 }
7177
7178 return FALSE;
7179 }
7180
7181
7182 int h_errno = 0;
7183
7184 /* Function to map winsock error codes to errno codes for those errno
7185 code defined in errno.h (errno values not defined by errno.h are
7186 already in nt/inc/sys/socket.h). */
7187 static void
7188 set_errno (void)
7189 {
7190 int wsa_err;
7191
7192 h_errno = 0;
7193 if (winsock_lib == NULL)
7194 wsa_err = EINVAL;
7195 else
7196 wsa_err = pfn_WSAGetLastError ();
7197
7198 switch (wsa_err)
7199 {
7200 case WSAEACCES: errno = EACCES; break;
7201 case WSAEBADF: errno = EBADF; break;
7202 case WSAEFAULT: errno = EFAULT; break;
7203 case WSAEINTR: errno = EINTR; break;
7204 case WSAEINVAL: errno = EINVAL; break;
7205 case WSAEMFILE: errno = EMFILE; break;
7206 case WSAENAMETOOLONG: errno = ENAMETOOLONG; break;
7207 case WSAENOTEMPTY: errno = ENOTEMPTY; break;
7208 default: errno = wsa_err; break;
7209 }
7210 }
7211
7212 static void
7213 check_errno (void)
7214 {
7215 h_errno = 0;
7216 if (winsock_lib != NULL)
7217 pfn_WSASetLastError (0);
7218 }
7219
7220 /* Extend strerror to handle the winsock-specific error codes. */
7221 struct {
7222 int errnum;
7223 char * msg;
7224 } _wsa_errlist[] = {
7225 {WSAEINTR , "Interrupted function call"},
7226 {WSAEBADF , "Bad file descriptor"},
7227 {WSAEACCES , "Permission denied"},
7228 {WSAEFAULT , "Bad address"},
7229 {WSAEINVAL , "Invalid argument"},
7230 {WSAEMFILE , "Too many open files"},
7231
7232 {WSAEWOULDBLOCK , "Resource temporarily unavailable"},
7233 {WSAEINPROGRESS , "Operation now in progress"},
7234 {WSAEALREADY , "Operation already in progress"},
7235 {WSAENOTSOCK , "Socket operation on non-socket"},
7236 {WSAEDESTADDRREQ , "Destination address required"},
7237 {WSAEMSGSIZE , "Message too long"},
7238 {WSAEPROTOTYPE , "Protocol wrong type for socket"},
7239 {WSAENOPROTOOPT , "Bad protocol option"},
7240 {WSAEPROTONOSUPPORT , "Protocol not supported"},
7241 {WSAESOCKTNOSUPPORT , "Socket type not supported"},
7242 {WSAEOPNOTSUPP , "Operation not supported"},
7243 {WSAEPFNOSUPPORT , "Protocol family not supported"},
7244 {WSAEAFNOSUPPORT , "Address family not supported by protocol family"},
7245 {WSAEADDRINUSE , "Address already in use"},
7246 {WSAEADDRNOTAVAIL , "Cannot assign requested address"},
7247 {WSAENETDOWN , "Network is down"},
7248 {WSAENETUNREACH , "Network is unreachable"},
7249 {WSAENETRESET , "Network dropped connection on reset"},
7250 {WSAECONNABORTED , "Software caused connection abort"},
7251 {WSAECONNRESET , "Connection reset by peer"},
7252 {WSAENOBUFS , "No buffer space available"},
7253 {WSAEISCONN , "Socket is already connected"},
7254 {WSAENOTCONN , "Socket is not connected"},
7255 {WSAESHUTDOWN , "Cannot send after socket shutdown"},
7256 {WSAETOOMANYREFS , "Too many references"}, /* not sure */
7257 {WSAETIMEDOUT , "Connection timed out"},
7258 {WSAECONNREFUSED , "Connection refused"},
7259 {WSAELOOP , "Network loop"}, /* not sure */
7260 {WSAENAMETOOLONG , "Name is too long"},
7261 {WSAEHOSTDOWN , "Host is down"},
7262 {WSAEHOSTUNREACH , "No route to host"},
7263 {WSAENOTEMPTY , "Buffer not empty"}, /* not sure */
7264 {WSAEPROCLIM , "Too many processes"},
7265 {WSAEUSERS , "Too many users"}, /* not sure */
7266 {WSAEDQUOT , "Double quote in host name"}, /* really not sure */
7267 {WSAESTALE , "Data is stale"}, /* not sure */
7268 {WSAEREMOTE , "Remote error"}, /* not sure */
7269
7270 {WSASYSNOTREADY , "Network subsystem is unavailable"},
7271 {WSAVERNOTSUPPORTED , "WINSOCK.DLL version out of range"},
7272 {WSANOTINITIALISED , "Winsock not initialized successfully"},
7273 {WSAEDISCON , "Graceful shutdown in progress"},
7274 #ifdef WSAENOMORE
7275 {WSAENOMORE , "No more operations allowed"}, /* not sure */
7276 {WSAECANCELLED , "Operation cancelled"}, /* not sure */
7277 {WSAEINVALIDPROCTABLE , "Invalid procedure table from service provider"},
7278 {WSAEINVALIDPROVIDER , "Invalid service provider version number"},
7279 {WSAEPROVIDERFAILEDINIT , "Unable to initialize a service provider"},
7280 {WSASYSCALLFAILURE , "System call failure"},
7281 {WSASERVICE_NOT_FOUND , "Service not found"}, /* not sure */
7282 {WSATYPE_NOT_FOUND , "Class type not found"},
7283 {WSA_E_NO_MORE , "No more resources available"}, /* really not sure */
7284 {WSA_E_CANCELLED , "Operation already cancelled"}, /* really not sure */
7285 {WSAEREFUSED , "Operation refused"}, /* not sure */
7286 #endif
7287
7288 {WSAHOST_NOT_FOUND , "Host not found"},
7289 {WSATRY_AGAIN , "Authoritative host not found during name lookup"},
7290 {WSANO_RECOVERY , "Non-recoverable error during name lookup"},
7291 {WSANO_DATA , "Valid name, no data record of requested type"},
7292
7293 {-1, NULL}
7294 };
7295
7296 char *
7297 sys_strerror (int error_no)
7298 {
7299 int i;
7300 static char unknown_msg[40];
7301
7302 if (error_no >= 0 && error_no < sys_nerr)
7303 return sys_errlist[error_no];
7304
7305 for (i = 0; _wsa_errlist[i].errnum >= 0; i++)
7306 if (_wsa_errlist[i].errnum == error_no)
7307 return _wsa_errlist[i].msg;
7308
7309 sprintf (unknown_msg, "Unidentified error: %d", error_no);
7310 return unknown_msg;
7311 }
7312
7313 /* [andrewi 3-May-96] I've had conflicting results using both methods,
7314 but I believe the method of keeping the socket handle separate (and
7315 insuring it is not inheritable) is the correct one. */
7316
7317 #define SOCK_HANDLE(fd) ((SOCKET) fd_info[fd].hnd)
7318
7319 static int socket_to_fd (SOCKET s);
7320
7321 int
7322 sys_socket (int af, int type, int protocol)
7323 {
7324 SOCKET s;
7325
7326 if (winsock_lib == NULL)
7327 {
7328 errno = ENETDOWN;
7329 return INVALID_SOCKET;
7330 }
7331
7332 check_errno ();
7333
7334 /* call the real socket function */
7335 s = pfn_socket (af, type, protocol);
7336
7337 if (s != INVALID_SOCKET)
7338 return socket_to_fd (s);
7339
7340 set_errno ();
7341 return -1;
7342 }
7343
7344 /* Convert a SOCKET to a file descriptor. */
7345 static int
7346 socket_to_fd (SOCKET s)
7347 {
7348 int fd;
7349 child_process * cp;
7350
7351 /* Although under NT 3.5 _open_osfhandle will accept a socket
7352 handle, if opened with SO_OPENTYPE == SO_SYNCHRONOUS_NONALERT,
7353 that does not work under NT 3.1. However, we can get the same
7354 effect by using a backdoor function to replace an existing
7355 descriptor handle with the one we want. */
7356
7357 /* allocate a file descriptor (with appropriate flags) */
7358 fd = _open ("NUL:", _O_RDWR);
7359 if (fd >= 0)
7360 {
7361 /* Make a non-inheritable copy of the socket handle. Note
7362 that it is possible that sockets aren't actually kernel
7363 handles, which appears to be the case on Windows 9x when
7364 the MS Proxy winsock client is installed. */
7365 {
7366 /* Apparently there is a bug in NT 3.51 with some service
7367 packs, which prevents using DuplicateHandle to make a
7368 socket handle non-inheritable (causes WSACleanup to
7369 hang). The work-around is to use SetHandleInformation
7370 instead if it is available and implemented. */
7371 if (pfn_SetHandleInformation)
7372 {
7373 pfn_SetHandleInformation ((HANDLE) s, HANDLE_FLAG_INHERIT, 0);
7374 }
7375 else
7376 {
7377 HANDLE parent = GetCurrentProcess ();
7378 HANDLE new_s = INVALID_HANDLE_VALUE;
7379
7380 if (DuplicateHandle (parent,
7381 (HANDLE) s,
7382 parent,
7383 &new_s,
7384 0,
7385 FALSE,
7386 DUPLICATE_SAME_ACCESS))
7387 {
7388 /* It is possible that DuplicateHandle succeeds even
7389 though the socket wasn't really a kernel handle,
7390 because a real handle has the same value. So
7391 test whether the new handle really is a socket. */
7392 long nonblocking = 0;
7393 if (pfn_ioctlsocket ((SOCKET) new_s, FIONBIO, &nonblocking) == 0)
7394 {
7395 pfn_closesocket (s);
7396 s = (SOCKET) new_s;
7397 }
7398 else
7399 {
7400 CloseHandle (new_s);
7401 }
7402 }
7403 }
7404 }
7405 eassert (fd < MAXDESC);
7406 fd_info[fd].hnd = (HANDLE) s;
7407
7408 /* set our own internal flags */
7409 fd_info[fd].flags = FILE_SOCKET | FILE_BINARY | FILE_READ | FILE_WRITE;
7410
7411 cp = new_child ();
7412 if (cp)
7413 {
7414 cp->fd = fd;
7415 cp->status = STATUS_READ_ACKNOWLEDGED;
7416
7417 /* attach child_process to fd_info */
7418 if (fd_info[ fd ].cp != NULL)
7419 {
7420 DebPrint (("sys_socket: fd_info[%d] apparently in use!\n", fd));
7421 emacs_abort ();
7422 }
7423
7424 fd_info[ fd ].cp = cp;
7425
7426 /* success! */
7427 winsock_inuse++; /* count open sockets */
7428 return fd;
7429 }
7430
7431 /* clean up */
7432 _close (fd);
7433 }
7434 else
7435 pfn_closesocket (s);
7436 errno = EMFILE;
7437 return -1;
7438 }
7439
7440 int
7441 sys_bind (int s, const struct sockaddr * addr, int namelen)
7442 {
7443 if (winsock_lib == NULL)
7444 {
7445 errno = ENOTSOCK;
7446 return SOCKET_ERROR;
7447 }
7448
7449 check_errno ();
7450 if (fd_info[s].flags & FILE_SOCKET)
7451 {
7452 int rc = pfn_bind (SOCK_HANDLE (s), addr, namelen);
7453 if (rc == SOCKET_ERROR)
7454 set_errno ();
7455 return rc;
7456 }
7457 errno = ENOTSOCK;
7458 return SOCKET_ERROR;
7459 }
7460
7461 int
7462 sys_connect (int s, const struct sockaddr * name, int namelen)
7463 {
7464 if (winsock_lib == NULL)
7465 {
7466 errno = ENOTSOCK;
7467 return SOCKET_ERROR;
7468 }
7469
7470 check_errno ();
7471 if (fd_info[s].flags & FILE_SOCKET)
7472 {
7473 int rc = pfn_connect (SOCK_HANDLE (s), name, namelen);
7474 if (rc == SOCKET_ERROR)
7475 set_errno ();
7476 return rc;
7477 }
7478 errno = ENOTSOCK;
7479 return SOCKET_ERROR;
7480 }
7481
7482 u_short
7483 sys_htons (u_short hostshort)
7484 {
7485 return (winsock_lib != NULL) ?
7486 pfn_htons (hostshort) : hostshort;
7487 }
7488
7489 u_short
7490 sys_ntohs (u_short netshort)
7491 {
7492 return (winsock_lib != NULL) ?
7493 pfn_ntohs (netshort) : netshort;
7494 }
7495
7496 unsigned long
7497 sys_inet_addr (const char * cp)
7498 {
7499 return (winsock_lib != NULL) ?
7500 pfn_inet_addr (cp) : INADDR_NONE;
7501 }
7502
7503 int
7504 sys_gethostname (char * name, int namelen)
7505 {
7506 if (winsock_lib != NULL)
7507 {
7508 int retval;
7509
7510 check_errno ();
7511 retval = pfn_gethostname (name, namelen);
7512 if (retval == SOCKET_ERROR)
7513 set_errno ();
7514 return retval;
7515 }
7516
7517 if (namelen > MAX_COMPUTERNAME_LENGTH)
7518 return !GetComputerName (name, (DWORD *)&namelen);
7519
7520 errno = EFAULT;
7521 return SOCKET_ERROR;
7522 }
7523
7524 struct hostent *
7525 sys_gethostbyname (const char * name)
7526 {
7527 struct hostent * host;
7528 int h_err = h_errno;
7529
7530 if (winsock_lib == NULL)
7531 {
7532 h_errno = NO_RECOVERY;
7533 errno = ENETDOWN;
7534 return NULL;
7535 }
7536
7537 check_errno ();
7538 host = pfn_gethostbyname (name);
7539 if (!host)
7540 {
7541 set_errno ();
7542 h_errno = errno;
7543 }
7544 else
7545 h_errno = h_err;
7546 return host;
7547 }
7548
7549 struct servent *
7550 sys_getservbyname (const char * name, const char * proto)
7551 {
7552 struct servent * serv;
7553
7554 if (winsock_lib == NULL)
7555 {
7556 errno = ENETDOWN;
7557 return NULL;
7558 }
7559
7560 check_errno ();
7561 serv = pfn_getservbyname (name, proto);
7562 if (!serv)
7563 set_errno ();
7564 return serv;
7565 }
7566
7567 int
7568 sys_getpeername (int s, struct sockaddr *addr, int * namelen)
7569 {
7570 if (winsock_lib == NULL)
7571 {
7572 errno = ENETDOWN;
7573 return SOCKET_ERROR;
7574 }
7575
7576 check_errno ();
7577 if (fd_info[s].flags & FILE_SOCKET)
7578 {
7579 int rc = pfn_getpeername (SOCK_HANDLE (s), addr, namelen);
7580 if (rc == SOCKET_ERROR)
7581 set_errno ();
7582 return rc;
7583 }
7584 errno = ENOTSOCK;
7585 return SOCKET_ERROR;
7586 }
7587
7588 int
7589 sys_shutdown (int s, int how)
7590 {
7591 if (winsock_lib == NULL)
7592 {
7593 errno = ENETDOWN;
7594 return SOCKET_ERROR;
7595 }
7596
7597 check_errno ();
7598 if (fd_info[s].flags & FILE_SOCKET)
7599 {
7600 int rc = pfn_shutdown (SOCK_HANDLE (s), how);
7601 if (rc == SOCKET_ERROR)
7602 set_errno ();
7603 return rc;
7604 }
7605 errno = ENOTSOCK;
7606 return SOCKET_ERROR;
7607 }
7608
7609 int
7610 sys_setsockopt (int s, int level, int optname, const void * optval, int optlen)
7611 {
7612 if (winsock_lib == NULL)
7613 {
7614 errno = ENETDOWN;
7615 return SOCKET_ERROR;
7616 }
7617
7618 check_errno ();
7619 if (fd_info[s].flags & FILE_SOCKET)
7620 {
7621 int rc = pfn_setsockopt (SOCK_HANDLE (s), level, optname,
7622 (const char *)optval, optlen);
7623 if (rc == SOCKET_ERROR)
7624 set_errno ();
7625 return rc;
7626 }
7627 errno = ENOTSOCK;
7628 return SOCKET_ERROR;
7629 }
7630
7631 int
7632 sys_listen (int s, int backlog)
7633 {
7634 if (winsock_lib == NULL)
7635 {
7636 errno = ENETDOWN;
7637 return SOCKET_ERROR;
7638 }
7639
7640 check_errno ();
7641 if (fd_info[s].flags & FILE_SOCKET)
7642 {
7643 int rc = pfn_listen (SOCK_HANDLE (s), backlog);
7644 if (rc == SOCKET_ERROR)
7645 set_errno ();
7646 else
7647 fd_info[s].flags |= FILE_LISTEN;
7648 return rc;
7649 }
7650 errno = ENOTSOCK;
7651 return SOCKET_ERROR;
7652 }
7653
7654 int
7655 sys_getsockname (int s, struct sockaddr * name, int * namelen)
7656 {
7657 if (winsock_lib == NULL)
7658 {
7659 errno = ENETDOWN;
7660 return SOCKET_ERROR;
7661 }
7662
7663 check_errno ();
7664 if (fd_info[s].flags & FILE_SOCKET)
7665 {
7666 int rc = pfn_getsockname (SOCK_HANDLE (s), name, namelen);
7667 if (rc == SOCKET_ERROR)
7668 set_errno ();
7669 return rc;
7670 }
7671 errno = ENOTSOCK;
7672 return SOCKET_ERROR;
7673 }
7674
7675 int
7676 sys_accept (int s, struct sockaddr * addr, int * addrlen)
7677 {
7678 if (winsock_lib == NULL)
7679 {
7680 errno = ENETDOWN;
7681 return -1;
7682 }
7683
7684 check_errno ();
7685 if (fd_info[s].flags & FILE_LISTEN)
7686 {
7687 SOCKET t = pfn_accept (SOCK_HANDLE (s), addr, addrlen);
7688 int fd = -1;
7689 if (t == INVALID_SOCKET)
7690 set_errno ();
7691 else
7692 fd = socket_to_fd (t);
7693
7694 if (fd >= 0)
7695 {
7696 fd_info[s].cp->status = STATUS_READ_ACKNOWLEDGED;
7697 ResetEvent (fd_info[s].cp->char_avail);
7698 }
7699 return fd;
7700 }
7701 errno = ENOTSOCK;
7702 return -1;
7703 }
7704
7705 int
7706 sys_recvfrom (int s, char * buf, int len, int flags,
7707 struct sockaddr * from, int * fromlen)
7708 {
7709 if (winsock_lib == NULL)
7710 {
7711 errno = ENETDOWN;
7712 return SOCKET_ERROR;
7713 }
7714
7715 check_errno ();
7716 if (fd_info[s].flags & FILE_SOCKET)
7717 {
7718 int rc = pfn_recvfrom (SOCK_HANDLE (s), buf, len, flags, from, fromlen);
7719 if (rc == SOCKET_ERROR)
7720 set_errno ();
7721 return rc;
7722 }
7723 errno = ENOTSOCK;
7724 return SOCKET_ERROR;
7725 }
7726
7727 int
7728 sys_sendto (int s, const char * buf, int len, int flags,
7729 const struct sockaddr * to, int tolen)
7730 {
7731 if (winsock_lib == NULL)
7732 {
7733 errno = ENETDOWN;
7734 return SOCKET_ERROR;
7735 }
7736
7737 check_errno ();
7738 if (fd_info[s].flags & FILE_SOCKET)
7739 {
7740 int rc = pfn_sendto (SOCK_HANDLE (s), buf, len, flags, to, tolen);
7741 if (rc == SOCKET_ERROR)
7742 set_errno ();
7743 return rc;
7744 }
7745 errno = ENOTSOCK;
7746 return SOCKET_ERROR;
7747 }
7748
7749 /* Windows does not have an fcntl function. Provide an implementation
7750 good enough for Emacs. */
7751 int
7752 fcntl (int s, int cmd, int options)
7753 {
7754 /* In the w32 Emacs port, fcntl (fd, F_DUPFD_CLOEXEC, fd1) is always
7755 invoked in a context where fd1 is closed and all descriptors less
7756 than fd1 are open, so sys_dup is an adequate implementation. */
7757 if (cmd == F_DUPFD_CLOEXEC)
7758 return sys_dup (s);
7759
7760 check_errno ();
7761 if (fd_info[s].flags & FILE_SOCKET)
7762 {
7763 if (winsock_lib == NULL)
7764 {
7765 errno = ENETDOWN;
7766 return -1;
7767 }
7768
7769 if (cmd == F_SETFL && options == O_NONBLOCK)
7770 {
7771 unsigned long nblock = 1;
7772 int rc = pfn_ioctlsocket (SOCK_HANDLE (s), FIONBIO, &nblock);
7773 if (rc == SOCKET_ERROR)
7774 set_errno ();
7775 /* Keep track of the fact that we set this to non-blocking. */
7776 fd_info[s].flags |= FILE_NDELAY;
7777 return rc;
7778 }
7779 else
7780 {
7781 errno = EINVAL;
7782 return SOCKET_ERROR;
7783 }
7784 }
7785 else if ((fd_info[s].flags & (FILE_PIPE | FILE_WRITE))
7786 == (FILE_PIPE | FILE_WRITE))
7787 {
7788 /* Force our writes to pipes be non-blocking. */
7789 if (cmd == F_SETFL && options == O_NONBLOCK)
7790 {
7791 HANDLE h = (HANDLE)_get_osfhandle (s);
7792 DWORD pipe_mode = PIPE_NOWAIT;
7793
7794 if (!SetNamedPipeHandleState (h, &pipe_mode, NULL, NULL))
7795 {
7796 DebPrint (("SetNamedPipeHandleState: %lu\n", GetLastError ()));
7797 return SOCKET_ERROR;
7798 }
7799 fd_info[s].flags |= FILE_NDELAY;
7800 return 0;
7801 }
7802 else
7803 {
7804 errno = EINVAL;
7805 return SOCKET_ERROR;
7806 }
7807 }
7808 errno = ENOTSOCK;
7809 return SOCKET_ERROR;
7810 }
7811
7812
7813 /* Shadow main io functions: we need to handle pipes and sockets more
7814 intelligently. */
7815
7816 int
7817 sys_close (int fd)
7818 {
7819 int rc;
7820
7821 if (fd < 0)
7822 {
7823 errno = EBADF;
7824 return -1;
7825 }
7826
7827 if (fd < MAXDESC && fd_info[fd].cp)
7828 {
7829 child_process * cp = fd_info[fd].cp;
7830
7831 fd_info[fd].cp = NULL;
7832
7833 if (CHILD_ACTIVE (cp))
7834 {
7835 /* if last descriptor to active child_process then cleanup */
7836 int i;
7837 for (i = 0; i < MAXDESC; i++)
7838 {
7839 if (i == fd)
7840 continue;
7841 if (fd_info[i].cp == cp)
7842 break;
7843 }
7844 if (i == MAXDESC)
7845 {
7846 if (fd_info[fd].flags & FILE_SOCKET)
7847 {
7848 if (winsock_lib == NULL) emacs_abort ();
7849
7850 pfn_shutdown (SOCK_HANDLE (fd), 2);
7851 rc = pfn_closesocket (SOCK_HANDLE (fd));
7852
7853 winsock_inuse--; /* count open sockets */
7854 }
7855 /* If the process handle is NULL, it's either a socket
7856 or serial connection, or a subprocess that was
7857 already reaped by reap_subprocess, but whose
7858 resources were not yet freed, because its output was
7859 not fully read yet by the time it was reaped. (This
7860 usually happens with async subprocesses whose output
7861 is being read by Emacs.) Otherwise, this process was
7862 not reaped yet, so we set its FD to a negative value
7863 to make sure sys_select will eventually get to
7864 calling the SIGCHLD handler for it, which will then
7865 invoke waitpid and reap_subprocess. */
7866 if (cp->procinfo.hProcess == NULL)
7867 delete_child (cp);
7868 else
7869 cp->fd = -1;
7870 }
7871 }
7872 }
7873
7874 if (fd >= 0 && fd < MAXDESC)
7875 fd_info[fd].flags = 0;
7876
7877 /* Note that sockets do not need special treatment here (at least on
7878 NT and Windows 95 using the standard tcp/ip stacks) - it appears that
7879 closesocket is equivalent to CloseHandle, which is to be expected
7880 because socket handles are fully fledged kernel handles. */
7881 rc = _close (fd);
7882
7883 return rc;
7884 }
7885
7886 int
7887 sys_dup (int fd)
7888 {
7889 int new_fd;
7890
7891 new_fd = _dup (fd);
7892 if (new_fd >= 0 && new_fd < MAXDESC)
7893 {
7894 /* duplicate our internal info as well */
7895 fd_info[new_fd] = fd_info[fd];
7896 }
7897 return new_fd;
7898 }
7899
7900 int
7901 sys_dup2 (int src, int dst)
7902 {
7903 int rc;
7904
7905 if (dst < 0 || dst >= MAXDESC)
7906 {
7907 errno = EBADF;
7908 return -1;
7909 }
7910
7911 /* make sure we close the destination first if it's a pipe or socket */
7912 if (src != dst && fd_info[dst].flags != 0)
7913 sys_close (dst);
7914
7915 rc = _dup2 (src, dst);
7916 if (rc == 0)
7917 {
7918 /* duplicate our internal info as well */
7919 fd_info[dst] = fd_info[src];
7920 }
7921 return rc;
7922 }
7923
7924 int
7925 pipe2 (int * phandles, int pipe2_flags)
7926 {
7927 int rc;
7928 unsigned flags;
7929
7930 eassert (pipe2_flags == (O_BINARY | O_CLOEXEC));
7931
7932 /* make pipe handles non-inheritable; when we spawn a child, we
7933 replace the relevant handle with an inheritable one. Also put
7934 pipes into binary mode; we will do text mode translation ourselves
7935 if required. */
7936 rc = _pipe (phandles, 0, _O_NOINHERIT | _O_BINARY);
7937
7938 if (rc == 0)
7939 {
7940 /* Protect against overflow, since Windows can open more handles than
7941 our fd_info array has room for. */
7942 if (phandles[0] >= MAXDESC || phandles[1] >= MAXDESC)
7943 {
7944 _close (phandles[0]);
7945 _close (phandles[1]);
7946 errno = EMFILE;
7947 rc = -1;
7948 }
7949 else
7950 {
7951 flags = FILE_PIPE | FILE_READ | FILE_BINARY;
7952 fd_info[phandles[0]].flags = flags;
7953
7954 flags = FILE_PIPE | FILE_WRITE | FILE_BINARY;
7955 fd_info[phandles[1]].flags = flags;
7956 }
7957 }
7958
7959 return rc;
7960 }
7961
7962 /* Function to do blocking read of one byte, needed to implement
7963 select. It is only allowed on communication ports, sockets, or
7964 pipes. */
7965 int
7966 _sys_read_ahead (int fd)
7967 {
7968 child_process * cp;
7969 int rc;
7970
7971 if (fd < 0 || fd >= MAXDESC)
7972 return STATUS_READ_ERROR;
7973
7974 cp = fd_info[fd].cp;
7975
7976 if (cp == NULL || cp->fd != fd || cp->status != STATUS_READ_READY)
7977 return STATUS_READ_ERROR;
7978
7979 if ((fd_info[fd].flags & (FILE_PIPE | FILE_SERIAL | FILE_SOCKET)) == 0
7980 || (fd_info[fd].flags & FILE_READ) == 0)
7981 {
7982 DebPrint (("_sys_read_ahead: internal error: fd %d is not a pipe, serial port, or socket!\n", fd));
7983 emacs_abort ();
7984 }
7985
7986 cp->status = STATUS_READ_IN_PROGRESS;
7987
7988 if (fd_info[fd].flags & FILE_PIPE)
7989 {
7990 rc = _read (fd, &cp->chr, sizeof (char));
7991
7992 /* Give subprocess time to buffer some more output for us before
7993 reporting that input is available; we need this because Windows 95
7994 connects DOS programs to pipes by making the pipe appear to be
7995 the normal console stdout - as a result most DOS programs will
7996 write to stdout without buffering, ie. one character at a
7997 time. Even some W32 programs do this - "dir" in a command
7998 shell on NT is very slow if we don't do this. */
7999 if (rc > 0)
8000 {
8001 int wait = w32_pipe_read_delay;
8002
8003 if (wait > 0)
8004 Sleep (wait);
8005 else if (wait < 0)
8006 while (++wait <= 0)
8007 /* Yield remainder of our time slice, effectively giving a
8008 temporary priority boost to the child process. */
8009 Sleep (0);
8010 }
8011 }
8012 else if (fd_info[fd].flags & FILE_SERIAL)
8013 {
8014 HANDLE hnd = fd_info[fd].hnd;
8015 OVERLAPPED *ovl = &fd_info[fd].cp->ovl_read;
8016 COMMTIMEOUTS ct;
8017
8018 /* Configure timeouts for blocking read. */
8019 if (!GetCommTimeouts (hnd, &ct))
8020 {
8021 cp->status = STATUS_READ_ERROR;
8022 return STATUS_READ_ERROR;
8023 }
8024 ct.ReadIntervalTimeout = 0;
8025 ct.ReadTotalTimeoutMultiplier = 0;
8026 ct.ReadTotalTimeoutConstant = 0;
8027 if (!SetCommTimeouts (hnd, &ct))
8028 {
8029 cp->status = STATUS_READ_ERROR;
8030 return STATUS_READ_ERROR;
8031 }
8032
8033 if (!ReadFile (hnd, &cp->chr, sizeof (char), (DWORD*) &rc, ovl))
8034 {
8035 if (GetLastError () != ERROR_IO_PENDING)
8036 {
8037 cp->status = STATUS_READ_ERROR;
8038 return STATUS_READ_ERROR;
8039 }
8040 if (!GetOverlappedResult (hnd, ovl, (DWORD*) &rc, TRUE))
8041 {
8042 cp->status = STATUS_READ_ERROR;
8043 return STATUS_READ_ERROR;
8044 }
8045 }
8046 }
8047 else if (fd_info[fd].flags & FILE_SOCKET)
8048 {
8049 unsigned long nblock = 0;
8050 /* We always want this to block, so temporarily disable NDELAY. */
8051 if (fd_info[fd].flags & FILE_NDELAY)
8052 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
8053
8054 rc = pfn_recv (SOCK_HANDLE (fd), &cp->chr, sizeof (char), 0);
8055
8056 if (fd_info[fd].flags & FILE_NDELAY)
8057 {
8058 nblock = 1;
8059 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
8060 }
8061 }
8062
8063 if (rc == sizeof (char))
8064 cp->status = STATUS_READ_SUCCEEDED;
8065 else
8066 cp->status = STATUS_READ_FAILED;
8067
8068 return cp->status;
8069 }
8070
8071 int
8072 _sys_wait_accept (int fd)
8073 {
8074 HANDLE hEv;
8075 child_process * cp;
8076 int rc;
8077
8078 if (fd < 0 || fd >= MAXDESC)
8079 return STATUS_READ_ERROR;
8080
8081 cp = fd_info[fd].cp;
8082
8083 if (cp == NULL || cp->fd != fd || cp->status != STATUS_READ_READY)
8084 return STATUS_READ_ERROR;
8085
8086 cp->status = STATUS_READ_FAILED;
8087
8088 hEv = pfn_WSACreateEvent ();
8089 rc = pfn_WSAEventSelect (SOCK_HANDLE (fd), hEv, FD_ACCEPT);
8090 if (rc != SOCKET_ERROR)
8091 {
8092 do {
8093 rc = WaitForSingleObject (hEv, 500);
8094 Sleep (5);
8095 } while (rc == WAIT_TIMEOUT
8096 && cp->status != STATUS_READ_ERROR
8097 && cp->char_avail);
8098 pfn_WSAEventSelect (SOCK_HANDLE (fd), NULL, 0);
8099 if (rc == WAIT_OBJECT_0)
8100 cp->status = STATUS_READ_SUCCEEDED;
8101 }
8102 pfn_WSACloseEvent (hEv);
8103
8104 return cp->status;
8105 }
8106
8107 int
8108 sys_read (int fd, char * buffer, unsigned int count)
8109 {
8110 int nchars;
8111 int to_read;
8112 DWORD waiting;
8113 char * orig_buffer = buffer;
8114
8115 if (fd < 0)
8116 {
8117 errno = EBADF;
8118 return -1;
8119 }
8120
8121 if (fd < MAXDESC && fd_info[fd].flags & (FILE_PIPE | FILE_SOCKET | FILE_SERIAL))
8122 {
8123 child_process *cp = fd_info[fd].cp;
8124
8125 if ((fd_info[fd].flags & FILE_READ) == 0)
8126 {
8127 errno = EBADF;
8128 return -1;
8129 }
8130
8131 nchars = 0;
8132
8133 /* re-read CR carried over from last read */
8134 if (fd_info[fd].flags & FILE_LAST_CR)
8135 {
8136 if (fd_info[fd].flags & FILE_BINARY) emacs_abort ();
8137 *buffer++ = 0x0d;
8138 count--;
8139 nchars++;
8140 fd_info[fd].flags &= ~FILE_LAST_CR;
8141 }
8142
8143 /* presence of a child_process structure means we are operating in
8144 non-blocking mode - otherwise we just call _read directly.
8145 Note that the child_process structure might be missing because
8146 reap_subprocess has been called; in this case the pipe is
8147 already broken, so calling _read on it is okay. */
8148 if (cp)
8149 {
8150 int current_status = cp->status;
8151
8152 switch (current_status)
8153 {
8154 case STATUS_READ_FAILED:
8155 case STATUS_READ_ERROR:
8156 /* report normal EOF if nothing in buffer */
8157 if (nchars <= 0)
8158 fd_info[fd].flags |= FILE_AT_EOF;
8159 return nchars;
8160
8161 case STATUS_READ_READY:
8162 case STATUS_READ_IN_PROGRESS:
8163 DebPrint (("sys_read called when read is in progress\n"));
8164 errno = EWOULDBLOCK;
8165 return -1;
8166
8167 case STATUS_READ_SUCCEEDED:
8168 /* consume read-ahead char */
8169 *buffer++ = cp->chr;
8170 count--;
8171 nchars++;
8172 cp->status = STATUS_READ_ACKNOWLEDGED;
8173 ResetEvent (cp->char_avail);
8174
8175 case STATUS_READ_ACKNOWLEDGED:
8176 break;
8177
8178 default:
8179 DebPrint (("sys_read: bad status %d\n", current_status));
8180 errno = EBADF;
8181 return -1;
8182 }
8183
8184 if (fd_info[fd].flags & FILE_PIPE)
8185 {
8186 PeekNamedPipe ((HANDLE) _get_osfhandle (fd), NULL, 0, NULL, &waiting, NULL);
8187 to_read = min (waiting, (DWORD) count);
8188
8189 if (to_read > 0)
8190 nchars += _read (fd, buffer, to_read);
8191 }
8192 else if (fd_info[fd].flags & FILE_SERIAL)
8193 {
8194 HANDLE hnd = fd_info[fd].hnd;
8195 OVERLAPPED *ovl = &fd_info[fd].cp->ovl_read;
8196 int rc = 0;
8197 COMMTIMEOUTS ct;
8198
8199 if (count > 0)
8200 {
8201 /* Configure timeouts for non-blocking read. */
8202 if (!GetCommTimeouts (hnd, &ct))
8203 {
8204 errno = EIO;
8205 return -1;
8206 }
8207 ct.ReadIntervalTimeout = MAXDWORD;
8208 ct.ReadTotalTimeoutMultiplier = 0;
8209 ct.ReadTotalTimeoutConstant = 0;
8210 if (!SetCommTimeouts (hnd, &ct))
8211 {
8212 errno = EIO;
8213 return -1;
8214 }
8215
8216 if (!ResetEvent (ovl->hEvent))
8217 {
8218 errno = EIO;
8219 return -1;
8220 }
8221 if (!ReadFile (hnd, buffer, count, (DWORD*) &rc, ovl))
8222 {
8223 if (GetLastError () != ERROR_IO_PENDING)
8224 {
8225 errno = EIO;
8226 return -1;
8227 }
8228 if (!GetOverlappedResult (hnd, ovl, (DWORD*) &rc, TRUE))
8229 {
8230 errno = EIO;
8231 return -1;
8232 }
8233 }
8234 nchars += rc;
8235 }
8236 }
8237 else /* FILE_SOCKET */
8238 {
8239 if (winsock_lib == NULL) emacs_abort ();
8240
8241 /* do the equivalent of a non-blocking read */
8242 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONREAD, &waiting);
8243 if (waiting == 0 && nchars == 0)
8244 {
8245 errno = EWOULDBLOCK;
8246 return -1;
8247 }
8248
8249 if (waiting)
8250 {
8251 /* always use binary mode for sockets */
8252 int res = pfn_recv (SOCK_HANDLE (fd), buffer, count, 0);
8253 if (res == SOCKET_ERROR)
8254 {
8255 DebPrint (("sys_read.recv failed with error %d on socket %ld\n",
8256 pfn_WSAGetLastError (), SOCK_HANDLE (fd)));
8257 set_errno ();
8258 return -1;
8259 }
8260 nchars += res;
8261 }
8262 }
8263 }
8264 else
8265 {
8266 int nread = _read (fd, buffer, count);
8267 if (nread >= 0)
8268 nchars += nread;
8269 else if (nchars == 0)
8270 nchars = nread;
8271 }
8272
8273 if (nchars <= 0)
8274 fd_info[fd].flags |= FILE_AT_EOF;
8275 /* Perform text mode translation if required. */
8276 else if ((fd_info[fd].flags & FILE_BINARY) == 0)
8277 {
8278 nchars = crlf_to_lf (nchars, orig_buffer);
8279 /* If buffer contains only CR, return that. To be absolutely
8280 sure we should attempt to read the next char, but in
8281 practice a CR to be followed by LF would not appear by
8282 itself in the buffer. */
8283 if (nchars > 1 && orig_buffer[nchars - 1] == 0x0d)
8284 {
8285 fd_info[fd].flags |= FILE_LAST_CR;
8286 nchars--;
8287 }
8288 }
8289 }
8290 else
8291 nchars = _read (fd, buffer, count);
8292
8293 return nchars;
8294 }
8295
8296 /* From w32xfns.c */
8297 extern HANDLE interrupt_handle;
8298
8299 int
8300 sys_write (int fd, const void * buffer, unsigned int count)
8301 {
8302 int nchars;
8303 USE_SAFE_ALLOCA;
8304
8305 if (fd < 0)
8306 {
8307 errno = EBADF;
8308 return -1;
8309 }
8310
8311 if (fd < MAXDESC && fd_info[fd].flags & (FILE_PIPE | FILE_SOCKET | FILE_SERIAL))
8312 {
8313 if ((fd_info[fd].flags & FILE_WRITE) == 0)
8314 {
8315 errno = EBADF;
8316 return -1;
8317 }
8318
8319 /* Perform text mode translation if required. */
8320 if ((fd_info[fd].flags & FILE_BINARY) == 0)
8321 {
8322 char * tmpbuf;
8323 const unsigned char * src = buffer;
8324 unsigned char * dst;
8325 int nbytes = count;
8326
8327 SAFE_NALLOCA (tmpbuf, 2, count);
8328 dst = tmpbuf;
8329
8330 while (1)
8331 {
8332 unsigned char *next;
8333 /* Copy next line or remaining bytes. */
8334 next = _memccpy (dst, src, '\n', nbytes);
8335 if (next)
8336 {
8337 /* Copied one line ending with '\n'. */
8338 int copied = next - dst;
8339 nbytes -= copied;
8340 src += copied;
8341 /* Insert '\r' before '\n'. */
8342 next[-1] = '\r';
8343 next[0] = '\n';
8344 dst = next + 1;
8345 count++;
8346 }
8347 else
8348 /* Copied remaining partial line -> now finished. */
8349 break;
8350 }
8351 buffer = tmpbuf;
8352 }
8353 }
8354
8355 if (fd < MAXDESC && fd_info[fd].flags & FILE_SERIAL)
8356 {
8357 HANDLE hnd = (HANDLE) _get_osfhandle (fd);
8358 OVERLAPPED *ovl = &fd_info[fd].cp->ovl_write;
8359 HANDLE wait_hnd[2] = { interrupt_handle, ovl->hEvent };
8360 DWORD active = 0;
8361
8362 /* This is async (a.k.a. "overlapped") I/O, so the return value
8363 of FALSE from WriteFile means either an error or the output
8364 will be completed asynchronously (ERROR_IO_PENDING). */
8365 if (!WriteFile (hnd, buffer, count, (DWORD*) &nchars, ovl))
8366 {
8367 if (GetLastError () != ERROR_IO_PENDING)
8368 {
8369 errno = EIO;
8370 nchars = -1;
8371 }
8372 else
8373 {
8374 /* Wait for the write to complete, and watch C-g while
8375 at that. */
8376 if (detect_input_pending ())
8377 active = MsgWaitForMultipleObjects (2, wait_hnd, FALSE,
8378 INFINITE, QS_ALLINPUT);
8379 else
8380 active = WaitForMultipleObjects (2, wait_hnd, FALSE, INFINITE);
8381 switch (active)
8382 {
8383 case WAIT_OBJECT_0:
8384 /* User pressed C-g, cancel write, then leave.
8385 Don't bother cleaning up as we may only get stuck
8386 in buggy drivers. */
8387 PurgeComm (hnd, PURGE_TXABORT | PURGE_TXCLEAR);
8388 CancelIo (hnd);
8389 errno = EIO; /* Why not EINTR? */
8390 nchars = -1;
8391 break;
8392 case WAIT_OBJECT_0 + 1:
8393 if (!GetOverlappedResult (hnd, ovl, (DWORD*) &nchars, TRUE))
8394 {
8395 errno = EIO;
8396 nchars = -1;
8397 }
8398 break;
8399 }
8400 }
8401 }
8402 }
8403 else if (fd < MAXDESC && fd_info[fd].flags & FILE_SOCKET)
8404 {
8405 unsigned long nblock = 0;
8406 if (winsock_lib == NULL) emacs_abort ();
8407
8408 /* TODO: implement select() properly so non-blocking I/O works. */
8409 /* For now, make sure the write blocks. */
8410 if (fd_info[fd].flags & FILE_NDELAY)
8411 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
8412
8413 nchars = pfn_send (SOCK_HANDLE (fd), buffer, count, 0);
8414
8415 /* Set the socket back to non-blocking if it was before,
8416 for other operations that support it. */
8417 if (fd_info[fd].flags & FILE_NDELAY)
8418 {
8419 nblock = 1;
8420 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
8421 }
8422
8423 if (nchars == SOCKET_ERROR)
8424 {
8425 DebPrint (("sys_write.send failed with error %d on socket %ld\n",
8426 pfn_WSAGetLastError (), SOCK_HANDLE (fd)));
8427 set_errno ();
8428 }
8429 }
8430 else
8431 {
8432 /* Some networked filesystems don't like too large writes, so
8433 break them into smaller chunks. See the Comments section of
8434 the MSDN documentation of WriteFile for details behind the
8435 choice of the value of CHUNK below. See also the thread
8436 http://thread.gmane.org/gmane.comp.version-control.git/145294
8437 in the git mailing list. */
8438 const unsigned char *p = buffer;
8439 const unsigned chunk = 30 * 1024 * 1024;
8440
8441 nchars = 0;
8442 while (count > 0)
8443 {
8444 unsigned this_chunk = count < chunk ? count : chunk;
8445 int n = _write (fd, p, this_chunk);
8446
8447 nchars += n;
8448 if (n < 0)
8449 {
8450 /* When there's no buffer space in a pipe that is in the
8451 non-blocking mode, _write returns ENOSPC. We return
8452 EAGAIN instead, which should trigger the logic in
8453 send_process that enters waiting loop and calls
8454 wait_reading_process_output to allow process input to
8455 be accepted during the wait. Those calls to
8456 wait_reading_process_output allow sys_select to
8457 notice when process input becomes available, thus
8458 avoiding deadlock whereby each side of the pipe is
8459 blocked on write, waiting for the other party to read
8460 its end of the pipe. */
8461 if (errno == ENOSPC
8462 && fd < MAXDESC
8463 && ((fd_info[fd].flags & (FILE_PIPE | FILE_NDELAY))
8464 == (FILE_PIPE | FILE_NDELAY)))
8465 errno = EAGAIN;
8466 nchars = n;
8467 break;
8468 }
8469 else if (n < this_chunk)
8470 break;
8471 count -= n;
8472 p += n;
8473 }
8474 }
8475
8476 SAFE_FREE ();
8477 return nchars;
8478 }
8479
8480 \f
8481 /* Emulation of SIOCGIFCONF and getifaddrs, see process.c. */
8482
8483 extern Lisp_Object conv_sockaddr_to_lisp (struct sockaddr *, int);
8484
8485 /* Return information about network interface IFNAME, or about all
8486 interfaces (if IFNAME is nil). */
8487 static Lisp_Object
8488 network_interface_get_info (Lisp_Object ifname)
8489 {
8490 ULONG ainfo_len = sizeof (IP_ADAPTER_INFO);
8491 IP_ADAPTER_INFO *adapter, *ainfo = xmalloc (ainfo_len);
8492 DWORD retval = get_adapters_info (ainfo, &ainfo_len);
8493 Lisp_Object res = Qnil;
8494
8495 if (retval == ERROR_BUFFER_OVERFLOW)
8496 {
8497 ainfo = xrealloc (ainfo, ainfo_len);
8498 retval = get_adapters_info (ainfo, &ainfo_len);
8499 }
8500
8501 if (retval == ERROR_SUCCESS)
8502 {
8503 int eth_count = 0, tr_count = 0, fddi_count = 0, ppp_count = 0;
8504 int sl_count = 0, wlan_count = 0, lo_count = 0, ifx_count = 0;
8505 int if_num;
8506 struct sockaddr_in sa;
8507
8508 /* For the below, we need some winsock functions, so make sure
8509 the winsock DLL is loaded. If we cannot successfully load
8510 it, they will have no use of the information we provide,
8511 anyway, so punt. */
8512 if (!winsock_lib && !init_winsock (1))
8513 goto done;
8514
8515 for (adapter = ainfo; adapter; adapter = adapter->Next)
8516 {
8517 char namebuf[MAX_ADAPTER_NAME_LENGTH + 4];
8518 u_long ip_addr;
8519 /* Present Unix-compatible interface names, instead of the
8520 Windows names, which are really GUIDs not readable by
8521 humans. */
8522 static const char *ifmt[] = {
8523 "eth%d", "tr%d", "fddi%d", "ppp%d", "sl%d", "wlan%d",
8524 "lo", "ifx%d"
8525 };
8526 enum {
8527 NONE = -1,
8528 ETHERNET = 0,
8529 TOKENRING = 1,
8530 FDDI = 2,
8531 PPP = 3,
8532 SLIP = 4,
8533 WLAN = 5,
8534 LOOPBACK = 6,
8535 OTHER_IF = 7
8536 } ifmt_idx;
8537
8538 switch (adapter->Type)
8539 {
8540 case MIB_IF_TYPE_ETHERNET:
8541 /* Windows before Vista reports wireless adapters as
8542 Ethernet. Work around by looking at the Description
8543 string. */
8544 if (strstr (adapter->Description, "Wireless "))
8545 {
8546 ifmt_idx = WLAN;
8547 if_num = wlan_count++;
8548 }
8549 else
8550 {
8551 ifmt_idx = ETHERNET;
8552 if_num = eth_count++;
8553 }
8554 break;
8555 case MIB_IF_TYPE_TOKENRING:
8556 ifmt_idx = TOKENRING;
8557 if_num = tr_count++;
8558 break;
8559 case MIB_IF_TYPE_FDDI:
8560 ifmt_idx = FDDI;
8561 if_num = fddi_count++;
8562 break;
8563 case MIB_IF_TYPE_PPP:
8564 ifmt_idx = PPP;
8565 if_num = ppp_count++;
8566 break;
8567 case MIB_IF_TYPE_SLIP:
8568 ifmt_idx = SLIP;
8569 if_num = sl_count++;
8570 break;
8571 case IF_TYPE_IEEE80211:
8572 ifmt_idx = WLAN;
8573 if_num = wlan_count++;
8574 break;
8575 case MIB_IF_TYPE_LOOPBACK:
8576 if (lo_count < 0)
8577 {
8578 ifmt_idx = LOOPBACK;
8579 if_num = lo_count++;
8580 }
8581 else
8582 ifmt_idx = NONE;
8583 break;
8584 default:
8585 ifmt_idx = OTHER_IF;
8586 if_num = ifx_count++;
8587 break;
8588 }
8589 if (ifmt_idx == NONE)
8590 continue;
8591 sprintf (namebuf, ifmt[ifmt_idx], if_num);
8592
8593 sa.sin_family = AF_INET;
8594 ip_addr = sys_inet_addr (adapter->IpAddressList.IpAddress.String);
8595 if (ip_addr == INADDR_NONE)
8596 {
8597 /* Bogus address, skip this interface. */
8598 continue;
8599 }
8600 sa.sin_addr.s_addr = ip_addr;
8601 sa.sin_port = 0;
8602 if (NILP (ifname))
8603 res = Fcons (Fcons (build_string (namebuf),
8604 conv_sockaddr_to_lisp ((struct sockaddr*) &sa,
8605 sizeof (struct sockaddr))),
8606 res);
8607 else if (strcmp (namebuf, SSDATA (ifname)) == 0)
8608 {
8609 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
8610 register struct Lisp_Vector *p = XVECTOR (hwaddr);
8611 Lisp_Object flags = Qnil;
8612 int n;
8613 u_long net_mask;
8614
8615 /* Flags. We guess most of them by type, since the
8616 Windows flags are different and hard to get by. */
8617 flags = Fcons (intern ("up"), flags);
8618 if (ifmt_idx == ETHERNET || ifmt_idx == WLAN)
8619 {
8620 flags = Fcons (intern ("broadcast"), flags);
8621 flags = Fcons (intern ("multicast"), flags);
8622 }
8623 flags = Fcons (intern ("running"), flags);
8624 if (ifmt_idx == PPP)
8625 {
8626 flags = Fcons (intern ("pointopoint"), flags);
8627 flags = Fcons (intern ("noarp"), flags);
8628 }
8629 if (adapter->HaveWins)
8630 flags = Fcons (intern ("WINS"), flags);
8631 if (adapter->DhcpEnabled)
8632 flags = Fcons (intern ("dynamic"), flags);
8633
8634 res = Fcons (flags, res);
8635
8636 /* Hardware address and its family. */
8637 for (n = 0; n < adapter->AddressLength; n++)
8638 p->contents[n] = make_number ((int) adapter->Address[n]);
8639 /* Windows does not support AF_LINK or AF_PACKET family
8640 of addresses. Use an arbitrary family number that is
8641 identical to what GNU/Linux returns. */
8642 res = Fcons (Fcons (make_number (1), hwaddr), res);
8643
8644 /* Network mask. */
8645 sa.sin_family = AF_INET;
8646 net_mask = sys_inet_addr (adapter->IpAddressList.IpMask.String);
8647 if (net_mask != INADDR_NONE)
8648 {
8649 sa.sin_addr.s_addr = net_mask;
8650 sa.sin_port = 0;
8651 res = Fcons (conv_sockaddr_to_lisp ((struct sockaddr *) &sa,
8652 sizeof (struct sockaddr)),
8653 res);
8654 }
8655 else
8656 res = Fcons (Qnil, res);
8657
8658 sa.sin_family = AF_INET;
8659 if (ip_addr != INADDR_NONE)
8660 {
8661 /* Broadcast address is only reported by
8662 GetAdaptersAddresses, which is of limited
8663 availability. Generate it on our own. */
8664 u_long bcast_addr = (ip_addr & net_mask) | ~net_mask;
8665
8666 sa.sin_addr.s_addr = bcast_addr;
8667 sa.sin_port = 0;
8668 res = Fcons (conv_sockaddr_to_lisp ((struct sockaddr *) &sa,
8669 sizeof (struct sockaddr)),
8670 res);
8671
8672 /* IP address. */
8673 sa.sin_addr.s_addr = ip_addr;
8674 sa.sin_port = 0;
8675 res = Fcons (conv_sockaddr_to_lisp ((struct sockaddr *) &sa,
8676 sizeof (struct sockaddr)),
8677 res);
8678 }
8679 else
8680 res = Fcons (Qnil, Fcons (Qnil, res));
8681 }
8682 }
8683 /* GetAdaptersInfo is documented to not report loopback
8684 interfaces, so we generate one out of thin air. */
8685 if (!lo_count)
8686 {
8687 sa.sin_family = AF_INET;
8688 sa.sin_port = 0;
8689 if (NILP (ifname))
8690 {
8691 sa.sin_addr.s_addr = sys_inet_addr ("127.0.0.1");
8692 res = Fcons (Fcons (build_string ("lo"),
8693 conv_sockaddr_to_lisp ((struct sockaddr*) &sa,
8694 sizeof (struct sockaddr))),
8695 res);
8696 }
8697 else if (strcmp (SSDATA (ifname), "lo") == 0)
8698 {
8699 res = Fcons (Fcons (intern ("running"),
8700 Fcons (intern ("loopback"),
8701 Fcons (intern ("up"), Qnil))), Qnil);
8702 /* 772 is what 3 different GNU/Linux systems report for
8703 the loopback interface. */
8704 res = Fcons (Fcons (make_number (772),
8705 Fmake_vector (make_number (6),
8706 make_number (0))),
8707 res);
8708 sa.sin_addr.s_addr = sys_inet_addr ("255.0.0.0");
8709 res = Fcons (conv_sockaddr_to_lisp ((struct sockaddr *) &sa,
8710 sizeof (struct sockaddr)),
8711 res);
8712 sa.sin_addr.s_addr = sys_inet_addr ("0.0.0.0");
8713 res = Fcons (conv_sockaddr_to_lisp ((struct sockaddr *) &sa,
8714 sizeof (struct sockaddr)),
8715 res);
8716 sa.sin_addr.s_addr = sys_inet_addr ("127.0.0.1");
8717 res = Fcons (conv_sockaddr_to_lisp ((struct sockaddr *) &sa,
8718 sizeof (struct sockaddr)),
8719 res);
8720 }
8721
8722 }
8723 }
8724
8725 done:
8726 xfree (ainfo);
8727 return res;
8728 }
8729
8730 Lisp_Object
8731 network_interface_list (void)
8732 {
8733 return network_interface_get_info (Qnil);
8734 }
8735
8736 Lisp_Object
8737 network_interface_info (Lisp_Object ifname)
8738 {
8739 CHECK_STRING (ifname);
8740 return network_interface_get_info (ifname);
8741 }
8742
8743 \f
8744 /* The Windows CRT functions are "optimized for speed", so they don't
8745 check for timezone and DST changes if they were last called less
8746 than 1 minute ago (see http://support.microsoft.com/kb/821231). So
8747 all Emacs features that repeatedly call time functions (e.g.,
8748 display-time) are in real danger of missing timezone and DST
8749 changes. Calling tzset before each localtime call fixes that. */
8750 struct tm *
8751 sys_localtime (const time_t *t)
8752 {
8753 tzset ();
8754 return localtime (t);
8755 }
8756
8757
8758 \f
8759 /* Try loading LIBRARY_ID from the file(s) specified in
8760 Vdynamic_library_alist. If the library is loaded successfully,
8761 return the handle of the DLL, and record the filename in the
8762 property :loaded-from of LIBRARY_ID. If the library could not be
8763 found, or when it was already loaded (because the handle is not
8764 recorded anywhere, and so is lost after use), return NULL.
8765
8766 We could also save the handle in :loaded-from, but currently
8767 there's no use case for it. */
8768 HMODULE
8769 w32_delayed_load (Lisp_Object library_id)
8770 {
8771 HMODULE dll_handle = NULL;
8772
8773 CHECK_SYMBOL (library_id);
8774
8775 if (CONSP (Vdynamic_library_alist)
8776 && NILP (Fassq (library_id, Vlibrary_cache)))
8777 {
8778 Lisp_Object found = Qnil;
8779 Lisp_Object dlls = Fassq (library_id, Vdynamic_library_alist);
8780
8781 if (CONSP (dlls))
8782 for (dlls = XCDR (dlls); CONSP (dlls); dlls = XCDR (dlls))
8783 {
8784 Lisp_Object dll = XCAR (dlls);
8785 char name[MAX_UTF8_PATH];
8786 DWORD res = -1;
8787
8788 CHECK_STRING (dll);
8789 dll = ENCODE_FILE (dll);
8790 if (w32_unicode_filenames)
8791 {
8792 wchar_t name_w[MAX_PATH];
8793
8794 filename_to_utf16 (SSDATA (dll), name_w);
8795 dll_handle = LoadLibraryW (name_w);
8796 if (dll_handle)
8797 {
8798 res = GetModuleFileNameW (dll_handle, name_w,
8799 sizeof (name_w));
8800 if (res > 0)
8801 filename_from_utf16 (name_w, name);
8802 }
8803 }
8804 else
8805 {
8806 char name_a[MAX_PATH];
8807
8808 filename_to_ansi (SSDATA (dll), name_a);
8809 dll_handle = LoadLibraryA (name_a);
8810 if (dll_handle)
8811 {
8812 res = GetModuleFileNameA (dll_handle, name_a,
8813 sizeof (name_a));
8814 if (res > 0)
8815 filename_from_ansi (name_a, name);
8816 }
8817 }
8818 if (dll_handle)
8819 {
8820 ptrdiff_t len = strlen (name);
8821 found = Fcons (dll,
8822 (res > 0)
8823 /* Possibly truncated */
8824 ? make_specified_string (name, -1, len, 1)
8825 : Qnil);
8826 /* This prevents thread start and end notifications
8827 from being sent to the DLL, for every thread we
8828 start. We don't need those notifications because
8829 threads we create never use any of these DLLs, only
8830 the main thread uses them. This is supposed to
8831 speed up thread creation. */
8832 DisableThreadLibraryCalls (dll_handle);
8833 break;
8834 }
8835 }
8836
8837 Fput (library_id, QCloaded_from, found);
8838 }
8839
8840 return dll_handle;
8841 }
8842
8843 \f
8844 void
8845 check_windows_init_file (void)
8846 {
8847 /* A common indication that Emacs is not installed properly is when
8848 it cannot find the Windows installation file. If this file does
8849 not exist in the expected place, tell the user. */
8850
8851 if (!noninteractive && !inhibit_window_system
8852 /* Vload_path is not yet initialized when we are loading
8853 loadup.el. */
8854 && NILP (Vpurify_flag))
8855 {
8856 Lisp_Object init_file;
8857 int fd;
8858
8859 /* Implementation note: this function runs early during Emacs
8860 startup, before startup.el is run. So Vload_path is still in
8861 its initial unibyte form, but it holds UTF-8 encoded file
8862 names, since init_callproc was already called. So we do not
8863 need to ENCODE_FILE here, but we do need to convert the file
8864 names from UTF-8 to ANSI. */
8865 init_file = build_string ("term/w32-win");
8866 fd = openp (Vload_path, init_file, Fget_load_suffixes (), NULL, Qnil, 0);
8867 if (fd < 0)
8868 {
8869 Lisp_Object load_path_print = Fprin1_to_string (Vload_path, Qnil);
8870 char *init_file_name = SDATA (init_file);
8871 char *load_path = SDATA (load_path_print);
8872 char *buffer = alloca (1024
8873 + strlen (init_file_name)
8874 + strlen (load_path));
8875 char *msg = buffer;
8876 int needed;
8877
8878 sprintf (buffer,
8879 "The Emacs Windows initialization file \"%s.el\" "
8880 "could not be found in your Emacs installation. "
8881 "Emacs checked the following directories for this file:\n"
8882 "\n%s\n\n"
8883 "When Emacs cannot find this file, it usually means that it "
8884 "was not installed properly, or its distribution file was "
8885 "not unpacked properly.\nSee the README.W32 file in the "
8886 "top-level Emacs directory for more information.",
8887 init_file_name, load_path);
8888 needed = pMultiByteToWideChar (CP_UTF8, MB_ERR_INVALID_CHARS, buffer,
8889 -1, NULL, 0);
8890 if (needed > 0)
8891 {
8892 wchar_t *msg_w = alloca ((needed + 1) * sizeof (wchar_t));
8893
8894 pMultiByteToWideChar (CP_UTF8, MB_ERR_INVALID_CHARS, buffer, -1,
8895 msg_w, needed);
8896 needed = pWideCharToMultiByte (CP_ACP, 0, msg_w, -1,
8897 NULL, 0, NULL, NULL);
8898 if (needed > 0)
8899 {
8900 char *msg_a = alloca (needed + 1);
8901
8902 pWideCharToMultiByte (CP_ACP, 0, msg_w, -1, msg_a, needed,
8903 NULL, NULL);
8904 msg = msg_a;
8905 }
8906 }
8907 MessageBox (NULL,
8908 msg,
8909 "Emacs Abort Dialog",
8910 MB_OK | MB_ICONEXCLAMATION | MB_TASKMODAL);
8911 /* Use the low-level system abort. */
8912 abort ();
8913 }
8914 else
8915 {
8916 _close (fd);
8917 }
8918 }
8919 }
8920
8921 void
8922 term_ntproc (int ignored)
8923 {
8924 (void)ignored;
8925
8926 term_timers ();
8927
8928 /* shutdown the socket interface if necessary */
8929 term_winsock ();
8930
8931 term_w32select ();
8932 }
8933
8934 void
8935 init_ntproc (int dumping)
8936 {
8937 sigset_t initial_mask = 0;
8938
8939 /* Initialize the socket interface now if available and requested by
8940 the user by defining PRELOAD_WINSOCK; otherwise loading will be
8941 delayed until open-network-stream is called (w32-has-winsock can
8942 also be used to dynamically load or reload winsock).
8943
8944 Conveniently, init_environment is called before us, so
8945 PRELOAD_WINSOCK can be set in the registry. */
8946
8947 /* Always initialize this correctly. */
8948 winsock_lib = NULL;
8949
8950 if (getenv ("PRELOAD_WINSOCK") != NULL)
8951 init_winsock (TRUE);
8952
8953 /* Initial preparation for subprocess support: replace our standard
8954 handles with non-inheritable versions. */
8955 {
8956 HANDLE parent;
8957 HANDLE stdin_save = INVALID_HANDLE_VALUE;
8958 HANDLE stdout_save = INVALID_HANDLE_VALUE;
8959 HANDLE stderr_save = INVALID_HANDLE_VALUE;
8960
8961 parent = GetCurrentProcess ();
8962
8963 /* ignore errors when duplicating and closing; typically the
8964 handles will be invalid when running as a gui program. */
8965 DuplicateHandle (parent,
8966 GetStdHandle (STD_INPUT_HANDLE),
8967 parent,
8968 &stdin_save,
8969 0,
8970 FALSE,
8971 DUPLICATE_SAME_ACCESS);
8972
8973 DuplicateHandle (parent,
8974 GetStdHandle (STD_OUTPUT_HANDLE),
8975 parent,
8976 &stdout_save,
8977 0,
8978 FALSE,
8979 DUPLICATE_SAME_ACCESS);
8980
8981 DuplicateHandle (parent,
8982 GetStdHandle (STD_ERROR_HANDLE),
8983 parent,
8984 &stderr_save,
8985 0,
8986 FALSE,
8987 DUPLICATE_SAME_ACCESS);
8988
8989 fclose (stdin);
8990 fclose (stdout);
8991 fclose (stderr);
8992
8993 if (stdin_save != INVALID_HANDLE_VALUE)
8994 _open_osfhandle ((intptr_t) stdin_save, O_TEXT);
8995 else
8996 _open ("nul", O_TEXT | O_NOINHERIT | O_RDONLY);
8997 _fdopen (0, "r");
8998
8999 if (stdout_save != INVALID_HANDLE_VALUE)
9000 _open_osfhandle ((intptr_t) stdout_save, O_TEXT);
9001 else
9002 _open ("nul", O_TEXT | O_NOINHERIT | O_WRONLY);
9003 _fdopen (1, "w");
9004
9005 if (stderr_save != INVALID_HANDLE_VALUE)
9006 _open_osfhandle ((intptr_t) stderr_save, O_TEXT);
9007 else
9008 _open ("nul", O_TEXT | O_NOINHERIT | O_WRONLY);
9009 _fdopen (2, "w");
9010 }
9011
9012 /* unfortunately, atexit depends on implementation of malloc */
9013 /* atexit (term_ntproc); */
9014 if (!dumping)
9015 {
9016 /* Make sure we start with all signals unblocked. */
9017 sigprocmask (SIG_SETMASK, &initial_mask, NULL);
9018 signal (SIGABRT, term_ntproc);
9019 }
9020 init_timers ();
9021
9022 /* determine which drives are fixed, for GetCachedVolumeInformation */
9023 {
9024 /* GetDriveType must have trailing backslash. */
9025 char drive[] = "A:\\";
9026
9027 /* Loop over all possible drive letters */
9028 while (*drive <= 'Z')
9029 {
9030 /* Record if this drive letter refers to a fixed drive. */
9031 fixed_drives[DRIVE_INDEX (*drive)] =
9032 (GetDriveType (drive) == DRIVE_FIXED);
9033
9034 (*drive)++;
9035 }
9036
9037 /* Reset the volume info cache. */
9038 volume_cache = NULL;
9039 }
9040 }
9041
9042 /*
9043 shutdown_handler ensures that buffers' autosave files are
9044 up to date when the user logs off, or the system shuts down.
9045 */
9046 static BOOL WINAPI
9047 shutdown_handler (DWORD type)
9048 {
9049 /* Ctrl-C and Ctrl-Break are already suppressed, so don't handle them. */
9050 if (type == CTRL_CLOSE_EVENT /* User closes console window. */
9051 || type == CTRL_LOGOFF_EVENT /* User logs off. */
9052 || type == CTRL_SHUTDOWN_EVENT) /* User shutsdown. */
9053 {
9054 /* Shut down cleanly, making sure autosave files are up to date. */
9055 shut_down_emacs (0, Qnil);
9056 }
9057
9058 /* Allow other handlers to handle this signal. */
9059 return FALSE;
9060 }
9061
9062 /* On Windows 9X, load UNICOWS.DLL and return its handle, or die. On
9063 NT, return a handle to GDI32.DLL. */
9064 HANDLE
9065 maybe_load_unicows_dll (void)
9066 {
9067 if (os_subtype == OS_9X)
9068 {
9069 HANDLE ret = LoadLibrary ("Unicows.dll");
9070 if (ret)
9071 {
9072 /* These two functions are present on Windows 9X as stubs
9073 that always fail. We need the real implementations from
9074 UNICOWS.DLL, so we must call these functions through
9075 pointers, and assign the correct addresses to these
9076 pointers at program startup (see emacs.c, which calls
9077 this function early on). */
9078 pMultiByteToWideChar = GetProcAddress (ret, "MultiByteToWideChar");
9079 pWideCharToMultiByte = GetProcAddress (ret, "WideCharToMultiByte");
9080 return ret;
9081 }
9082 else
9083 {
9084 int button;
9085
9086 button = MessageBox (NULL,
9087 "Emacs cannot load the UNICOWS.DLL library.\n"
9088 "This library is essential for using Emacs\n"
9089 "on this system. You need to install it.\n\n"
9090 "Emacs will exit when you click OK.",
9091 "Emacs cannot load UNICOWS.DLL",
9092 MB_ICONERROR | MB_TASKMODAL
9093 | MB_SETFOREGROUND | MB_OK);
9094 switch (button)
9095 {
9096 case IDOK:
9097 default:
9098 exit (1);
9099 }
9100 }
9101 }
9102 else
9103 {
9104 /* On NT family of Windows, these two functions are always
9105 linked in, so we just assign their addresses to the 2
9106 pointers; no need for the LoadLibrary dance. */
9107 pMultiByteToWideChar = MultiByteToWideChar;
9108 pWideCharToMultiByte = WideCharToMultiByte;
9109 return LoadLibrary ("Gdi32.dll");
9110 }
9111 }
9112
9113 /*
9114 globals_of_w32 is used to initialize those global variables that
9115 must always be initialized on startup even when the global variable
9116 initialized is non zero (see the function main in emacs.c).
9117 */
9118 void
9119 globals_of_w32 (void)
9120 {
9121 HMODULE kernel32 = GetModuleHandle ("kernel32.dll");
9122
9123 get_process_times_fn = (GetProcessTimes_Proc)
9124 GetProcAddress (kernel32, "GetProcessTimes");
9125
9126 DEFSYM (QCloaded_from, ":loaded-from");
9127
9128 g_b_init_is_windows_9x = 0;
9129 g_b_init_open_process_token = 0;
9130 g_b_init_get_token_information = 0;
9131 g_b_init_lookup_account_sid = 0;
9132 g_b_init_get_sid_sub_authority = 0;
9133 g_b_init_get_sid_sub_authority_count = 0;
9134 g_b_init_get_security_info = 0;
9135 g_b_init_get_file_security_w = 0;
9136 g_b_init_get_file_security_a = 0;
9137 g_b_init_get_security_descriptor_owner = 0;
9138 g_b_init_get_security_descriptor_group = 0;
9139 g_b_init_is_valid_sid = 0;
9140 g_b_init_create_toolhelp32_snapshot = 0;
9141 g_b_init_process32_first = 0;
9142 g_b_init_process32_next = 0;
9143 g_b_init_open_thread_token = 0;
9144 g_b_init_impersonate_self = 0;
9145 g_b_init_revert_to_self = 0;
9146 g_b_init_get_process_memory_info = 0;
9147 g_b_init_get_process_working_set_size = 0;
9148 g_b_init_global_memory_status = 0;
9149 g_b_init_global_memory_status_ex = 0;
9150 g_b_init_equal_sid = 0;
9151 g_b_init_copy_sid = 0;
9152 g_b_init_get_length_sid = 0;
9153 g_b_init_get_native_system_info = 0;
9154 g_b_init_get_system_times = 0;
9155 g_b_init_create_symbolic_link_w = 0;
9156 g_b_init_create_symbolic_link_a = 0;
9157 g_b_init_get_security_descriptor_dacl = 0;
9158 g_b_init_convert_sd_to_sddl = 0;
9159 g_b_init_convert_sddl_to_sd = 0;
9160 g_b_init_is_valid_security_descriptor = 0;
9161 g_b_init_set_file_security_w = 0;
9162 g_b_init_set_file_security_a = 0;
9163 g_b_init_set_named_security_info_w = 0;
9164 g_b_init_set_named_security_info_a = 0;
9165 g_b_init_get_adapters_info = 0;
9166 g_b_init_compare_string_w = 0;
9167 num_of_processors = 0;
9168 /* The following sets a handler for shutdown notifications for
9169 console apps. This actually applies to Emacs in both console and
9170 GUI modes, since we had to fool windows into thinking emacs is a
9171 console application to get console mode to work. */
9172 SetConsoleCtrlHandler (shutdown_handler, TRUE);
9173
9174 /* "None" is the default group name on standalone workstations. */
9175 strcpy (dflt_group_name, "None");
9176
9177 /* Reset, in case it has some value inherited from dump time. */
9178 w32_stat_get_owner_group = 0;
9179
9180 /* If w32_unicode_filenames is non-zero, we will be using Unicode
9181 (a.k.a. "wide") APIs to invoke functions that accept file
9182 names. */
9183 if (is_windows_9x ())
9184 w32_unicode_filenames = 0;
9185 else
9186 w32_unicode_filenames = 1;
9187 }
9188
9189 /* For make-serial-process */
9190 int
9191 serial_open (Lisp_Object port_obj)
9192 {
9193 char *port = SSDATA (port_obj);
9194 HANDLE hnd;
9195 child_process *cp;
9196 int fd = -1;
9197
9198 hnd = CreateFile (port, GENERIC_READ | GENERIC_WRITE, 0, 0,
9199 OPEN_EXISTING, FILE_FLAG_OVERLAPPED, 0);
9200 if (hnd == INVALID_HANDLE_VALUE)
9201 error ("Could not open %s", port);
9202 fd = (int) _open_osfhandle ((intptr_t) hnd, 0);
9203 if (fd == -1)
9204 error ("Could not open %s", port);
9205
9206 cp = new_child ();
9207 if (!cp)
9208 error ("Could not create child process");
9209 cp->fd = fd;
9210 cp->status = STATUS_READ_ACKNOWLEDGED;
9211 fd_info[ fd ].hnd = hnd;
9212 fd_info[ fd ].flags |=
9213 FILE_READ | FILE_WRITE | FILE_BINARY | FILE_SERIAL;
9214 if (fd_info[ fd ].cp != NULL)
9215 {
9216 error ("fd_info[fd = %d] is already in use", fd);
9217 }
9218 fd_info[ fd ].cp = cp;
9219 cp->ovl_read.hEvent = CreateEvent (NULL, TRUE, FALSE, NULL);
9220 if (cp->ovl_read.hEvent == NULL)
9221 error ("Could not create read event");
9222 cp->ovl_write.hEvent = CreateEvent (NULL, TRUE, FALSE, NULL);
9223 if (cp->ovl_write.hEvent == NULL)
9224 error ("Could not create write event");
9225
9226 return fd;
9227 }
9228
9229 /* For serial-process-configure */
9230 void
9231 serial_configure (struct Lisp_Process *p, Lisp_Object contact)
9232 {
9233 Lisp_Object childp2 = Qnil;
9234 Lisp_Object tem = Qnil;
9235 HANDLE hnd;
9236 DCB dcb;
9237 COMMTIMEOUTS ct;
9238 char summary[4] = "???"; /* This usually becomes "8N1". */
9239
9240 if ((fd_info[ p->outfd ].flags & FILE_SERIAL) == 0)
9241 error ("Not a serial process");
9242 hnd = fd_info[ p->outfd ].hnd;
9243
9244 childp2 = Fcopy_sequence (p->childp);
9245
9246 /* Initialize timeouts for blocking read and blocking write. */
9247 if (!GetCommTimeouts (hnd, &ct))
9248 error ("GetCommTimeouts() failed");
9249 ct.ReadIntervalTimeout = 0;
9250 ct.ReadTotalTimeoutMultiplier = 0;
9251 ct.ReadTotalTimeoutConstant = 0;
9252 ct.WriteTotalTimeoutMultiplier = 0;
9253 ct.WriteTotalTimeoutConstant = 0;
9254 if (!SetCommTimeouts (hnd, &ct))
9255 error ("SetCommTimeouts() failed");
9256 /* Read port attributes and prepare default configuration. */
9257 memset (&dcb, 0, sizeof (dcb));
9258 dcb.DCBlength = sizeof (DCB);
9259 if (!GetCommState (hnd, &dcb))
9260 error ("GetCommState() failed");
9261 dcb.fBinary = TRUE;
9262 dcb.fNull = FALSE;
9263 dcb.fAbortOnError = FALSE;
9264 /* dcb.XonLim and dcb.XoffLim are set by GetCommState() */
9265 dcb.ErrorChar = 0;
9266 dcb.EofChar = 0;
9267 dcb.EvtChar = 0;
9268
9269 /* Configure speed. */
9270 if (!NILP (Fplist_member (contact, QCspeed)))
9271 tem = Fplist_get (contact, QCspeed);
9272 else
9273 tem = Fplist_get (p->childp, QCspeed);
9274 CHECK_NUMBER (tem);
9275 dcb.BaudRate = XINT (tem);
9276 childp2 = Fplist_put (childp2, QCspeed, tem);
9277
9278 /* Configure bytesize. */
9279 if (!NILP (Fplist_member (contact, QCbytesize)))
9280 tem = Fplist_get (contact, QCbytesize);
9281 else
9282 tem = Fplist_get (p->childp, QCbytesize);
9283 if (NILP (tem))
9284 tem = make_number (8);
9285 CHECK_NUMBER (tem);
9286 if (XINT (tem) != 7 && XINT (tem) != 8)
9287 error (":bytesize must be nil (8), 7, or 8");
9288 dcb.ByteSize = XINT (tem);
9289 summary[0] = XINT (tem) + '0';
9290 childp2 = Fplist_put (childp2, QCbytesize, tem);
9291
9292 /* Configure parity. */
9293 if (!NILP (Fplist_member (contact, QCparity)))
9294 tem = Fplist_get (contact, QCparity);
9295 else
9296 tem = Fplist_get (p->childp, QCparity);
9297 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
9298 error (":parity must be nil (no parity), `even', or `odd'");
9299 dcb.fParity = FALSE;
9300 dcb.Parity = NOPARITY;
9301 dcb.fErrorChar = FALSE;
9302 if (NILP (tem))
9303 {
9304 summary[1] = 'N';
9305 }
9306 else if (EQ (tem, Qeven))
9307 {
9308 summary[1] = 'E';
9309 dcb.fParity = TRUE;
9310 dcb.Parity = EVENPARITY;
9311 dcb.fErrorChar = TRUE;
9312 }
9313 else if (EQ (tem, Qodd))
9314 {
9315 summary[1] = 'O';
9316 dcb.fParity = TRUE;
9317 dcb.Parity = ODDPARITY;
9318 dcb.fErrorChar = TRUE;
9319 }
9320 childp2 = Fplist_put (childp2, QCparity, tem);
9321
9322 /* Configure stopbits. */
9323 if (!NILP (Fplist_member (contact, QCstopbits)))
9324 tem = Fplist_get (contact, QCstopbits);
9325 else
9326 tem = Fplist_get (p->childp, QCstopbits);
9327 if (NILP (tem))
9328 tem = make_number (1);
9329 CHECK_NUMBER (tem);
9330 if (XINT (tem) != 1 && XINT (tem) != 2)
9331 error (":stopbits must be nil (1 stopbit), 1, or 2");
9332 summary[2] = XINT (tem) + '0';
9333 if (XINT (tem) == 1)
9334 dcb.StopBits = ONESTOPBIT;
9335 else if (XINT (tem) == 2)
9336 dcb.StopBits = TWOSTOPBITS;
9337 childp2 = Fplist_put (childp2, QCstopbits, tem);
9338
9339 /* Configure flowcontrol. */
9340 if (!NILP (Fplist_member (contact, QCflowcontrol)))
9341 tem = Fplist_get (contact, QCflowcontrol);
9342 else
9343 tem = Fplist_get (p->childp, QCflowcontrol);
9344 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
9345 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
9346 dcb.fOutxCtsFlow = FALSE;
9347 dcb.fOutxDsrFlow = FALSE;
9348 dcb.fDtrControl = DTR_CONTROL_DISABLE;
9349 dcb.fDsrSensitivity = FALSE;
9350 dcb.fTXContinueOnXoff = FALSE;
9351 dcb.fOutX = FALSE;
9352 dcb.fInX = FALSE;
9353 dcb.fRtsControl = RTS_CONTROL_DISABLE;
9354 dcb.XonChar = 17; /* Control-Q */
9355 dcb.XoffChar = 19; /* Control-S */
9356 if (NILP (tem))
9357 {
9358 /* Already configured. */
9359 }
9360 else if (EQ (tem, Qhw))
9361 {
9362 dcb.fRtsControl = RTS_CONTROL_HANDSHAKE;
9363 dcb.fOutxCtsFlow = TRUE;
9364 }
9365 else if (EQ (tem, Qsw))
9366 {
9367 dcb.fOutX = TRUE;
9368 dcb.fInX = TRUE;
9369 }
9370 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
9371
9372 /* Activate configuration. */
9373 if (!SetCommState (hnd, &dcb))
9374 error ("SetCommState() failed");
9375
9376 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
9377 pset_childp (p, childp2);
9378 }
9379
9380 #ifdef HAVE_GNUTLS
9381
9382 ssize_t
9383 emacs_gnutls_pull (gnutls_transport_ptr_t p, void* buf, size_t sz)
9384 {
9385 int n, err;
9386 struct Lisp_Process *process = (struct Lisp_Process *)p;
9387 int fd = process->infd;
9388
9389 n = sys_read (fd, (char*)buf, sz);
9390
9391 if (n >= 0)
9392 return n;
9393
9394 err = errno;
9395
9396 /* Translate the WSAEWOULDBLOCK alias EWOULDBLOCK to EAGAIN. */
9397 if (err == EWOULDBLOCK)
9398 err = EAGAIN;
9399
9400 emacs_gnutls_transport_set_errno (process->gnutls_state, err);
9401
9402 return -1;
9403 }
9404
9405 ssize_t
9406 emacs_gnutls_push (gnutls_transport_ptr_t p, const void* buf, size_t sz)
9407 {
9408 struct Lisp_Process *process = (struct Lisp_Process *)p;
9409 int fd = process->outfd;
9410 ssize_t n = sys_write (fd, buf, sz);
9411
9412 /* 0 or more bytes written means everything went fine. */
9413 if (n >= 0)
9414 return n;
9415
9416 /* Negative bytes written means we got an error in errno.
9417 Translate the WSAEWOULDBLOCK alias EWOULDBLOCK to EAGAIN. */
9418 emacs_gnutls_transport_set_errno (process->gnutls_state,
9419 errno == EWOULDBLOCK ? EAGAIN : errno);
9420
9421 return -1;
9422 }
9423 #endif /* HAVE_GNUTLS */
9424
9425 /* end of w32.c */