(g_b_init_get_sid_sub_authority, g_b_init_get_sid_sub_authority_count): New
[bpt/emacs.git] / src / w32.c
1 /* Utility and Unix shadow routines for GNU Emacs on the Microsoft W32 API.
2 Copyright (C) 1994, 1995, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
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, or (at your option)
10 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; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA.
21
22 Geoff Voelker (voelker@cs.washington.edu) 7-29-94
23 */
24 #include <stddef.h> /* for offsetof */
25 #include <stdlib.h>
26 #include <stdio.h>
27 #include <io.h>
28 #include <errno.h>
29 #include <fcntl.h>
30 #include <ctype.h>
31 #include <signal.h>
32 #include <sys/file.h>
33 #include <sys/time.h>
34 #include <sys/utime.h>
35 #include <mbstring.h> /* for _mbspbrk */
36
37 /* must include CRT headers *before* config.h */
38
39 #ifdef HAVE_CONFIG_H
40 #include <config.h>
41 #endif
42
43 #undef access
44 #undef chdir
45 #undef chmod
46 #undef creat
47 #undef ctime
48 #undef fopen
49 #undef link
50 #undef mkdir
51 #undef mktemp
52 #undef open
53 #undef rename
54 #undef rmdir
55 #undef unlink
56
57 #undef close
58 #undef dup
59 #undef dup2
60 #undef pipe
61 #undef read
62 #undef write
63
64 #undef strerror
65
66 #include "lisp.h"
67
68 #include <pwd.h>
69 #include <grp.h>
70
71 #ifdef __GNUC__
72 #define _ANONYMOUS_UNION
73 #define _ANONYMOUS_STRUCT
74 #endif
75 #include <windows.h>
76 #include <shlobj.h>
77
78 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
79 #include <sys/socket.h>
80 #undef socket
81 #undef bind
82 #undef connect
83 #undef htons
84 #undef ntohs
85 #undef inet_addr
86 #undef gethostname
87 #undef gethostbyname
88 #undef getservbyname
89 #undef getpeername
90 #undef shutdown
91 #undef setsockopt
92 #undef listen
93 #undef getsockname
94 #undef accept
95 #undef recvfrom
96 #undef sendto
97 #endif
98
99 #include "w32.h"
100 #include "ndir.h"
101 #include "w32heap.h"
102 #include "systime.h"
103
104 typedef HRESULT (WINAPI * ShGetFolderPath_fn)
105 (IN HWND, IN int, IN HANDLE, IN DWORD, OUT char *);
106
107 void globals_of_w32 ();
108
109 extern Lisp_Object Vw32_downcase_file_names;
110 extern Lisp_Object Vw32_generate_fake_inodes;
111 extern Lisp_Object Vw32_get_true_file_attributes;
112 extern int w32_num_mouse_buttons;
113
114 \f
115 /*
116 Initialization states
117 */
118 static BOOL g_b_init_is_windows_9x;
119 static BOOL g_b_init_open_process_token;
120 static BOOL g_b_init_get_token_information;
121 static BOOL g_b_init_lookup_account_sid;
122 static BOOL g_b_init_get_sid_identifier_authority;
123 static BOOL g_b_init_get_sid_sub_authority;
124 static BOOL g_b_init_get_sid_sub_authority_count;
125
126 /*
127 BEGIN: Wrapper functions around OpenProcessToken
128 and other functions in advapi32.dll that are only
129 supported in Windows NT / 2k / XP
130 */
131 /* ** Function pointer typedefs ** */
132 typedef BOOL (WINAPI * OpenProcessToken_Proc) (
133 HANDLE ProcessHandle,
134 DWORD DesiredAccess,
135 PHANDLE TokenHandle);
136 typedef BOOL (WINAPI * GetTokenInformation_Proc) (
137 HANDLE TokenHandle,
138 TOKEN_INFORMATION_CLASS TokenInformationClass,
139 LPVOID TokenInformation,
140 DWORD TokenInformationLength,
141 PDWORD ReturnLength);
142 typedef BOOL (WINAPI * GetProcessTimes_Proc) (
143 HANDLE process_handle,
144 LPFILETIME creation_time,
145 LPFILETIME exit_time,
146 LPFILETIME kernel_time,
147 LPFILETIME user_time);
148
149 GetProcessTimes_Proc get_process_times_fn = NULL;
150
151 #ifdef _UNICODE
152 const char * const LookupAccountSid_Name = "LookupAccountSidW";
153 #else
154 const char * const LookupAccountSid_Name = "LookupAccountSidA";
155 #endif
156 typedef BOOL (WINAPI * LookupAccountSid_Proc) (
157 LPCTSTR lpSystemName,
158 PSID Sid,
159 LPTSTR Name,
160 LPDWORD cbName,
161 LPTSTR DomainName,
162 LPDWORD cbDomainName,
163 PSID_NAME_USE peUse);
164 typedef PSID_IDENTIFIER_AUTHORITY (WINAPI * GetSidIdentifierAuthority_Proc) (
165 PSID pSid);
166 typedef PDWORD (WINAPI * GetSidSubAuthority_Proc) (
167 PSID pSid,
168 DWORD n);
169 typedef PUCHAR (WINAPI * GetSidSubAuthorityCount_Proc) (
170 PSID pSid);
171
172
173 /* ** A utility function ** */
174 static BOOL
175 is_windows_9x ()
176 {
177 static BOOL s_b_ret=0;
178 OSVERSIONINFO os_ver;
179 if (g_b_init_is_windows_9x == 0)
180 {
181 g_b_init_is_windows_9x = 1;
182 ZeroMemory(&os_ver, sizeof(OSVERSIONINFO));
183 os_ver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
184 if (GetVersionEx (&os_ver))
185 {
186 s_b_ret = (os_ver.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS);
187 }
188 }
189 return s_b_ret;
190 }
191
192 /* Get total user and system times for get-internal-run-time.
193 Returns a list of three integers if the times are provided by the OS
194 (NT derivatives), otherwise it returns the result of current-time. */
195 Lisp_Object
196 w32_get_internal_run_time ()
197 {
198 if (get_process_times_fn)
199 {
200 FILETIME create, exit, kernel, user;
201 HANDLE proc = GetCurrentProcess();
202 if ((*get_process_times_fn) (proc, &create, &exit, &kernel, &user))
203 {
204 LARGE_INTEGER user_int, kernel_int, total;
205 int microseconds;
206 user_int.LowPart = user.dwLowDateTime;
207 user_int.HighPart = user.dwHighDateTime;
208 kernel_int.LowPart = kernel.dwLowDateTime;
209 kernel_int.HighPart = kernel.dwHighDateTime;
210 total.QuadPart = user_int.QuadPart + kernel_int.QuadPart;
211 /* FILETIME is 100 nanosecond increments, Emacs only wants
212 microsecond resolution. */
213 total.QuadPart /= 10;
214 microseconds = total.QuadPart % 1000000;
215 total.QuadPart /= 1000000;
216
217 /* Sanity check to make sure we can represent the result. */
218 if (total.HighPart == 0)
219 {
220 int secs = total.LowPart;
221
222 return list3 (make_number ((secs >> 16) & 0xffff),
223 make_number (secs & 0xffff),
224 make_number (microseconds));
225 }
226 }
227 }
228
229 return Fcurrent_time ();
230 }
231
232 /* ** The wrapper functions ** */
233
234 BOOL WINAPI open_process_token (
235 HANDLE ProcessHandle,
236 DWORD DesiredAccess,
237 PHANDLE TokenHandle)
238 {
239 static OpenProcessToken_Proc s_pfn_Open_Process_Token = NULL;
240 HMODULE hm_advapi32 = NULL;
241 if (is_windows_9x () == TRUE)
242 {
243 return FALSE;
244 }
245 if (g_b_init_open_process_token == 0)
246 {
247 g_b_init_open_process_token = 1;
248 hm_advapi32 = LoadLibrary ("Advapi32.dll");
249 s_pfn_Open_Process_Token =
250 (OpenProcessToken_Proc) GetProcAddress (hm_advapi32, "OpenProcessToken");
251 }
252 if (s_pfn_Open_Process_Token == NULL)
253 {
254 return FALSE;
255 }
256 return (
257 s_pfn_Open_Process_Token (
258 ProcessHandle,
259 DesiredAccess,
260 TokenHandle)
261 );
262 }
263
264 BOOL WINAPI get_token_information (
265 HANDLE TokenHandle,
266 TOKEN_INFORMATION_CLASS TokenInformationClass,
267 LPVOID TokenInformation,
268 DWORD TokenInformationLength,
269 PDWORD ReturnLength)
270 {
271 static GetTokenInformation_Proc s_pfn_Get_Token_Information = NULL;
272 HMODULE hm_advapi32 = NULL;
273 if (is_windows_9x () == TRUE)
274 {
275 return FALSE;
276 }
277 if (g_b_init_get_token_information == 0)
278 {
279 g_b_init_get_token_information = 1;
280 hm_advapi32 = LoadLibrary ("Advapi32.dll");
281 s_pfn_Get_Token_Information =
282 (GetTokenInformation_Proc) GetProcAddress (hm_advapi32, "GetTokenInformation");
283 }
284 if (s_pfn_Get_Token_Information == NULL)
285 {
286 return FALSE;
287 }
288 return (
289 s_pfn_Get_Token_Information (
290 TokenHandle,
291 TokenInformationClass,
292 TokenInformation,
293 TokenInformationLength,
294 ReturnLength)
295 );
296 }
297
298 BOOL WINAPI lookup_account_sid (
299 LPCTSTR lpSystemName,
300 PSID Sid,
301 LPTSTR Name,
302 LPDWORD cbName,
303 LPTSTR DomainName,
304 LPDWORD cbDomainName,
305 PSID_NAME_USE peUse)
306 {
307 static LookupAccountSid_Proc s_pfn_Lookup_Account_Sid = NULL;
308 HMODULE hm_advapi32 = NULL;
309 if (is_windows_9x () == TRUE)
310 {
311 return FALSE;
312 }
313 if (g_b_init_lookup_account_sid == 0)
314 {
315 g_b_init_lookup_account_sid = 1;
316 hm_advapi32 = LoadLibrary ("Advapi32.dll");
317 s_pfn_Lookup_Account_Sid =
318 (LookupAccountSid_Proc) GetProcAddress (hm_advapi32, LookupAccountSid_Name);
319 }
320 if (s_pfn_Lookup_Account_Sid == NULL)
321 {
322 return FALSE;
323 }
324 return (
325 s_pfn_Lookup_Account_Sid (
326 lpSystemName,
327 Sid,
328 Name,
329 cbName,
330 DomainName,
331 cbDomainName,
332 peUse)
333 );
334 }
335
336 PSID_IDENTIFIER_AUTHORITY WINAPI get_sid_identifier_authority (
337 PSID pSid)
338 {
339 static GetSidIdentifierAuthority_Proc s_pfn_Get_Sid_Identifier_Authority = NULL;
340 HMODULE hm_advapi32 = NULL;
341 if (is_windows_9x () == TRUE)
342 {
343 return NULL;
344 }
345 if (g_b_init_get_sid_identifier_authority == 0)
346 {
347 g_b_init_get_sid_identifier_authority = 1;
348 hm_advapi32 = LoadLibrary ("Advapi32.dll");
349 s_pfn_Get_Sid_Identifier_Authority =
350 (GetSidIdentifierAuthority_Proc) GetProcAddress (
351 hm_advapi32, "GetSidIdentifierAuthority");
352 }
353 if (s_pfn_Get_Sid_Identifier_Authority == NULL)
354 {
355 return NULL;
356 }
357 return (s_pfn_Get_Sid_Identifier_Authority (pSid));
358 }
359
360 PDWORD WINAPI get_sid_sub_authority (
361 PSID pSid,
362 DWORD n)
363 {
364 static GetSidSubAuthority_Proc s_pfn_Get_Sid_Sub_Authority = NULL;
365 HMODULE hm_advapi32 = NULL;
366 if (is_windows_9x () == TRUE)
367 {
368 return NULL;
369 }
370 if (g_b_init_get_sid_sub_authority == 0)
371 {
372 g_b_init_get_sid_sub_authority = 1;
373 hm_advapi32 = LoadLibrary ("Advapi32.dll");
374 s_pfn_Get_Sid_Sub_Authority =
375 (GetSidSubAuthority_Proc) GetProcAddress (
376 hm_advapi32, "GetSidSubAuthority");
377 }
378 if (s_pfn_Get_Sid_Sub_Authority == NULL)
379 {
380 return NULL;
381 }
382 return (s_pfn_Get_Sid_Sub_Authority (pSid, n));
383 }
384
385 PUCHAR WINAPI get_sid_sub_authority_count (
386 PSID pSid)
387 {
388 static GetSidSubAuthorityCount_Proc s_pfn_Get_Sid_Sub_Authority_Count = NULL;
389 HMODULE hm_advapi32 = NULL;
390 if (is_windows_9x () == TRUE)
391 {
392 return NULL;
393 }
394 if (g_b_init_get_sid_sub_authority_count == 0)
395 {
396 g_b_init_get_sid_sub_authority_count = 1;
397 hm_advapi32 = LoadLibrary ("Advapi32.dll");
398 s_pfn_Get_Sid_Sub_Authority_Count =
399 (GetSidSubAuthorityCount_Proc) GetProcAddress (
400 hm_advapi32, "GetSidSubAuthorityCount");
401 }
402 if (s_pfn_Get_Sid_Sub_Authority_Count == NULL)
403 {
404 return NULL;
405 }
406 return (s_pfn_Get_Sid_Sub_Authority_Count (pSid));
407 }
408
409 /*
410 END: Wrapper functions around OpenProcessToken
411 and other functions in advapi32.dll that are only
412 supported in Windows NT / 2k / XP
413 */
414
415 \f
416 /* Equivalent of strerror for W32 error codes. */
417 char *
418 w32_strerror (int error_no)
419 {
420 static char buf[500];
421
422 if (error_no == 0)
423 error_no = GetLastError ();
424
425 buf[0] = '\0';
426 if (!FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM, NULL,
427 error_no,
428 0, /* choose most suitable language */
429 buf, sizeof (buf), NULL))
430 sprintf (buf, "w32 error %u", error_no);
431 return buf;
432 }
433
434 /* Return 1 if P is a valid pointer to an object of size SIZE. Return
435 0 if P is NOT a valid pointer. Return -1 if we cannot validate P.
436
437 This is called from alloc.c:valid_pointer_p. */
438 int
439 w32_valid_pointer_p (void *p, int size)
440 {
441 SIZE_T done;
442 HANDLE h = OpenProcess (PROCESS_VM_READ, FALSE, GetCurrentProcessId ());
443
444 if (h)
445 {
446 unsigned char *buf = alloca (size);
447 int retval = ReadProcessMemory (h, p, buf, size, &done);
448
449 CloseHandle (h);
450 return retval;
451 }
452 else
453 return -1;
454 }
455
456 static char startup_dir[MAXPATHLEN];
457
458 /* Get the current working directory. */
459 char *
460 getwd (char *dir)
461 {
462 #if 0
463 if (GetCurrentDirectory (MAXPATHLEN, dir) > 0)
464 return dir;
465 return NULL;
466 #else
467 /* Emacs doesn't actually change directory itself, and we want to
468 force our real wd to be where emacs.exe is to avoid unnecessary
469 conflicts when trying to rename or delete directories. */
470 strcpy (dir, startup_dir);
471 return dir;
472 #endif
473 }
474
475 #ifndef HAVE_SOCKETS
476 /* Emulate gethostname. */
477 int
478 gethostname (char *buffer, int size)
479 {
480 /* NT only allows small host names, so the buffer is
481 certainly large enough. */
482 return !GetComputerName (buffer, &size);
483 }
484 #endif /* HAVE_SOCKETS */
485
486 /* Emulate getloadavg. */
487 int
488 getloadavg (double loadavg[], int nelem)
489 {
490 int i;
491
492 /* A faithful emulation is going to have to be saved for a rainy day. */
493 for (i = 0; i < nelem; i++)
494 {
495 loadavg[i] = 0.0;
496 }
497 return i;
498 }
499
500 /* Emulate getpwuid, getpwnam and others. */
501
502 #define PASSWD_FIELD_SIZE 256
503
504 static char the_passwd_name[PASSWD_FIELD_SIZE];
505 static char the_passwd_passwd[PASSWD_FIELD_SIZE];
506 static char the_passwd_gecos[PASSWD_FIELD_SIZE];
507 static char the_passwd_dir[PASSWD_FIELD_SIZE];
508 static char the_passwd_shell[PASSWD_FIELD_SIZE];
509
510 static struct passwd the_passwd =
511 {
512 the_passwd_name,
513 the_passwd_passwd,
514 0,
515 0,
516 0,
517 the_passwd_gecos,
518 the_passwd_dir,
519 the_passwd_shell,
520 };
521
522 static struct group the_group =
523 {
524 /* There are no groups on NT, so we just return "root" as the
525 group name. */
526 "root",
527 };
528
529 int
530 getuid ()
531 {
532 return the_passwd.pw_uid;
533 }
534
535 int
536 geteuid ()
537 {
538 /* I could imagine arguing for checking to see whether the user is
539 in the Administrators group and returning a UID of 0 for that
540 case, but I don't know how wise that would be in the long run. */
541 return getuid ();
542 }
543
544 int
545 getgid ()
546 {
547 return the_passwd.pw_gid;
548 }
549
550 int
551 getegid ()
552 {
553 return getgid ();
554 }
555
556 struct passwd *
557 getpwuid (int uid)
558 {
559 if (uid == the_passwd.pw_uid)
560 return &the_passwd;
561 return NULL;
562 }
563
564 struct group *
565 getgrgid (gid_t gid)
566 {
567 return &the_group;
568 }
569
570 struct passwd *
571 getpwnam (char *name)
572 {
573 struct passwd *pw;
574
575 pw = getpwuid (getuid ());
576 if (!pw)
577 return pw;
578
579 if (stricmp (name, pw->pw_name))
580 return NULL;
581
582 return pw;
583 }
584
585 void
586 init_user_info ()
587 {
588 /* Find the user's real name by opening the process token and
589 looking up the name associated with the user-sid in that token.
590
591 Use the relative portion of the identifier authority value from
592 the user-sid as the user id value (same for group id using the
593 primary group sid from the process token). */
594
595 char user_sid[256], name[256], domain[256];
596 DWORD length = sizeof (name), dlength = sizeof (domain), trash;
597 HANDLE token = NULL;
598 SID_NAME_USE user_type;
599
600 if (open_process_token (GetCurrentProcess (), TOKEN_QUERY, &token)
601 && get_token_information (token, TokenUser,
602 (PVOID) user_sid, sizeof (user_sid), &trash)
603 && lookup_account_sid (NULL, *((PSID *) user_sid), name, &length,
604 domain, &dlength, &user_type))
605 {
606 strcpy (the_passwd.pw_name, name);
607 /* Determine a reasonable uid value. */
608 if (stricmp ("administrator", name) == 0)
609 {
610 the_passwd.pw_uid = 500; /* well-known Administrator uid */
611 the_passwd.pw_gid = 513; /* well-known None gid */
612 }
613 else
614 {
615 /* Use RID, the relative portion of the SID, that is the last
616 sub-authority value of the SID. */
617 DWORD n_subauthorities =
618 *get_sid_sub_authority_count (*((PSID *) user_sid));
619
620 if (n_subauthorities < 1)
621 the_passwd.pw_uid = 0; /* the "World" RID */
622 else
623 {
624 the_passwd.pw_uid =
625 *get_sid_sub_authority (*((PSID *) user_sid),
626 n_subauthorities - 1);
627 /* Restrict to conventional uid range for normal users. */
628 the_passwd.pw_uid %= 60001;
629 }
630
631 /* Get group id */
632 if (get_token_information (token, TokenPrimaryGroup,
633 (PVOID) user_sid, sizeof (user_sid), &trash))
634 {
635 n_subauthorities =
636 *get_sid_sub_authority_count (*((PSID *) user_sid));
637
638 if (n_subauthorities < 1)
639 the_passwd.pw_gid = 0; /* the "World" RID */
640 else
641 {
642 the_passwd.pw_gid =
643 *get_sid_sub_authority (*((PSID *) user_sid),
644 n_subauthorities - 1);
645 /* I don't know if this is necessary, but for safety... */
646 the_passwd.pw_gid %= 60001;
647 }
648 }
649 else
650 the_passwd.pw_gid = the_passwd.pw_uid;
651 }
652 }
653 /* If security calls are not supported (presumably because we
654 are running under Windows 95), fallback to this. */
655 else if (GetUserName (name, &length))
656 {
657 strcpy (the_passwd.pw_name, name);
658 if (stricmp ("administrator", name) == 0)
659 the_passwd.pw_uid = 0;
660 else
661 the_passwd.pw_uid = 123;
662 the_passwd.pw_gid = the_passwd.pw_uid;
663 }
664 else
665 {
666 strcpy (the_passwd.pw_name, "unknown");
667 the_passwd.pw_uid = 123;
668 the_passwd.pw_gid = 123;
669 }
670
671 /* Ensure HOME and SHELL are defined. */
672 if (getenv ("HOME") == NULL)
673 abort ();
674 if (getenv ("SHELL") == NULL)
675 abort ();
676
677 /* Set dir and shell from environment variables. */
678 strcpy (the_passwd.pw_dir, getenv ("HOME"));
679 strcpy (the_passwd.pw_shell, getenv ("SHELL"));
680
681 if (token)
682 CloseHandle (token);
683 }
684
685 int
686 random ()
687 {
688 /* rand () on NT gives us 15 random bits...hack together 30 bits. */
689 return ((rand () << 15) | rand ());
690 }
691
692 void
693 srandom (int seed)
694 {
695 srand (seed);
696 }
697
698
699 /* Normalize filename by converting all path separators to
700 the specified separator. Also conditionally convert upper
701 case path name components to lower case. */
702
703 static void
704 normalize_filename (fp, path_sep)
705 register char *fp;
706 char path_sep;
707 {
708 char sep;
709 char *elem;
710
711 /* Always lower-case drive letters a-z, even if the filesystem
712 preserves case in filenames.
713 This is so filenames can be compared by string comparison
714 functions that are case-sensitive. Even case-preserving filesystems
715 do not distinguish case in drive letters. */
716 if (fp[1] == ':' && *fp >= 'A' && *fp <= 'Z')
717 {
718 *fp += 'a' - 'A';
719 fp += 2;
720 }
721
722 if (NILP (Vw32_downcase_file_names))
723 {
724 while (*fp)
725 {
726 if (*fp == '/' || *fp == '\\')
727 *fp = path_sep;
728 fp++;
729 }
730 return;
731 }
732
733 sep = path_sep; /* convert to this path separator */
734 elem = fp; /* start of current path element */
735
736 do {
737 if (*fp >= 'a' && *fp <= 'z')
738 elem = 0; /* don't convert this element */
739
740 if (*fp == 0 || *fp == ':')
741 {
742 sep = *fp; /* restore current separator (or 0) */
743 *fp = '/'; /* after conversion of this element */
744 }
745
746 if (*fp == '/' || *fp == '\\')
747 {
748 if (elem && elem != fp)
749 {
750 *fp = 0; /* temporary end of string */
751 _strlwr (elem); /* while we convert to lower case */
752 }
753 *fp = sep; /* convert (or restore) path separator */
754 elem = fp + 1; /* next element starts after separator */
755 sep = path_sep;
756 }
757 } while (*fp++);
758 }
759
760 /* Destructively turn backslashes into slashes. */
761 void
762 dostounix_filename (p)
763 register char *p;
764 {
765 normalize_filename (p, '/');
766 }
767
768 /* Destructively turn slashes into backslashes. */
769 void
770 unixtodos_filename (p)
771 register char *p;
772 {
773 normalize_filename (p, '\\');
774 }
775
776 /* Remove all CR's that are followed by a LF.
777 (From msdos.c...probably should figure out a way to share it,
778 although this code isn't going to ever change.) */
779 int
780 crlf_to_lf (n, buf)
781 register int n;
782 register unsigned char *buf;
783 {
784 unsigned char *np = buf;
785 unsigned char *startp = buf;
786 unsigned char *endp = buf + n;
787
788 if (n == 0)
789 return n;
790 while (buf < endp - 1)
791 {
792 if (*buf == 0x0d)
793 {
794 if (*(++buf) != 0x0a)
795 *np++ = 0x0d;
796 }
797 else
798 *np++ = *buf++;
799 }
800 if (buf < endp)
801 *np++ = *buf++;
802 return np - startp;
803 }
804
805 /* Parse the root part of file name, if present. Return length and
806 optionally store pointer to char after root. */
807 static int
808 parse_root (char * name, char ** pPath)
809 {
810 char * start = name;
811
812 if (name == NULL)
813 return 0;
814
815 /* find the root name of the volume if given */
816 if (isalpha (name[0]) && name[1] == ':')
817 {
818 /* skip past drive specifier */
819 name += 2;
820 if (IS_DIRECTORY_SEP (name[0]))
821 name++;
822 }
823 else if (IS_DIRECTORY_SEP (name[0]) && IS_DIRECTORY_SEP (name[1]))
824 {
825 int slashes = 2;
826 name += 2;
827 do
828 {
829 if (IS_DIRECTORY_SEP (*name) && --slashes == 0)
830 break;
831 name++;
832 }
833 while ( *name );
834 if (IS_DIRECTORY_SEP (name[0]))
835 name++;
836 }
837
838 if (pPath)
839 *pPath = name;
840
841 return name - start;
842 }
843
844 /* Get long base name for name; name is assumed to be absolute. */
845 static int
846 get_long_basename (char * name, char * buf, int size)
847 {
848 WIN32_FIND_DATA find_data;
849 HANDLE dir_handle;
850 int len = 0;
851
852 /* must be valid filename, no wild cards or other invalid characters */
853 if (_mbspbrk (name, "*?|<>\""))
854 return 0;
855
856 dir_handle = FindFirstFile (name, &find_data);
857 if (dir_handle != INVALID_HANDLE_VALUE)
858 {
859 if ((len = strlen (find_data.cFileName)) < size)
860 memcpy (buf, find_data.cFileName, len + 1);
861 else
862 len = 0;
863 FindClose (dir_handle);
864 }
865 return len;
866 }
867
868 /* Get long name for file, if possible (assumed to be absolute). */
869 BOOL
870 w32_get_long_filename (char * name, char * buf, int size)
871 {
872 char * o = buf;
873 char * p;
874 char * q;
875 char full[ MAX_PATH ];
876 int len;
877
878 len = strlen (name);
879 if (len >= MAX_PATH)
880 return FALSE;
881
882 /* Use local copy for destructive modification. */
883 memcpy (full, name, len+1);
884 unixtodos_filename (full);
885
886 /* Copy root part verbatim. */
887 len = parse_root (full, &p);
888 memcpy (o, full, len);
889 o += len;
890 *o = '\0';
891 size -= len;
892
893 while (p != NULL && *p)
894 {
895 q = p;
896 p = strchr (q, '\\');
897 if (p) *p = '\0';
898 len = get_long_basename (full, o, size);
899 if (len > 0)
900 {
901 o += len;
902 size -= len;
903 if (p != NULL)
904 {
905 *p++ = '\\';
906 if (size < 2)
907 return FALSE;
908 *o++ = '\\';
909 size--;
910 *o = '\0';
911 }
912 }
913 else
914 return FALSE;
915 }
916
917 return TRUE;
918 }
919
920 int
921 is_unc_volume (const char *filename)
922 {
923 const char *ptr = filename;
924
925 if (!IS_DIRECTORY_SEP (ptr[0]) || !IS_DIRECTORY_SEP (ptr[1]) || !ptr[2])
926 return 0;
927
928 if (_mbspbrk (ptr + 2, "*?|<>\"\\/"))
929 return 0;
930
931 return 1;
932 }
933
934 /* Routines that are no-ops on NT but are defined to get Emacs to compile. */
935
936 int
937 sigsetmask (int signal_mask)
938 {
939 return 0;
940 }
941
942 int
943 sigmask (int sig)
944 {
945 return 0;
946 }
947
948 int
949 sigblock (int sig)
950 {
951 return 0;
952 }
953
954 int
955 sigunblock (int sig)
956 {
957 return 0;
958 }
959
960 int
961 setpgrp (int pid, int gid)
962 {
963 return 0;
964 }
965
966 int
967 alarm (int seconds)
968 {
969 return 0;
970 }
971
972 #define REG_ROOT "SOFTWARE\\GNU\\Emacs"
973
974 LPBYTE
975 w32_get_resource (key, lpdwtype)
976 char *key;
977 LPDWORD lpdwtype;
978 {
979 LPBYTE lpvalue;
980 HKEY hrootkey = NULL;
981 DWORD cbData;
982
983 /* Check both the current user and the local machine to see if
984 we have any resources. */
985
986 if (RegOpenKeyEx (HKEY_CURRENT_USER, REG_ROOT, 0, KEY_READ, &hrootkey) == ERROR_SUCCESS)
987 {
988 lpvalue = NULL;
989
990 if (RegQueryValueEx (hrootkey, key, NULL, NULL, NULL, &cbData) == ERROR_SUCCESS
991 && (lpvalue = (LPBYTE) xmalloc (cbData)) != NULL
992 && RegQueryValueEx (hrootkey, key, NULL, lpdwtype, lpvalue, &cbData) == ERROR_SUCCESS)
993 {
994 RegCloseKey (hrootkey);
995 return (lpvalue);
996 }
997
998 if (lpvalue) xfree (lpvalue);
999
1000 RegCloseKey (hrootkey);
1001 }
1002
1003 if (RegOpenKeyEx (HKEY_LOCAL_MACHINE, REG_ROOT, 0, KEY_READ, &hrootkey) == ERROR_SUCCESS)
1004 {
1005 lpvalue = NULL;
1006
1007 if (RegQueryValueEx (hrootkey, key, NULL, NULL, NULL, &cbData) == ERROR_SUCCESS
1008 && (lpvalue = (LPBYTE) xmalloc (cbData)) != NULL
1009 && RegQueryValueEx (hrootkey, key, NULL, lpdwtype, lpvalue, &cbData) == ERROR_SUCCESS)
1010 {
1011 RegCloseKey (hrootkey);
1012 return (lpvalue);
1013 }
1014
1015 if (lpvalue) xfree (lpvalue);
1016
1017 RegCloseKey (hrootkey);
1018 }
1019
1020 return (NULL);
1021 }
1022
1023 char *get_emacs_configuration (void);
1024 extern Lisp_Object Vsystem_configuration;
1025
1026 void
1027 init_environment (char ** argv)
1028 {
1029 static const char * const tempdirs[] = {
1030 "$TMPDIR", "$TEMP", "$TMP", "c:/"
1031 };
1032
1033 int i;
1034
1035 const int imax = sizeof (tempdirs) / sizeof (tempdirs[0]);
1036
1037 /* Make sure they have a usable $TMPDIR. Many Emacs functions use
1038 temporary files and assume "/tmp" if $TMPDIR is unset, which
1039 will break on DOS/Windows. Refuse to work if we cannot find
1040 a directory, not even "c:/", usable for that purpose. */
1041 for (i = 0; i < imax ; i++)
1042 {
1043 const char *tmp = tempdirs[i];
1044
1045 if (*tmp == '$')
1046 tmp = getenv (tmp + 1);
1047 /* Note that `access' can lie to us if the directory resides on a
1048 read-only filesystem, like CD-ROM or a write-protected floppy.
1049 The only way to be really sure is to actually create a file and
1050 see if it succeeds. But I think that's too much to ask. */
1051 if (tmp && _access (tmp, D_OK) == 0)
1052 {
1053 char * var = alloca (strlen (tmp) + 8);
1054 sprintf (var, "TMPDIR=%s", tmp);
1055 _putenv (strdup (var));
1056 break;
1057 }
1058 }
1059 if (i >= imax)
1060 cmd_error_internal
1061 (Fcons (Qerror,
1062 Fcons (build_string ("no usable temporary directories found!!"),
1063 Qnil)),
1064 "While setting TMPDIR: ");
1065
1066 /* Check for environment variables and use registry settings if they
1067 don't exist. Fallback on default values where applicable. */
1068 {
1069 int i;
1070 LPBYTE lpval;
1071 DWORD dwType;
1072 char locale_name[32];
1073 struct stat ignored;
1074 char default_home[MAX_PATH];
1075
1076 static const struct env_entry
1077 {
1078 char * name;
1079 char * def_value;
1080 } dflt_envvars[] =
1081 {
1082 {"HOME", "C:/"},
1083 {"PRELOAD_WINSOCK", NULL},
1084 {"emacs_dir", "C:/emacs"},
1085 {"EMACSLOADPATH", "%emacs_dir%/site-lisp;%emacs_dir%/../site-lisp;%emacs_dir%/lisp;%emacs_dir%/leim"},
1086 {"SHELL", "%emacs_dir%/bin/cmdproxy.exe"},
1087 {"EMACSDATA", "%emacs_dir%/etc"},
1088 {"EMACSPATH", "%emacs_dir%/bin"},
1089 /* We no longer set INFOPATH because Info-default-directory-list
1090 is then ignored. */
1091 /* {"INFOPATH", "%emacs_dir%/info"}, */
1092 {"EMACSDOC", "%emacs_dir%/etc"},
1093 {"TERM", "cmd"},
1094 {"LANG", NULL},
1095 };
1096
1097 #define N_ENV_VARS sizeof(dflt_envvars)/sizeof(dflt_envvars[0])
1098
1099 /* We need to copy dflt_envvars[] and work on the copy because we
1100 don't want the dumped Emacs to inherit the values of
1101 environment variables we saw during dumping (which could be on
1102 a different system). The defaults above must be left intact. */
1103 struct env_entry env_vars[N_ENV_VARS];
1104
1105 for (i = 0; i < N_ENV_VARS; i++)
1106 env_vars[i] = dflt_envvars[i];
1107
1108 /* For backwards compatibility, check if a .emacs file exists in C:/
1109 If not, then we can try to default to the appdata directory under the
1110 user's profile, which is more likely to be writable. */
1111 if (stat ("C:/.emacs", &ignored) < 0)
1112 {
1113 HRESULT profile_result;
1114 /* Dynamically load ShGetFolderPath, as it won't exist on versions
1115 of Windows 95 and NT4 that have not been updated to include
1116 MSIE 5. Also we don't link with shell32.dll by default. */
1117 HMODULE shell32_dll;
1118 ShGetFolderPath_fn get_folder_path;
1119 shell32_dll = GetModuleHandle ("shell32.dll");
1120 get_folder_path = (ShGetFolderPath_fn)
1121 GetProcAddress (shell32_dll, "SHGetFolderPathA");
1122
1123 if (get_folder_path != NULL)
1124 {
1125 profile_result = get_folder_path (NULL, CSIDL_APPDATA, NULL,
1126 0, default_home);
1127
1128 /* If we can't get the appdata dir, revert to old behaviour. */
1129 if (profile_result == S_OK)
1130 env_vars[0].def_value = default_home;
1131 }
1132
1133 /* Unload shell32.dll, it is not needed anymore. */
1134 FreeLibrary (shell32_dll);
1135 }
1136
1137 /* Get default locale info and use it for LANG. */
1138 if (GetLocaleInfo (LOCALE_USER_DEFAULT,
1139 LOCALE_SABBREVLANGNAME | LOCALE_USE_CP_ACP,
1140 locale_name, sizeof (locale_name)))
1141 {
1142 for (i = 0; i < N_ENV_VARS; i++)
1143 {
1144 if (strcmp (env_vars[i].name, "LANG") == 0)
1145 {
1146 env_vars[i].def_value = locale_name;
1147 break;
1148 }
1149 }
1150 }
1151
1152 #define SET_ENV_BUF_SIZE (4 * MAX_PATH) /* to cover EMACSLOADPATH */
1153
1154 /* Treat emacs_dir specially: set it unconditionally based on our
1155 location, if it appears that we are running from the bin subdir
1156 of a standard installation. */
1157 {
1158 char *p;
1159 char modname[MAX_PATH];
1160
1161 if (!GetModuleFileName (NULL, modname, MAX_PATH))
1162 abort ();
1163 if ((p = strrchr (modname, '\\')) == NULL)
1164 abort ();
1165 *p = 0;
1166
1167 if ((p = strrchr (modname, '\\')) && stricmp (p, "\\bin") == 0)
1168 {
1169 char buf[SET_ENV_BUF_SIZE];
1170
1171 *p = 0;
1172 for (p = modname; *p; p++)
1173 if (*p == '\\') *p = '/';
1174
1175 _snprintf (buf, sizeof(buf)-1, "emacs_dir=%s", modname);
1176 _putenv (strdup (buf));
1177 }
1178 /* Handle running emacs from the build directory: src/oo-spd/i386/ */
1179
1180 /* FIXME: should use substring of get_emacs_configuration ().
1181 But I don't think the Windows build supports alpha, mips etc
1182 anymore, so have taken the easy option for now. */
1183 else if (p && stricmp (p, "\\i386") == 0)
1184 {
1185 *p = 0;
1186 p = strrchr (modname, '\\');
1187 if (p != NULL)
1188 {
1189 *p = 0;
1190 p = strrchr (modname, '\\');
1191 if (p && stricmp (p, "\\src") == 0)
1192 {
1193 char buf[SET_ENV_BUF_SIZE];
1194
1195 *p = 0;
1196 for (p = modname; *p; p++)
1197 if (*p == '\\') *p = '/';
1198
1199 _snprintf (buf, sizeof(buf)-1, "emacs_dir=%s", modname);
1200 _putenv (strdup (buf));
1201 }
1202 }
1203 }
1204 }
1205
1206 for (i = 0; i < N_ENV_VARS; i++)
1207 {
1208 if (!getenv (env_vars[i].name))
1209 {
1210 int dont_free = 0;
1211
1212 if ((lpval = w32_get_resource (env_vars[i].name, &dwType)) == NULL
1213 /* Also ignore empty environment variables. */
1214 || *lpval == 0)
1215 {
1216 if (lpval) xfree (lpval);
1217 lpval = env_vars[i].def_value;
1218 dwType = REG_EXPAND_SZ;
1219 dont_free = 1;
1220 }
1221
1222 if (lpval)
1223 {
1224 char buf1[SET_ENV_BUF_SIZE], buf2[SET_ENV_BUF_SIZE];
1225
1226 if (dwType == REG_EXPAND_SZ)
1227 ExpandEnvironmentStrings ((LPSTR) lpval, buf1, sizeof(buf1));
1228 else if (dwType == REG_SZ)
1229 strcpy (buf1, lpval);
1230 if (dwType == REG_EXPAND_SZ || dwType == REG_SZ)
1231 {
1232 _snprintf (buf2, sizeof(buf2)-1, "%s=%s", env_vars[i].name,
1233 buf1);
1234 _putenv (strdup (buf2));
1235 }
1236
1237 if (!dont_free)
1238 xfree (lpval);
1239 }
1240 }
1241 }
1242 }
1243
1244 /* Rebuild system configuration to reflect invoking system. */
1245 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
1246
1247 /* Another special case: on NT, the PATH variable is actually named
1248 "Path" although cmd.exe (perhaps NT itself) arranges for
1249 environment variable lookup and setting to be case insensitive.
1250 However, Emacs assumes a fully case sensitive environment, so we
1251 need to change "Path" to "PATH" to match the expectations of
1252 various elisp packages. We do this by the sneaky method of
1253 modifying the string in the C runtime environ entry.
1254
1255 The same applies to COMSPEC. */
1256 {
1257 char ** envp;
1258
1259 for (envp = environ; *envp; envp++)
1260 if (_strnicmp (*envp, "PATH=", 5) == 0)
1261 memcpy (*envp, "PATH=", 5);
1262 else if (_strnicmp (*envp, "COMSPEC=", 8) == 0)
1263 memcpy (*envp, "COMSPEC=", 8);
1264 }
1265
1266 /* Remember the initial working directory for getwd, then make the
1267 real wd be the location of emacs.exe to avoid conflicts when
1268 renaming or deleting directories. (We also don't call chdir when
1269 running subprocesses for the same reason.) */
1270 if (!GetCurrentDirectory (MAXPATHLEN, startup_dir))
1271 abort ();
1272
1273 {
1274 char *p;
1275 static char modname[MAX_PATH];
1276
1277 if (!GetModuleFileName (NULL, modname, MAX_PATH))
1278 abort ();
1279 if ((p = strrchr (modname, '\\')) == NULL)
1280 abort ();
1281 *p = 0;
1282
1283 SetCurrentDirectory (modname);
1284
1285 /* Ensure argv[0] has the full path to Emacs. */
1286 *p = '\\';
1287 argv[0] = modname;
1288 }
1289
1290 /* Determine if there is a middle mouse button, to allow parse_button
1291 to decide whether right mouse events should be mouse-2 or
1292 mouse-3. */
1293 w32_num_mouse_buttons = GetSystemMetrics (SM_CMOUSEBUTTONS);
1294
1295 init_user_info ();
1296 }
1297
1298 char *
1299 emacs_root_dir (void)
1300 {
1301 static char root_dir[FILENAME_MAX];
1302 const char *p;
1303
1304 p = getenv ("emacs_dir");
1305 if (p == NULL)
1306 abort ();
1307 strcpy (root_dir, p);
1308 root_dir[parse_root (root_dir, NULL)] = '\0';
1309 dostounix_filename (root_dir);
1310 return root_dir;
1311 }
1312
1313 /* We don't have scripts to automatically determine the system configuration
1314 for Emacs before it's compiled, and we don't want to have to make the
1315 user enter it, so we define EMACS_CONFIGURATION to invoke this runtime
1316 routine. */
1317
1318 char *
1319 get_emacs_configuration (void)
1320 {
1321 char *arch, *oem, *os;
1322 int build_num;
1323 static char configuration_buffer[32];
1324
1325 /* Determine the processor type. */
1326 switch (get_processor_type ())
1327 {
1328
1329 #ifdef PROCESSOR_INTEL_386
1330 case PROCESSOR_INTEL_386:
1331 case PROCESSOR_INTEL_486:
1332 case PROCESSOR_INTEL_PENTIUM:
1333 arch = "i386";
1334 break;
1335 #endif
1336
1337 #ifdef PROCESSOR_MIPS_R2000
1338 case PROCESSOR_MIPS_R2000:
1339 case PROCESSOR_MIPS_R3000:
1340 case PROCESSOR_MIPS_R4000:
1341 arch = "mips";
1342 break;
1343 #endif
1344
1345 #ifdef PROCESSOR_ALPHA_21064
1346 case PROCESSOR_ALPHA_21064:
1347 arch = "alpha";
1348 break;
1349 #endif
1350
1351 default:
1352 arch = "unknown";
1353 break;
1354 }
1355
1356 /* Use the OEM field to reflect the compiler/library combination. */
1357 #ifdef _MSC_VER
1358 #define COMPILER_NAME "msvc"
1359 #else
1360 #ifdef __GNUC__
1361 #define COMPILER_NAME "mingw"
1362 #else
1363 #define COMPILER_NAME "unknown"
1364 #endif
1365 #endif
1366 oem = COMPILER_NAME;
1367
1368 switch (osinfo_cache.dwPlatformId) {
1369 case VER_PLATFORM_WIN32_NT:
1370 os = "nt";
1371 build_num = osinfo_cache.dwBuildNumber;
1372 break;
1373 case VER_PLATFORM_WIN32_WINDOWS:
1374 if (osinfo_cache.dwMinorVersion == 0) {
1375 os = "windows95";
1376 } else {
1377 os = "windows98";
1378 }
1379 build_num = LOWORD (osinfo_cache.dwBuildNumber);
1380 break;
1381 case VER_PLATFORM_WIN32s:
1382 /* Not supported, should not happen. */
1383 os = "windows32s";
1384 build_num = LOWORD (osinfo_cache.dwBuildNumber);
1385 break;
1386 default:
1387 os = "unknown";
1388 build_num = 0;
1389 break;
1390 }
1391
1392 if (osinfo_cache.dwPlatformId == VER_PLATFORM_WIN32_NT) {
1393 sprintf (configuration_buffer, "%s-%s-%s%d.%d.%d", arch, oem, os,
1394 get_w32_major_version (), get_w32_minor_version (), build_num);
1395 } else {
1396 sprintf (configuration_buffer, "%s-%s-%s.%d", arch, oem, os, build_num);
1397 }
1398
1399 return configuration_buffer;
1400 }
1401
1402 char *
1403 get_emacs_configuration_options (void)
1404 {
1405 static char options_buffer[256];
1406
1407 /* Work out the effective configure options for this build. */
1408 #ifdef _MSC_VER
1409 #define COMPILER_VERSION "--with-msvc (%d.%02d)", _MSC_VER / 100, _MSC_VER % 100
1410 #else
1411 #ifdef __GNUC__
1412 #define COMPILER_VERSION "--with-gcc (%d.%d)", __GNUC__, __GNUC_MINOR__
1413 #else
1414 #define COMPILER_VERSION ""
1415 #endif
1416 #endif
1417
1418 sprintf (options_buffer, COMPILER_VERSION);
1419 #ifdef EMACSDEBUG
1420 strcat (options_buffer, " --no-opt");
1421 #endif
1422 #ifdef USER_CFLAGS
1423 strcat (options_buffer, " --cflags");
1424 strcat (options_buffer, USER_CFLAGS);
1425 #endif
1426 #ifdef USER_LDFLAGS
1427 strcat (options_buffer, " --ldflags");
1428 strcat (options_buffer, USER_LDFLAGS);
1429 #endif
1430 return options_buffer;
1431 }
1432
1433
1434 #include <sys/timeb.h>
1435
1436 /* Emulate gettimeofday (Ulrich Leodolter, 1/11/95). */
1437 void
1438 gettimeofday (struct timeval *tv, struct timezone *tz)
1439 {
1440 struct _timeb tb;
1441 _ftime (&tb);
1442
1443 tv->tv_sec = tb.time;
1444 tv->tv_usec = tb.millitm * 1000L;
1445 if (tz)
1446 {
1447 tz->tz_minuteswest = tb.timezone; /* minutes west of Greenwich */
1448 tz->tz_dsttime = tb.dstflag; /* type of dst correction */
1449 }
1450 }
1451
1452 /* ------------------------------------------------------------------------- */
1453 /* IO support and wrapper functions for W32 API. */
1454 /* ------------------------------------------------------------------------- */
1455
1456 /* Place a wrapper around the MSVC version of ctime. It returns NULL
1457 on network directories, so we handle that case here.
1458 (Ulrich Leodolter, 1/11/95). */
1459 char *
1460 sys_ctime (const time_t *t)
1461 {
1462 char *str = (char *) ctime (t);
1463 return (str ? str : "Sun Jan 01 00:00:00 1970");
1464 }
1465
1466 /* Emulate sleep...we could have done this with a define, but that
1467 would necessitate including windows.h in the files that used it.
1468 This is much easier. */
1469 void
1470 sys_sleep (int seconds)
1471 {
1472 Sleep (seconds * 1000);
1473 }
1474
1475 /* Internal MSVC functions for low-level descriptor munging */
1476 extern int __cdecl _set_osfhnd (int fd, long h);
1477 extern int __cdecl _free_osfhnd (int fd);
1478
1479 /* parallel array of private info on file handles */
1480 filedesc fd_info [ MAXDESC ];
1481
1482 typedef struct volume_info_data {
1483 struct volume_info_data * next;
1484
1485 /* time when info was obtained */
1486 DWORD timestamp;
1487
1488 /* actual volume info */
1489 char * root_dir;
1490 DWORD serialnum;
1491 DWORD maxcomp;
1492 DWORD flags;
1493 char * name;
1494 char * type;
1495 } volume_info_data;
1496
1497 /* Global referenced by various functions. */
1498 static volume_info_data volume_info;
1499
1500 /* Vector to indicate which drives are local and fixed (for which cached
1501 data never expires). */
1502 static BOOL fixed_drives[26];
1503
1504 /* Consider cached volume information to be stale if older than 10s,
1505 at least for non-local drives. Info for fixed drives is never stale. */
1506 #define DRIVE_INDEX( c ) ( (c) <= 'Z' ? (c) - 'A' : (c) - 'a' )
1507 #define VOLINFO_STILL_VALID( root_dir, info ) \
1508 ( ( isalpha (root_dir[0]) && \
1509 fixed_drives[ DRIVE_INDEX (root_dir[0]) ] ) \
1510 || GetTickCount () - info->timestamp < 10000 )
1511
1512 /* Cache support functions. */
1513
1514 /* Simple linked list with linear search is sufficient. */
1515 static volume_info_data *volume_cache = NULL;
1516
1517 static volume_info_data *
1518 lookup_volume_info (char * root_dir)
1519 {
1520 volume_info_data * info;
1521
1522 for (info = volume_cache; info; info = info->next)
1523 if (stricmp (info->root_dir, root_dir) == 0)
1524 break;
1525 return info;
1526 }
1527
1528 static void
1529 add_volume_info (char * root_dir, volume_info_data * info)
1530 {
1531 info->root_dir = xstrdup (root_dir);
1532 info->next = volume_cache;
1533 volume_cache = info;
1534 }
1535
1536
1537 /* Wrapper for GetVolumeInformation, which uses caching to avoid
1538 performance penalty (~2ms on 486 for local drives, 7.5ms for local
1539 cdrom drive, ~5-10ms or more for remote drives on LAN). */
1540 volume_info_data *
1541 GetCachedVolumeInformation (char * root_dir)
1542 {
1543 volume_info_data * info;
1544 char default_root[ MAX_PATH ];
1545
1546 /* NULL for root_dir means use root from current directory. */
1547 if (root_dir == NULL)
1548 {
1549 if (GetCurrentDirectory (MAX_PATH, default_root) == 0)
1550 return NULL;
1551 parse_root (default_root, &root_dir);
1552 *root_dir = 0;
1553 root_dir = default_root;
1554 }
1555
1556 /* Local fixed drives can be cached permanently. Removable drives
1557 cannot be cached permanently, since the volume name and serial
1558 number (if nothing else) can change. Remote drives should be
1559 treated as if they are removable, since there is no sure way to
1560 tell whether they are or not. Also, the UNC association of drive
1561 letters mapped to remote volumes can be changed at any time (even
1562 by other processes) without notice.
1563
1564 As a compromise, so we can benefit from caching info for remote
1565 volumes, we use a simple expiry mechanism to invalidate cache
1566 entries that are more than ten seconds old. */
1567
1568 #if 0
1569 /* No point doing this, because WNetGetConnection is even slower than
1570 GetVolumeInformation, consistently taking ~50ms on a 486 (FWIW,
1571 GetDriveType is about the only call of this type which does not
1572 involve network access, and so is extremely quick). */
1573
1574 /* Map drive letter to UNC if remote. */
1575 if ( isalpha( root_dir[0] ) && !fixed[ DRIVE_INDEX( root_dir[0] ) ] )
1576 {
1577 char remote_name[ 256 ];
1578 char drive[3] = { root_dir[0], ':' };
1579
1580 if (WNetGetConnection (drive, remote_name, sizeof (remote_name))
1581 == NO_ERROR)
1582 /* do something */ ;
1583 }
1584 #endif
1585
1586 info = lookup_volume_info (root_dir);
1587
1588 if (info == NULL || ! VOLINFO_STILL_VALID (root_dir, info))
1589 {
1590 char name[ 256 ];
1591 DWORD serialnum;
1592 DWORD maxcomp;
1593 DWORD flags;
1594 char type[ 256 ];
1595
1596 /* Info is not cached, or is stale. */
1597 if (!GetVolumeInformation (root_dir,
1598 name, sizeof (name),
1599 &serialnum,
1600 &maxcomp,
1601 &flags,
1602 type, sizeof (type)))
1603 return NULL;
1604
1605 /* Cache the volume information for future use, overwriting existing
1606 entry if present. */
1607 if (info == NULL)
1608 {
1609 info = (volume_info_data *) xmalloc (sizeof (volume_info_data));
1610 add_volume_info (root_dir, info);
1611 }
1612 else
1613 {
1614 xfree (info->name);
1615 xfree (info->type);
1616 }
1617
1618 info->name = xstrdup (name);
1619 info->serialnum = serialnum;
1620 info->maxcomp = maxcomp;
1621 info->flags = flags;
1622 info->type = xstrdup (type);
1623 info->timestamp = GetTickCount ();
1624 }
1625
1626 return info;
1627 }
1628
1629 /* Get information on the volume where name is held; set path pointer to
1630 start of pathname in name (past UNC header\volume header if present). */
1631 int
1632 get_volume_info (const char * name, const char ** pPath)
1633 {
1634 char temp[MAX_PATH];
1635 char *rootname = NULL; /* default to current volume */
1636 volume_info_data * info;
1637
1638 if (name == NULL)
1639 return FALSE;
1640
1641 /* find the root name of the volume if given */
1642 if (isalpha (name[0]) && name[1] == ':')
1643 {
1644 rootname = temp;
1645 temp[0] = *name++;
1646 temp[1] = *name++;
1647 temp[2] = '\\';
1648 temp[3] = 0;
1649 }
1650 else if (IS_DIRECTORY_SEP (name[0]) && IS_DIRECTORY_SEP (name[1]))
1651 {
1652 char *str = temp;
1653 int slashes = 4;
1654 rootname = temp;
1655 do
1656 {
1657 if (IS_DIRECTORY_SEP (*name) && --slashes == 0)
1658 break;
1659 *str++ = *name++;
1660 }
1661 while ( *name );
1662
1663 *str++ = '\\';
1664 *str = 0;
1665 }
1666
1667 if (pPath)
1668 *pPath = name;
1669
1670 info = GetCachedVolumeInformation (rootname);
1671 if (info != NULL)
1672 {
1673 /* Set global referenced by other functions. */
1674 volume_info = *info;
1675 return TRUE;
1676 }
1677 return FALSE;
1678 }
1679
1680 /* Determine if volume is FAT format (ie. only supports short 8.3
1681 names); also set path pointer to start of pathname in name. */
1682 int
1683 is_fat_volume (const char * name, const char ** pPath)
1684 {
1685 if (get_volume_info (name, pPath))
1686 return (volume_info.maxcomp == 12);
1687 return FALSE;
1688 }
1689
1690 /* Map filename to a legal 8.3 name if necessary. */
1691 const char *
1692 map_w32_filename (const char * name, const char ** pPath)
1693 {
1694 static char shortname[MAX_PATH];
1695 char * str = shortname;
1696 char c;
1697 char * path;
1698 const char * save_name = name;
1699
1700 if (strlen (name) >= MAX_PATH)
1701 {
1702 /* Return a filename which will cause callers to fail. */
1703 strcpy (shortname, "?");
1704 return shortname;
1705 }
1706
1707 if (is_fat_volume (name, (const char **)&path)) /* truncate to 8.3 */
1708 {
1709 register int left = 8; /* maximum number of chars in part */
1710 register int extn = 0; /* extension added? */
1711 register int dots = 2; /* maximum number of dots allowed */
1712
1713 while (name < path)
1714 *str++ = *name++; /* skip past UNC header */
1715
1716 while ((c = *name++))
1717 {
1718 switch ( c )
1719 {
1720 case '\\':
1721 case '/':
1722 *str++ = '\\';
1723 extn = 0; /* reset extension flags */
1724 dots = 2; /* max 2 dots */
1725 left = 8; /* max length 8 for main part */
1726 break;
1727 case ':':
1728 *str++ = ':';
1729 extn = 0; /* reset extension flags */
1730 dots = 2; /* max 2 dots */
1731 left = 8; /* max length 8 for main part */
1732 break;
1733 case '.':
1734 if ( dots )
1735 {
1736 /* Convert path components of the form .xxx to _xxx,
1737 but leave . and .. as they are. This allows .emacs
1738 to be read as _emacs, for example. */
1739
1740 if (! *name ||
1741 *name == '.' ||
1742 IS_DIRECTORY_SEP (*name))
1743 {
1744 *str++ = '.';
1745 dots--;
1746 }
1747 else
1748 {
1749 *str++ = '_';
1750 left--;
1751 dots = 0;
1752 }
1753 }
1754 else if ( !extn )
1755 {
1756 *str++ = '.';
1757 extn = 1; /* we've got an extension */
1758 left = 3; /* 3 chars in extension */
1759 }
1760 else
1761 {
1762 /* any embedded dots after the first are converted to _ */
1763 *str++ = '_';
1764 }
1765 break;
1766 case '~':
1767 case '#': /* don't lose these, they're important */
1768 if ( ! left )
1769 str[-1] = c; /* replace last character of part */
1770 /* FALLTHRU */
1771 default:
1772 if ( left )
1773 {
1774 *str++ = tolower (c); /* map to lower case (looks nicer) */
1775 left--;
1776 dots = 0; /* started a path component */
1777 }
1778 break;
1779 }
1780 }
1781 *str = '\0';
1782 }
1783 else
1784 {
1785 strcpy (shortname, name);
1786 unixtodos_filename (shortname);
1787 }
1788
1789 if (pPath)
1790 *pPath = shortname + (path - save_name);
1791
1792 return shortname;
1793 }
1794
1795 static int
1796 is_exec (const char * name)
1797 {
1798 char * p = strrchr (name, '.');
1799 return
1800 (p != NULL
1801 && (stricmp (p, ".exe") == 0 ||
1802 stricmp (p, ".com") == 0 ||
1803 stricmp (p, ".bat") == 0 ||
1804 stricmp (p, ".cmd") == 0));
1805 }
1806
1807 /* Emulate the Unix directory procedures opendir, closedir,
1808 and readdir. We can't use the procedures supplied in sysdep.c,
1809 so we provide them here. */
1810
1811 struct direct dir_static; /* simulated directory contents */
1812 static HANDLE dir_find_handle = INVALID_HANDLE_VALUE;
1813 static int dir_is_fat;
1814 static char dir_pathname[MAXPATHLEN+1];
1815 static WIN32_FIND_DATA dir_find_data;
1816
1817 /* Support shares on a network resource as subdirectories of a read-only
1818 root directory. */
1819 static HANDLE wnet_enum_handle = INVALID_HANDLE_VALUE;
1820 HANDLE open_unc_volume (const char *);
1821 char *read_unc_volume (HANDLE, char *, int);
1822 void close_unc_volume (HANDLE);
1823
1824 DIR *
1825 opendir (char *filename)
1826 {
1827 DIR *dirp;
1828
1829 /* Opening is done by FindFirstFile. However, a read is inherent to
1830 this operation, so we defer the open until read time. */
1831
1832 if (dir_find_handle != INVALID_HANDLE_VALUE)
1833 return NULL;
1834 if (wnet_enum_handle != INVALID_HANDLE_VALUE)
1835 return NULL;
1836
1837 if (is_unc_volume (filename))
1838 {
1839 wnet_enum_handle = open_unc_volume (filename);
1840 if (wnet_enum_handle == INVALID_HANDLE_VALUE)
1841 return NULL;
1842 }
1843
1844 if (!(dirp = (DIR *) malloc (sizeof (DIR))))
1845 return NULL;
1846
1847 dirp->dd_fd = 0;
1848 dirp->dd_loc = 0;
1849 dirp->dd_size = 0;
1850
1851 strncpy (dir_pathname, map_w32_filename (filename, NULL), MAXPATHLEN);
1852 dir_pathname[MAXPATHLEN] = '\0';
1853 dir_is_fat = is_fat_volume (filename, NULL);
1854
1855 return dirp;
1856 }
1857
1858 void
1859 closedir (DIR *dirp)
1860 {
1861 /* If we have a find-handle open, close it. */
1862 if (dir_find_handle != INVALID_HANDLE_VALUE)
1863 {
1864 FindClose (dir_find_handle);
1865 dir_find_handle = INVALID_HANDLE_VALUE;
1866 }
1867 else if (wnet_enum_handle != INVALID_HANDLE_VALUE)
1868 {
1869 close_unc_volume (wnet_enum_handle);
1870 wnet_enum_handle = INVALID_HANDLE_VALUE;
1871 }
1872 xfree ((char *) dirp);
1873 }
1874
1875 struct direct *
1876 readdir (DIR *dirp)
1877 {
1878 if (wnet_enum_handle != INVALID_HANDLE_VALUE)
1879 {
1880 if (!read_unc_volume (wnet_enum_handle,
1881 dir_find_data.cFileName,
1882 MAX_PATH))
1883 return NULL;
1884 }
1885 /* If we aren't dir_finding, do a find-first, otherwise do a find-next. */
1886 else if (dir_find_handle == INVALID_HANDLE_VALUE)
1887 {
1888 char filename[MAXNAMLEN + 3];
1889 int ln;
1890
1891 strcpy (filename, dir_pathname);
1892 ln = strlen (filename) - 1;
1893 if (!IS_DIRECTORY_SEP (filename[ln]))
1894 strcat (filename, "\\");
1895 strcat (filename, "*");
1896
1897 dir_find_handle = FindFirstFile (filename, &dir_find_data);
1898
1899 if (dir_find_handle == INVALID_HANDLE_VALUE)
1900 return NULL;
1901 }
1902 else
1903 {
1904 if (!FindNextFile (dir_find_handle, &dir_find_data))
1905 return NULL;
1906 }
1907
1908 /* Emacs never uses this value, so don't bother making it match
1909 value returned by stat(). */
1910 dir_static.d_ino = 1;
1911
1912 dir_static.d_reclen = sizeof (struct direct) - MAXNAMLEN + 3 +
1913 dir_static.d_namlen - dir_static.d_namlen % 4;
1914
1915 dir_static.d_namlen = strlen (dir_find_data.cFileName);
1916 strcpy (dir_static.d_name, dir_find_data.cFileName);
1917 if (dir_is_fat)
1918 _strlwr (dir_static.d_name);
1919 else if (!NILP (Vw32_downcase_file_names))
1920 {
1921 register char *p;
1922 for (p = dir_static.d_name; *p; p++)
1923 if (*p >= 'a' && *p <= 'z')
1924 break;
1925 if (!*p)
1926 _strlwr (dir_static.d_name);
1927 }
1928
1929 return &dir_static;
1930 }
1931
1932 HANDLE
1933 open_unc_volume (const char *path)
1934 {
1935 NETRESOURCE nr;
1936 HANDLE henum;
1937 int result;
1938
1939 nr.dwScope = RESOURCE_GLOBALNET;
1940 nr.dwType = RESOURCETYPE_DISK;
1941 nr.dwDisplayType = RESOURCEDISPLAYTYPE_SERVER;
1942 nr.dwUsage = RESOURCEUSAGE_CONTAINER;
1943 nr.lpLocalName = NULL;
1944 nr.lpRemoteName = (LPSTR)map_w32_filename (path, NULL);
1945 nr.lpComment = NULL;
1946 nr.lpProvider = NULL;
1947
1948 result = WNetOpenEnum(RESOURCE_GLOBALNET, RESOURCETYPE_DISK,
1949 RESOURCEUSAGE_CONNECTABLE, &nr, &henum);
1950
1951 if (result == NO_ERROR)
1952 return henum;
1953 else
1954 return INVALID_HANDLE_VALUE;
1955 }
1956
1957 char *
1958 read_unc_volume (HANDLE henum, char *readbuf, int size)
1959 {
1960 DWORD count;
1961 int result;
1962 DWORD bufsize = 512;
1963 char *buffer;
1964 char *ptr;
1965
1966 count = 1;
1967 buffer = alloca (bufsize);
1968 result = WNetEnumResource (wnet_enum_handle, &count, buffer, &bufsize);
1969 if (result != NO_ERROR)
1970 return NULL;
1971
1972 /* WNetEnumResource returns \\resource\share...skip forward to "share". */
1973 ptr = ((LPNETRESOURCE) buffer)->lpRemoteName;
1974 ptr += 2;
1975 while (*ptr && !IS_DIRECTORY_SEP (*ptr)) ptr++;
1976 ptr++;
1977
1978 strncpy (readbuf, ptr, size);
1979 return readbuf;
1980 }
1981
1982 void
1983 close_unc_volume (HANDLE henum)
1984 {
1985 if (henum != INVALID_HANDLE_VALUE)
1986 WNetCloseEnum (henum);
1987 }
1988
1989 DWORD
1990 unc_volume_file_attributes (const char *path)
1991 {
1992 HANDLE henum;
1993 DWORD attrs;
1994
1995 henum = open_unc_volume (path);
1996 if (henum == INVALID_HANDLE_VALUE)
1997 return -1;
1998
1999 attrs = FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_DIRECTORY;
2000
2001 close_unc_volume (henum);
2002
2003 return attrs;
2004 }
2005
2006 /* Ensure a network connection is authenticated. */
2007 static void
2008 logon_network_drive (const char *path)
2009 {
2010 NETRESOURCE resource;
2011 char share[MAX_PATH];
2012 int i, n_slashes;
2013
2014 /* Only logon to networked drives. */
2015 if (!IS_DIRECTORY_SEP (path[0]) || !IS_DIRECTORY_SEP (path[1]))
2016 return;
2017 n_slashes = 2;
2018 strncpy (share, path, MAX_PATH);
2019 /* Truncate to just server and share name. */
2020 for (i = 2; i < MAX_PATH; i++)
2021 {
2022 if (IS_DIRECTORY_SEP (share[i]) && ++n_slashes > 3)
2023 {
2024 share[i] = '\0';
2025 break;
2026 }
2027 }
2028
2029 resource.dwType = RESOURCETYPE_DISK;
2030 resource.lpLocalName = NULL;
2031 resource.lpRemoteName = share;
2032 resource.lpProvider = NULL;
2033
2034 WNetAddConnection2 (&resource, NULL, NULL, CONNECT_INTERACTIVE);
2035 }
2036
2037 /* Shadow some MSVC runtime functions to map requests for long filenames
2038 to reasonable short names if necessary. This was originally added to
2039 permit running Emacs on NT 3.1 on a FAT partition, which doesn't support
2040 long file names. */
2041
2042 int
2043 sys_access (const char * path, int mode)
2044 {
2045 DWORD attributes;
2046
2047 /* MSVC implementation doesn't recognize D_OK. */
2048 path = map_w32_filename (path, NULL);
2049 if (is_unc_volume (path))
2050 {
2051 attributes = unc_volume_file_attributes (path);
2052 if (attributes == -1) {
2053 errno = EACCES;
2054 return -1;
2055 }
2056 }
2057 else if ((attributes = GetFileAttributes (path)) == -1)
2058 {
2059 /* Should try mapping GetLastError to errno; for now just indicate
2060 that path doesn't exist. */
2061 errno = EACCES;
2062 return -1;
2063 }
2064 if ((mode & X_OK) != 0 && !is_exec (path))
2065 {
2066 errno = EACCES;
2067 return -1;
2068 }
2069 if ((mode & W_OK) != 0 && (attributes & FILE_ATTRIBUTE_READONLY) != 0)
2070 {
2071 errno = EACCES;
2072 return -1;
2073 }
2074 if ((mode & D_OK) != 0 && (attributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
2075 {
2076 errno = EACCES;
2077 return -1;
2078 }
2079 return 0;
2080 }
2081
2082 int
2083 sys_chdir (const char * path)
2084 {
2085 return _chdir (map_w32_filename (path, NULL));
2086 }
2087
2088 int
2089 sys_chmod (const char * path, int mode)
2090 {
2091 return _chmod (map_w32_filename (path, NULL), mode);
2092 }
2093
2094 int
2095 sys_chown (const char *path, uid_t owner, gid_t group)
2096 {
2097 if (sys_chmod (path, _S_IREAD) == -1) /* check if file exists */
2098 return -1;
2099 return 0;
2100 }
2101
2102 int
2103 sys_creat (const char * path, int mode)
2104 {
2105 return _creat (map_w32_filename (path, NULL), mode);
2106 }
2107
2108 FILE *
2109 sys_fopen(const char * path, const char * mode)
2110 {
2111 int fd;
2112 int oflag;
2113 const char * mode_save = mode;
2114
2115 /* Force all file handles to be non-inheritable. This is necessary to
2116 ensure child processes don't unwittingly inherit handles that might
2117 prevent future file access. */
2118
2119 if (mode[0] == 'r')
2120 oflag = O_RDONLY;
2121 else if (mode[0] == 'w' || mode[0] == 'a')
2122 oflag = O_WRONLY | O_CREAT | O_TRUNC;
2123 else
2124 return NULL;
2125
2126 /* Only do simplistic option parsing. */
2127 while (*++mode)
2128 if (mode[0] == '+')
2129 {
2130 oflag &= ~(O_RDONLY | O_WRONLY);
2131 oflag |= O_RDWR;
2132 }
2133 else if (mode[0] == 'b')
2134 {
2135 oflag &= ~O_TEXT;
2136 oflag |= O_BINARY;
2137 }
2138 else if (mode[0] == 't')
2139 {
2140 oflag &= ~O_BINARY;
2141 oflag |= O_TEXT;
2142 }
2143 else break;
2144
2145 fd = _open (map_w32_filename (path, NULL), oflag | _O_NOINHERIT, 0644);
2146 if (fd < 0)
2147 return NULL;
2148
2149 return _fdopen (fd, mode_save);
2150 }
2151
2152 /* This only works on NTFS volumes, but is useful to have. */
2153 int
2154 sys_link (const char * old, const char * new)
2155 {
2156 HANDLE fileh;
2157 int result = -1;
2158 char oldname[MAX_PATH], newname[MAX_PATH];
2159
2160 if (old == NULL || new == NULL)
2161 {
2162 errno = ENOENT;
2163 return -1;
2164 }
2165
2166 strcpy (oldname, map_w32_filename (old, NULL));
2167 strcpy (newname, map_w32_filename (new, NULL));
2168
2169 fileh = CreateFile (oldname, 0, 0, NULL, OPEN_EXISTING,
2170 FILE_FLAG_BACKUP_SEMANTICS, NULL);
2171 if (fileh != INVALID_HANDLE_VALUE)
2172 {
2173 int wlen;
2174
2175 /* Confusingly, the "alternate" stream name field does not apply
2176 when restoring a hard link, and instead contains the actual
2177 stream data for the link (ie. the name of the link to create).
2178 The WIN32_STREAM_ID structure before the cStreamName field is
2179 the stream header, which is then immediately followed by the
2180 stream data. */
2181
2182 struct {
2183 WIN32_STREAM_ID wid;
2184 WCHAR wbuffer[MAX_PATH]; /* extra space for link name */
2185 } data;
2186
2187 wlen = MultiByteToWideChar (CP_ACP, MB_PRECOMPOSED, newname, -1,
2188 data.wid.cStreamName, MAX_PATH);
2189 if (wlen > 0)
2190 {
2191 LPVOID context = NULL;
2192 DWORD wbytes = 0;
2193
2194 data.wid.dwStreamId = BACKUP_LINK;
2195 data.wid.dwStreamAttributes = 0;
2196 data.wid.Size.LowPart = wlen * sizeof(WCHAR);
2197 data.wid.Size.HighPart = 0;
2198 data.wid.dwStreamNameSize = 0;
2199
2200 if (BackupWrite (fileh, (LPBYTE)&data,
2201 offsetof (WIN32_STREAM_ID, cStreamName)
2202 + data.wid.Size.LowPart,
2203 &wbytes, FALSE, FALSE, &context)
2204 && BackupWrite (fileh, NULL, 0, &wbytes, TRUE, FALSE, &context))
2205 {
2206 /* succeeded */
2207 result = 0;
2208 }
2209 else
2210 {
2211 /* Should try mapping GetLastError to errno; for now just
2212 indicate a general error (eg. links not supported). */
2213 errno = EINVAL; // perhaps EMLINK?
2214 }
2215 }
2216
2217 CloseHandle (fileh);
2218 }
2219 else
2220 errno = ENOENT;
2221
2222 return result;
2223 }
2224
2225 int
2226 sys_mkdir (const char * path)
2227 {
2228 return _mkdir (map_w32_filename (path, NULL));
2229 }
2230
2231 /* Because of long name mapping issues, we need to implement this
2232 ourselves. Also, MSVC's _mktemp returns NULL when it can't generate
2233 a unique name, instead of setting the input template to an empty
2234 string.
2235
2236 Standard algorithm seems to be use pid or tid with a letter on the
2237 front (in place of the 6 X's) and cycle through the letters to find a
2238 unique name. We extend that to allow any reasonable character as the
2239 first of the 6 X's. */
2240 char *
2241 sys_mktemp (char * template)
2242 {
2243 char * p;
2244 int i;
2245 unsigned uid = GetCurrentThreadId ();
2246 static char first_char[] = "abcdefghijklmnopqrstuvwyz0123456789!%-_@#";
2247
2248 if (template == NULL)
2249 return NULL;
2250 p = template + strlen (template);
2251 i = 5;
2252 /* replace up to the last 5 X's with uid in decimal */
2253 while (--p >= template && p[0] == 'X' && --i >= 0)
2254 {
2255 p[0] = '0' + uid % 10;
2256 uid /= 10;
2257 }
2258
2259 if (i < 0 && p[0] == 'X')
2260 {
2261 i = 0;
2262 do
2263 {
2264 int save_errno = errno;
2265 p[0] = first_char[i];
2266 if (sys_access (template, 0) < 0)
2267 {
2268 errno = save_errno;
2269 return template;
2270 }
2271 }
2272 while (++i < sizeof (first_char));
2273 }
2274
2275 /* Template is badly formed or else we can't generate a unique name,
2276 so return empty string */
2277 template[0] = 0;
2278 return template;
2279 }
2280
2281 int
2282 sys_open (const char * path, int oflag, int mode)
2283 {
2284 const char* mpath = map_w32_filename (path, NULL);
2285 /* Try to open file without _O_CREAT, to be able to write to hidden
2286 and system files. Force all file handles to be
2287 non-inheritable. */
2288 int res = _open (mpath, (oflag & ~_O_CREAT) | _O_NOINHERIT, mode);
2289 if (res >= 0)
2290 return res;
2291 return _open (mpath, oflag | _O_NOINHERIT, mode);
2292 }
2293
2294 int
2295 sys_rename (const char * oldname, const char * newname)
2296 {
2297 BOOL result;
2298 char temp[MAX_PATH];
2299
2300 /* MoveFile on Windows 95 doesn't correctly change the short file name
2301 alias in a number of circumstances (it is not easy to predict when
2302 just by looking at oldname and newname, unfortunately). In these
2303 cases, renaming through a temporary name avoids the problem.
2304
2305 A second problem on Windows 95 is that renaming through a temp name when
2306 newname is uppercase fails (the final long name ends up in
2307 lowercase, although the short alias might be uppercase) UNLESS the
2308 long temp name is not 8.3.
2309
2310 So, on Windows 95 we always rename through a temp name, and we make sure
2311 the temp name has a long extension to ensure correct renaming. */
2312
2313 strcpy (temp, map_w32_filename (oldname, NULL));
2314
2315 if (os_subtype == OS_WIN95)
2316 {
2317 char * o;
2318 char * p;
2319 int i = 0;
2320
2321 oldname = map_w32_filename (oldname, NULL);
2322 if (o = strrchr (oldname, '\\'))
2323 o++;
2324 else
2325 o = (char *) oldname;
2326
2327 if (p = strrchr (temp, '\\'))
2328 p++;
2329 else
2330 p = temp;
2331
2332 do
2333 {
2334 /* Force temp name to require a manufactured 8.3 alias - this
2335 seems to make the second rename work properly. */
2336 sprintf (p, "_.%s.%u", o, i);
2337 i++;
2338 result = rename (oldname, temp);
2339 }
2340 /* This loop must surely terminate! */
2341 while (result < 0 && errno == EEXIST);
2342 if (result < 0)
2343 return -1;
2344 }
2345
2346 /* Emulate Unix behaviour - newname is deleted if it already exists
2347 (at least if it is a file; don't do this for directories).
2348
2349 Since we mustn't do this if we are just changing the case of the
2350 file name (we would end up deleting the file we are trying to
2351 rename!), we let rename detect if the destination file already
2352 exists - that way we avoid the possible pitfalls of trying to
2353 determine ourselves whether two names really refer to the same
2354 file, which is not always possible in the general case. (Consider
2355 all the permutations of shared or subst'd drives, etc.) */
2356
2357 newname = map_w32_filename (newname, NULL);
2358 result = rename (temp, newname);
2359
2360 if (result < 0
2361 && errno == EEXIST
2362 && _chmod (newname, 0666) == 0
2363 && _unlink (newname) == 0)
2364 result = rename (temp, newname);
2365
2366 return result;
2367 }
2368
2369 int
2370 sys_rmdir (const char * path)
2371 {
2372 return _rmdir (map_w32_filename (path, NULL));
2373 }
2374
2375 int
2376 sys_unlink (const char * path)
2377 {
2378 path = map_w32_filename (path, NULL);
2379
2380 /* On Unix, unlink works without write permission. */
2381 _chmod (path, 0666);
2382 return _unlink (path);
2383 }
2384
2385 static FILETIME utc_base_ft;
2386 static long double utc_base;
2387 static int init = 0;
2388
2389 static time_t
2390 convert_time (FILETIME ft)
2391 {
2392 long double ret;
2393
2394 if (!init)
2395 {
2396 /* Determine the delta between 1-Jan-1601 and 1-Jan-1970. */
2397 SYSTEMTIME st;
2398
2399 st.wYear = 1970;
2400 st.wMonth = 1;
2401 st.wDay = 1;
2402 st.wHour = 0;
2403 st.wMinute = 0;
2404 st.wSecond = 0;
2405 st.wMilliseconds = 0;
2406
2407 SystemTimeToFileTime (&st, &utc_base_ft);
2408 utc_base = (long double) utc_base_ft.dwHighDateTime
2409 * 4096.0L * 1024.0L * 1024.0L + utc_base_ft.dwLowDateTime;
2410 init = 1;
2411 }
2412
2413 if (CompareFileTime (&ft, &utc_base_ft) < 0)
2414 return 0;
2415
2416 ret = (long double) ft.dwHighDateTime
2417 * 4096.0L * 1024.0L * 1024.0L + ft.dwLowDateTime;
2418 ret -= utc_base;
2419 return (time_t) (ret * 1e-7L);
2420 }
2421
2422 void
2423 convert_from_time_t (time_t time, FILETIME * pft)
2424 {
2425 long double tmp;
2426
2427 if (!init)
2428 {
2429 /* Determine the delta between 1-Jan-1601 and 1-Jan-1970. */
2430 SYSTEMTIME st;
2431
2432 st.wYear = 1970;
2433 st.wMonth = 1;
2434 st.wDay = 1;
2435 st.wHour = 0;
2436 st.wMinute = 0;
2437 st.wSecond = 0;
2438 st.wMilliseconds = 0;
2439
2440 SystemTimeToFileTime (&st, &utc_base_ft);
2441 utc_base = (long double) utc_base_ft.dwHighDateTime
2442 * 4096 * 1024 * 1024 + utc_base_ft.dwLowDateTime;
2443 init = 1;
2444 }
2445
2446 /* time in 100ns units since 1-Jan-1601 */
2447 tmp = (long double) time * 1e7 + utc_base;
2448 pft->dwHighDateTime = (DWORD) (tmp / (4096.0 * 1024 * 1024));
2449 pft->dwLowDateTime = (DWORD) (tmp - (4096.0 * 1024 * 1024) * pft->dwHighDateTime);
2450 }
2451
2452 #if 0
2453 /* No reason to keep this; faking inode values either by hashing or even
2454 using the file index from GetInformationByHandle, is not perfect and
2455 so by default Emacs doesn't use the inode values on Windows.
2456 Instead, we now determine file-truename correctly (except for
2457 possible drive aliasing etc). */
2458
2459 /* Modified version of "PJW" algorithm (see the "Dragon" compiler book). */
2460 static unsigned
2461 hashval (const unsigned char * str)
2462 {
2463 unsigned h = 0;
2464 while (*str)
2465 {
2466 h = (h << 4) + *str++;
2467 h ^= (h >> 28);
2468 }
2469 return h;
2470 }
2471
2472 /* Return the hash value of the canonical pathname, excluding the
2473 drive/UNC header, to get a hopefully unique inode number. */
2474 static DWORD
2475 generate_inode_val (const char * name)
2476 {
2477 char fullname[ MAX_PATH ];
2478 char * p;
2479 unsigned hash;
2480
2481 /* Get the truly canonical filename, if it exists. (Note: this
2482 doesn't resolve aliasing due to subst commands, or recognise hard
2483 links. */
2484 if (!w32_get_long_filename ((char *)name, fullname, MAX_PATH))
2485 abort ();
2486
2487 parse_root (fullname, &p);
2488 /* Normal W32 filesystems are still case insensitive. */
2489 _strlwr (p);
2490 return hashval (p);
2491 }
2492
2493 #endif
2494
2495 /* MSVC stat function can't cope with UNC names and has other bugs, so
2496 replace it with our own. This also allows us to calculate consistent
2497 inode values without hacks in the main Emacs code. */
2498 int
2499 stat (const char * path, struct stat * buf)
2500 {
2501 char *name, *r;
2502 WIN32_FIND_DATA wfd;
2503 HANDLE fh;
2504 DWORD fake_inode;
2505 int permission;
2506 int len;
2507 int rootdir = FALSE;
2508
2509 if (path == NULL || buf == NULL)
2510 {
2511 errno = EFAULT;
2512 return -1;
2513 }
2514
2515 name = (char *) map_w32_filename (path, &path);
2516 /* Must be valid filename, no wild cards or other invalid
2517 characters. We use _mbspbrk to support multibyte strings that
2518 might look to strpbrk as if they included literal *, ?, and other
2519 characters mentioned below that are disallowed by Windows
2520 filesystems. */
2521 if (_mbspbrk (name, "*?|<>\""))
2522 {
2523 errno = ENOENT;
2524 return -1;
2525 }
2526
2527 /* If name is "c:/.." or "/.." then stat "c:/" or "/". */
2528 r = IS_DEVICE_SEP (name[1]) ? &name[2] : name;
2529 if (IS_DIRECTORY_SEP (r[0]) && r[1] == '.' && r[2] == '.' && r[3] == '\0')
2530 {
2531 r[1] = r[2] = '\0';
2532 }
2533
2534 /* Remove trailing directory separator, unless name is the root
2535 directory of a drive or UNC volume in which case ensure there
2536 is a trailing separator. */
2537 len = strlen (name);
2538 rootdir = (path >= name + len - 1
2539 && (IS_DIRECTORY_SEP (*path) || *path == 0));
2540 name = strcpy (alloca (len + 2), name);
2541
2542 if (is_unc_volume (name))
2543 {
2544 DWORD attrs = unc_volume_file_attributes (name);
2545
2546 if (attrs == -1)
2547 return -1;
2548
2549 memset (&wfd, 0, sizeof (wfd));
2550 wfd.dwFileAttributes = attrs;
2551 wfd.ftCreationTime = utc_base_ft;
2552 wfd.ftLastAccessTime = utc_base_ft;
2553 wfd.ftLastWriteTime = utc_base_ft;
2554 strcpy (wfd.cFileName, name);
2555 }
2556 else if (rootdir)
2557 {
2558 if (!IS_DIRECTORY_SEP (name[len-1]))
2559 strcat (name, "\\");
2560 if (GetDriveType (name) < 2)
2561 {
2562 errno = ENOENT;
2563 return -1;
2564 }
2565 memset (&wfd, 0, sizeof (wfd));
2566 wfd.dwFileAttributes = FILE_ATTRIBUTE_DIRECTORY;
2567 wfd.ftCreationTime = utc_base_ft;
2568 wfd.ftLastAccessTime = utc_base_ft;
2569 wfd.ftLastWriteTime = utc_base_ft;
2570 strcpy (wfd.cFileName, name);
2571 }
2572 else
2573 {
2574 if (IS_DIRECTORY_SEP (name[len-1]))
2575 name[len - 1] = 0;
2576
2577 /* (This is hacky, but helps when doing file completions on
2578 network drives.) Optimize by using information available from
2579 active readdir if possible. */
2580 len = strlen (dir_pathname);
2581 if (IS_DIRECTORY_SEP (dir_pathname[len-1]))
2582 len--;
2583 if (dir_find_handle != INVALID_HANDLE_VALUE
2584 && strnicmp (name, dir_pathname, len) == 0
2585 && IS_DIRECTORY_SEP (name[len])
2586 && stricmp (name + len + 1, dir_static.d_name) == 0)
2587 {
2588 /* This was the last entry returned by readdir. */
2589 wfd = dir_find_data;
2590 }
2591 else
2592 {
2593 if (IS_DIRECTORY_SEP (name[0]) && IS_DIRECTORY_SEP (name[1]))
2594 logon_network_drive (name);
2595
2596 fh = FindFirstFile (name, &wfd);
2597 if (fh == INVALID_HANDLE_VALUE)
2598 {
2599 errno = ENOENT;
2600 return -1;
2601 }
2602 FindClose (fh);
2603 }
2604 }
2605
2606 if (!NILP (Vw32_get_true_file_attributes)
2607 /* No access rights required to get info. */
2608 && (fh = CreateFile (name, 0, 0, NULL, OPEN_EXISTING,
2609 FILE_FLAG_BACKUP_SEMANTICS, NULL))
2610 != INVALID_HANDLE_VALUE)
2611 {
2612 /* This is more accurate in terms of gettting the correct number
2613 of links, but is quite slow (it is noticeable when Emacs is
2614 making a list of file name completions). */
2615 BY_HANDLE_FILE_INFORMATION info;
2616
2617 if (GetFileInformationByHandle (fh, &info))
2618 {
2619 buf->st_nlink = info.nNumberOfLinks;
2620 /* Might as well use file index to fake inode values, but this
2621 is not guaranteed to be unique unless we keep a handle open
2622 all the time (even then there are situations where it is
2623 not unique). Reputedly, there are at most 48 bits of info
2624 (on NTFS, presumably less on FAT). */
2625 fake_inode = info.nFileIndexLow ^ info.nFileIndexHigh;
2626 }
2627 else
2628 {
2629 buf->st_nlink = 1;
2630 fake_inode = 0;
2631 }
2632
2633 if (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
2634 {
2635 buf->st_mode = _S_IFDIR;
2636 }
2637 else
2638 {
2639 switch (GetFileType (fh))
2640 {
2641 case FILE_TYPE_DISK:
2642 buf->st_mode = _S_IFREG;
2643 break;
2644 case FILE_TYPE_PIPE:
2645 buf->st_mode = _S_IFIFO;
2646 break;
2647 case FILE_TYPE_CHAR:
2648 case FILE_TYPE_UNKNOWN:
2649 default:
2650 buf->st_mode = _S_IFCHR;
2651 }
2652 }
2653 CloseHandle (fh);
2654 }
2655 else
2656 {
2657 /* Don't bother to make this information more accurate. */
2658 buf->st_mode = (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ?
2659 _S_IFDIR : _S_IFREG;
2660 buf->st_nlink = 1;
2661 fake_inode = 0;
2662 }
2663
2664 #if 0
2665 /* Not sure if there is any point in this. */
2666 if (!NILP (Vw32_generate_fake_inodes))
2667 fake_inode = generate_inode_val (name);
2668 else if (fake_inode == 0)
2669 {
2670 /* For want of something better, try to make everything unique. */
2671 static DWORD gen_num = 0;
2672 fake_inode = ++gen_num;
2673 }
2674 #endif
2675
2676 /* MSVC defines _ino_t to be short; other libc's might not. */
2677 if (sizeof (buf->st_ino) == 2)
2678 buf->st_ino = fake_inode ^ (fake_inode >> 16);
2679 else
2680 buf->st_ino = fake_inode;
2681
2682 /* consider files to belong to current user */
2683 buf->st_uid = the_passwd.pw_uid;
2684 buf->st_gid = the_passwd.pw_gid;
2685
2686 /* volume_info is set indirectly by map_w32_filename */
2687 buf->st_dev = volume_info.serialnum;
2688 buf->st_rdev = volume_info.serialnum;
2689
2690
2691 buf->st_size = wfd.nFileSizeLow;
2692
2693 /* Convert timestamps to Unix format. */
2694 buf->st_mtime = convert_time (wfd.ftLastWriteTime);
2695 buf->st_atime = convert_time (wfd.ftLastAccessTime);
2696 if (buf->st_atime == 0) buf->st_atime = buf->st_mtime;
2697 buf->st_ctime = convert_time (wfd.ftCreationTime);
2698 if (buf->st_ctime == 0) buf->st_ctime = buf->st_mtime;
2699
2700 /* determine rwx permissions */
2701 if (wfd.dwFileAttributes & FILE_ATTRIBUTE_READONLY)
2702 permission = _S_IREAD;
2703 else
2704 permission = _S_IREAD | _S_IWRITE;
2705
2706 if (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
2707 permission |= _S_IEXEC;
2708 else if (is_exec (name))
2709 permission |= _S_IEXEC;
2710
2711 buf->st_mode |= permission | (permission >> 3) | (permission >> 6);
2712
2713 return 0;
2714 }
2715
2716 /* Provide fstat and utime as well as stat for consistent handling of
2717 file timestamps. */
2718 int
2719 fstat (int desc, struct stat * buf)
2720 {
2721 HANDLE fh = (HANDLE) _get_osfhandle (desc);
2722 BY_HANDLE_FILE_INFORMATION info;
2723 DWORD fake_inode;
2724 int permission;
2725
2726 switch (GetFileType (fh) & ~FILE_TYPE_REMOTE)
2727 {
2728 case FILE_TYPE_DISK:
2729 buf->st_mode = _S_IFREG;
2730 if (!GetFileInformationByHandle (fh, &info))
2731 {
2732 errno = EACCES;
2733 return -1;
2734 }
2735 break;
2736 case FILE_TYPE_PIPE:
2737 buf->st_mode = _S_IFIFO;
2738 goto non_disk;
2739 case FILE_TYPE_CHAR:
2740 case FILE_TYPE_UNKNOWN:
2741 default:
2742 buf->st_mode = _S_IFCHR;
2743 non_disk:
2744 memset (&info, 0, sizeof (info));
2745 info.dwFileAttributes = 0;
2746 info.ftCreationTime = utc_base_ft;
2747 info.ftLastAccessTime = utc_base_ft;
2748 info.ftLastWriteTime = utc_base_ft;
2749 }
2750
2751 if (info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
2752 buf->st_mode = _S_IFDIR;
2753
2754 buf->st_nlink = info.nNumberOfLinks;
2755 /* Might as well use file index to fake inode values, but this
2756 is not guaranteed to be unique unless we keep a handle open
2757 all the time (even then there are situations where it is
2758 not unique). Reputedly, there are at most 48 bits of info
2759 (on NTFS, presumably less on FAT). */
2760 fake_inode = info.nFileIndexLow ^ info.nFileIndexHigh;
2761
2762 /* MSVC defines _ino_t to be short; other libc's might not. */
2763 if (sizeof (buf->st_ino) == 2)
2764 buf->st_ino = fake_inode ^ (fake_inode >> 16);
2765 else
2766 buf->st_ino = fake_inode;
2767
2768 /* consider files to belong to current user */
2769 buf->st_uid = 0;
2770 buf->st_gid = 0;
2771
2772 buf->st_dev = info.dwVolumeSerialNumber;
2773 buf->st_rdev = info.dwVolumeSerialNumber;
2774
2775 buf->st_size = info.nFileSizeLow;
2776
2777 /* Convert timestamps to Unix format. */
2778 buf->st_mtime = convert_time (info.ftLastWriteTime);
2779 buf->st_atime = convert_time (info.ftLastAccessTime);
2780 if (buf->st_atime == 0) buf->st_atime = buf->st_mtime;
2781 buf->st_ctime = convert_time (info.ftCreationTime);
2782 if (buf->st_ctime == 0) buf->st_ctime = buf->st_mtime;
2783
2784 /* determine rwx permissions */
2785 if (info.dwFileAttributes & FILE_ATTRIBUTE_READONLY)
2786 permission = _S_IREAD;
2787 else
2788 permission = _S_IREAD | _S_IWRITE;
2789
2790 if (info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
2791 permission |= _S_IEXEC;
2792 else
2793 {
2794 #if 0 /* no way of knowing the filename */
2795 char * p = strrchr (name, '.');
2796 if (p != NULL &&
2797 (stricmp (p, ".exe") == 0 ||
2798 stricmp (p, ".com") == 0 ||
2799 stricmp (p, ".bat") == 0 ||
2800 stricmp (p, ".cmd") == 0))
2801 permission |= _S_IEXEC;
2802 #endif
2803 }
2804
2805 buf->st_mode |= permission | (permission >> 3) | (permission >> 6);
2806
2807 return 0;
2808 }
2809
2810 int
2811 utime (const char *name, struct utimbuf *times)
2812 {
2813 struct utimbuf deftime;
2814 HANDLE fh;
2815 FILETIME mtime;
2816 FILETIME atime;
2817
2818 if (times == NULL)
2819 {
2820 deftime.modtime = deftime.actime = time (NULL);
2821 times = &deftime;
2822 }
2823
2824 /* Need write access to set times. */
2825 fh = CreateFile (name, GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE,
2826 0, OPEN_EXISTING, 0, NULL);
2827 if (fh)
2828 {
2829 convert_from_time_t (times->actime, &atime);
2830 convert_from_time_t (times->modtime, &mtime);
2831 if (!SetFileTime (fh, NULL, &atime, &mtime))
2832 {
2833 CloseHandle (fh);
2834 errno = EACCES;
2835 return -1;
2836 }
2837 CloseHandle (fh);
2838 }
2839 else
2840 {
2841 errno = EINVAL;
2842 return -1;
2843 }
2844 return 0;
2845 }
2846
2847 #ifdef HAVE_SOCKETS
2848
2849 /* Wrappers for winsock functions to map between our file descriptors
2850 and winsock's handles; also set h_errno for convenience.
2851
2852 To allow Emacs to run on systems which don't have winsock support
2853 installed, we dynamically link to winsock on startup if present, and
2854 otherwise provide the minimum necessary functionality
2855 (eg. gethostname). */
2856
2857 /* function pointers for relevant socket functions */
2858 int (PASCAL *pfn_WSAStartup) (WORD wVersionRequired, LPWSADATA lpWSAData);
2859 void (PASCAL *pfn_WSASetLastError) (int iError);
2860 int (PASCAL *pfn_WSAGetLastError) (void);
2861 int (PASCAL *pfn_WSAEventSelect) (SOCKET s, HANDLE hEventObject, long lNetworkEvents);
2862 HANDLE (PASCAL *pfn_WSACreateEvent) (void);
2863 int (PASCAL *pfn_WSACloseEvent) (HANDLE hEvent);
2864 int (PASCAL *pfn_socket) (int af, int type, int protocol);
2865 int (PASCAL *pfn_bind) (SOCKET s, const struct sockaddr *addr, int namelen);
2866 int (PASCAL *pfn_connect) (SOCKET s, const struct sockaddr *addr, int namelen);
2867 int (PASCAL *pfn_ioctlsocket) (SOCKET s, long cmd, u_long *argp);
2868 int (PASCAL *pfn_recv) (SOCKET s, char * buf, int len, int flags);
2869 int (PASCAL *pfn_send) (SOCKET s, const char * buf, int len, int flags);
2870 int (PASCAL *pfn_closesocket) (SOCKET s);
2871 int (PASCAL *pfn_shutdown) (SOCKET s, int how);
2872 int (PASCAL *pfn_WSACleanup) (void);
2873
2874 u_short (PASCAL *pfn_htons) (u_short hostshort);
2875 u_short (PASCAL *pfn_ntohs) (u_short netshort);
2876 unsigned long (PASCAL *pfn_inet_addr) (const char * cp);
2877 int (PASCAL *pfn_gethostname) (char * name, int namelen);
2878 struct hostent * (PASCAL *pfn_gethostbyname) (const char * name);
2879 struct servent * (PASCAL *pfn_getservbyname) (const char * name, const char * proto);
2880 int (PASCAL *pfn_getpeername) (SOCKET s, struct sockaddr *addr, int * namelen);
2881 int (PASCAL *pfn_setsockopt) (SOCKET s, int level, int optname,
2882 const char * optval, int optlen);
2883 int (PASCAL *pfn_listen) (SOCKET s, int backlog);
2884 int (PASCAL *pfn_getsockname) (SOCKET s, struct sockaddr * name,
2885 int * namelen);
2886 SOCKET (PASCAL *pfn_accept) (SOCKET s, struct sockaddr * addr, int * addrlen);
2887 int (PASCAL *pfn_recvfrom) (SOCKET s, char * buf, int len, int flags,
2888 struct sockaddr * from, int * fromlen);
2889 int (PASCAL *pfn_sendto) (SOCKET s, const char * buf, int len, int flags,
2890 const struct sockaddr * to, int tolen);
2891
2892 /* SetHandleInformation is only needed to make sockets non-inheritable. */
2893 BOOL (WINAPI *pfn_SetHandleInformation) (HANDLE object, DWORD mask, DWORD flags);
2894 #ifndef HANDLE_FLAG_INHERIT
2895 #define HANDLE_FLAG_INHERIT 1
2896 #endif
2897
2898 HANDLE winsock_lib;
2899 static int winsock_inuse;
2900
2901 BOOL
2902 term_winsock (void)
2903 {
2904 if (winsock_lib != NULL && winsock_inuse == 0)
2905 {
2906 /* Not sure what would cause WSAENETDOWN, or even if it can happen
2907 after WSAStartup returns successfully, but it seems reasonable
2908 to allow unloading winsock anyway in that case. */
2909 if (pfn_WSACleanup () == 0 ||
2910 pfn_WSAGetLastError () == WSAENETDOWN)
2911 {
2912 if (FreeLibrary (winsock_lib))
2913 winsock_lib = NULL;
2914 return TRUE;
2915 }
2916 }
2917 return FALSE;
2918 }
2919
2920 BOOL
2921 init_winsock (int load_now)
2922 {
2923 WSADATA winsockData;
2924
2925 if (winsock_lib != NULL)
2926 return TRUE;
2927
2928 pfn_SetHandleInformation = NULL;
2929 pfn_SetHandleInformation
2930 = (void *) GetProcAddress (GetModuleHandle ("kernel32.dll"),
2931 "SetHandleInformation");
2932
2933 winsock_lib = LoadLibrary ("Ws2_32.dll");
2934
2935 if (winsock_lib != NULL)
2936 {
2937 /* dynamically link to socket functions */
2938
2939 #define LOAD_PROC(fn) \
2940 if ((pfn_##fn = (void *) GetProcAddress (winsock_lib, #fn)) == NULL) \
2941 goto fail;
2942
2943 LOAD_PROC( WSAStartup );
2944 LOAD_PROC( WSASetLastError );
2945 LOAD_PROC( WSAGetLastError );
2946 LOAD_PROC( WSAEventSelect );
2947 LOAD_PROC( WSACreateEvent );
2948 LOAD_PROC( WSACloseEvent );
2949 LOAD_PROC( socket );
2950 LOAD_PROC( bind );
2951 LOAD_PROC( connect );
2952 LOAD_PROC( ioctlsocket );
2953 LOAD_PROC( recv );
2954 LOAD_PROC( send );
2955 LOAD_PROC( closesocket );
2956 LOAD_PROC( shutdown );
2957 LOAD_PROC( htons );
2958 LOAD_PROC( ntohs );
2959 LOAD_PROC( inet_addr );
2960 LOAD_PROC( gethostname );
2961 LOAD_PROC( gethostbyname );
2962 LOAD_PROC( getservbyname );
2963 LOAD_PROC( getpeername );
2964 LOAD_PROC( WSACleanup );
2965 LOAD_PROC( setsockopt );
2966 LOAD_PROC( listen );
2967 LOAD_PROC( getsockname );
2968 LOAD_PROC( accept );
2969 LOAD_PROC( recvfrom );
2970 LOAD_PROC( sendto );
2971 #undef LOAD_PROC
2972
2973 /* specify version 1.1 of winsock */
2974 if (pfn_WSAStartup (0x101, &winsockData) == 0)
2975 {
2976 if (winsockData.wVersion != 0x101)
2977 goto fail;
2978
2979 if (!load_now)
2980 {
2981 /* Report that winsock exists and is usable, but leave
2982 socket functions disabled. I am assuming that calling
2983 WSAStartup does not require any network interaction,
2984 and in particular does not cause or require a dial-up
2985 connection to be established. */
2986
2987 pfn_WSACleanup ();
2988 FreeLibrary (winsock_lib);
2989 winsock_lib = NULL;
2990 }
2991 winsock_inuse = 0;
2992 return TRUE;
2993 }
2994
2995 fail:
2996 FreeLibrary (winsock_lib);
2997 winsock_lib = NULL;
2998 }
2999
3000 return FALSE;
3001 }
3002
3003
3004 int h_errno = 0;
3005
3006 /* function to set h_errno for compatability; map winsock error codes to
3007 normal system codes where they overlap (non-overlapping definitions
3008 are already in <sys/socket.h> */
3009 static void
3010 set_errno ()
3011 {
3012 if (winsock_lib == NULL)
3013 h_errno = EINVAL;
3014 else
3015 h_errno = pfn_WSAGetLastError ();
3016
3017 switch (h_errno)
3018 {
3019 case WSAEACCES: h_errno = EACCES; break;
3020 case WSAEBADF: h_errno = EBADF; break;
3021 case WSAEFAULT: h_errno = EFAULT; break;
3022 case WSAEINTR: h_errno = EINTR; break;
3023 case WSAEINVAL: h_errno = EINVAL; break;
3024 case WSAEMFILE: h_errno = EMFILE; break;
3025 case WSAENAMETOOLONG: h_errno = ENAMETOOLONG; break;
3026 case WSAENOTEMPTY: h_errno = ENOTEMPTY; break;
3027 }
3028 errno = h_errno;
3029 }
3030
3031 static void
3032 check_errno ()
3033 {
3034 if (h_errno == 0 && winsock_lib != NULL)
3035 pfn_WSASetLastError (0);
3036 }
3037
3038 /* Extend strerror to handle the winsock-specific error codes. */
3039 struct {
3040 int errnum;
3041 char * msg;
3042 } _wsa_errlist[] = {
3043 WSAEINTR , "Interrupted function call",
3044 WSAEBADF , "Bad file descriptor",
3045 WSAEACCES , "Permission denied",
3046 WSAEFAULT , "Bad address",
3047 WSAEINVAL , "Invalid argument",
3048 WSAEMFILE , "Too many open files",
3049
3050 WSAEWOULDBLOCK , "Resource temporarily unavailable",
3051 WSAEINPROGRESS , "Operation now in progress",
3052 WSAEALREADY , "Operation already in progress",
3053 WSAENOTSOCK , "Socket operation on non-socket",
3054 WSAEDESTADDRREQ , "Destination address required",
3055 WSAEMSGSIZE , "Message too long",
3056 WSAEPROTOTYPE , "Protocol wrong type for socket",
3057 WSAENOPROTOOPT , "Bad protocol option",
3058 WSAEPROTONOSUPPORT , "Protocol not supported",
3059 WSAESOCKTNOSUPPORT , "Socket type not supported",
3060 WSAEOPNOTSUPP , "Operation not supported",
3061 WSAEPFNOSUPPORT , "Protocol family not supported",
3062 WSAEAFNOSUPPORT , "Address family not supported by protocol family",
3063 WSAEADDRINUSE , "Address already in use",
3064 WSAEADDRNOTAVAIL , "Cannot assign requested address",
3065 WSAENETDOWN , "Network is down",
3066 WSAENETUNREACH , "Network is unreachable",
3067 WSAENETRESET , "Network dropped connection on reset",
3068 WSAECONNABORTED , "Software caused connection abort",
3069 WSAECONNRESET , "Connection reset by peer",
3070 WSAENOBUFS , "No buffer space available",
3071 WSAEISCONN , "Socket is already connected",
3072 WSAENOTCONN , "Socket is not connected",
3073 WSAESHUTDOWN , "Cannot send after socket shutdown",
3074 WSAETOOMANYREFS , "Too many references", /* not sure */
3075 WSAETIMEDOUT , "Connection timed out",
3076 WSAECONNREFUSED , "Connection refused",
3077 WSAELOOP , "Network loop", /* not sure */
3078 WSAENAMETOOLONG , "Name is too long",
3079 WSAEHOSTDOWN , "Host is down",
3080 WSAEHOSTUNREACH , "No route to host",
3081 WSAENOTEMPTY , "Buffer not empty", /* not sure */
3082 WSAEPROCLIM , "Too many processes",
3083 WSAEUSERS , "Too many users", /* not sure */
3084 WSAEDQUOT , "Double quote in host name", /* really not sure */
3085 WSAESTALE , "Data is stale", /* not sure */
3086 WSAEREMOTE , "Remote error", /* not sure */
3087
3088 WSASYSNOTREADY , "Network subsystem is unavailable",
3089 WSAVERNOTSUPPORTED , "WINSOCK.DLL version out of range",
3090 WSANOTINITIALISED , "Winsock not initialized successfully",
3091 WSAEDISCON , "Graceful shutdown in progress",
3092 #ifdef WSAENOMORE
3093 WSAENOMORE , "No more operations allowed", /* not sure */
3094 WSAECANCELLED , "Operation cancelled", /* not sure */
3095 WSAEINVALIDPROCTABLE , "Invalid procedure table from service provider",
3096 WSAEINVALIDPROVIDER , "Invalid service provider version number",
3097 WSAEPROVIDERFAILEDINIT , "Unable to initialize a service provider",
3098 WSASYSCALLFAILURE , "System call failure",
3099 WSASERVICE_NOT_FOUND , "Service not found", /* not sure */
3100 WSATYPE_NOT_FOUND , "Class type not found",
3101 WSA_E_NO_MORE , "No more resources available", /* really not sure */
3102 WSA_E_CANCELLED , "Operation already cancelled", /* really not sure */
3103 WSAEREFUSED , "Operation refused", /* not sure */
3104 #endif
3105
3106 WSAHOST_NOT_FOUND , "Host not found",
3107 WSATRY_AGAIN , "Authoritative host not found during name lookup",
3108 WSANO_RECOVERY , "Non-recoverable error during name lookup",
3109 WSANO_DATA , "Valid name, no data record of requested type",
3110
3111 -1, NULL
3112 };
3113
3114 char *
3115 sys_strerror(int error_no)
3116 {
3117 int i;
3118 static char unknown_msg[40];
3119
3120 if (error_no >= 0 && error_no < sys_nerr)
3121 return sys_errlist[error_no];
3122
3123 for (i = 0; _wsa_errlist[i].errnum >= 0; i++)
3124 if (_wsa_errlist[i].errnum == error_no)
3125 return _wsa_errlist[i].msg;
3126
3127 sprintf(unknown_msg, "Unidentified error: %d", error_no);
3128 return unknown_msg;
3129 }
3130
3131 /* [andrewi 3-May-96] I've had conflicting results using both methods,
3132 but I believe the method of keeping the socket handle separate (and
3133 insuring it is not inheritable) is the correct one. */
3134
3135 //#define SOCK_REPLACE_HANDLE
3136
3137 #ifdef SOCK_REPLACE_HANDLE
3138 #define SOCK_HANDLE(fd) ((SOCKET) _get_osfhandle (fd))
3139 #else
3140 #define SOCK_HANDLE(fd) ((SOCKET) fd_info[fd].hnd)
3141 #endif
3142
3143 int socket_to_fd (SOCKET s);
3144
3145 int
3146 sys_socket(int af, int type, int protocol)
3147 {
3148 SOCKET s;
3149
3150 if (winsock_lib == NULL)
3151 {
3152 h_errno = ENETDOWN;
3153 return INVALID_SOCKET;
3154 }
3155
3156 check_errno ();
3157
3158 /* call the real socket function */
3159 s = pfn_socket (af, type, protocol);
3160
3161 if (s != INVALID_SOCKET)
3162 return socket_to_fd (s);
3163
3164 set_errno ();
3165 return -1;
3166 }
3167
3168 /* Convert a SOCKET to a file descriptor. */
3169 int
3170 socket_to_fd (SOCKET s)
3171 {
3172 int fd;
3173 child_process * cp;
3174
3175 /* Although under NT 3.5 _open_osfhandle will accept a socket
3176 handle, if opened with SO_OPENTYPE == SO_SYNCHRONOUS_NONALERT,
3177 that does not work under NT 3.1. However, we can get the same
3178 effect by using a backdoor function to replace an existing
3179 descriptor handle with the one we want. */
3180
3181 /* allocate a file descriptor (with appropriate flags) */
3182 fd = _open ("NUL:", _O_RDWR);
3183 if (fd >= 0)
3184 {
3185 #ifdef SOCK_REPLACE_HANDLE
3186 /* now replace handle to NUL with our socket handle */
3187 CloseHandle ((HANDLE) _get_osfhandle (fd));
3188 _free_osfhnd (fd);
3189 _set_osfhnd (fd, s);
3190 /* setmode (fd, _O_BINARY); */
3191 #else
3192 /* Make a non-inheritable copy of the socket handle. Note
3193 that it is possible that sockets aren't actually kernel
3194 handles, which appears to be the case on Windows 9x when
3195 the MS Proxy winsock client is installed. */
3196 {
3197 /* Apparently there is a bug in NT 3.51 with some service
3198 packs, which prevents using DuplicateHandle to make a
3199 socket handle non-inheritable (causes WSACleanup to
3200 hang). The work-around is to use SetHandleInformation
3201 instead if it is available and implemented. */
3202 if (pfn_SetHandleInformation)
3203 {
3204 pfn_SetHandleInformation ((HANDLE) s, HANDLE_FLAG_INHERIT, 0);
3205 }
3206 else
3207 {
3208 HANDLE parent = GetCurrentProcess ();
3209 HANDLE new_s = INVALID_HANDLE_VALUE;
3210
3211 if (DuplicateHandle (parent,
3212 (HANDLE) s,
3213 parent,
3214 &new_s,
3215 0,
3216 FALSE,
3217 DUPLICATE_SAME_ACCESS))
3218 {
3219 /* It is possible that DuplicateHandle succeeds even
3220 though the socket wasn't really a kernel handle,
3221 because a real handle has the same value. So
3222 test whether the new handle really is a socket. */
3223 long nonblocking = 0;
3224 if (pfn_ioctlsocket ((SOCKET) new_s, FIONBIO, &nonblocking) == 0)
3225 {
3226 pfn_closesocket (s);
3227 s = (SOCKET) new_s;
3228 }
3229 else
3230 {
3231 CloseHandle (new_s);
3232 }
3233 }
3234 }
3235 }
3236 fd_info[fd].hnd = (HANDLE) s;
3237 #endif
3238
3239 /* set our own internal flags */
3240 fd_info[fd].flags = FILE_SOCKET | FILE_BINARY | FILE_READ | FILE_WRITE;
3241
3242 cp = new_child ();
3243 if (cp)
3244 {
3245 cp->fd = fd;
3246 cp->status = STATUS_READ_ACKNOWLEDGED;
3247
3248 /* attach child_process to fd_info */
3249 if (fd_info[ fd ].cp != NULL)
3250 {
3251 DebPrint (("sys_socket: fd_info[%d] apparently in use!\n", fd));
3252 abort ();
3253 }
3254
3255 fd_info[ fd ].cp = cp;
3256
3257 /* success! */
3258 winsock_inuse++; /* count open sockets */
3259 return fd;
3260 }
3261
3262 /* clean up */
3263 _close (fd);
3264 }
3265 pfn_closesocket (s);
3266 h_errno = EMFILE;
3267 return -1;
3268 }
3269
3270
3271 int
3272 sys_bind (int s, const struct sockaddr * addr, int namelen)
3273 {
3274 if (winsock_lib == NULL)
3275 {
3276 h_errno = ENOTSOCK;
3277 return SOCKET_ERROR;
3278 }
3279
3280 check_errno ();
3281 if (fd_info[s].flags & FILE_SOCKET)
3282 {
3283 int rc = pfn_bind (SOCK_HANDLE (s), addr, namelen);
3284 if (rc == SOCKET_ERROR)
3285 set_errno ();
3286 return rc;
3287 }
3288 h_errno = ENOTSOCK;
3289 return SOCKET_ERROR;
3290 }
3291
3292
3293 int
3294 sys_connect (int s, const struct sockaddr * name, int namelen)
3295 {
3296 if (winsock_lib == NULL)
3297 {
3298 h_errno = ENOTSOCK;
3299 return SOCKET_ERROR;
3300 }
3301
3302 check_errno ();
3303 if (fd_info[s].flags & FILE_SOCKET)
3304 {
3305 int rc = pfn_connect (SOCK_HANDLE (s), name, namelen);
3306 if (rc == SOCKET_ERROR)
3307 set_errno ();
3308 return rc;
3309 }
3310 h_errno = ENOTSOCK;
3311 return SOCKET_ERROR;
3312 }
3313
3314 u_short
3315 sys_htons (u_short hostshort)
3316 {
3317 return (winsock_lib != NULL) ?
3318 pfn_htons (hostshort) : hostshort;
3319 }
3320
3321 u_short
3322 sys_ntohs (u_short netshort)
3323 {
3324 return (winsock_lib != NULL) ?
3325 pfn_ntohs (netshort) : netshort;
3326 }
3327
3328 unsigned long
3329 sys_inet_addr (const char * cp)
3330 {
3331 return (winsock_lib != NULL) ?
3332 pfn_inet_addr (cp) : INADDR_NONE;
3333 }
3334
3335 int
3336 sys_gethostname (char * name, int namelen)
3337 {
3338 if (winsock_lib != NULL)
3339 return pfn_gethostname (name, namelen);
3340
3341 if (namelen > MAX_COMPUTERNAME_LENGTH)
3342 return !GetComputerName (name, (DWORD *)&namelen);
3343
3344 h_errno = EFAULT;
3345 return SOCKET_ERROR;
3346 }
3347
3348 struct hostent *
3349 sys_gethostbyname(const char * name)
3350 {
3351 struct hostent * host;
3352
3353 if (winsock_lib == NULL)
3354 {
3355 h_errno = ENETDOWN;
3356 return NULL;
3357 }
3358
3359 check_errno ();
3360 host = pfn_gethostbyname (name);
3361 if (!host)
3362 set_errno ();
3363 return host;
3364 }
3365
3366 struct servent *
3367 sys_getservbyname(const char * name, const char * proto)
3368 {
3369 struct servent * serv;
3370
3371 if (winsock_lib == NULL)
3372 {
3373 h_errno = ENETDOWN;
3374 return NULL;
3375 }
3376
3377 check_errno ();
3378 serv = pfn_getservbyname (name, proto);
3379 if (!serv)
3380 set_errno ();
3381 return serv;
3382 }
3383
3384 int
3385 sys_getpeername (int s, struct sockaddr *addr, int * namelen)
3386 {
3387 if (winsock_lib == NULL)
3388 {
3389 h_errno = ENETDOWN;
3390 return SOCKET_ERROR;
3391 }
3392
3393 check_errno ();
3394 if (fd_info[s].flags & FILE_SOCKET)
3395 {
3396 int rc = pfn_getpeername (SOCK_HANDLE (s), addr, namelen);
3397 if (rc == SOCKET_ERROR)
3398 set_errno ();
3399 return rc;
3400 }
3401 h_errno = ENOTSOCK;
3402 return SOCKET_ERROR;
3403 }
3404
3405
3406 int
3407 sys_shutdown (int s, int how)
3408 {
3409 if (winsock_lib == NULL)
3410 {
3411 h_errno = ENETDOWN;
3412 return SOCKET_ERROR;
3413 }
3414
3415 check_errno ();
3416 if (fd_info[s].flags & FILE_SOCKET)
3417 {
3418 int rc = pfn_shutdown (SOCK_HANDLE (s), how);
3419 if (rc == SOCKET_ERROR)
3420 set_errno ();
3421 return rc;
3422 }
3423 h_errno = ENOTSOCK;
3424 return SOCKET_ERROR;
3425 }
3426
3427 int
3428 sys_setsockopt (int s, int level, int optname, const void * optval, int optlen)
3429 {
3430 if (winsock_lib == NULL)
3431 {
3432 h_errno = ENETDOWN;
3433 return SOCKET_ERROR;
3434 }
3435
3436 check_errno ();
3437 if (fd_info[s].flags & FILE_SOCKET)
3438 {
3439 int rc = pfn_setsockopt (SOCK_HANDLE (s), level, optname,
3440 (const char *)optval, optlen);
3441 if (rc == SOCKET_ERROR)
3442 set_errno ();
3443 return rc;
3444 }
3445 h_errno = ENOTSOCK;
3446 return SOCKET_ERROR;
3447 }
3448
3449 int
3450 sys_listen (int s, int backlog)
3451 {
3452 if (winsock_lib == NULL)
3453 {
3454 h_errno = ENETDOWN;
3455 return SOCKET_ERROR;
3456 }
3457
3458 check_errno ();
3459 if (fd_info[s].flags & FILE_SOCKET)
3460 {
3461 int rc = pfn_listen (SOCK_HANDLE (s), backlog);
3462 if (rc == SOCKET_ERROR)
3463 set_errno ();
3464 else
3465 fd_info[s].flags |= FILE_LISTEN;
3466 return rc;
3467 }
3468 h_errno = ENOTSOCK;
3469 return SOCKET_ERROR;
3470 }
3471
3472 int
3473 sys_getsockname (int s, struct sockaddr * name, int * namelen)
3474 {
3475 if (winsock_lib == NULL)
3476 {
3477 h_errno = ENETDOWN;
3478 return SOCKET_ERROR;
3479 }
3480
3481 check_errno ();
3482 if (fd_info[s].flags & FILE_SOCKET)
3483 {
3484 int rc = pfn_getsockname (SOCK_HANDLE (s), name, namelen);
3485 if (rc == SOCKET_ERROR)
3486 set_errno ();
3487 return rc;
3488 }
3489 h_errno = ENOTSOCK;
3490 return SOCKET_ERROR;
3491 }
3492
3493 int
3494 sys_accept (int s, struct sockaddr * addr, int * addrlen)
3495 {
3496 if (winsock_lib == NULL)
3497 {
3498 h_errno = ENETDOWN;
3499 return -1;
3500 }
3501
3502 check_errno ();
3503 if (fd_info[s].flags & FILE_LISTEN)
3504 {
3505 SOCKET t = pfn_accept (SOCK_HANDLE (s), addr, addrlen);
3506 int fd = -1;
3507 if (t == INVALID_SOCKET)
3508 set_errno ();
3509 else
3510 fd = socket_to_fd (t);
3511
3512 fd_info[s].cp->status = STATUS_READ_ACKNOWLEDGED;
3513 ResetEvent (fd_info[s].cp->char_avail);
3514 return fd;
3515 }
3516 h_errno = ENOTSOCK;
3517 return -1;
3518 }
3519
3520 int
3521 sys_recvfrom (int s, char * buf, int len, int flags,
3522 struct sockaddr * from, int * fromlen)
3523 {
3524 if (winsock_lib == NULL)
3525 {
3526 h_errno = ENETDOWN;
3527 return SOCKET_ERROR;
3528 }
3529
3530 check_errno ();
3531 if (fd_info[s].flags & FILE_SOCKET)
3532 {
3533 int rc = pfn_recvfrom (SOCK_HANDLE (s), buf, len, flags, from, fromlen);
3534 if (rc == SOCKET_ERROR)
3535 set_errno ();
3536 return rc;
3537 }
3538 h_errno = ENOTSOCK;
3539 return SOCKET_ERROR;
3540 }
3541
3542 int
3543 sys_sendto (int s, const char * buf, int len, int flags,
3544 const struct sockaddr * to, int tolen)
3545 {
3546 if (winsock_lib == NULL)
3547 {
3548 h_errno = ENETDOWN;
3549 return SOCKET_ERROR;
3550 }
3551
3552 check_errno ();
3553 if (fd_info[s].flags & FILE_SOCKET)
3554 {
3555 int rc = pfn_sendto (SOCK_HANDLE (s), buf, len, flags, to, tolen);
3556 if (rc == SOCKET_ERROR)
3557 set_errno ();
3558 return rc;
3559 }
3560 h_errno = ENOTSOCK;
3561 return SOCKET_ERROR;
3562 }
3563
3564 /* Windows does not have an fcntl function. Provide an implementation
3565 solely for making sockets non-blocking. */
3566 int
3567 fcntl (int s, int cmd, int options)
3568 {
3569 if (winsock_lib == NULL)
3570 {
3571 h_errno = ENETDOWN;
3572 return -1;
3573 }
3574
3575 check_errno ();
3576 if (fd_info[s].flags & FILE_SOCKET)
3577 {
3578 if (cmd == F_SETFL && options == O_NDELAY)
3579 {
3580 unsigned long nblock = 1;
3581 int rc = pfn_ioctlsocket (SOCK_HANDLE (s), FIONBIO, &nblock);
3582 if (rc == SOCKET_ERROR)
3583 set_errno();
3584 /* Keep track of the fact that we set this to non-blocking. */
3585 fd_info[s].flags |= FILE_NDELAY;
3586 return rc;
3587 }
3588 else
3589 {
3590 h_errno = EINVAL;
3591 return SOCKET_ERROR;
3592 }
3593 }
3594 h_errno = ENOTSOCK;
3595 return SOCKET_ERROR;
3596 }
3597
3598 #endif /* HAVE_SOCKETS */
3599
3600
3601 /* Shadow main io functions: we need to handle pipes and sockets more
3602 intelligently, and implement non-blocking mode as well. */
3603
3604 int
3605 sys_close (int fd)
3606 {
3607 int rc;
3608
3609 if (fd < 0)
3610 {
3611 errno = EBADF;
3612 return -1;
3613 }
3614
3615 if (fd < MAXDESC && fd_info[fd].cp)
3616 {
3617 child_process * cp = fd_info[fd].cp;
3618
3619 fd_info[fd].cp = NULL;
3620
3621 if (CHILD_ACTIVE (cp))
3622 {
3623 /* if last descriptor to active child_process then cleanup */
3624 int i;
3625 for (i = 0; i < MAXDESC; i++)
3626 {
3627 if (i == fd)
3628 continue;
3629 if (fd_info[i].cp == cp)
3630 break;
3631 }
3632 if (i == MAXDESC)
3633 {
3634 #ifdef HAVE_SOCKETS
3635 if (fd_info[fd].flags & FILE_SOCKET)
3636 {
3637 #ifndef SOCK_REPLACE_HANDLE
3638 if (winsock_lib == NULL) abort ();
3639
3640 pfn_shutdown (SOCK_HANDLE (fd), 2);
3641 rc = pfn_closesocket (SOCK_HANDLE (fd));
3642 #endif
3643 winsock_inuse--; /* count open sockets */
3644 }
3645 #endif
3646 delete_child (cp);
3647 }
3648 }
3649 }
3650
3651 /* Note that sockets do not need special treatment here (at least on
3652 NT and Windows 95 using the standard tcp/ip stacks) - it appears that
3653 closesocket is equivalent to CloseHandle, which is to be expected
3654 because socket handles are fully fledged kernel handles. */
3655 rc = _close (fd);
3656
3657 if (rc == 0 && fd < MAXDESC)
3658 fd_info[fd].flags = 0;
3659
3660 return rc;
3661 }
3662
3663 int
3664 sys_dup (int fd)
3665 {
3666 int new_fd;
3667
3668 new_fd = _dup (fd);
3669 if (new_fd >= 0 && new_fd < MAXDESC)
3670 {
3671 /* duplicate our internal info as well */
3672 fd_info[new_fd] = fd_info[fd];
3673 }
3674 return new_fd;
3675 }
3676
3677
3678 int
3679 sys_dup2 (int src, int dst)
3680 {
3681 int rc;
3682
3683 if (dst < 0 || dst >= MAXDESC)
3684 {
3685 errno = EBADF;
3686 return -1;
3687 }
3688
3689 /* make sure we close the destination first if it's a pipe or socket */
3690 if (src != dst && fd_info[dst].flags != 0)
3691 sys_close (dst);
3692
3693 rc = _dup2 (src, dst);
3694 if (rc == 0)
3695 {
3696 /* duplicate our internal info as well */
3697 fd_info[dst] = fd_info[src];
3698 }
3699 return rc;
3700 }
3701
3702 /* Unix pipe() has only one arg */
3703 int
3704 sys_pipe (int * phandles)
3705 {
3706 int rc;
3707 unsigned flags;
3708
3709 /* make pipe handles non-inheritable; when we spawn a child, we
3710 replace the relevant handle with an inheritable one. Also put
3711 pipes into binary mode; we will do text mode translation ourselves
3712 if required. */
3713 rc = _pipe (phandles, 0, _O_NOINHERIT | _O_BINARY);
3714
3715 if (rc == 0)
3716 {
3717 /* Protect against overflow, since Windows can open more handles than
3718 our fd_info array has room for. */
3719 if (phandles[0] >= MAXDESC || phandles[1] >= MAXDESC)
3720 {
3721 _close (phandles[0]);
3722 _close (phandles[1]);
3723 rc = -1;
3724 }
3725 else
3726 {
3727 flags = FILE_PIPE | FILE_READ | FILE_BINARY;
3728 fd_info[phandles[0]].flags = flags;
3729
3730 flags = FILE_PIPE | FILE_WRITE | FILE_BINARY;
3731 fd_info[phandles[1]].flags = flags;
3732 }
3733 }
3734
3735 return rc;
3736 }
3737
3738 /* From ntproc.c */
3739 extern int w32_pipe_read_delay;
3740
3741 /* Function to do blocking read of one byte, needed to implement
3742 select. It is only allowed on sockets and pipes. */
3743 int
3744 _sys_read_ahead (int fd)
3745 {
3746 child_process * cp;
3747 int rc;
3748
3749 if (fd < 0 || fd >= MAXDESC)
3750 return STATUS_READ_ERROR;
3751
3752 cp = fd_info[fd].cp;
3753
3754 if (cp == NULL || cp->fd != fd || cp->status != STATUS_READ_READY)
3755 return STATUS_READ_ERROR;
3756
3757 if ((fd_info[fd].flags & (FILE_PIPE | FILE_SOCKET)) == 0
3758 || (fd_info[fd].flags & FILE_READ) == 0)
3759 {
3760 DebPrint (("_sys_read_ahead: internal error: fd %d is not a pipe or socket!\n", fd));
3761 abort ();
3762 }
3763
3764 cp->status = STATUS_READ_IN_PROGRESS;
3765
3766 if (fd_info[fd].flags & FILE_PIPE)
3767 {
3768 rc = _read (fd, &cp->chr, sizeof (char));
3769
3770 /* Give subprocess time to buffer some more output for us before
3771 reporting that input is available; we need this because Windows 95
3772 connects DOS programs to pipes by making the pipe appear to be
3773 the normal console stdout - as a result most DOS programs will
3774 write to stdout without buffering, ie. one character at a
3775 time. Even some W32 programs do this - "dir" in a command
3776 shell on NT is very slow if we don't do this. */
3777 if (rc > 0)
3778 {
3779 int wait = w32_pipe_read_delay;
3780
3781 if (wait > 0)
3782 Sleep (wait);
3783 else if (wait < 0)
3784 while (++wait <= 0)
3785 /* Yield remainder of our time slice, effectively giving a
3786 temporary priority boost to the child process. */
3787 Sleep (0);
3788 }
3789 }
3790 #ifdef HAVE_SOCKETS
3791 else if (fd_info[fd].flags & FILE_SOCKET)
3792 {
3793 unsigned long nblock = 0;
3794 /* We always want this to block, so temporarily disable NDELAY. */
3795 if (fd_info[fd].flags & FILE_NDELAY)
3796 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
3797
3798 rc = pfn_recv (SOCK_HANDLE (fd), &cp->chr, sizeof (char), 0);
3799
3800 if (fd_info[fd].flags & FILE_NDELAY)
3801 {
3802 nblock = 1;
3803 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
3804 }
3805 }
3806 #endif
3807
3808 if (rc == sizeof (char))
3809 cp->status = STATUS_READ_SUCCEEDED;
3810 else
3811 cp->status = STATUS_READ_FAILED;
3812
3813 return cp->status;
3814 }
3815
3816 int
3817 _sys_wait_accept (int fd)
3818 {
3819 HANDLE hEv;
3820 child_process * cp;
3821 int rc;
3822
3823 if (fd < 0 || fd >= MAXDESC)
3824 return STATUS_READ_ERROR;
3825
3826 cp = fd_info[fd].cp;
3827
3828 if (cp == NULL || cp->fd != fd || cp->status != STATUS_READ_READY)
3829 return STATUS_READ_ERROR;
3830
3831 cp->status = STATUS_READ_FAILED;
3832
3833 hEv = pfn_WSACreateEvent ();
3834 rc = pfn_WSAEventSelect (SOCK_HANDLE (fd), hEv, FD_ACCEPT);
3835 if (rc != SOCKET_ERROR)
3836 {
3837 rc = WaitForSingleObject (hEv, INFINITE);
3838 pfn_WSAEventSelect (SOCK_HANDLE (fd), NULL, 0);
3839 if (rc == WAIT_OBJECT_0)
3840 cp->status = STATUS_READ_SUCCEEDED;
3841 }
3842 pfn_WSACloseEvent (hEv);
3843
3844 return cp->status;
3845 }
3846
3847 int
3848 sys_read (int fd, char * buffer, unsigned int count)
3849 {
3850 int nchars;
3851 int to_read;
3852 DWORD waiting;
3853 char * orig_buffer = buffer;
3854
3855 if (fd < 0)
3856 {
3857 errno = EBADF;
3858 return -1;
3859 }
3860
3861 if (fd < MAXDESC && fd_info[fd].flags & (FILE_PIPE | FILE_SOCKET))
3862 {
3863 child_process *cp = fd_info[fd].cp;
3864
3865 if ((fd_info[fd].flags & FILE_READ) == 0)
3866 {
3867 errno = EBADF;
3868 return -1;
3869 }
3870
3871 nchars = 0;
3872
3873 /* re-read CR carried over from last read */
3874 if (fd_info[fd].flags & FILE_LAST_CR)
3875 {
3876 if (fd_info[fd].flags & FILE_BINARY) abort ();
3877 *buffer++ = 0x0d;
3878 count--;
3879 nchars++;
3880 fd_info[fd].flags &= ~FILE_LAST_CR;
3881 }
3882
3883 /* presence of a child_process structure means we are operating in
3884 non-blocking mode - otherwise we just call _read directly.
3885 Note that the child_process structure might be missing because
3886 reap_subprocess has been called; in this case the pipe is
3887 already broken, so calling _read on it is okay. */
3888 if (cp)
3889 {
3890 int current_status = cp->status;
3891
3892 switch (current_status)
3893 {
3894 case STATUS_READ_FAILED:
3895 case STATUS_READ_ERROR:
3896 /* report normal EOF if nothing in buffer */
3897 if (nchars <= 0)
3898 fd_info[fd].flags |= FILE_AT_EOF;
3899 return nchars;
3900
3901 case STATUS_READ_READY:
3902 case STATUS_READ_IN_PROGRESS:
3903 DebPrint (("sys_read called when read is in progress\n"));
3904 errno = EWOULDBLOCK;
3905 return -1;
3906
3907 case STATUS_READ_SUCCEEDED:
3908 /* consume read-ahead char */
3909 *buffer++ = cp->chr;
3910 count--;
3911 nchars++;
3912 cp->status = STATUS_READ_ACKNOWLEDGED;
3913 ResetEvent (cp->char_avail);
3914
3915 case STATUS_READ_ACKNOWLEDGED:
3916 break;
3917
3918 default:
3919 DebPrint (("sys_read: bad status %d\n", current_status));
3920 errno = EBADF;
3921 return -1;
3922 }
3923
3924 if (fd_info[fd].flags & FILE_PIPE)
3925 {
3926 PeekNamedPipe ((HANDLE) _get_osfhandle (fd), NULL, 0, NULL, &waiting, NULL);
3927 to_read = min (waiting, (DWORD) count);
3928
3929 if (to_read > 0)
3930 nchars += _read (fd, buffer, to_read);
3931 }
3932 #ifdef HAVE_SOCKETS
3933 else /* FILE_SOCKET */
3934 {
3935 if (winsock_lib == NULL) abort ();
3936
3937 /* do the equivalent of a non-blocking read */
3938 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONREAD, &waiting);
3939 if (waiting == 0 && nchars == 0)
3940 {
3941 h_errno = errno = EWOULDBLOCK;
3942 return -1;
3943 }
3944
3945 if (waiting)
3946 {
3947 /* always use binary mode for sockets */
3948 int res = pfn_recv (SOCK_HANDLE (fd), buffer, count, 0);
3949 if (res == SOCKET_ERROR)
3950 {
3951 DebPrint(("sys_read.recv failed with error %d on socket %ld\n",
3952 pfn_WSAGetLastError (), SOCK_HANDLE (fd)));
3953 set_errno ();
3954 return -1;
3955 }
3956 nchars += res;
3957 }
3958 }
3959 #endif
3960 }
3961 else
3962 {
3963 int nread = _read (fd, buffer, count);
3964 if (nread >= 0)
3965 nchars += nread;
3966 else if (nchars == 0)
3967 nchars = nread;
3968 }
3969
3970 if (nchars <= 0)
3971 fd_info[fd].flags |= FILE_AT_EOF;
3972 /* Perform text mode translation if required. */
3973 else if ((fd_info[fd].flags & FILE_BINARY) == 0)
3974 {
3975 nchars = crlf_to_lf (nchars, orig_buffer);
3976 /* If buffer contains only CR, return that. To be absolutely
3977 sure we should attempt to read the next char, but in
3978 practice a CR to be followed by LF would not appear by
3979 itself in the buffer. */
3980 if (nchars > 1 && orig_buffer[nchars - 1] == 0x0d)
3981 {
3982 fd_info[fd].flags |= FILE_LAST_CR;
3983 nchars--;
3984 }
3985 }
3986 }
3987 else
3988 nchars = _read (fd, buffer, count);
3989
3990 return nchars;
3991 }
3992
3993 /* For now, don't bother with a non-blocking mode */
3994 int
3995 sys_write (int fd, const void * buffer, unsigned int count)
3996 {
3997 int nchars;
3998
3999 if (fd < 0)
4000 {
4001 errno = EBADF;
4002 return -1;
4003 }
4004
4005 if (fd < MAXDESC && fd_info[fd].flags & (FILE_PIPE | FILE_SOCKET))
4006 {
4007 if ((fd_info[fd].flags & FILE_WRITE) == 0)
4008 {
4009 errno = EBADF;
4010 return -1;
4011 }
4012
4013 /* Perform text mode translation if required. */
4014 if ((fd_info[fd].flags & FILE_BINARY) == 0)
4015 {
4016 char * tmpbuf = alloca (count * 2);
4017 unsigned char * src = (void *)buffer;
4018 unsigned char * dst = tmpbuf;
4019 int nbytes = count;
4020
4021 while (1)
4022 {
4023 unsigned char *next;
4024 /* copy next line or remaining bytes */
4025 next = _memccpy (dst, src, '\n', nbytes);
4026 if (next)
4027 {
4028 /* copied one line ending with '\n' */
4029 int copied = next - dst;
4030 nbytes -= copied;
4031 src += copied;
4032 /* insert '\r' before '\n' */
4033 next[-1] = '\r';
4034 next[0] = '\n';
4035 dst = next + 1;
4036 count++;
4037 }
4038 else
4039 /* copied remaining partial line -> now finished */
4040 break;
4041 }
4042 buffer = tmpbuf;
4043 }
4044 }
4045
4046 #ifdef HAVE_SOCKETS
4047 if (fd < MAXDESC && fd_info[fd].flags & FILE_SOCKET)
4048 {
4049 unsigned long nblock = 0;
4050 if (winsock_lib == NULL) abort ();
4051
4052 /* TODO: implement select() properly so non-blocking I/O works. */
4053 /* For now, make sure the write blocks. */
4054 if (fd_info[fd].flags & FILE_NDELAY)
4055 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
4056
4057 nchars = pfn_send (SOCK_HANDLE (fd), buffer, count, 0);
4058
4059 /* Set the socket back to non-blocking if it was before,
4060 for other operations that support it. */
4061 if (fd_info[fd].flags & FILE_NDELAY)
4062 {
4063 nblock = 1;
4064 pfn_ioctlsocket (SOCK_HANDLE (fd), FIONBIO, &nblock);
4065 }
4066
4067 if (nchars == SOCKET_ERROR)
4068 {
4069 DebPrint(("sys_write.send failed with error %d on socket %ld\n",
4070 pfn_WSAGetLastError (), SOCK_HANDLE (fd)));
4071 set_errno ();
4072 }
4073 }
4074 else
4075 #endif
4076 nchars = _write (fd, buffer, count);
4077
4078 return nchars;
4079 }
4080
4081 static void
4082 check_windows_init_file ()
4083 {
4084 extern int noninteractive, inhibit_window_system;
4085
4086 /* A common indication that Emacs is not installed properly is when
4087 it cannot find the Windows installation file. If this file does
4088 not exist in the expected place, tell the user. */
4089
4090 if (!noninteractive && !inhibit_window_system)
4091 {
4092 extern Lisp_Object Vwindow_system, Vload_path, Qfile_exists_p;
4093 Lisp_Object objs[2];
4094 Lisp_Object full_load_path;
4095 Lisp_Object init_file;
4096 int fd;
4097
4098 objs[0] = Vload_path;
4099 objs[1] = decode_env_path (0, (getenv ("EMACSLOADPATH")));
4100 full_load_path = Fappend (2, objs);
4101 init_file = build_string ("term/w32-win");
4102 fd = openp (full_load_path, init_file, Fget_load_suffixes (), NULL, Qnil);
4103 if (fd < 0)
4104 {
4105 Lisp_Object load_path_print = Fprin1_to_string (full_load_path, Qnil);
4106 char *init_file_name = SDATA (init_file);
4107 char *load_path = SDATA (load_path_print);
4108 char *buffer = alloca (1024
4109 + strlen (init_file_name)
4110 + strlen (load_path));
4111
4112 sprintf (buffer,
4113 "The Emacs Windows initialization file \"%s.el\" "
4114 "could not be found in your Emacs installation. "
4115 "Emacs checked the following directories for this file:\n"
4116 "\n%s\n\n"
4117 "When Emacs cannot find this file, it usually means that it "
4118 "was not installed properly, or its distribution file was "
4119 "not unpacked properly.\nSee the README.W32 file in the "
4120 "top-level Emacs directory for more information.",
4121 init_file_name, load_path);
4122 MessageBox (NULL,
4123 buffer,
4124 "Emacs Abort Dialog",
4125 MB_OK | MB_ICONEXCLAMATION | MB_TASKMODAL);
4126 /* Use the low-level Emacs abort. */
4127 #undef abort
4128 abort ();
4129 }
4130 else
4131 {
4132 _close (fd);
4133 }
4134 }
4135 }
4136
4137 void
4138 term_ntproc ()
4139 {
4140 #ifdef HAVE_SOCKETS
4141 /* shutdown the socket interface if necessary */
4142 term_winsock ();
4143 #endif
4144
4145 term_w32select ();
4146 }
4147
4148 void
4149 init_ntproc ()
4150 {
4151 #ifdef HAVE_SOCKETS
4152 /* Initialise the socket interface now if available and requested by
4153 the user by defining PRELOAD_WINSOCK; otherwise loading will be
4154 delayed until open-network-stream is called (w32-has-winsock can
4155 also be used to dynamically load or reload winsock).
4156
4157 Conveniently, init_environment is called before us, so
4158 PRELOAD_WINSOCK can be set in the registry. */
4159
4160 /* Always initialize this correctly. */
4161 winsock_lib = NULL;
4162
4163 if (getenv ("PRELOAD_WINSOCK") != NULL)
4164 init_winsock (TRUE);
4165 #endif
4166
4167 /* Initial preparation for subprocess support: replace our standard
4168 handles with non-inheritable versions. */
4169 {
4170 HANDLE parent;
4171 HANDLE stdin_save = INVALID_HANDLE_VALUE;
4172 HANDLE stdout_save = INVALID_HANDLE_VALUE;
4173 HANDLE stderr_save = INVALID_HANDLE_VALUE;
4174
4175 parent = GetCurrentProcess ();
4176
4177 /* ignore errors when duplicating and closing; typically the
4178 handles will be invalid when running as a gui program. */
4179 DuplicateHandle (parent,
4180 GetStdHandle (STD_INPUT_HANDLE),
4181 parent,
4182 &stdin_save,
4183 0,
4184 FALSE,
4185 DUPLICATE_SAME_ACCESS);
4186
4187 DuplicateHandle (parent,
4188 GetStdHandle (STD_OUTPUT_HANDLE),
4189 parent,
4190 &stdout_save,
4191 0,
4192 FALSE,
4193 DUPLICATE_SAME_ACCESS);
4194
4195 DuplicateHandle (parent,
4196 GetStdHandle (STD_ERROR_HANDLE),
4197 parent,
4198 &stderr_save,
4199 0,
4200 FALSE,
4201 DUPLICATE_SAME_ACCESS);
4202
4203 fclose (stdin);
4204 fclose (stdout);
4205 fclose (stderr);
4206
4207 if (stdin_save != INVALID_HANDLE_VALUE)
4208 _open_osfhandle ((long) stdin_save, O_TEXT);
4209 else
4210 _open ("nul", O_TEXT | O_NOINHERIT | O_RDONLY);
4211 _fdopen (0, "r");
4212
4213 if (stdout_save != INVALID_HANDLE_VALUE)
4214 _open_osfhandle ((long) stdout_save, O_TEXT);
4215 else
4216 _open ("nul", O_TEXT | O_NOINHERIT | O_WRONLY);
4217 _fdopen (1, "w");
4218
4219 if (stderr_save != INVALID_HANDLE_VALUE)
4220 _open_osfhandle ((long) stderr_save, O_TEXT);
4221 else
4222 _open ("nul", O_TEXT | O_NOINHERIT | O_WRONLY);
4223 _fdopen (2, "w");
4224 }
4225
4226 /* unfortunately, atexit depends on implementation of malloc */
4227 /* atexit (term_ntproc); */
4228 signal (SIGABRT, term_ntproc);
4229
4230 /* determine which drives are fixed, for GetCachedVolumeInformation */
4231 {
4232 /* GetDriveType must have trailing backslash. */
4233 char drive[] = "A:\\";
4234
4235 /* Loop over all possible drive letters */
4236 while (*drive <= 'Z')
4237 {
4238 /* Record if this drive letter refers to a fixed drive. */
4239 fixed_drives[DRIVE_INDEX (*drive)] =
4240 (GetDriveType (drive) == DRIVE_FIXED);
4241
4242 (*drive)++;
4243 }
4244
4245 /* Reset the volume info cache. */
4246 volume_cache = NULL;
4247 }
4248
4249 /* Check to see if Emacs has been installed correctly. */
4250 check_windows_init_file ();
4251 }
4252
4253 /*
4254 shutdown_handler ensures that buffers' autosave files are
4255 up to date when the user logs off, or the system shuts down.
4256 */
4257 BOOL WINAPI shutdown_handler(DWORD type)
4258 {
4259 /* Ctrl-C and Ctrl-Break are already suppressed, so don't handle them. */
4260 if (type == CTRL_CLOSE_EVENT /* User closes console window. */
4261 || type == CTRL_LOGOFF_EVENT /* User logs off. */
4262 || type == CTRL_SHUTDOWN_EVENT) /* User shutsdown. */
4263 {
4264 /* Shut down cleanly, making sure autosave files are up to date. */
4265 shut_down_emacs (0, 0, Qnil);
4266 }
4267
4268 /* Allow other handlers to handle this signal. */
4269 return FALSE;
4270 }
4271
4272 /*
4273 globals_of_w32 is used to initialize those global variables that
4274 must always be initialized on startup even when the global variable
4275 initialized is non zero (see the function main in emacs.c).
4276 */
4277 void
4278 globals_of_w32 ()
4279 {
4280 HMODULE kernel32 = GetModuleHandle ("kernel32.dll");
4281
4282 get_process_times_fn = (GetProcessTimes_Proc)
4283 GetProcAddress (kernel32, "GetProcessTimes");
4284
4285 g_b_init_is_windows_9x = 0;
4286 g_b_init_open_process_token = 0;
4287 g_b_init_get_token_information = 0;
4288 g_b_init_lookup_account_sid = 0;
4289 g_b_init_get_sid_identifier_authority = 0;
4290 /* The following sets a handler for shutdown notifications for
4291 console apps. This actually applies to Emacs in both console and
4292 GUI modes, since we had to fool windows into thinking emacs is a
4293 console application to get console mode to work. */
4294 SetConsoleCtrlHandler(shutdown_handler, TRUE);
4295 }
4296
4297 /* end of w32.c */
4298
4299 /* arch-tag: 90442dd3-37be-482b-b272-ac752e3049f1
4300 (do not change this comment) */