1 /* Process support for GNU Emacs on the Microsoft Windows API.
3 Copyright (C) 1992, 1995, 1999-2016 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or (at
10 your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 Drew Bliss Oct 14, 1993
22 Adapted from alarm.c by Tim Fleehart
25 #include <mingw_time.h>
38 /* must include CRT headers *before* config.h */
49 #ifdef HAVE_LANGINFO_CODESET
56 #include "w32common.h"
58 #include "syswait.h" /* for WNOHANG */
59 #include "syssignal.h"
63 #define RVA_TO_PTR(var,section,filedata) \
64 ((void *)((section)->PointerToRawData \
65 + ((DWORD_PTR)(var) - (section)->VirtualAddress) \
66 + (filedata).file_base))
68 extern BOOL g_b_init_compare_string_w
;
69 int sys_select (int, SELECT_TYPE
*, SELECT_TYPE
*, SELECT_TYPE
*,
70 struct timespec
*, void *);
72 /* Signal handlers...SIG_DFL == 0 so this is initialized correctly. */
73 static signal_handler sig_handlers
[NSIG
];
75 static sigset_t sig_mask
;
77 static CRITICAL_SECTION crit_sig
;
79 /* Improve on the CRT 'signal' implementation so that we could record
80 the SIGCHLD handler and fake interval timers. */
82 sys_signal (int sig
, signal_handler handler
)
86 /* SIGCHLD is needed for supporting subprocesses, see sys_kill
87 below. SIGALRM and SIGPROF are used by setitimer. All the
88 others are the only ones supported by the MS runtime. */
89 if (!(sig
== SIGCHLD
|| sig
== SIGSEGV
|| sig
== SIGILL
90 || sig
== SIGFPE
|| sig
== SIGABRT
|| sig
== SIGTERM
91 || sig
== SIGALRM
|| sig
== SIGPROF
))
96 old
= sig_handlers
[sig
];
97 /* SIGABRT is treated specially because w32.c installs term_ntproc
98 as its handler, so we don't want to override that afterwards.
99 Aborting Emacs works specially anyway: either by calling
100 emacs_abort directly or through terminate_due_to_signal, which
101 calls emacs_abort through emacs_raise. */
102 if (!(sig
== SIGABRT
&& old
== term_ntproc
))
104 sig_handlers
[sig
] = handler
;
105 if (!(sig
== SIGCHLD
|| sig
== SIGALRM
|| sig
== SIGPROF
))
106 signal (sig
, handler
);
111 /* Emulate sigaction. */
113 sigaction (int sig
, const struct sigaction
*act
, struct sigaction
*oact
)
115 signal_handler old
= SIG_DFL
;
119 old
= sys_signal (sig
, act
->sa_handler
);
121 old
= sig_handlers
[sig
];
130 oact
->sa_handler
= old
;
132 oact
->sa_mask
= empty_mask
;
137 /* Emulate signal sets and blocking of signals used by timers. */
140 sigemptyset (sigset_t
*set
)
147 sigaddset (sigset_t
*set
, int signo
)
154 if (signo
< 0 || signo
>= NSIG
)
160 *set
|= (1U << signo
);
166 sigfillset (sigset_t
*set
)
179 sigprocmask (int how
, const sigset_t
*set
, sigset_t
*oset
)
181 if (!(how
== SIG_BLOCK
|| how
== SIG_UNBLOCK
|| how
== SIG_SETMASK
))
202 /* FIXME: Catch signals that are blocked and reissue them when
203 they are unblocked. Important for SIGALRM and SIGPROF only. */
212 pthread_sigmask (int how
, const sigset_t
*set
, sigset_t
*oset
)
214 if (sigprocmask (how
, set
, oset
) == -1)
220 sigismember (const sigset_t
*set
, int signo
)
222 if (signo
< 0 || signo
>= NSIG
)
227 if (signo
> sizeof (*set
) * BITS_PER_CHAR
)
230 return (*set
& (1U << signo
)) != 0;
246 setpgid (pid_t pid
, pid_t pgid
)
257 /* Emulations of interval timers.
259 Limitations: only ITIMER_REAL and ITIMER_PROF are supported.
261 Implementation: a separate thread is started for each timer type,
262 the thread calls the appropriate signal handler when the timer
263 expires, after stopping the thread which installed the timer. */
266 volatile ULONGLONG expire
;
267 volatile ULONGLONG reload
;
268 volatile int terminate
;
270 HANDLE caller_thread
;
274 static ULONGLONG ticks_now
;
275 static struct itimer_data real_itimer
, prof_itimer
;
276 static ULONGLONG clocks_min
;
277 /* If non-zero, itimers are disabled. Used during shutdown, when we
278 delete the critical sections used by the timer threads. */
279 static int disable_itimers
;
281 static CRITICAL_SECTION crit_real
, crit_prof
;
283 /* GetThreadTimes is not available on Windows 9X and possibly also on 2K. */
284 typedef BOOL (WINAPI
*GetThreadTimes_Proc
) (
286 LPFILETIME lpCreationTime
,
287 LPFILETIME lpExitTime
,
288 LPFILETIME lpKernelTime
,
289 LPFILETIME lpUserTime
);
291 static GetThreadTimes_Proc s_pfn_Get_Thread_Times
;
293 #define MAX_SINGLE_SLEEP 30
294 #define TIMER_TICKS_PER_SEC 1000
296 /* Return a suitable time value, in 1-ms units, for THREAD, a handle
297 to a thread. If THREAD is NULL or an invalid handle, return the
298 current wall-clock time since January 1, 1601 (UTC). Otherwise,
299 return the sum of kernel and user times used by THREAD since it was
300 created, plus its creation time. */
302 w32_get_timer_time (HANDLE thread
)
305 int use_system_time
= 1;
306 /* The functions below return times in 100-ns units. */
307 const int tscale
= 10 * TIMER_TICKS_PER_SEC
;
309 if (thread
&& thread
!= INVALID_HANDLE_VALUE
310 && s_pfn_Get_Thread_Times
!= NULL
)
312 FILETIME creation_ftime
, exit_ftime
, kernel_ftime
, user_ftime
;
313 ULARGE_INTEGER temp_creation
, temp_kernel
, temp_user
;
315 if (s_pfn_Get_Thread_Times (thread
, &creation_ftime
, &exit_ftime
,
316 &kernel_ftime
, &user_ftime
))
319 temp_creation
.LowPart
= creation_ftime
.dwLowDateTime
;
320 temp_creation
.HighPart
= creation_ftime
.dwHighDateTime
;
321 temp_kernel
.LowPart
= kernel_ftime
.dwLowDateTime
;
322 temp_kernel
.HighPart
= kernel_ftime
.dwHighDateTime
;
323 temp_user
.LowPart
= user_ftime
.dwLowDateTime
;
324 temp_user
.HighPart
= user_ftime
.dwHighDateTime
;
326 temp_creation
.QuadPart
/ tscale
+ temp_kernel
.QuadPart
/ tscale
327 + temp_user
.QuadPart
/ tscale
;
330 DebPrint (("GetThreadTimes failed with error code %lu\n",
336 FILETIME current_ftime
;
339 GetSystemTimeAsFileTime (¤t_ftime
);
341 temp
.LowPart
= current_ftime
.dwLowDateTime
;
342 temp
.HighPart
= current_ftime
.dwHighDateTime
;
344 retval
= temp
.QuadPart
/ tscale
;
350 /* Thread function for a timer thread. */
352 timer_loop (LPVOID arg
)
354 struct itimer_data
*itimer
= (struct itimer_data
*)arg
;
355 int which
= itimer
->type
;
356 int sig
= (which
== ITIMER_REAL
) ? SIGALRM
: SIGPROF
;
357 CRITICAL_SECTION
*crit
= (which
== ITIMER_REAL
) ? &crit_real
: &crit_prof
;
358 const DWORD max_sleep
= MAX_SINGLE_SLEEP
* 1000 / TIMER_TICKS_PER_SEC
;
359 HANDLE hth
= (which
== ITIMER_REAL
) ? NULL
: itimer
->caller_thread
;
364 signal_handler handler
;
365 ULONGLONG now
, expire
, reload
;
367 /* Load new values if requested by setitimer. */
368 EnterCriticalSection (crit
);
369 expire
= itimer
->expire
;
370 reload
= itimer
->reload
;
371 LeaveCriticalSection (crit
);
372 if (itimer
->terminate
)
382 if (expire
> (now
= w32_get_timer_time (hth
)))
383 sleep_time
= expire
- now
;
386 /* Don't sleep too long at a time, to be able to see the
387 termination flag without too long a delay. */
388 while (sleep_time
> max_sleep
)
390 if (itimer
->terminate
)
393 EnterCriticalSection (crit
);
394 expire
= itimer
->expire
;
395 LeaveCriticalSection (crit
);
397 (expire
> (now
= w32_get_timer_time (hth
))) ? expire
- now
: 0;
399 if (itimer
->terminate
)
403 Sleep (sleep_time
* 1000 / TIMER_TICKS_PER_SEC
);
404 /* Always sleep past the expiration time, to make sure we
405 never call the handler _before_ the expiration time,
406 always slightly after it. Sleep(5) makes sure we don't
407 hog the CPU by calling 'w32_get_timer_time' with high
408 frequency, and also let other threads work. */
409 while (w32_get_timer_time (hth
) < expire
)
413 EnterCriticalSection (crit
);
414 expire
= itimer
->expire
;
415 LeaveCriticalSection (crit
);
420 handler
= sig_handlers
[sig
];
421 if (!(handler
== SIG_DFL
|| handler
== SIG_IGN
|| handler
== SIG_ERR
)
422 /* FIXME: Don't ignore masked signals. Instead, record that
423 they happened and reissue them when the signal is
425 && !sigismember (&sig_mask
, sig
)
426 /* Simulate masking of SIGALRM and SIGPROF when processing
428 && !fatal_error_in_progress
429 && itimer
->caller_thread
)
431 /* Simulate a signal delivered to the thread which installed
432 the timer, by suspending that thread while the handler
434 HANDLE th
= itimer
->caller_thread
;
435 DWORD result
= SuspendThread (th
);
437 if (result
== (DWORD
)-1)
444 /* Update expiration time and loop. */
445 EnterCriticalSection (crit
);
446 expire
= itimer
->expire
;
449 LeaveCriticalSection (crit
);
452 reload
= itimer
->reload
;
455 now
= w32_get_timer_time (hth
);
458 ULONGLONG lag
= now
- expire
;
460 /* If we missed some opportunities (presumably while
461 sleeping or while the signal handler ran), skip
464 expire
= now
- (lag
% reload
);
470 expire
= 0; /* become idle */
471 itimer
->expire
= expire
;
472 LeaveCriticalSection (crit
);
478 stop_timer_thread (int which
)
480 struct itimer_data
*itimer
=
481 (which
== ITIMER_REAL
) ? &real_itimer
: &prof_itimer
;
483 DWORD err
, exit_code
= 255;
486 /* Signal the thread that it should terminate. */
487 itimer
->terminate
= 1;
489 if (itimer
->timer_thread
== NULL
)
492 /* Wait for the timer thread to terminate voluntarily, then kill it
493 if it doesn't. This loop waits twice more than the maximum
494 amount of time a timer thread sleeps, see above. */
495 for (i
= 0; i
< MAX_SINGLE_SLEEP
/ 5; i
++)
497 if (!((status
= GetExitCodeThread (itimer
->timer_thread
, &exit_code
))
498 && exit_code
== STILL_ACTIVE
))
502 if ((status
== FALSE
&& (err
= GetLastError ()) == ERROR_INVALID_HANDLE
)
503 || exit_code
== STILL_ACTIVE
)
505 if (!(status
== FALSE
&& err
== ERROR_INVALID_HANDLE
))
506 TerminateThread (itimer
->timer_thread
, 0);
510 CloseHandle (itimer
->timer_thread
);
511 itimer
->timer_thread
= NULL
;
512 if (itimer
->caller_thread
)
514 CloseHandle (itimer
->caller_thread
);
515 itimer
->caller_thread
= NULL
;
519 /* This is called at shutdown time from term_ntproc. */
523 if (real_itimer
.timer_thread
)
524 stop_timer_thread (ITIMER_REAL
);
525 if (prof_itimer
.timer_thread
)
526 stop_timer_thread (ITIMER_PROF
);
528 /* We are going to delete the critical sections, so timers cannot
532 DeleteCriticalSection (&crit_real
);
533 DeleteCriticalSection (&crit_prof
);
534 DeleteCriticalSection (&crit_sig
);
537 /* This is called at initialization time from init_ntproc. */
541 /* GetThreadTimes is not available on all versions of Windows, so
542 need to probe for its availability dynamically, and call it
543 through a pointer. */
544 s_pfn_Get_Thread_Times
= NULL
; /* in case dumped Emacs comes with a value */
545 if (os_subtype
!= OS_9X
)
546 s_pfn_Get_Thread_Times
=
547 (GetThreadTimes_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
550 /* Make sure we start with zeroed out itimer structures, since
551 dumping may have left there traces of threads long dead. */
552 memset (&real_itimer
, 0, sizeof real_itimer
);
553 memset (&prof_itimer
, 0, sizeof prof_itimer
);
555 InitializeCriticalSection (&crit_real
);
556 InitializeCriticalSection (&crit_prof
);
557 InitializeCriticalSection (&crit_sig
);
563 start_timer_thread (int which
)
565 DWORD exit_code
, tid
;
567 struct itimer_data
*itimer
=
568 (which
== ITIMER_REAL
) ? &real_itimer
: &prof_itimer
;
570 if (itimer
->timer_thread
571 && GetExitCodeThread (itimer
->timer_thread
, &exit_code
)
572 && exit_code
== STILL_ACTIVE
)
575 /* Clean up after possibly exited thread. */
576 if (itimer
->timer_thread
)
578 CloseHandle (itimer
->timer_thread
);
579 itimer
->timer_thread
= NULL
;
581 if (itimer
->caller_thread
)
583 CloseHandle (itimer
->caller_thread
);
584 itimer
->caller_thread
= NULL
;
587 /* Start a new thread. */
588 if (!DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
589 GetCurrentProcess (), &th
, 0, FALSE
,
590 DUPLICATE_SAME_ACCESS
))
595 itimer
->terminate
= 0;
596 itimer
->type
= which
;
597 itimer
->caller_thread
= th
;
598 /* Request that no more than 64KB of stack be reserved for this
599 thread, to avoid reserving too much memory, which would get in
600 the way of threads we start to wait for subprocesses. See also
602 itimer
->timer_thread
= CreateThread (NULL
, 64 * 1024, timer_loop
,
603 (void *)itimer
, 0x00010000, &tid
);
605 if (!itimer
->timer_thread
)
607 CloseHandle (itimer
->caller_thread
);
608 itimer
->caller_thread
= NULL
;
613 /* This is needed to make sure that the timer thread running for
614 profiling gets CPU as soon as the Sleep call terminates. */
615 if (which
== ITIMER_PROF
)
616 SetThreadPriority (itimer
->timer_thread
, THREAD_PRIORITY_TIME_CRITICAL
);
621 /* Most of the code of getitimer and setitimer (but not of their
622 subroutines) was shamelessly stolen from itimer.c in the DJGPP
623 library, see www.delorie.com/djgpp. */
625 getitimer (int which
, struct itimerval
*value
)
627 volatile ULONGLONG
*t_expire
;
628 volatile ULONGLONG
*t_reload
;
629 ULONGLONG expire
, reload
;
631 CRITICAL_SECTION
*crit
;
632 struct itimer_data
*itimer
;
643 if (which
!= ITIMER_REAL
&& which
!= ITIMER_PROF
)
649 itimer
= (which
== ITIMER_REAL
) ? &real_itimer
: &prof_itimer
;
651 ticks_now
= w32_get_timer_time ((which
== ITIMER_REAL
)
653 : GetCurrentThread ());
655 t_expire
= &itimer
->expire
;
656 t_reload
= &itimer
->reload
;
657 crit
= (which
== ITIMER_REAL
) ? &crit_real
: &crit_prof
;
659 EnterCriticalSection (crit
);
662 LeaveCriticalSection (crit
);
667 value
->it_value
.tv_sec
= expire
/ TIMER_TICKS_PER_SEC
;
669 (expire
% TIMER_TICKS_PER_SEC
) * (__int64
)1000000 / TIMER_TICKS_PER_SEC
;
670 value
->it_value
.tv_usec
= usecs
;
671 value
->it_interval
.tv_sec
= reload
/ TIMER_TICKS_PER_SEC
;
673 (reload
% TIMER_TICKS_PER_SEC
) * (__int64
)1000000 / TIMER_TICKS_PER_SEC
;
674 value
->it_interval
.tv_usec
= usecs
;
680 setitimer(int which
, struct itimerval
*value
, struct itimerval
*ovalue
)
682 volatile ULONGLONG
*t_expire
, *t_reload
;
683 ULONGLONG expire
, reload
, expire_old
, reload_old
;
685 CRITICAL_SECTION
*crit
;
686 struct itimerval tem
, *ptem
;
691 /* Posix systems expect timer values smaller than the resolution of
692 the system clock be rounded up to the clock resolution. First
693 time we are called, measure the clock tick resolution. */
698 for (t1
= w32_get_timer_time (NULL
);
699 (t2
= w32_get_timer_time (NULL
)) == t1
; )
701 clocks_min
= t2
- t1
;
709 if (getitimer (which
, ptem
)) /* also sets ticks_now */
710 return -1; /* errno already set */
713 (which
== ITIMER_REAL
) ? &real_itimer
.expire
: &prof_itimer
.expire
;
715 (which
== ITIMER_REAL
) ? &real_itimer
.reload
: &prof_itimer
.reload
;
717 crit
= (which
== ITIMER_REAL
) ? &crit_real
: &crit_prof
;
720 || (value
->it_value
.tv_sec
== 0 && value
->it_value
.tv_usec
== 0))
722 EnterCriticalSection (crit
);
723 /* Disable the timer. */
726 LeaveCriticalSection (crit
);
730 reload
= value
->it_interval
.tv_sec
* TIMER_TICKS_PER_SEC
;
732 usecs
= value
->it_interval
.tv_usec
;
733 if (value
->it_interval
.tv_sec
== 0
734 && usecs
&& usecs
* TIMER_TICKS_PER_SEC
< clocks_min
* 1000000)
738 usecs
*= TIMER_TICKS_PER_SEC
;
739 reload
+= usecs
/ 1000000;
742 expire
= value
->it_value
.tv_sec
* TIMER_TICKS_PER_SEC
;
743 usecs
= value
->it_value
.tv_usec
;
744 if (value
->it_value
.tv_sec
== 0
745 && usecs
* TIMER_TICKS_PER_SEC
< clocks_min
* 1000000)
749 usecs
*= TIMER_TICKS_PER_SEC
;
750 expire
+= usecs
/ 1000000;
755 EnterCriticalSection (crit
);
756 expire_old
= *t_expire
;
757 reload_old
= *t_reload
;
758 if (!(expire
== expire_old
&& reload
== reload_old
))
763 LeaveCriticalSection (crit
);
765 return start_timer_thread (which
);
771 #ifdef HAVE_SETITIMER
772 struct itimerval new_values
, old_values
;
774 new_values
.it_value
.tv_sec
= seconds
;
775 new_values
.it_value
.tv_usec
= 0;
776 new_values
.it_interval
.tv_sec
= new_values
.it_interval
.tv_usec
= 0;
778 if (setitimer (ITIMER_REAL
, &new_values
, &old_values
) < 0)
780 return old_values
.it_value
.tv_sec
;
788 /* Here's an overview of how support for subprocesses and
789 network/serial streams is implemented on MS-Windows.
791 The management of both subprocesses and network/serial streams
792 circles around the child_procs[] array, which can record up to the
793 grand total of MAX_CHILDREN (= 32) of these. (The reasons for the
794 32 limitation will become clear below.) Each member of
795 child_procs[] is a child_process structure, defined on w32.h.
797 A related data structure is the fd_info[] array, which holds twice
798 as many members, 64, and records the information about file
799 descriptors used for communicating with subprocesses and
800 network/serial devices. Each member of the array is the filedesc
801 structure, which records the Windows handle for communications,
802 such as the read end of the pipe to a subprocess, a socket handle,
805 Both these arrays reference each other: there's a member of
806 child_process structure that records the corresponding file
807 descriptor, and there's a member of filedesc structure that holds a
808 pointer to the corresponding child_process.
810 Whenever Emacs starts a subprocess or opens a network/serial
811 stream, the function new_child is called to prepare a new
812 child_process structure. new_child looks for the first vacant slot
813 in the child_procs[] array, initializes it, and starts a "reader
814 thread" that will watch the output of the subprocess/stream and its
815 status. (If no vacant slot can be found, new_child returns a
816 failure indication to its caller, and the higher-level Emacs
817 primitive that called it will then fail with EMFILE or EAGAIN.)
819 The reader thread started by new_child communicates with the main
820 (a.k.a. "Lisp") thread via two event objects and a status, all of
821 them recorded by the members of the child_process structure in
822 child_procs[]. The event objects serve as semaphores between the
823 reader thread and the 'pselect' emulation in sys_select, as follows:
825 . Initially, the reader thread is waiting for the char_consumed
826 event to become signaled by sys_select, which is an indication
827 for the reader thread to go ahead and try reading more stuff
828 from the subprocess/stream.
830 . The reader thread then attempts to read by calling a
831 blocking-read function. When the read call returns, either
832 successfully or with some failure indication, the reader thread
833 updates the status of the read accordingly, and signals the 2nd
834 event object, char_avail, on whose handle sys_select is
835 waiting. This tells sys_select that the file descriptor
836 allocated for the subprocess or the the stream is ready to be
839 When the subprocess exits or the network/serial stream is closed,
840 the reader thread sets the status accordingly and exits. It also
841 exits when the main thread sets the status to STATUS_READ_ERROR
842 and/or the char_avail and char_consumed event handles become NULL;
843 this is how delete_child, called by Emacs when a subprocess or a
844 stream is terminated, terminates the reader thread as part of
845 deleting the child_process object.
847 The sys_select function emulates the Posix 'pselect' function; it
848 is needed because the Windows 'select' function supports only
849 network sockets, while Emacs expects 'pselect' to work for any file
850 descriptor, including pipes and serial streams.
852 When sys_select is called, it uses the information in fd_info[]
853 array to convert the file descriptors which it was asked to watch
854 into Windows handles. In general, the handle to watch is the
855 handle of the char_avail event of the child_process structure that
856 corresponds to the file descriptor. In addition, for subprocesses,
857 sys_select watches one more handle: the handle for the subprocess,
858 so that it could emulate the SIGCHLD signal when the subprocess
861 If file descriptor zero (stdin) doesn't have its bit set in the
862 'rfds' argument to sys_select, the function always watches for
863 keyboard interrupts, to be able to interrupt the wait and return
864 when the user presses C-g.
866 Having collected the handles to watch, sys_select calls
867 WaitForMultipleObjects to wait for any one of them to become
868 signaled. Since WaitForMultipleObjects can only watch up to 64
869 handles, Emacs on Windows is limited to maximum 32 child_process
870 objects (since a subprocess consumes 2 handles to be watched, see
873 When any of the handles become signaled, sys_select does whatever
874 is appropriate for the corresponding child_process object:
876 . If it's a handle to the char_avail event, sys_select marks the
877 corresponding bit in 'rfds', and Emacs will then read from that
880 . If it's a handle to the process, sys_select calls the SIGCHLD
881 handler, to inform Emacs of the fact that the subprocess
884 The waitpid emulation works very similar to sys_select, except that
885 it only watches handles of subprocesses, and doesn't synchronize
886 with the reader thread.
888 Because socket descriptors on Windows are handles, while Emacs
889 expects them to be file descriptors, all low-level I/O functions,
890 such as 'read' and 'write', and all socket operations, like
891 'connect', 'recvfrom', 'accept', etc., are redirected to the
892 corresponding 'sys_*' functions, which must convert a file
893 descriptor to a handle using the fd_info[] array, and then invoke
894 the corresponding Windows API on the handle. Most of these
895 redirected 'sys_*' functions are implemented on w32.c.
897 When the file descriptor was produced by functions such as 'open',
898 the corresponding handle is obtained by calling _get_osfhandle. To
899 produce a file descriptor for a socket handle, which has no file
900 descriptor as far as Windows is concerned, the function
901 socket_to_fd opens the null device; the resulting file descriptor
902 will never be used directly in any I/O API, but serves as an index
903 into the fd_info[] array, where the socket handle is stored. The
904 SOCK_HANDLE macro retrieves the handle when given the file
907 The function sys_kill emulates the Posix 'kill' functionality to
908 terminate other processes. It does that by attaching to the
909 foreground window of the process and sending a Ctrl-C or Ctrl-BREAK
910 signal to the process; if that doesn't work, then it calls
911 TerminateProcess to forcibly terminate the process. Note that this
912 only terminates the immediate process whose PID was passed to
913 sys_kill; it doesn't terminate the child processes of that process.
914 This means, for example, that an Emacs subprocess run through a
915 shell might not be killed, because sys_kill will only terminate the
916 shell. (In practice, however, such problems are very rare.) */
918 /* Defined in <process.h> which conflicts with the local copy */
921 /* Child process management list. */
922 int child_proc_count
= 0;
923 child_process child_procs
[ MAX_CHILDREN
];
925 static DWORD WINAPI
reader_thread (void *arg
);
927 /* Find an unused process slot. */
934 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
935 if (!CHILD_ACTIVE (cp
) && cp
->procinfo
.hProcess
== NULL
)
937 if (child_proc_count
== MAX_CHILDREN
)
940 child_process
*dead_cp
= NULL
;
942 DebPrint (("new_child: No vacant slots, looking for dead processes\n"));
943 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
944 if (!CHILD_ACTIVE (cp
) && cp
->procinfo
.hProcess
)
948 if (!GetExitCodeProcess (cp
->procinfo
.hProcess
, &status
))
950 DebPrint (("new_child.GetExitCodeProcess: error %lu for PID %lu\n",
951 GetLastError (), cp
->procinfo
.dwProcessId
));
952 status
= STILL_ACTIVE
;
954 if (status
!= STILL_ACTIVE
955 || WaitForSingleObject (cp
->procinfo
.hProcess
, 0) == WAIT_OBJECT_0
)
957 DebPrint (("new_child: Freeing slot of dead process %d, fd %d\n",
958 cp
->procinfo
.dwProcessId
, cp
->fd
));
959 CloseHandle (cp
->procinfo
.hProcess
);
960 cp
->procinfo
.hProcess
= NULL
;
961 CloseHandle (cp
->procinfo
.hThread
);
962 cp
->procinfo
.hThread
= NULL
;
963 /* Free up to 2 dead slots at a time, so that if we
964 have a lot of them, they will eventually all be
965 freed when the tornado ends. */
979 if (child_proc_count
== MAX_CHILDREN
)
981 cp
= &child_procs
[child_proc_count
++];
984 /* Last opportunity to avoid leaking handles before we forget them
986 if (cp
->procinfo
.hProcess
)
987 CloseHandle (cp
->procinfo
.hProcess
);
988 if (cp
->procinfo
.hThread
)
989 CloseHandle (cp
->procinfo
.hThread
);
990 memset (cp
, 0, sizeof (*cp
));
993 cp
->procinfo
.hProcess
= NULL
;
994 cp
->status
= STATUS_READ_ERROR
;
996 /* use manual reset event so that select() will function properly */
997 cp
->char_avail
= CreateEvent (NULL
, TRUE
, FALSE
, NULL
);
1000 cp
->char_consumed
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
1001 if (cp
->char_consumed
)
1003 /* The 0x00010000 flag is STACK_SIZE_PARAM_IS_A_RESERVATION.
1004 It means that the 64K stack we are requesting in the 2nd
1005 argument is how much memory should be reserved for the
1006 stack. If we don't use this flag, the memory requested
1007 by the 2nd argument is the amount actually _committed_,
1008 but Windows reserves 8MB of memory for each thread's
1009 stack. (The 8MB figure comes from the -stack
1010 command-line argument we pass to the linker when building
1011 Emacs, but that's because we need a large stack for
1012 Emacs's main thread.) Since we request 2GB of reserved
1013 memory at startup (see w32heap.c), which is close to the
1014 maximum memory available for a 32-bit process on Windows,
1015 the 8MB reservation for each thread causes failures in
1016 starting subprocesses, because we create a thread running
1017 reader_thread for each subprocess. As 8MB of stack is
1018 way too much for reader_thread, forcing Windows to
1019 reserve less wins the day. */
1020 cp
->thrd
= CreateThread (NULL
, 64 * 1024, reader_thread
, cp
,
1031 delete_child (child_process
*cp
)
1035 /* Should not be deleting a child that is still needed. */
1036 for (i
= 0; i
< MAXDESC
; i
++)
1037 if (fd_info
[i
].cp
== cp
)
1040 if (!CHILD_ACTIVE (cp
) && cp
->procinfo
.hProcess
== NULL
)
1043 /* reap thread if necessary */
1048 if (GetExitCodeThread (cp
->thrd
, &rc
) && rc
== STILL_ACTIVE
)
1050 /* let the thread exit cleanly if possible */
1051 cp
->status
= STATUS_READ_ERROR
;
1052 SetEvent (cp
->char_consumed
);
1054 /* We used to forcibly terminate the thread here, but it
1055 is normally unnecessary, and in abnormal cases, the worst that
1056 will happen is we have an extra idle thread hanging around
1057 waiting for the zombie process. */
1058 if (WaitForSingleObject (cp
->thrd
, 1000) != WAIT_OBJECT_0
)
1060 DebPrint (("delete_child.WaitForSingleObject (thread) failed "
1061 "with %lu for fd %ld\n", GetLastError (), cp
->fd
));
1062 TerminateThread (cp
->thrd
, 0);
1066 CloseHandle (cp
->thrd
);
1071 CloseHandle (cp
->char_avail
);
1072 cp
->char_avail
= NULL
;
1074 if (cp
->char_consumed
)
1076 CloseHandle (cp
->char_consumed
);
1077 cp
->char_consumed
= NULL
;
1080 /* update child_proc_count (highest numbered slot in use plus one) */
1081 if (cp
== child_procs
+ child_proc_count
- 1)
1083 for (i
= child_proc_count
-1; i
>= 0; i
--)
1084 if (CHILD_ACTIVE (&child_procs
[i
])
1085 || child_procs
[i
].procinfo
.hProcess
!= NULL
)
1087 child_proc_count
= i
+ 1;
1092 child_proc_count
= 0;
1095 /* Find a child by pid. */
1096 static child_process
*
1097 find_child_pid (DWORD pid
)
1101 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
1102 if ((CHILD_ACTIVE (cp
) || cp
->procinfo
.hProcess
!= NULL
)
1109 release_listen_threads (void)
1113 for (i
= child_proc_count
- 1; i
>= 0; i
--)
1115 if (CHILD_ACTIVE (&child_procs
[i
])
1116 && (fd_info
[child_procs
[i
].fd
].flags
& FILE_LISTEN
))
1117 child_procs
[i
].status
= STATUS_READ_ERROR
;
1121 /* Thread proc for child process and socket reader threads. Each thread
1122 is normally blocked until woken by select() to check for input by
1123 reading one char. When the read completes, char_avail is signaled
1124 to wake up the select emulator and the thread blocks itself again. */
1126 reader_thread (void *arg
)
1131 cp
= (child_process
*)arg
;
1133 /* We have to wait for the go-ahead before we can start */
1135 || WaitForSingleObject (cp
->char_consumed
, INFINITE
) != WAIT_OBJECT_0
1143 if (cp
->fd
>= 0 && (fd_info
[cp
->fd
].flags
& FILE_CONNECT
) != 0)
1144 rc
= _sys_wait_connect (cp
->fd
);
1145 else if (cp
->fd
>= 0 && (fd_info
[cp
->fd
].flags
& FILE_LISTEN
) != 0)
1146 rc
= _sys_wait_accept (cp
->fd
);
1148 rc
= _sys_read_ahead (cp
->fd
);
1150 /* Don't bother waiting for the event if we already have been
1151 told to exit by delete_child. */
1152 if (cp
->status
== STATUS_READ_ERROR
|| !cp
->char_avail
)
1155 /* The name char_avail is a misnomer - it really just means the
1156 read-ahead has completed, whether successfully or not. */
1157 if (!SetEvent (cp
->char_avail
))
1159 DebPrint (("reader_thread.SetEvent(0x%x) failed with %lu for fd %ld (PID %d)\n",
1160 (DWORD_PTR
)cp
->char_avail
, GetLastError (),
1165 if (rc
== STATUS_READ_ERROR
|| rc
== STATUS_CONNECT_FAILED
)
1168 /* If the read died, the child has died so let the thread die */
1169 if (rc
== STATUS_READ_FAILED
)
1172 /* Don't bother waiting for the acknowledge if we already have
1173 been told to exit by delete_child. */
1174 if (cp
->status
== STATUS_READ_ERROR
|| !cp
->char_consumed
)
1177 /* Wait until our input is acknowledged before reading again */
1178 if (WaitForSingleObject (cp
->char_consumed
, INFINITE
) != WAIT_OBJECT_0
)
1180 DebPrint (("reader_thread.WaitForSingleObject failed with "
1181 "%lu for fd %ld\n", GetLastError (), cp
->fd
));
1184 /* delete_child sets status to STATUS_READ_ERROR when it wants
1186 if (cp
->status
== STATUS_READ_ERROR
)
1192 /* To avoid Emacs changing directory, we just record here the
1193 directory the new process should start in. This is set just before
1194 calling sys_spawnve, and is not generally valid at any other time.
1195 Note that this directory's name is UTF-8 encoded. */
1196 static char * process_dir
;
1199 create_child (char *exe
, char *cmdline
, char *env
, int is_gui_app
,
1200 pid_t
* pPid
, child_process
*cp
)
1203 SECURITY_ATTRIBUTES sec_attrs
;
1205 SECURITY_DESCRIPTOR sec_desc
;
1208 char dir
[ MAX_PATH
];
1212 if (cp
== NULL
) emacs_abort ();
1214 memset (&start
, 0, sizeof (start
));
1215 start
.cb
= sizeof (start
);
1218 if (NILP (Vw32_start_process_show_window
) && !is_gui_app
)
1219 start
.dwFlags
= STARTF_USESTDHANDLES
| STARTF_USESHOWWINDOW
;
1221 start
.dwFlags
= STARTF_USESTDHANDLES
;
1222 start
.wShowWindow
= SW_HIDE
;
1224 start
.hStdInput
= GetStdHandle (STD_INPUT_HANDLE
);
1225 start
.hStdOutput
= GetStdHandle (STD_OUTPUT_HANDLE
);
1226 start
.hStdError
= GetStdHandle (STD_ERROR_HANDLE
);
1227 #endif /* HAVE_NTGUI */
1230 /* Explicitly specify no security */
1231 if (!InitializeSecurityDescriptor (&sec_desc
, SECURITY_DESCRIPTOR_REVISION
))
1233 if (!SetSecurityDescriptorDacl (&sec_desc
, TRUE
, NULL
, FALSE
))
1236 sec_attrs
.nLength
= sizeof (sec_attrs
);
1237 sec_attrs
.lpSecurityDescriptor
= NULL
/* &sec_desc */;
1238 sec_attrs
.bInheritHandle
= FALSE
;
1240 filename_to_ansi (process_dir
, dir
);
1241 /* Can't use unixtodos_filename here, since that needs its file name
1242 argument encoded in UTF-8. OTOH, process_dir, which _is_ in
1243 UTF-8, points, to the directory computed by our caller, and we
1244 don't want to modify that, either. */
1245 for (p
= dir
; *p
; p
= CharNextA (p
))
1249 /* CreateProcess handles batch files as exe specially. This special
1250 handling fails when both the batch file and arguments are quoted.
1251 We pass NULL as exe to avoid the special handling. */
1252 if (exe
&& cmdline
[0] == '"' &&
1253 (ext
= strrchr (exe
, '.')) &&
1254 (xstrcasecmp (ext
, ".bat") == 0
1255 || xstrcasecmp (ext
, ".cmd") == 0))
1258 flags
= (!NILP (Vw32_start_process_share_console
)
1259 ? CREATE_NEW_PROCESS_GROUP
1260 : CREATE_NEW_CONSOLE
);
1261 if (NILP (Vw32_start_process_inherit_error_mode
))
1262 flags
|= CREATE_DEFAULT_ERROR_MODE
;
1263 if (!CreateProcessA (exe
, cmdline
, &sec_attrs
, NULL
, TRUE
,
1264 flags
, env
, dir
, &start
, &cp
->procinfo
))
1267 cp
->pid
= (int) cp
->procinfo
.dwProcessId
;
1269 /* Hack for Windows 95, which assigns large (ie negative) pids */
1278 DebPrint (("create_child.CreateProcess failed: %ld\n", GetLastError ()););
1282 /* create_child doesn't know what emacs's file handle will be for waiting
1283 on output from the child, so we need to make this additional call
1284 to register the handle with the process
1285 This way the select emulator knows how to match file handles with
1286 entries in child_procs. */
1288 register_child (pid_t pid
, int fd
)
1292 cp
= find_child_pid ((DWORD
)pid
);
1295 DebPrint (("register_child unable to find pid %lu\n", pid
));
1300 DebPrint (("register_child registered fd %d with pid %lu\n", fd
, pid
));
1305 /* thread is initially blocked until select is called; set status so
1306 that select will release thread */
1307 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
1309 /* attach child_process to fd_info */
1310 if (fd_info
[fd
].cp
!= NULL
)
1312 DebPrint (("register_child: fd_info[%d] apparently in use!\n", fd
));
1316 fd_info
[fd
].cp
= cp
;
1319 /* Called from waitpid when a process exits. */
1321 reap_subprocess (child_process
*cp
)
1323 if (cp
->procinfo
.hProcess
)
1325 /* Reap the process */
1327 /* Process should have already died before we are called. */
1328 if (WaitForSingleObject (cp
->procinfo
.hProcess
, 0) != WAIT_OBJECT_0
)
1329 DebPrint (("reap_subprocess: child for fd %d has not died yet!", cp
->fd
));
1331 CloseHandle (cp
->procinfo
.hProcess
);
1332 cp
->procinfo
.hProcess
= NULL
;
1333 CloseHandle (cp
->procinfo
.hThread
);
1334 cp
->procinfo
.hThread
= NULL
;
1337 /* If cp->fd was not closed yet, we might be still reading the
1338 process output, so don't free its resources just yet. The call
1339 to delete_child on behalf of this subprocess will be made by
1340 sys_read when the subprocess output is fully read. */
1345 /* Wait for a child process specified by PID, or for any of our
1346 existing child processes (if PID is nonpositive) to die. When it
1347 does, close its handle. Return the pid of the process that died
1348 and fill in STATUS if non-NULL. */
1351 waitpid (pid_t pid
, int *status
, int options
)
1353 DWORD active
, retval
;
1355 child_process
*cp
, *cps
[MAX_CHILDREN
];
1356 HANDLE wait_hnd
[MAX_CHILDREN
];
1358 int dont_wait
= (options
& WNOHANG
) != 0;
1361 /* According to Posix:
1363 PID = -1 means status is requested for any child process.
1365 PID > 0 means status is requested for a single child process
1368 PID = 0 means status is requested for any child process whose
1369 process group ID is equal to that of the calling process. But
1370 since Windows has only a limited support for process groups (only
1371 for console processes and only for the purposes of passing
1372 Ctrl-BREAK signal to them), and since we have no documented way
1373 of determining whether a given process belongs to our group, we
1376 PID < -1 means status is requested for any child process whose
1377 process group ID is equal to the absolute value of PID. Again,
1378 since we don't support process groups, we treat that as -1. */
1383 /* We are requested to wait for a specific child. */
1384 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
1386 /* Some child_procs might be sockets; ignore them. Also
1387 ignore subprocesses whose output is not yet completely
1389 if (CHILD_ACTIVE (cp
)
1390 && cp
->procinfo
.hProcess
1399 if (cp
->fd
< 0 || (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) != 0)
1401 wait_hnd
[nh
] = cp
->procinfo
.hProcess
;
1407 /* PID specifies our subprocess, but its status is not
1414 /* No such child process, or nothing to wait for, so fail. */
1421 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
1423 if (CHILD_ACTIVE (cp
)
1424 && cp
->procinfo
.hProcess
1425 && (cp
->fd
< 0 || (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) != 0))
1427 wait_hnd
[nh
] = cp
->procinfo
.hProcess
;
1434 /* Nothing to wait on, so fail. */
1443 timeout_ms
= 1000; /* check for quit about once a second. */
1448 active
= WaitForMultipleObjects (nh
, wait_hnd
, FALSE
, timeout_ms
);
1449 } while (active
== WAIT_TIMEOUT
&& !dont_wait
);
1451 if (active
== WAIT_FAILED
)
1456 else if (active
== WAIT_TIMEOUT
&& dont_wait
)
1458 /* PID specifies our subprocess, but it didn't exit yet, so its
1459 status is not yet available. */
1461 DebPrint (("Wait: PID %d not reap yet\n", cp
->pid
));
1465 else if (active
>= WAIT_OBJECT_0
1466 && active
< WAIT_OBJECT_0
+MAXIMUM_WAIT_OBJECTS
)
1468 active
-= WAIT_OBJECT_0
;
1470 else if (active
>= WAIT_ABANDONED_0
1471 && active
< WAIT_ABANDONED_0
+MAXIMUM_WAIT_OBJECTS
)
1473 active
-= WAIT_ABANDONED_0
;
1478 if (!GetExitCodeProcess (wait_hnd
[active
], &retval
))
1480 DebPrint (("Wait.GetExitCodeProcess failed with %lu\n",
1484 if (retval
== STILL_ACTIVE
)
1486 /* Should never happen. */
1487 DebPrint (("Wait.WaitForMultipleObjects returned an active process\n"));
1488 if (pid
> 0 && dont_wait
)
1494 /* Massage the exit code from the process to match the format expected
1495 by the WIFSTOPPED et al macros in syswait.h. Only WIFSIGNALED and
1496 WIFEXITED are supported; WIFSTOPPED doesn't make sense under NT. */
1498 if (retval
== STATUS_CONTROL_C_EXIT
)
1503 if (pid
> 0 && active
!= 0)
1508 DebPrint (("Wait signaled with process pid %d\n", cp
->pid
));
1513 reap_subprocess (cp
);
1518 /* Old versions of w32api headers don't have separate 32-bit and
1519 64-bit defines, but the one they have matches the 32-bit variety. */
1520 #ifndef IMAGE_NT_OPTIONAL_HDR32_MAGIC
1521 # define IMAGE_NT_OPTIONAL_HDR32_MAGIC IMAGE_NT_OPTIONAL_HDR_MAGIC
1522 # define IMAGE_OPTIONAL_HEADER32 IMAGE_OPTIONAL_HEADER
1525 /* Implementation note: This function works with file names encoded in
1526 the current ANSI codepage. */
1528 w32_executable_type (char * filename
,
1530 int * is_cygnus_app
,
1534 file_data executable
;
1538 /* Default values in case we can't tell for sure. */
1539 *is_dos_app
= FALSE
;
1540 *is_cygnus_app
= FALSE
;
1541 *is_msys_app
= FALSE
;
1542 *is_gui_app
= FALSE
;
1544 if (!open_input_file (&executable
, filename
))
1547 p
= strrchr (filename
, '.');
1549 /* We can only identify DOS .com programs from the extension. */
1550 if (p
&& xstrcasecmp (p
, ".com") == 0)
1552 else if (p
&& (xstrcasecmp (p
, ".bat") == 0
1553 || xstrcasecmp (p
, ".cmd") == 0))
1555 /* A DOS shell script - it appears that CreateProcess is happy to
1556 accept this (somewhat surprisingly); presumably it looks at
1557 COMSPEC to determine what executable to actually invoke.
1558 Therefore, we have to do the same here as well. */
1559 /* Actually, I think it uses the program association for that
1560 extension, which is defined in the registry. */
1561 p
= egetenv ("COMSPEC");
1563 retval
= w32_executable_type (p
, is_dos_app
, is_cygnus_app
, is_msys_app
,
1568 /* Look for DOS .exe signature - if found, we must also check that
1569 it isn't really a 16- or 32-bit Windows exe, since both formats
1570 start with a DOS program stub. Note that 16-bit Windows
1571 executables use the OS/2 1.x format. */
1573 IMAGE_DOS_HEADER
* dos_header
;
1574 IMAGE_NT_HEADERS
* nt_header
;
1576 dos_header
= (PIMAGE_DOS_HEADER
) executable
.file_base
;
1577 if (dos_header
->e_magic
!= IMAGE_DOS_SIGNATURE
)
1580 nt_header
= (PIMAGE_NT_HEADERS
) ((unsigned char *) dos_header
+ dos_header
->e_lfanew
);
1582 if ((char *) nt_header
> (char *) dos_header
+ executable
.size
)
1584 /* Some dos headers (pkunzip) have bogus e_lfanew fields. */
1587 else if (nt_header
->Signature
!= IMAGE_NT_SIGNATURE
1588 && LOWORD (nt_header
->Signature
) != IMAGE_OS2_SIGNATURE
)
1592 else if (nt_header
->Signature
== IMAGE_NT_SIGNATURE
)
1594 IMAGE_DATA_DIRECTORY
*data_dir
= NULL
;
1595 if (nt_header
->OptionalHeader
.Magic
== IMAGE_NT_OPTIONAL_HDR32_MAGIC
)
1597 /* Ensure we are using the 32 bit structure. */
1598 IMAGE_OPTIONAL_HEADER32
*opt
1599 = (IMAGE_OPTIONAL_HEADER32
*) &(nt_header
->OptionalHeader
);
1600 data_dir
= opt
->DataDirectory
;
1601 *is_gui_app
= (opt
->Subsystem
== IMAGE_SUBSYSTEM_WINDOWS_GUI
);
1603 /* MingW 3.12 has the required 64 bit structs, but in case older
1604 versions don't, only check 64 bit exes if we know how. */
1605 #ifdef IMAGE_NT_OPTIONAL_HDR64_MAGIC
1606 else if (nt_header
->OptionalHeader
.Magic
1607 == IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
1609 IMAGE_OPTIONAL_HEADER64
*opt
1610 = (IMAGE_OPTIONAL_HEADER64
*) &(nt_header
->OptionalHeader
);
1611 data_dir
= opt
->DataDirectory
;
1612 *is_gui_app
= (opt
->Subsystem
== IMAGE_SUBSYSTEM_WINDOWS_GUI
);
1617 /* Look for Cygwin DLL in the DLL import list. */
1618 IMAGE_DATA_DIRECTORY import_dir
=
1619 data_dir
[IMAGE_DIRECTORY_ENTRY_IMPORT
];
1620 IMAGE_IMPORT_DESCRIPTOR
* imports
=
1621 RVA_TO_PTR (import_dir
.VirtualAddress
,
1622 rva_to_section (import_dir
.VirtualAddress
,
1626 for ( ; imports
->Name
; imports
++)
1628 IMAGE_SECTION_HEADER
* section
=
1629 rva_to_section (imports
->Name
, nt_header
);
1630 char * dllname
= RVA_TO_PTR (imports
->Name
, section
,
1633 /* The exact name of the Cygwin DLL has changed with
1634 various releases, but hopefully this will be
1635 reasonably future-proof. */
1636 if (strncmp (dllname
, "cygwin", 6) == 0)
1638 *is_cygnus_app
= TRUE
;
1641 else if (strncmp (dllname
, "msys-", 5) == 0)
1643 /* This catches both MSYS 1.x and MSYS2
1644 executables (the DLL name is msys-1.0.dll and
1645 msys-2.0.dll, respectively). There doesn't
1646 seem to be a reason to distinguish between
1647 the two, for now. */
1648 *is_msys_app
= TRUE
;
1657 close_file_data (&executable
);
1662 compare_env (const void *strp1
, const void *strp2
)
1664 const char *str1
= *(const char **)strp1
, *str2
= *(const char **)strp2
;
1666 while (*str1
&& *str2
&& *str1
!= '=' && *str2
!= '=')
1668 /* Sort order in command.com/cmd.exe is based on uppercasing
1669 names, so do the same here. */
1670 if (toupper (*str1
) > toupper (*str2
))
1672 else if (toupper (*str1
) < toupper (*str2
))
1677 if (*str1
== '=' && *str2
== '=')
1679 else if (*str1
== '=')
1686 merge_and_sort_env (char **envp1
, char **envp2
, char **new_envp
)
1688 char **optr
, **nptr
;
1700 num
+= optr
- envp2
;
1702 qsort (new_envp
, num
, sizeof (char *), compare_env
);
1707 /* When a new child process is created we need to register it in our list,
1708 so intercept spawn requests. */
1710 sys_spawnve (int mode
, char *cmdname
, char **argv
, char **envp
)
1712 Lisp_Object program
, full
;
1713 char *cmdline
, *env
, *parg
, **targ
;
1717 int is_dos_app
, is_cygnus_app
, is_msys_app
, is_gui_app
;
1719 /* We pass our process ID to our children by setting up an environment
1720 variable in their environment. */
1721 char ppid_env_var_buffer
[64];
1722 char *extra_env
[] = {ppid_env_var_buffer
, NULL
};
1723 /* These are the characters that cause an argument to need quoting.
1724 Arguments with whitespace characters need quoting to prevent the
1725 argument being split into two or more. Arguments with wildcards
1726 are also quoted, for consistency with posix platforms, where wildcards
1727 are not expanded if we run the program directly without a shell.
1728 Some extra whitespace characters need quoting in Cygwin/MSYS programs,
1729 so this list is conditionally modified below. */
1730 const char *sepchars
= " \t*?";
1731 /* This is for native w32 apps; modified below for Cygwin/MSUS apps. */
1732 char escape_char
= '\\';
1733 char cmdname_a
[MAX_PATH
];
1735 /* We don't care about the other modes */
1736 if (mode
!= _P_NOWAIT
)
1742 /* Handle executable names without an executable suffix. The caller
1743 already searched exec-path and verified the file is executable,
1744 but start-process doesn't do that for file names that are already
1745 absolute. So we double-check this here, just in case. */
1746 if (faccessat (AT_FDCWD
, cmdname
, X_OK
, AT_EACCESS
) != 0)
1748 program
= build_string (cmdname
);
1750 openp (Vexec_path
, program
, Vexec_suffixes
, &full
, make_number (X_OK
), 0);
1756 program
= ENCODE_FILE (full
);
1757 cmdname
= SSDATA (program
);
1761 char *p
= alloca (strlen (cmdname
) + 1);
1763 /* Don't change the command name we were passed by our caller
1764 (unixtodos_filename below will destructively mirror forward
1766 cmdname
= strcpy (p
, cmdname
);
1769 /* make sure argv[0] and cmdname are both in DOS format */
1770 unixtodos_filename (cmdname
);
1771 /* argv[0] was encoded by caller using ENCODE_FILE, so it is in
1772 UTF-8. All the other arguments are encoded by ENCODE_SYSTEM or
1773 some such, and are in some ANSI codepage. We need to have
1774 argv[0] encoded in ANSI codepage. */
1775 filename_to_ansi (cmdname
, cmdname_a
);
1776 /* We explicitly require that the command's file name be encodable
1777 in the current ANSI codepage, because we will be invoking it via
1779 if (_mbspbrk ((unsigned char *)cmdname_a
, (const unsigned char *)"?"))
1784 /* From here on, CMDNAME is an ANSI-encoded string. */
1785 cmdname
= cmdname_a
;
1788 /* Determine whether program is a 16-bit DOS executable, or a 32-bit
1789 Windows executable that is implicitly linked to the Cygnus or
1790 MSYS dll (implying it was compiled with the Cygnus/MSYS GNU
1791 toolchain and hence relies on cygwin.dll or MSYS DLL to parse the
1792 command line - we use this to decide how to escape quote chars in
1793 command line args that must be quoted).
1795 Also determine whether it is a GUI app, so that we don't hide its
1796 initial window unless specifically requested. */
1797 w32_executable_type (cmdname
, &is_dos_app
, &is_cygnus_app
, &is_msys_app
,
1800 /* On Windows 95, if cmdname is a DOS app, we invoke a helper
1801 application to start it by specifying the helper app as cmdname,
1802 while leaving the real app name as argv[0]. */
1807 cmdname
= alloca (MAX_PATH
);
1808 if (egetenv ("CMDPROXY"))
1810 /* Implementation note: since process-environment, where
1811 'egetenv' looks, is encoded in the system codepage, we
1812 don't need to encode the cmdproxy file name if we get it
1813 from the environment. */
1814 strcpy (cmdname
, egetenv ("CMDPROXY"));
1818 char *q
= lispstpcpy (cmdname
,
1819 /* exec-directory needs to be encoded. */
1820 ansi_encode_filename (Vexec_directory
));
1821 /* If we are run from the source tree, use cmdproxy.exe from
1822 the same source tree. */
1823 for (p
= q
- 2; p
> cmdname
; p
= CharPrevA (cmdname
, p
))
1826 if (*p
== '/' && xstrcasecmp (p
, "/lib-src/") == 0)
1827 q
= stpcpy (p
, "/nt/");
1828 strcpy (q
, "cmdproxy.exe");
1831 /* Can't use unixtodos_filename here, since that needs its file
1832 name argument encoded in UTF-8. */
1833 for (p
= cmdname
; *p
; p
= CharNextA (p
))
1838 /* we have to do some conjuring here to put argv and envp into the
1839 form CreateProcess wants... argv needs to be a space separated/null
1840 terminated list of parameters, and envp is a null
1841 separated/double-null terminated list of parameters.
1843 Additionally, zero-length args and args containing whitespace or
1844 quote chars need to be wrapped in double quotes - for this to work,
1845 embedded quotes need to be escaped as well. The aim is to ensure
1846 the child process reconstructs the argv array we start with
1847 exactly, so we treat quotes at the beginning and end of arguments
1850 The w32 GNU-based library from Cygnus doubles quotes to escape
1851 them, while MSVC uses backslash for escaping. (Actually the MSVC
1852 startup code does attempt to recognize doubled quotes and accept
1853 them, but gets it wrong and ends up requiring three quotes to get a
1854 single embedded quote!) So by default we decide whether to use
1855 quote or backslash as the escape character based on whether the
1856 binary is apparently a Cygnus compiled app.
1858 Note that using backslash to escape embedded quotes requires
1859 additional special handling if an embedded quote is already
1860 preceded by backslash, or if an arg requiring quoting ends with
1861 backslash. In such cases, the run of escape characters needs to be
1862 doubled. For consistency, we apply this special handling as long
1863 as the escape character is not quote.
1865 Since we have no idea how large argv and envp are likely to be we
1866 figure out list lengths on the fly and allocate them. */
1868 if (!NILP (Vw32_quote_process_args
))
1871 /* Override escape char by binding w32-quote-process-args to
1872 desired character, or use t for auto-selection. */
1873 if (INTEGERP (Vw32_quote_process_args
))
1874 escape_char
= XINT (Vw32_quote_process_args
);
1876 escape_char
= (is_cygnus_app
|| is_msys_app
) ? '"' : '\\';
1879 /* Cygwin/MSYS apps need quoting a bit more often. */
1880 if (escape_char
== '"')
1881 sepchars
= "\r\n\t\f '";
1889 int need_quotes
= 0;
1890 int escape_char_run
= 0;
1896 if (escape_char
== '"' && *p
== '\\')
1897 /* If it's a Cygwin/MSYS app, \ needs to be escaped. */
1901 /* allow for embedded quotes to be escaped */
1904 /* handle the case where the embedded quote is already escaped */
1905 if (escape_char_run
> 0)
1907 /* To preserve the arg exactly, we need to double the
1908 preceding escape characters (plus adding one to
1909 escape the quote character itself). */
1910 arglen
+= escape_char_run
;
1913 else if (strchr (sepchars
, *p
) != NULL
)
1918 if (*p
== escape_char
&& escape_char
!= '"')
1921 escape_char_run
= 0;
1926 /* handle the case where the arg ends with an escape char - we
1927 must not let the enclosing quote be escaped. */
1928 if (escape_char_run
> 0)
1929 arglen
+= escape_char_run
;
1931 arglen
+= strlen (*targ
++) + 1;
1933 cmdline
= alloca (arglen
);
1939 int need_quotes
= 0;
1947 if ((strchr (sepchars
, *p
) != NULL
) || *p
== '"')
1952 int escape_char_run
= 0;
1958 /* last = p + strlen (p) - 1; */
1961 /* This version does not escape quotes if they occur at the
1962 beginning or end of the arg - this could lead to incorrect
1963 behavior when the arg itself represents a command line
1964 containing quoted args. I believe this was originally done
1965 as a hack to make some things work, before
1966 `w32-quote-process-args' was added. */
1969 if (*p
== '"' && p
> first
&& p
< last
)
1970 *parg
++ = escape_char
; /* escape embedded quotes */
1978 /* double preceding escape chars if any */
1979 while (escape_char_run
> 0)
1981 *parg
++ = escape_char
;
1984 /* escape all quote chars, even at beginning or end */
1985 *parg
++ = escape_char
;
1987 else if (escape_char
== '"' && *p
== '\\')
1991 if (*p
== escape_char
&& escape_char
!= '"')
1994 escape_char_run
= 0;
1996 /* double escape chars before enclosing quote */
1997 while (escape_char_run
> 0)
1999 *parg
++ = escape_char
;
2007 strcpy (parg
, *targ
);
2008 parg
+= strlen (*targ
);
2018 numenv
= 1; /* for end null */
2021 arglen
+= strlen (*targ
++) + 1;
2024 /* extra env vars... */
2025 sprintf (ppid_env_var_buffer
, "EM_PARENT_PROCESS_ID=%lu",
2026 GetCurrentProcessId ());
2027 arglen
+= strlen (ppid_env_var_buffer
) + 1;
2030 /* merge env passed in and extra env into one, and sort it. */
2031 targ
= (char **) alloca (numenv
* sizeof (char *));
2032 merge_and_sort_env (envp
, extra_env
, targ
);
2034 /* concatenate env entries. */
2035 env
= alloca (arglen
);
2039 strcpy (parg
, *targ
);
2040 parg
+= strlen (*targ
++);
2053 /* Now create the process. */
2054 if (!create_child (cmdname
, cmdline
, env
, is_gui_app
, &pid
, cp
))
2064 /* Emulate the select call.
2065 Wait for available input on any of the given rfds, or timeout if
2066 a timeout is given and no input is detected. wfds are supported
2067 only for asynchronous 'connect' calls. efds are not supported
2070 For simplicity, we detect the death of child processes here and
2071 synchronously call the SIGCHLD handler. Since it is possible for
2072 children to be created without a corresponding pipe handle from which
2073 to read output, we wait separately on the process handles as well as
2074 the char_avail events for each process pipe. We only call
2075 wait/reap_process when the process actually terminates.
2077 To reduce the number of places in which Emacs can be hung such that
2078 C-g is not able to interrupt it, we always wait on interrupt_handle
2079 (which is signaled by the input thread when C-g is detected). If we
2080 detect that we were woken up by C-g, we return -1 with errno set to
2081 EINTR as on Unix. */
2083 /* From w32console.c */
2084 extern HANDLE keyboard_handle
;
2086 /* From w32xfns.c */
2087 extern HANDLE interrupt_handle
;
2089 /* From process.c */
2090 extern int proc_buffered_char
[];
2093 sys_select (int nfds
, SELECT_TYPE
*rfds
, SELECT_TYPE
*wfds
, SELECT_TYPE
*efds
,
2094 struct timespec
*timeout
, void *ignored
)
2096 SELECT_TYPE orfds
, owfds
;
2097 DWORD timeout_ms
, start_time
;
2100 child_process
*cp
, *cps
[MAX_CHILDREN
];
2101 HANDLE wait_hnd
[MAXDESC
+ MAX_CHILDREN
];
2102 int fdindex
[MAXDESC
]; /* mapping from wait handles back to descriptors */
2105 timeout
? (timeout
->tv_sec
* 1000 + timeout
->tv_nsec
/ 1000000) : INFINITE
;
2107 /* If the descriptor sets are NULL but timeout isn't, then just Sleep. */
2108 if (rfds
== NULL
&& wfds
== NULL
&& efds
== NULL
&& timeout
!= NULL
)
2114 /* Otherwise, we only handle rfds and wfds, so fail otherwise. */
2115 if ((rfds
== NULL
&& wfds
== NULL
) || efds
!= NULL
)
2137 /* If interrupt_handle is available and valid, always wait on it, to
2138 detect C-g (quit). */
2140 if (interrupt_handle
&& interrupt_handle
!= INVALID_HANDLE_VALUE
)
2142 wait_hnd
[0] = interrupt_handle
;
2147 /* Build a list of pipe handles to wait on. */
2148 for (i
= 0; i
< nfds
; i
++)
2149 if (FD_ISSET (i
, &orfds
) || FD_ISSET (i
, &owfds
))
2153 if (keyboard_handle
)
2155 /* Handle stdin specially */
2156 wait_hnd
[nh
] = keyboard_handle
;
2161 /* Check for any emacs-generated input in the queue since
2162 it won't be detected in the wait */
2163 if (rfds
&& detect_input_pending ())
2168 else if (noninteractive
)
2170 if (handle_file_notifications (NULL
))
2176 /* Child process and socket/comm port input. */
2178 if (FD_ISSET (i
, &owfds
)
2180 && (fd_info
[i
].flags
& FILE_CONNECT
) == 0)
2182 DebPrint (("sys_select: fd %d is in wfds, but FILE_CONNECT is reset!\n", i
));
2187 int current_status
= cp
->status
;
2189 if (current_status
== STATUS_READ_ACKNOWLEDGED
)
2191 /* Tell reader thread which file handle to use. */
2193 /* Zero out the error code. */
2195 /* Wake up the reader thread for this process */
2196 cp
->status
= STATUS_READ_READY
;
2197 if (!SetEvent (cp
->char_consumed
))
2198 DebPrint (("sys_select.SetEvent failed with "
2199 "%lu for fd %ld\n", GetLastError (), i
));
2202 #ifdef CHECK_INTERLOCK
2203 /* slightly crude cross-checking of interlock between threads */
2205 current_status
= cp
->status
;
2206 if (WaitForSingleObject (cp
->char_avail
, 0) == WAIT_OBJECT_0
)
2208 /* char_avail has been signaled, so status (which may
2209 have changed) should indicate read has completed
2210 but has not been acknowledged. */
2211 current_status
= cp
->status
;
2212 if (current_status
!= STATUS_READ_SUCCEEDED
2213 && current_status
!= STATUS_READ_FAILED
)
2214 DebPrint (("char_avail set, but read not completed: status %d\n",
2219 /* char_avail has not been signaled, so status should
2220 indicate that read is in progress; small possibility
2221 that read has completed but event wasn't yet signaled
2222 when we tested it (because a context switch occurred
2223 or if running on separate CPUs). */
2224 if (current_status
!= STATUS_READ_READY
2225 && current_status
!= STATUS_READ_IN_PROGRESS
2226 && current_status
!= STATUS_READ_SUCCEEDED
2227 && current_status
!= STATUS_READ_FAILED
)
2228 DebPrint (("char_avail reset, but read status is bad: %d\n",
2232 wait_hnd
[nh
] = cp
->char_avail
;
2234 if (!wait_hnd
[nh
]) emacs_abort ();
2237 DebPrint (("select waiting on child %d fd %d\n",
2238 cp
-child_procs
, i
));
2243 /* Unable to find something to wait on for this fd, skip */
2245 /* Note that this is not a fatal error, and can in fact
2246 happen in unusual circumstances. Specifically, if
2247 sys_spawnve fails, eg. because the program doesn't
2248 exist, and debug-on-error is t so Fsignal invokes a
2249 nested input loop, then the process output pipe is
2250 still included in input_wait_mask with no child_proc
2251 associated with it. (It is removed when the debugger
2252 exits the nested input loop and the error is thrown.) */
2254 DebPrint (("sys_select: fd %ld is invalid! ignoring\n", i
));
2260 /* Add handles of child processes. */
2262 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
2263 /* Some child_procs might be sockets; ignore them. Also some
2264 children may have died already, but we haven't finished reading
2265 the process output; ignore them too. */
2266 if ((CHILD_ACTIVE (cp
) && cp
->procinfo
.hProcess
)
2268 || (fd_info
[cp
->fd
].flags
& FILE_SEND_SIGCHLD
) == 0
2269 || (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) != 0)
2272 wait_hnd
[nh
+ nc
] = cp
->procinfo
.hProcess
;
2277 /* Nothing to look for, so we didn't find anything */
2284 if (handle_file_notifications (NULL
))
2290 start_time
= GetTickCount ();
2292 /* Wait for input or child death to be signaled. If user input is
2293 allowed, then also accept window messages. */
2294 if (FD_ISSET (0, &orfds
))
2295 active
= MsgWaitForMultipleObjects (nh
+ nc
, wait_hnd
, FALSE
, timeout_ms
,
2298 active
= WaitForMultipleObjects (nh
+ nc
, wait_hnd
, FALSE
, timeout_ms
);
2300 if (active
== WAIT_FAILED
)
2302 DebPrint (("select.WaitForMultipleObjects (%d, %lu) failed with %lu\n",
2303 nh
+ nc
, timeout_ms
, GetLastError ()));
2304 /* don't return EBADF - this causes wait_reading_process_output to
2305 abort; WAIT_FAILED is returned when single-stepping under
2306 Windows 95 after switching thread focus in debugger, and
2307 possibly at other times. */
2311 else if (active
== WAIT_TIMEOUT
)
2315 if (handle_file_notifications (NULL
))
2320 else if (active
>= WAIT_OBJECT_0
2321 && active
< WAIT_OBJECT_0
+MAXIMUM_WAIT_OBJECTS
)
2323 active
-= WAIT_OBJECT_0
;
2325 else if (active
>= WAIT_ABANDONED_0
2326 && active
< WAIT_ABANDONED_0
+MAXIMUM_WAIT_OBJECTS
)
2328 active
-= WAIT_ABANDONED_0
;
2333 /* Loop over all handles after active (now officially documented as
2334 being the first signaled handle in the array). We do this to
2335 ensure fairness, so that all channels with data available will be
2336 processed - otherwise higher numbered channels could be starved. */
2339 if (active
== nh
+ nc
)
2341 /* There are messages in the lisp thread's queue; we must
2342 drain the queue now to ensure they are processed promptly,
2343 because if we don't do so, we will not be woken again until
2344 further messages arrive.
2346 NB. If ever we allow window message procedures to callback
2347 into lisp, we will need to ensure messages are dispatched
2348 at a safe time for lisp code to be run (*), and we may also
2349 want to provide some hooks in the dispatch loop to cater
2350 for modeless dialogs created by lisp (ie. to register
2351 window handles to pass to IsDialogMessage).
2353 (*) Note that MsgWaitForMultipleObjects above is an
2354 internal dispatch point for messages that are sent to
2355 windows created by this thread. */
2356 if (drain_message_queue ()
2357 /* If drain_message_queue returns non-zero, that means
2358 we received a WM_EMACS_FILENOTIFY message. If this
2359 is a TTY frame, we must signal the caller that keyboard
2360 input is available, so that w32_console_read_socket
2361 will be called to pick up the notifications. If we
2362 don't do that, file notifications will only work when
2363 the Emacs TTY frame has focus. */
2364 && FRAME_TERMCAP_P (SELECTED_FRAME ())
2365 /* they asked for stdin reads */
2366 && FD_ISSET (0, &orfds
)
2367 /* the stdin handle is valid */
2375 else if (active
>= nh
)
2377 cp
= cps
[active
- nh
];
2379 /* We cannot always signal SIGCHLD immediately; if we have not
2380 finished reading the process output, we must delay sending
2381 SIGCHLD until we do. */
2383 if (cp
->fd
>= 0 && (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) == 0)
2384 fd_info
[cp
->fd
].flags
|= FILE_SEND_SIGCHLD
;
2385 /* SIG_DFL for SIGCHLD is ignored */
2386 else if (sig_handlers
[SIGCHLD
] != SIG_DFL
&&
2387 sig_handlers
[SIGCHLD
] != SIG_IGN
)
2390 DebPrint (("select calling SIGCHLD handler for pid %d\n",
2393 sig_handlers
[SIGCHLD
] (SIGCHLD
);
2396 else if (fdindex
[active
] == -1)
2398 /* Quit (C-g) was detected. */
2402 else if (rfds
&& fdindex
[active
] == 0)
2404 /* Keyboard input available */
2410 /* Must be a socket or pipe - read ahead should have
2411 completed, either succeeding or failing. If this handle
2412 was waiting for an async 'connect', reset the connect
2413 flag, so it could read from now on. */
2414 if (wfds
&& (fd_info
[fdindex
[active
]].flags
& FILE_CONNECT
) != 0)
2416 cp
= fd_info
[fdindex
[active
]].cp
;
2419 /* Don't reset the FILE_CONNECT bit and don't
2420 acknowledge the read if the status is
2421 STATUS_CONNECT_FAILED or some other
2422 failure. That's because the thread exits in those
2423 cases, so it doesn't need the ACK, and we want to
2424 keep the FILE_CONNECT bit as evidence that the
2425 connect failed, to be checked in sys_read. */
2426 if (cp
->status
== STATUS_READ_SUCCEEDED
)
2428 fd_info
[cp
->fd
].flags
&= ~FILE_CONNECT
;
2429 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
2431 ResetEvent (cp
->char_avail
);
2433 FD_SET (fdindex
[active
], wfds
);
2436 FD_SET (fdindex
[active
], rfds
);
2440 /* Even though wait_reading_process_output only reads from at most
2441 one channel, we must process all channels here so that we reap
2442 all children that have died. */
2443 while (++active
< nh
+ nc
)
2444 if (WaitForSingleObject (wait_hnd
[active
], 0) == WAIT_OBJECT_0
)
2446 } while (active
< nh
+ nc
);
2450 if (handle_file_notifications (NULL
))
2454 /* If no input has arrived and timeout hasn't expired, wait again. */
2457 DWORD elapsed
= GetTickCount () - start_time
;
2459 if (timeout_ms
> elapsed
) /* INFINITE is MAX_UINT */
2461 if (timeout_ms
!= INFINITE
)
2462 timeout_ms
-= elapsed
;
2463 goto count_children
;
2470 /* Substitute for certain kill () operations */
2472 static BOOL CALLBACK
2473 find_child_console (HWND hwnd
, LPARAM arg
)
2475 child_process
* cp
= (child_process
*) arg
;
2478 GetWindowThreadProcessId (hwnd
, &process_id
);
2479 if (process_id
== cp
->procinfo
.dwProcessId
)
2481 char window_class
[32];
2483 GetClassName (hwnd
, window_class
, sizeof (window_class
));
2484 if (strcmp (window_class
,
2485 (os_subtype
== OS_9X
)
2487 : "ConsoleWindowClass") == 0)
2497 /* Emulate 'kill', but only for other processes. */
2499 sys_kill (pid_t pid
, int sig
)
2503 int need_to_free
= 0;
2506 /* Each process is in its own process group. */
2510 /* Only handle signals that will result in the process dying */
2512 && sig
!= SIGINT
&& sig
!= SIGKILL
&& sig
!= SIGQUIT
&& sig
!= SIGHUP
)
2520 /* It will take _some_ time before PID 4 or less on Windows will
2527 proc_hand
= OpenProcess (PROCESS_QUERY_INFORMATION
, 0, pid
);
2528 if (proc_hand
== NULL
)
2530 DWORD err
= GetLastError ();
2534 case ERROR_ACCESS_DENIED
: /* existing process, but access denied */
2537 case ERROR_INVALID_PARAMETER
: /* process PID does not exist */
2543 CloseHandle (proc_hand
);
2547 cp
= find_child_pid (pid
);
2550 /* We were passed a PID of something other than our subprocess.
2551 If that is our own PID, we will send to ourself a message to
2552 close the selected frame, which does not necessarily
2553 terminates Emacs. But then we are not supposed to call
2554 sys_kill with our own PID. */
2555 proc_hand
= OpenProcess (PROCESS_TERMINATE
, 0, pid
);
2556 if (proc_hand
== NULL
)
2565 proc_hand
= cp
->procinfo
.hProcess
;
2566 pid
= cp
->procinfo
.dwProcessId
;
2568 /* Try to locate console window for process. */
2569 EnumWindows (find_child_console
, (LPARAM
) cp
);
2572 if (sig
== SIGINT
|| sig
== SIGQUIT
)
2574 if (NILP (Vw32_start_process_share_console
) && cp
&& cp
->hwnd
)
2576 BYTE control_scan_code
= (BYTE
) MapVirtualKey (VK_CONTROL
, 0);
2577 /* Fake Ctrl-C for SIGINT, and Ctrl-Break for SIGQUIT. */
2578 BYTE vk_break_code
= (sig
== SIGINT
) ? 'C' : VK_CANCEL
;
2579 BYTE break_scan_code
= (BYTE
) MapVirtualKey (vk_break_code
, 0);
2580 HWND foreground_window
;
2582 if (break_scan_code
== 0)
2584 /* Fake Ctrl-C for SIGQUIT if we can't manage Ctrl-Break. */
2585 vk_break_code
= 'C';
2586 break_scan_code
= (BYTE
) MapVirtualKey (vk_break_code
, 0);
2589 foreground_window
= GetForegroundWindow ();
2590 if (foreground_window
)
2592 /* NT 5.0, and apparently also Windows 98, will not allow
2593 a Window to be set to foreground directly without the
2594 user's involvement. The workaround is to attach
2595 ourselves to the thread that owns the foreground
2596 window, since that is the only thread that can set the
2597 foreground window. */
2598 DWORD foreground_thread
, child_thread
;
2600 GetWindowThreadProcessId (foreground_window
, NULL
);
2601 if (foreground_thread
== GetCurrentThreadId ()
2602 || !AttachThreadInput (GetCurrentThreadId (),
2603 foreground_thread
, TRUE
))
2604 foreground_thread
= 0;
2606 child_thread
= GetWindowThreadProcessId (cp
->hwnd
, NULL
);
2607 if (child_thread
== GetCurrentThreadId ()
2608 || !AttachThreadInput (GetCurrentThreadId (),
2609 child_thread
, TRUE
))
2612 /* Set the foreground window to the child. */
2613 if (SetForegroundWindow (cp
->hwnd
))
2615 /* Generate keystrokes as if user had typed Ctrl-Break or
2617 keybd_event (VK_CONTROL
, control_scan_code
, 0, 0);
2618 keybd_event (vk_break_code
, break_scan_code
,
2619 (vk_break_code
== 'C' ? 0 : KEYEVENTF_EXTENDEDKEY
), 0);
2620 keybd_event (vk_break_code
, break_scan_code
,
2621 (vk_break_code
== 'C' ? 0 : KEYEVENTF_EXTENDEDKEY
)
2622 | KEYEVENTF_KEYUP
, 0);
2623 keybd_event (VK_CONTROL
, control_scan_code
,
2624 KEYEVENTF_KEYUP
, 0);
2626 /* Sleep for a bit to give time for Emacs frame to respond
2627 to focus change events (if Emacs was active app). */
2630 SetForegroundWindow (foreground_window
);
2632 /* Detach from the foreground and child threads now that
2633 the foreground switching is over. */
2634 if (foreground_thread
)
2635 AttachThreadInput (GetCurrentThreadId (),
2636 foreground_thread
, FALSE
);
2638 AttachThreadInput (GetCurrentThreadId (),
2639 child_thread
, FALSE
);
2642 /* Ctrl-Break is NT equivalent of SIGINT. */
2643 else if (!GenerateConsoleCtrlEvent (CTRL_BREAK_EVENT
, pid
))
2645 DebPrint (("sys_kill.GenerateConsoleCtrlEvent return %d "
2646 "for pid %lu\n", GetLastError (), pid
));
2653 if (NILP (Vw32_start_process_share_console
) && cp
&& cp
->hwnd
)
2656 if (os_subtype
== OS_9X
)
2659 Another possibility is to try terminating the VDM out-right by
2660 calling the Shell VxD (id 0x17) V86 interface, function #4
2661 "SHELL_Destroy_VM", ie.
2667 First need to determine the current VM handle, and then arrange for
2668 the shellapi call to be made from the system vm (by using
2669 Switch_VM_and_callback).
2671 Could try to invoke DestroyVM through CallVxD.
2675 /* On Windows 95, posting WM_QUIT causes the 16-bit subsystem
2676 to hang when cmdproxy is used in conjunction with
2677 command.com for an interactive shell. Posting
2678 WM_CLOSE pops up a dialog that, when Yes is selected,
2679 does the same thing. TerminateProcess is also less
2680 than ideal in that subprocesses tend to stick around
2681 until the machine is shutdown, but at least it
2682 doesn't freeze the 16-bit subsystem. */
2683 PostMessage (cp
->hwnd
, WM_QUIT
, 0xff, 0);
2685 if (!TerminateProcess (proc_hand
, 0xff))
2687 DebPrint (("sys_kill.TerminateProcess returned %d "
2688 "for pid %lu\n", GetLastError (), pid
));
2695 PostMessage (cp
->hwnd
, WM_CLOSE
, 0, 0);
2697 /* Kill the process. On W32 this doesn't kill child processes
2698 so it doesn't work very well for shells which is why it's not
2699 used in every case. */
2700 else if (!TerminateProcess (proc_hand
, 0xff))
2702 DebPrint (("sys_kill.TerminateProcess returned %d "
2703 "for pid %lu\n", GetLastError (), pid
));
2710 CloseHandle (proc_hand
);
2715 /* The following two routines are used to manipulate stdin, stdout, and
2716 stderr of our child processes.
2718 Assuming that in, out, and err are *not* inheritable, we make them
2719 stdin, stdout, and stderr of the child as follows:
2721 - Save the parent's current standard handles.
2722 - Set the std handles to inheritable duplicates of the ones being passed in.
2723 (Note that _get_osfhandle() is an io.h procedure that retrieves the
2724 NT file handle for a crt file descriptor.)
2725 - Spawn the child, which inherits in, out, and err as stdin,
2726 stdout, and stderr. (see Spawnve)
2727 - Close the std handles passed to the child.
2728 - Reset the parent's standard handles to the saved handles.
2729 (see reset_standard_handles)
2730 We assume that the caller closes in, out, and err after calling us. */
2733 prepare_standard_handles (int in
, int out
, int err
, HANDLE handles
[3])
2736 HANDLE newstdin
, newstdout
, newstderr
;
2738 parent
= GetCurrentProcess ();
2740 handles
[0] = GetStdHandle (STD_INPUT_HANDLE
);
2741 handles
[1] = GetStdHandle (STD_OUTPUT_HANDLE
);
2742 handles
[2] = GetStdHandle (STD_ERROR_HANDLE
);
2744 /* make inheritable copies of the new handles */
2745 if (!DuplicateHandle (parent
,
2746 (HANDLE
) _get_osfhandle (in
),
2751 DUPLICATE_SAME_ACCESS
))
2752 report_file_error ("Duplicating input handle for child", Qnil
);
2754 if (!DuplicateHandle (parent
,
2755 (HANDLE
) _get_osfhandle (out
),
2760 DUPLICATE_SAME_ACCESS
))
2761 report_file_error ("Duplicating output handle for child", Qnil
);
2763 if (!DuplicateHandle (parent
,
2764 (HANDLE
) _get_osfhandle (err
),
2769 DUPLICATE_SAME_ACCESS
))
2770 report_file_error ("Duplicating error handle for child", Qnil
);
2772 /* and store them as our std handles */
2773 if (!SetStdHandle (STD_INPUT_HANDLE
, newstdin
))
2774 report_file_error ("Changing stdin handle", Qnil
);
2776 if (!SetStdHandle (STD_OUTPUT_HANDLE
, newstdout
))
2777 report_file_error ("Changing stdout handle", Qnil
);
2779 if (!SetStdHandle (STD_ERROR_HANDLE
, newstderr
))
2780 report_file_error ("Changing stderr handle", Qnil
);
2784 reset_standard_handles (int in
, int out
, int err
, HANDLE handles
[3])
2786 /* close the duplicated handles passed to the child */
2787 CloseHandle (GetStdHandle (STD_INPUT_HANDLE
));
2788 CloseHandle (GetStdHandle (STD_OUTPUT_HANDLE
));
2789 CloseHandle (GetStdHandle (STD_ERROR_HANDLE
));
2791 /* now restore parent's saved std handles */
2792 SetStdHandle (STD_INPUT_HANDLE
, handles
[0]);
2793 SetStdHandle (STD_OUTPUT_HANDLE
, handles
[1]);
2794 SetStdHandle (STD_ERROR_HANDLE
, handles
[2]);
2798 set_process_dir (char * dir
)
2803 /* To avoid problems with winsock implementations that work over dial-up
2804 connections causing or requiring a connection to exist while Emacs is
2805 running, Emacs no longer automatically loads winsock on startup if it
2806 is present. Instead, it will be loaded when open-network-stream is
2809 To allow full control over when winsock is loaded, we provide these
2810 two functions to dynamically load and unload winsock. This allows
2811 dial-up users to only be connected when they actually need to use
2815 extern HANDLE winsock_lib
;
2816 extern BOOL
term_winsock (void);
2818 DEFUN ("w32-has-winsock", Fw32_has_winsock
, Sw32_has_winsock
, 0, 1, 0,
2819 doc
: /* Test for presence of the Windows socket library `winsock'.
2820 Returns non-nil if winsock support is present, nil otherwise.
2822 If the optional argument LOAD-NOW is non-nil, the winsock library is
2823 also loaded immediately if not already loaded. If winsock is loaded,
2824 the winsock local hostname is returned (since this may be different from
2825 the value of `system-name' and should supplant it), otherwise t is
2826 returned to indicate winsock support is present. */)
2827 (Lisp_Object load_now
)
2831 have_winsock
= init_winsock (!NILP (load_now
));
2834 if (winsock_lib
!= NULL
)
2836 /* Return new value for system-name. The best way to do this
2837 is to call init_system_name, saving and restoring the
2838 original value to avoid side-effects. */
2839 Lisp_Object orig_hostname
= Vsystem_name
;
2840 Lisp_Object hostname
;
2842 init_system_name ();
2843 hostname
= Vsystem_name
;
2844 Vsystem_name
= orig_hostname
;
2852 DEFUN ("w32-unload-winsock", Fw32_unload_winsock
, Sw32_unload_winsock
,
2854 doc
: /* Unload the Windows socket library `winsock' if loaded.
2855 This is provided to allow dial-up socket connections to be disconnected
2856 when no longer needed. Returns nil without unloading winsock if any
2857 socket connections still exist. */)
2860 return term_winsock () ? Qt
: Qnil
;
2864 /* Some miscellaneous functions that are Windows specific, but not GUI
2865 specific (ie. are applicable in terminal or batch mode as well). */
2867 DEFUN ("w32-short-file-name", Fw32_short_file_name
, Sw32_short_file_name
, 1, 1, 0,
2868 doc
: /* Return the short file name version (8.3) of the full path of FILENAME.
2869 If FILENAME does not exist, return nil.
2870 All path elements in FILENAME are converted to their short names. */)
2871 (Lisp_Object filename
)
2873 char shortname
[MAX_PATH
];
2875 CHECK_STRING (filename
);
2877 /* first expand it. */
2878 filename
= Fexpand_file_name (filename
, Qnil
);
2880 /* luckily, this returns the short version of each element in the path. */
2881 if (w32_get_short_filename (SSDATA (ENCODE_FILE (filename
)),
2882 shortname
, MAX_PATH
) == 0)
2885 dostounix_filename (shortname
);
2887 /* No need to DECODE_FILE, because 8.3 names are pure ASCII. */
2888 return build_string (shortname
);
2892 DEFUN ("w32-long-file-name", Fw32_long_file_name
, Sw32_long_file_name
,
2894 doc
: /* Return the long file name version of the full path of FILENAME.
2895 If FILENAME does not exist, return nil.
2896 All path elements in FILENAME are converted to their long names. */)
2897 (Lisp_Object filename
)
2899 char longname
[ MAX_UTF8_PATH
];
2902 CHECK_STRING (filename
);
2904 if (SBYTES (filename
) == 2
2905 && *(SDATA (filename
) + 1) == ':')
2908 /* first expand it. */
2909 filename
= Fexpand_file_name (filename
, Qnil
);
2911 if (!w32_get_long_filename (SSDATA (ENCODE_FILE (filename
)), longname
,
2915 dostounix_filename (longname
);
2917 /* If we were passed only a drive, make sure that a slash is not appended
2918 for consistency with directories. Allow for drive mapping via SUBST
2919 in case expand-file-name is ever changed to expand those. */
2920 if (drive_only
&& longname
[1] == ':' && longname
[2] == '/' && !longname
[3])
2923 return DECODE_FILE (build_unibyte_string (longname
));
2926 DEFUN ("w32-set-process-priority", Fw32_set_process_priority
,
2927 Sw32_set_process_priority
, 2, 2, 0,
2928 doc
: /* Set the priority of PROCESS to PRIORITY.
2929 If PROCESS is nil, the priority of Emacs is changed, otherwise the
2930 priority of the process whose pid is PROCESS is changed.
2931 PRIORITY should be one of the symbols high, normal, or low;
2932 any other symbol will be interpreted as normal.
2934 If successful, the return value is t, otherwise nil. */)
2935 (Lisp_Object process
, Lisp_Object priority
)
2937 HANDLE proc_handle
= GetCurrentProcess ();
2938 DWORD priority_class
= NORMAL_PRIORITY_CLASS
;
2939 Lisp_Object result
= Qnil
;
2941 CHECK_SYMBOL (priority
);
2943 if (!NILP (process
))
2948 CHECK_NUMBER (process
);
2950 /* Allow pid to be an internally generated one, or one obtained
2951 externally. This is necessary because real pids on Windows 95 are
2954 pid
= XINT (process
);
2955 cp
= find_child_pid (pid
);
2957 pid
= cp
->procinfo
.dwProcessId
;
2959 proc_handle
= OpenProcess (PROCESS_SET_INFORMATION
, FALSE
, pid
);
2962 if (EQ (priority
, Qhigh
))
2963 priority_class
= HIGH_PRIORITY_CLASS
;
2964 else if (EQ (priority
, Qlow
))
2965 priority_class
= IDLE_PRIORITY_CLASS
;
2967 if (proc_handle
!= NULL
)
2969 if (SetPriorityClass (proc_handle
, priority_class
))
2971 if (!NILP (process
))
2972 CloseHandle (proc_handle
);
2978 DEFUN ("w32-application-type", Fw32_application_type
,
2979 Sw32_application_type
, 1, 1, 0,
2980 doc
: /* Return the type of an MS-Windows PROGRAM.
2982 Knowing the type of an executable could be useful for formatting
2983 file names passed to it or for quoting its command-line arguments.
2985 PROGRAM should specify an executable file, including the extension.
2987 The value is one of the following:
2989 `dos' -- a DOS .com program or some other non-PE executable
2990 `cygwin' -- a Cygwin program that depends on Cygwin DLL
2991 `msys' -- an MSYS 1.x or MSYS2 program
2992 `w32-native' -- a native Windows application
2993 `unknown' -- a file that doesn't exist, or cannot be open, or whose
2994 name is not encodable in the current ANSI codepage.
2996 Note that for .bat and .cmd batch files the function returns the type
2997 of their command interpreter, as specified by the \"COMSPEC\"
2998 environment variable.
3000 This function returns `unknown' for programs whose file names
3001 include characters not supported by the current ANSI codepage, as
3002 such programs cannot be invoked by Emacs anyway. */)
3003 (Lisp_Object program
)
3005 int is_dos_app
, is_cygwin_app
, is_msys_app
, dummy
;
3006 Lisp_Object encoded_progname
;
3007 char *progname
, progname_a
[MAX_PATH
];
3009 program
= Fexpand_file_name (program
, Qnil
);
3010 encoded_progname
= ENCODE_FILE (program
);
3011 progname
= SSDATA (encoded_progname
);
3012 unixtodos_filename (progname
);
3013 filename_to_ansi (progname
, progname_a
);
3014 /* Reject file names that cannot be encoded in the current ANSI
3016 if (_mbspbrk ((unsigned char *)progname_a
, (const unsigned char *)"?"))
3019 if (w32_executable_type (progname_a
, &is_dos_app
, &is_cygwin_app
,
3020 &is_msys_app
, &dummy
) != 0)
3031 #ifdef HAVE_LANGINFO_CODESET
3032 /* Emulation of nl_langinfo. Used in fns.c:Flocale_info. */
3034 nl_langinfo (nl_item item
)
3036 /* Conversion of Posix item numbers to their Windows equivalents. */
3037 static const LCTYPE w32item
[] = {
3038 LOCALE_IDEFAULTANSICODEPAGE
,
3039 LOCALE_SDAYNAME1
, LOCALE_SDAYNAME2
, LOCALE_SDAYNAME3
,
3040 LOCALE_SDAYNAME4
, LOCALE_SDAYNAME5
, LOCALE_SDAYNAME6
, LOCALE_SDAYNAME7
,
3041 LOCALE_SMONTHNAME1
, LOCALE_SMONTHNAME2
, LOCALE_SMONTHNAME3
,
3042 LOCALE_SMONTHNAME4
, LOCALE_SMONTHNAME5
, LOCALE_SMONTHNAME6
,
3043 LOCALE_SMONTHNAME7
, LOCALE_SMONTHNAME8
, LOCALE_SMONTHNAME9
,
3044 LOCALE_SMONTHNAME10
, LOCALE_SMONTHNAME11
, LOCALE_SMONTHNAME12
3047 static char *nl_langinfo_buf
= NULL
;
3048 static int nl_langinfo_len
= 0;
3050 if (nl_langinfo_len
<= 0)
3051 nl_langinfo_buf
= xmalloc (nl_langinfo_len
= 1);
3053 if (item
< 0 || item
>= _NL_NUM
)
3054 nl_langinfo_buf
[0] = 0;
3057 LCID cloc
= GetThreadLocale ();
3058 int need_len
= GetLocaleInfo (cloc
, w32item
[item
] | LOCALE_USE_CP_ACP
,
3062 nl_langinfo_buf
[0] = 0;
3065 if (item
== CODESET
)
3067 need_len
+= 2; /* for the "cp" prefix */
3068 if (need_len
< 8) /* for the case we call GetACP */
3071 if (nl_langinfo_len
<= need_len
)
3072 nl_langinfo_buf
= xrealloc (nl_langinfo_buf
,
3073 nl_langinfo_len
= need_len
);
3074 if (!GetLocaleInfo (cloc
, w32item
[item
] | LOCALE_USE_CP_ACP
,
3075 nl_langinfo_buf
, nl_langinfo_len
))
3076 nl_langinfo_buf
[0] = 0;
3077 else if (item
== CODESET
)
3079 if (strcmp (nl_langinfo_buf
, "0") == 0 /* CP_ACP */
3080 || strcmp (nl_langinfo_buf
, "1") == 0) /* CP_OEMCP */
3081 sprintf (nl_langinfo_buf
, "cp%u", GetACP ());
3084 memmove (nl_langinfo_buf
+ 2, nl_langinfo_buf
,
3085 strlen (nl_langinfo_buf
) + 1);
3086 nl_langinfo_buf
[0] = 'c';
3087 nl_langinfo_buf
[1] = 'p';
3092 return nl_langinfo_buf
;
3094 #endif /* HAVE_LANGINFO_CODESET */
3096 DEFUN ("w32-get-locale-info", Fw32_get_locale_info
,
3097 Sw32_get_locale_info
, 1, 2, 0,
3098 doc
: /* Return information about the Windows locale LCID.
3099 By default, return a three letter locale code which encodes the default
3100 language as the first two characters, and the country or regional variant
3101 as the third letter. For example, ENU refers to `English (United States)',
3102 while ENC means `English (Canadian)'.
3104 If the optional argument LONGFORM is t, the long form of the locale
3105 name is returned, e.g. `English (United States)' instead; if LONGFORM
3106 is a number, it is interpreted as an LCTYPE constant and the corresponding
3107 locale information is returned.
3109 If LCID (a 16-bit number) is not a valid locale, the result is nil. */)
3110 (Lisp_Object lcid
, Lisp_Object longform
)
3114 char abbrev_name
[32] = { 0 };
3115 char full_name
[256] = { 0 };
3117 CHECK_NUMBER (lcid
);
3119 if (!IsValidLocale (XINT (lcid
), LCID_SUPPORTED
))
3122 if (NILP (longform
))
3124 got_abbrev
= GetLocaleInfo (XINT (lcid
),
3125 LOCALE_SABBREVLANGNAME
| LOCALE_USE_CP_ACP
,
3126 abbrev_name
, sizeof (abbrev_name
));
3128 return build_string (abbrev_name
);
3130 else if (EQ (longform
, Qt
))
3132 got_full
= GetLocaleInfo (XINT (lcid
),
3133 LOCALE_SLANGUAGE
| LOCALE_USE_CP_ACP
,
3134 full_name
, sizeof (full_name
));
3136 return DECODE_SYSTEM (build_string (full_name
));
3138 else if (NUMBERP (longform
))
3140 got_full
= GetLocaleInfo (XINT (lcid
),
3142 full_name
, sizeof (full_name
));
3143 /* GetLocaleInfo's return value includes the terminating null
3144 character, when the returned information is a string, whereas
3145 make_unibyte_string needs the string length without the
3146 terminating null. */
3148 return make_unibyte_string (full_name
, got_full
- 1);
3155 DEFUN ("w32-get-current-locale-id", Fw32_get_current_locale_id
,
3156 Sw32_get_current_locale_id
, 0, 0, 0,
3157 doc
: /* Return Windows locale id for current locale setting.
3158 This is a numerical value; use `w32-get-locale-info' to convert to a
3159 human-readable form. */)
3162 return make_number (GetThreadLocale ());
3166 int_from_hex (char * s
)
3169 static char hex
[] = "0123456789abcdefABCDEF";
3172 while (*s
&& (p
= strchr (hex
, *s
)) != NULL
)
3174 unsigned digit
= p
- hex
;
3177 val
= val
* 16 + digit
;
3183 /* We need to build a global list, since the EnumSystemLocale callback
3184 function isn't given a context pointer. */
3185 Lisp_Object Vw32_valid_locale_ids
;
3187 static BOOL CALLBACK ALIGN_STACK
3188 enum_locale_fn (LPTSTR localeNum
)
3190 DWORD id
= int_from_hex (localeNum
);
3191 Vw32_valid_locale_ids
= Fcons (make_number (id
), Vw32_valid_locale_ids
);
3195 DEFUN ("w32-get-valid-locale-ids", Fw32_get_valid_locale_ids
,
3196 Sw32_get_valid_locale_ids
, 0, 0, 0,
3197 doc
: /* Return list of all valid Windows locale ids.
3198 Each id is a numerical value; use `w32-get-locale-info' to convert to a
3199 human-readable form. */)
3202 Vw32_valid_locale_ids
= Qnil
;
3204 EnumSystemLocales (enum_locale_fn
, LCID_SUPPORTED
);
3206 Vw32_valid_locale_ids
= Fnreverse (Vw32_valid_locale_ids
);
3207 return Vw32_valid_locale_ids
;
3211 DEFUN ("w32-get-default-locale-id", Fw32_get_default_locale_id
, Sw32_get_default_locale_id
, 0, 1, 0,
3212 doc
: /* Return Windows locale id for default locale setting.
3213 By default, the system default locale setting is returned; if the optional
3214 parameter USERP is non-nil, the user default locale setting is returned.
3215 This is a numerical value; use `w32-get-locale-info' to convert to a
3216 human-readable form. */)
3220 return make_number (GetSystemDefaultLCID ());
3221 return make_number (GetUserDefaultLCID ());
3225 DEFUN ("w32-set-current-locale", Fw32_set_current_locale
, Sw32_set_current_locale
, 1, 1, 0,
3226 doc
: /* Make Windows locale LCID be the current locale setting for Emacs.
3227 If successful, the new locale id is returned, otherwise nil. */)
3230 CHECK_NUMBER (lcid
);
3232 if (!IsValidLocale (XINT (lcid
), LCID_SUPPORTED
))
3235 if (!SetThreadLocale (XINT (lcid
)))
3238 /* Need to set input thread locale if present. */
3239 if (dwWindowsThreadId
)
3240 /* Reply is not needed. */
3241 PostThreadMessage (dwWindowsThreadId
, WM_EMACS_SETLOCALE
, XINT (lcid
), 0);
3243 return make_number (GetThreadLocale ());
3247 /* We need to build a global list, since the EnumCodePages callback
3248 function isn't given a context pointer. */
3249 Lisp_Object Vw32_valid_codepages
;
3251 static BOOL CALLBACK ALIGN_STACK
3252 enum_codepage_fn (LPTSTR codepageNum
)
3254 DWORD id
= atoi (codepageNum
);
3255 Vw32_valid_codepages
= Fcons (make_number (id
), Vw32_valid_codepages
);
3259 DEFUN ("w32-get-valid-codepages", Fw32_get_valid_codepages
,
3260 Sw32_get_valid_codepages
, 0, 0, 0,
3261 doc
: /* Return list of all valid Windows codepages. */)
3264 Vw32_valid_codepages
= Qnil
;
3266 EnumSystemCodePages (enum_codepage_fn
, CP_SUPPORTED
);
3268 Vw32_valid_codepages
= Fnreverse (Vw32_valid_codepages
);
3269 return Vw32_valid_codepages
;
3273 DEFUN ("w32-get-console-codepage", Fw32_get_console_codepage
,
3274 Sw32_get_console_codepage
, 0, 0, 0,
3275 doc
: /* Return current Windows codepage for console input. */)
3278 return make_number (GetConsoleCP ());
3282 DEFUN ("w32-set-console-codepage", Fw32_set_console_codepage
,
3283 Sw32_set_console_codepage
, 1, 1, 0,
3284 doc
: /* Make Windows codepage CP be the codepage for Emacs tty keyboard input.
3285 This codepage setting affects keyboard input in tty mode.
3286 If successful, the new CP is returned, otherwise nil. */)
3291 if (!IsValidCodePage (XINT (cp
)))
3294 if (!SetConsoleCP (XINT (cp
)))
3297 return make_number (GetConsoleCP ());
3301 DEFUN ("w32-get-console-output-codepage", Fw32_get_console_output_codepage
,
3302 Sw32_get_console_output_codepage
, 0, 0, 0,
3303 doc
: /* Return current Windows codepage for console output. */)
3306 return make_number (GetConsoleOutputCP ());
3310 DEFUN ("w32-set-console-output-codepage", Fw32_set_console_output_codepage
,
3311 Sw32_set_console_output_codepage
, 1, 1, 0,
3312 doc
: /* Make Windows codepage CP be the codepage for Emacs console output.
3313 This codepage setting affects display in tty mode.
3314 If successful, the new CP is returned, otherwise nil. */)
3319 if (!IsValidCodePage (XINT (cp
)))
3322 if (!SetConsoleOutputCP (XINT (cp
)))
3325 return make_number (GetConsoleOutputCP ());
3329 DEFUN ("w32-get-codepage-charset", Fw32_get_codepage_charset
,
3330 Sw32_get_codepage_charset
, 1, 1, 0,
3331 doc
: /* Return charset ID corresponding to codepage CP.
3332 Returns nil if the codepage is not valid or its charset ID could
3335 Note that this function is only guaranteed to work with ANSI
3336 codepages; most console codepages are not supported and will
3345 if (!IsValidCodePage (XINT (cp
)))
3348 /* Going through a temporary DWORD_PTR variable avoids compiler warning
3349 about cast to pointer from integer of different size, when
3350 building --with-wide-int or building for 64bit. */
3352 if (TranslateCharsetInfo ((DWORD
*) dwcp
, &info
, TCI_SRCCODEPAGE
))
3353 return make_number (info
.ciCharset
);
3359 DEFUN ("w32-get-valid-keyboard-layouts", Fw32_get_valid_keyboard_layouts
,
3360 Sw32_get_valid_keyboard_layouts
, 0, 0, 0,
3361 doc
: /* Return list of Windows keyboard languages and layouts.
3362 The return value is a list of pairs of language id and layout id. */)
3365 int num_layouts
= GetKeyboardLayoutList (0, NULL
);
3366 HKL
* layouts
= (HKL
*) alloca (num_layouts
* sizeof (HKL
));
3367 Lisp_Object obj
= Qnil
;
3369 if (GetKeyboardLayoutList (num_layouts
, layouts
) == num_layouts
)
3371 while (--num_layouts
>= 0)
3373 HKL kl
= layouts
[num_layouts
];
3375 obj
= Fcons (Fcons (make_number (LOWORD (kl
)),
3376 make_number (HIWORD (kl
))),
3385 DEFUN ("w32-get-keyboard-layout", Fw32_get_keyboard_layout
,
3386 Sw32_get_keyboard_layout
, 0, 0, 0,
3387 doc
: /* Return current Windows keyboard language and layout.
3388 The return value is the cons of the language id and the layout id. */)
3391 HKL kl
= GetKeyboardLayout (dwWindowsThreadId
);
3393 return Fcons (make_number (LOWORD (kl
)),
3394 make_number (HIWORD (kl
)));
3398 DEFUN ("w32-set-keyboard-layout", Fw32_set_keyboard_layout
,
3399 Sw32_set_keyboard_layout
, 1, 1, 0,
3400 doc
: /* Make LAYOUT be the current keyboard layout for Emacs.
3401 The keyboard layout setting affects interpretation of keyboard input.
3402 If successful, the new layout id is returned, otherwise nil. */)
3403 (Lisp_Object layout
)
3407 CHECK_CONS (layout
);
3408 CHECK_NUMBER_CAR (layout
);
3409 CHECK_NUMBER_CDR (layout
);
3411 kl
= (HKL
) (UINT_PTR
) ((XINT (XCAR (layout
)) & 0xffff)
3412 | (XINT (XCDR (layout
)) << 16));
3414 /* Synchronize layout with input thread. */
3415 if (dwWindowsThreadId
)
3417 if (PostThreadMessage (dwWindowsThreadId
, WM_EMACS_SETKEYBOARDLAYOUT
,
3421 GetMessage (&msg
, NULL
, WM_EMACS_DONE
, WM_EMACS_DONE
);
3423 if (msg
.wParam
== 0)
3427 else if (!ActivateKeyboardLayout (kl
, 0))
3430 return Fw32_get_keyboard_layout ();
3433 /* Two variables to interface between get_lcid and the EnumLocales
3434 callback function below. */
3435 #ifndef LOCALE_NAME_MAX_LENGTH
3436 # define LOCALE_NAME_MAX_LENGTH 85
3438 static LCID found_lcid
;
3439 static char lname
[3 * LOCALE_NAME_MAX_LENGTH
+ 1 + 1];
3441 /* Callback function for EnumLocales. */
3442 static BOOL CALLBACK
3443 get_lcid_callback (LPTSTR locale_num_str
)
3446 char locval
[2 * LOCALE_NAME_MAX_LENGTH
+ 1 + 1];
3447 LCID try_lcid
= strtoul (locale_num_str
, &endp
, 16);
3449 if (GetLocaleInfo (try_lcid
, LOCALE_SABBREVLANGNAME
,
3450 locval
, LOCALE_NAME_MAX_LENGTH
))
3454 /* This is for when they only specify the language, as in "ENU". */
3455 if (stricmp (locval
, lname
) == 0)
3457 found_lcid
= try_lcid
;
3460 locval_len
= strlen (locval
);
3461 strcpy (locval
+ locval_len
, "_");
3462 if (GetLocaleInfo (try_lcid
, LOCALE_SABBREVCTRYNAME
,
3463 locval
+ locval_len
+ 1, LOCALE_NAME_MAX_LENGTH
))
3465 locval_len
= strlen (locval
);
3466 if (strnicmp (locval
, lname
, locval_len
) == 0
3467 && (lname
[locval_len
] == '.'
3468 || lname
[locval_len
] == '\0'))
3470 found_lcid
= try_lcid
;
3478 /* Return the Locale ID (LCID) number given the locale's name, a
3479 string, in LOCALE_NAME. This works by enumerating all the locales
3480 supported by the system, until we find one whose name matches
3483 get_lcid (const char *locale_name
)
3485 /* A simple cache. */
3486 static LCID last_lcid
;
3487 static char last_locale
[1000];
3489 /* The code below is not thread-safe, as it uses static variables.
3490 But this function is called only from the Lisp thread. */
3491 if (last_lcid
> 0 && strcmp (locale_name
, last_locale
) == 0)
3494 strncpy (lname
, locale_name
, sizeof (lname
) - 1);
3495 lname
[sizeof (lname
) - 1] = '\0';
3497 EnumSystemLocales (get_lcid_callback
, LCID_SUPPORTED
);
3500 last_lcid
= found_lcid
;
3501 strcpy (last_locale
, locale_name
);
3506 #ifndef _NLSCMPERROR
3507 # define _NLSCMPERROR INT_MAX
3509 #ifndef LINGUISTIC_IGNORECASE
3510 # define LINGUISTIC_IGNORECASE 0x00000010
3513 typedef int (WINAPI
*CompareStringW_Proc
)
3514 (LCID
, DWORD
, LPCWSTR
, int, LPCWSTR
, int);
3517 w32_compare_strings (const char *s1
, const char *s2
, char *locname
,
3520 LCID lcid
= GetThreadLocale ();
3521 wchar_t *string1_w
, *string2_w
;
3523 static CompareStringW_Proc pCompareStringW
;
3528 /* The LCID machinery doesn't seem to support the "C" locale, so we
3529 need to do that by hand. */
3531 && ((locname
[0] == 'C' && (locname
[1] == '\0' || locname
[1] == '.'))
3532 || strcmp (locname
, "POSIX") == 0))
3533 return (ignore_case
? stricmp (s1
, s2
) : strcmp (s1
, s2
));
3535 if (!g_b_init_compare_string_w
)
3537 if (os_subtype
== OS_9X
)
3540 (CompareStringW_Proc
) GetProcAddress (LoadLibrary ("Unicows.dll"),
3542 if (!pCompareStringW
)
3545 /* This return value is compatible with wcscoll and
3546 other MS CRT functions. */
3547 return _NLSCMPERROR
;
3551 pCompareStringW
= CompareStringW
;
3553 g_b_init_compare_string_w
= 1;
3556 needed
= pMultiByteToWideChar (CP_UTF8
, MB_ERR_INVALID_CHARS
, s1
, -1, NULL
, 0);
3559 SAFE_NALLOCA (string1_w
, 1, needed
+ 1);
3560 pMultiByteToWideChar (CP_UTF8
, MB_ERR_INVALID_CHARS
, s1
, -1,
3566 return _NLSCMPERROR
;
3569 needed
= pMultiByteToWideChar (CP_UTF8
, MB_ERR_INVALID_CHARS
, s2
, -1, NULL
, 0);
3572 SAFE_NALLOCA (string2_w
, 1, needed
+ 1);
3573 pMultiByteToWideChar (CP_UTF8
, MB_ERR_INVALID_CHARS
, s2
, -1,
3580 return _NLSCMPERROR
;
3585 /* Convert locale name string to LCID. We don't want to use
3586 LocaleNameToLCID because (a) it is only available since
3587 Vista, and (b) it doesn't accept locale names returned by
3588 'setlocale' and 'GetLocaleInfo'. */
3589 LCID new_lcid
= get_lcid (locname
);
3594 error ("Invalid locale %s: Invalid argument", locname
);
3599 /* NORM_IGNORECASE ignores any tertiary distinction, not just
3600 case variants. LINGUISTIC_IGNORECASE is more selective, and
3601 is sensitive to the locale's language, but it is not
3602 available before Vista. */
3603 if (w32_major_version
>= 6)
3604 flags
|= LINGUISTIC_IGNORECASE
;
3606 flags
|= NORM_IGNORECASE
;
3608 /* This approximates what glibc collation functions do when the
3609 locale's codeset is UTF-8. */
3610 if (!NILP (Vw32_collate_ignore_punctuation
))
3611 flags
|= NORM_IGNORESYMBOLS
;
3612 val
= pCompareStringW (lcid
, flags
, string1_w
, -1, string2_w
, -1);
3617 return _NLSCMPERROR
;
3624 syms_of_ntproc (void)
3626 DEFSYM (Qhigh
, "high");
3627 DEFSYM (Qlow
, "low");
3628 DEFSYM (Qcygwin
, "cygwin");
3629 DEFSYM (Qmsys
, "msys");
3630 DEFSYM (Qw32_native
, "w32-native");
3632 defsubr (&Sw32_has_winsock
);
3633 defsubr (&Sw32_unload_winsock
);
3635 defsubr (&Sw32_short_file_name
);
3636 defsubr (&Sw32_long_file_name
);
3637 defsubr (&Sw32_set_process_priority
);
3638 defsubr (&Sw32_application_type
);
3639 defsubr (&Sw32_get_locale_info
);
3640 defsubr (&Sw32_get_current_locale_id
);
3641 defsubr (&Sw32_get_default_locale_id
);
3642 defsubr (&Sw32_get_valid_locale_ids
);
3643 defsubr (&Sw32_set_current_locale
);
3645 defsubr (&Sw32_get_console_codepage
);
3646 defsubr (&Sw32_set_console_codepage
);
3647 defsubr (&Sw32_get_console_output_codepage
);
3648 defsubr (&Sw32_set_console_output_codepage
);
3649 defsubr (&Sw32_get_valid_codepages
);
3650 defsubr (&Sw32_get_codepage_charset
);
3652 defsubr (&Sw32_get_valid_keyboard_layouts
);
3653 defsubr (&Sw32_get_keyboard_layout
);
3654 defsubr (&Sw32_set_keyboard_layout
);
3656 DEFVAR_LISP ("w32-quote-process-args", Vw32_quote_process_args
,
3657 doc
: /* Non-nil enables quoting of process arguments to ensure correct parsing.
3658 Because Windows does not directly pass argv arrays to child processes,
3659 programs have to reconstruct the argv array by parsing the command
3660 line string. For an argument to contain a space, it must be enclosed
3661 in double quotes or it will be parsed as multiple arguments.
3663 If the value is a character, that character will be used to escape any
3664 quote characters that appear, otherwise a suitable escape character
3665 will be chosen based on the type of the program. */);
3666 Vw32_quote_process_args
= Qt
;
3668 DEFVAR_LISP ("w32-start-process-show-window",
3669 Vw32_start_process_show_window
,
3670 doc
: /* When nil, new child processes hide their windows.
3671 When non-nil, they show their window in the method of their choice.
3672 This variable doesn't affect GUI applications, which will never be hidden. */);
3673 Vw32_start_process_show_window
= Qnil
;
3675 DEFVAR_LISP ("w32-start-process-share-console",
3676 Vw32_start_process_share_console
,
3677 doc
: /* When nil, new child processes are given a new console.
3678 When non-nil, they share the Emacs console; this has the limitation of
3679 allowing only one DOS subprocess to run at a time (whether started directly
3680 or indirectly by Emacs), and preventing Emacs from cleanly terminating the
3681 subprocess group, but may allow Emacs to interrupt a subprocess that doesn't
3682 otherwise respond to interrupts from Emacs. */);
3683 Vw32_start_process_share_console
= Qnil
;
3685 DEFVAR_LISP ("w32-start-process-inherit-error-mode",
3686 Vw32_start_process_inherit_error_mode
,
3687 doc
: /* When nil, new child processes revert to the default error mode.
3688 When non-nil, they inherit their error mode setting from Emacs, which stops
3689 them blocking when trying to access unmounted drives etc. */);
3690 Vw32_start_process_inherit_error_mode
= Qt
;
3692 DEFVAR_INT ("w32-pipe-read-delay", w32_pipe_read_delay
,
3693 doc
: /* Forced delay before reading subprocess output.
3694 This is done to improve the buffering of subprocess output, by
3695 avoiding the inefficiency of frequently reading small amounts of data.
3697 If positive, the value is the number of milliseconds to sleep before
3698 reading the subprocess output. If negative, the magnitude is the number
3699 of time slices to wait (effectively boosting the priority of the child
3700 process temporarily). A value of zero disables waiting entirely. */);
3701 w32_pipe_read_delay
= 50;
3703 DEFVAR_INT ("w32-pipe-buffer-size", w32_pipe_buffer_size
,
3704 doc
: /* Size of buffer for pipes created to communicate with subprocesses.
3705 The size is in bytes, and must be non-negative. The default is zero,
3706 which lets the OS use its default size, usually 4KB (4096 bytes).
3707 Any negative value means to use the default value of zero. */);
3708 w32_pipe_buffer_size
= 0;
3710 DEFVAR_LISP ("w32-downcase-file-names", Vw32_downcase_file_names
,
3711 doc
: /* Non-nil means convert all-upper case file names to lower case.
3712 This applies when performing completions and file name expansion.
3713 Note that the value of this setting also affects remote file names,
3714 so you probably don't want to set to non-nil if you use case-sensitive
3715 filesystems via ange-ftp. */);
3716 Vw32_downcase_file_names
= Qnil
;
3719 DEFVAR_LISP ("w32-generate-fake-inodes", Vw32_generate_fake_inodes
,
3720 doc
: /* Non-nil means attempt to fake realistic inode values.
3721 This works by hashing the truename of files, and should detect
3722 aliasing between long and short (8.3 DOS) names, but can have
3723 false positives because of hash collisions. Note that determining
3724 the truename of a file can be slow. */);
3725 Vw32_generate_fake_inodes
= Qnil
;
3728 DEFVAR_LISP ("w32-get-true-file-attributes", Vw32_get_true_file_attributes
,
3729 doc
: /* Non-nil means determine accurate file attributes in `file-attributes'.
3730 This option controls whether to issue additional system calls to determine
3731 accurate link counts, file type, and ownership information. It is more
3732 useful for files on NTFS volumes, where hard links and file security are
3733 supported, than on volumes of the FAT family.
3735 Without these system calls, link count will always be reported as 1 and file
3736 ownership will be attributed to the current user.
3737 The default value `local' means only issue these system calls for files
3738 on local fixed drives. A value of nil means never issue them.
3739 Any other non-nil value means do this even on remote and removable drives
3740 where the performance impact may be noticeable even on modern hardware. */);
3741 Vw32_get_true_file_attributes
= Qlocal
;
3743 DEFVAR_LISP ("w32-collate-ignore-punctuation",
3744 Vw32_collate_ignore_punctuation
,
3745 doc
: /* Non-nil causes string collation functions ignore punctuation on MS-Windows.
3746 On Posix platforms, `string-collate-lessp' and `string-collate-equalp'
3747 ignore punctuation characters when they compare strings, if the
3748 locale's codeset is UTF-8, as in \"en_US.UTF-8\". Binding this option
3749 to a non-nil value will achieve a similar effect on MS-Windows, where
3750 locales with UTF-8 codeset are not supported.
3752 Note that setting this to non-nil will also ignore blanks and symbols
3753 in the strings. So do NOT use this option when comparing file names
3754 for equality, only when you need to sort them. */);
3755 Vw32_collate_ignore_punctuation
= Qnil
;
3757 staticpro (&Vw32_valid_locale_ids
);
3758 staticpro (&Vw32_valid_codepages
);
3760 /* end of w32proc.c */