1 /* Process support for GNU Emacs on the Microsoft Windows API.
2 Copyright (C) 1992, 1995, 1999-2012 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 Drew Bliss Oct 14, 1993
21 Adapted from alarm.c by Tim Fleehart
33 /* must include CRT headers *before* config.h */
44 /* This definition is missing from mingw32 headers. */
45 extern BOOL WINAPI
IsValidLocale (LCID
, DWORD
);
48 #ifdef HAVE_LANGINFO_CODESET
55 #include "w32common.h"
60 #include "syssignal.h"
62 #include "dispextern.h" /* for xstrcasecmp */
65 #define RVA_TO_PTR(var,section,filedata) \
66 ((void *)((section)->PointerToRawData \
67 + ((DWORD_PTR)(var) - (section)->VirtualAddress) \
68 + (filedata).file_base))
70 Lisp_Object Qhigh
, Qlow
;
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
)
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, NULL
);
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
;
786 /* Defined in <process.h> which conflicts with the local copy */
789 /* Child process management list. */
790 int child_proc_count
= 0;
791 child_process child_procs
[ MAX_CHILDREN
];
793 static DWORD WINAPI
reader_thread (void *arg
);
795 /* Find an unused process slot. */
802 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
803 if (!CHILD_ACTIVE (cp
))
805 if (child_proc_count
== MAX_CHILDREN
)
807 cp
= &child_procs
[child_proc_count
++];
810 memset (cp
, 0, sizeof (*cp
));
813 cp
->procinfo
.hProcess
= NULL
;
814 cp
->status
= STATUS_READ_ERROR
;
816 /* use manual reset event so that select() will function properly */
817 cp
->char_avail
= CreateEvent (NULL
, TRUE
, FALSE
, NULL
);
820 cp
->char_consumed
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
821 if (cp
->char_consumed
)
823 /* The 0x00010000 flag is STACK_SIZE_PARAM_IS_A_RESERVATION.
824 It means that the 64K stack we are requesting in the 2nd
825 argument is how much memory should be reserved for the
826 stack. If we don't use this flag, the memory requested
827 by the 2nd argument is the amount actually _committed_,
828 but Windows reserves 8MB of memory for each thread's
829 stack. (The 8MB figure comes from the -stack
830 command-line argument we pass to the linker when building
831 Emacs, but that's because we need a large stack for
832 Emacs's main thread.) Since we request 2GB of reserved
833 memory at startup (see w32heap.c), which is close to the
834 maximum memory available for a 32-bit process on Windows,
835 the 8MB reservation for each thread causes failures in
836 starting subprocesses, because we create a thread running
837 reader_thread for each subprocess. As 8MB of stack is
838 way too much for reader_thread, forcing Windows to
839 reserve less wins the day. */
840 cp
->thrd
= CreateThread (NULL
, 64 * 1024, reader_thread
, cp
,
851 delete_child (child_process
*cp
)
855 /* Should not be deleting a child that is still needed. */
856 for (i
= 0; i
< MAXDESC
; i
++)
857 if (fd_info
[i
].cp
== cp
)
860 if (!CHILD_ACTIVE (cp
))
863 /* reap thread if necessary */
868 if (GetExitCodeThread (cp
->thrd
, &rc
) && rc
== STILL_ACTIVE
)
870 /* let the thread exit cleanly if possible */
871 cp
->status
= STATUS_READ_ERROR
;
872 SetEvent (cp
->char_consumed
);
874 /* We used to forcibly terminate the thread here, but it
875 is normally unnecessary, and in abnormal cases, the worst that
876 will happen is we have an extra idle thread hanging around
877 waiting for the zombie process. */
878 if (WaitForSingleObject (cp
->thrd
, 1000) != WAIT_OBJECT_0
)
880 DebPrint (("delete_child.WaitForSingleObject (thread) failed "
881 "with %lu for fd %ld\n", GetLastError (), cp
->fd
));
882 TerminateThread (cp
->thrd
, 0);
886 CloseHandle (cp
->thrd
);
891 CloseHandle (cp
->char_avail
);
892 cp
->char_avail
= NULL
;
894 if (cp
->char_consumed
)
896 CloseHandle (cp
->char_consumed
);
897 cp
->char_consumed
= NULL
;
900 /* update child_proc_count (highest numbered slot in use plus one) */
901 if (cp
== child_procs
+ child_proc_count
- 1)
903 for (i
= child_proc_count
-1; i
>= 0; i
--)
904 if (CHILD_ACTIVE (&child_procs
[i
]))
906 child_proc_count
= i
+ 1;
911 child_proc_count
= 0;
914 /* Find a child by pid. */
915 static child_process
*
916 find_child_pid (DWORD pid
)
920 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
921 if (CHILD_ACTIVE (cp
) && pid
== cp
->pid
)
927 /* Thread proc for child process and socket reader threads. Each thread
928 is normally blocked until woken by select() to check for input by
929 reading one char. When the read completes, char_avail is signaled
930 to wake up the select emulator and the thread blocks itself again. */
932 reader_thread (void *arg
)
937 cp
= (child_process
*)arg
;
939 /* We have to wait for the go-ahead before we can start */
941 || WaitForSingleObject (cp
->char_consumed
, INFINITE
) != WAIT_OBJECT_0
949 if (fd_info
[cp
->fd
].flags
& FILE_LISTEN
)
950 rc
= _sys_wait_accept (cp
->fd
);
952 rc
= _sys_read_ahead (cp
->fd
);
954 /* The name char_avail is a misnomer - it really just means the
955 read-ahead has completed, whether successfully or not. */
956 if (!SetEvent (cp
->char_avail
))
958 DebPrint (("reader_thread.SetEvent failed with %lu for fd %ld\n",
959 GetLastError (), cp
->fd
));
963 if (rc
== STATUS_READ_ERROR
)
966 /* If the read died, the child has died so let the thread die */
967 if (rc
== STATUS_READ_FAILED
)
970 /* Wait until our input is acknowledged before reading again */
971 if (WaitForSingleObject (cp
->char_consumed
, INFINITE
) != WAIT_OBJECT_0
)
973 DebPrint (("reader_thread.WaitForSingleObject failed with "
974 "%lu for fd %ld\n", GetLastError (), cp
->fd
));
981 /* To avoid Emacs changing directory, we just record here the directory
982 the new process should start in. This is set just before calling
983 sys_spawnve, and is not generally valid at any other time. */
984 static char * process_dir
;
987 create_child (char *exe
, char *cmdline
, char *env
, int is_gui_app
,
988 int * pPid
, child_process
*cp
)
991 SECURITY_ATTRIBUTES sec_attrs
;
993 SECURITY_DESCRIPTOR sec_desc
;
996 char dir
[ MAXPATHLEN
];
998 if (cp
== NULL
) emacs_abort ();
1000 memset (&start
, 0, sizeof (start
));
1001 start
.cb
= sizeof (start
);
1004 if (NILP (Vw32_start_process_show_window
) && !is_gui_app
)
1005 start
.dwFlags
= STARTF_USESTDHANDLES
| STARTF_USESHOWWINDOW
;
1007 start
.dwFlags
= STARTF_USESTDHANDLES
;
1008 start
.wShowWindow
= SW_HIDE
;
1010 start
.hStdInput
= GetStdHandle (STD_INPUT_HANDLE
);
1011 start
.hStdOutput
= GetStdHandle (STD_OUTPUT_HANDLE
);
1012 start
.hStdError
= GetStdHandle (STD_ERROR_HANDLE
);
1013 #endif /* HAVE_NTGUI */
1016 /* Explicitly specify no security */
1017 if (!InitializeSecurityDescriptor (&sec_desc
, SECURITY_DESCRIPTOR_REVISION
))
1019 if (!SetSecurityDescriptorDacl (&sec_desc
, TRUE
, NULL
, FALSE
))
1022 sec_attrs
.nLength
= sizeof (sec_attrs
);
1023 sec_attrs
.lpSecurityDescriptor
= NULL
/* &sec_desc */;
1024 sec_attrs
.bInheritHandle
= FALSE
;
1026 strcpy (dir
, process_dir
);
1027 unixtodos_filename (dir
);
1029 flags
= (!NILP (Vw32_start_process_share_console
)
1030 ? CREATE_NEW_PROCESS_GROUP
1031 : CREATE_NEW_CONSOLE
);
1032 if (NILP (Vw32_start_process_inherit_error_mode
))
1033 flags
|= CREATE_DEFAULT_ERROR_MODE
;
1034 if (!CreateProcess (exe
, cmdline
, &sec_attrs
, NULL
, TRUE
,
1035 flags
, env
, dir
, &start
, &cp
->procinfo
))
1038 cp
->pid
= (int) cp
->procinfo
.dwProcessId
;
1040 /* Hack for Windows 95, which assigns large (ie negative) pids */
1049 DebPrint (("create_child.CreateProcess failed: %ld\n", GetLastError ()););
1053 /* create_child doesn't know what emacs' file handle will be for waiting
1054 on output from the child, so we need to make this additional call
1055 to register the handle with the process
1056 This way the select emulator knows how to match file handles with
1057 entries in child_procs. */
1059 register_child (int pid
, int fd
)
1063 cp
= find_child_pid (pid
);
1066 DebPrint (("register_child unable to find pid %lu\n", pid
));
1071 DebPrint (("register_child registered fd %d with pid %lu\n", fd
, pid
));
1076 /* thread is initially blocked until select is called; set status so
1077 that select will release thread */
1078 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
1080 /* attach child_process to fd_info */
1081 if (fd_info
[fd
].cp
!= NULL
)
1083 DebPrint (("register_child: fd_info[%d] apparently in use!\n", fd
));
1087 fd_info
[fd
].cp
= cp
;
1090 /* When a process dies its pipe will break so the reader thread will
1091 signal failure to the select emulator.
1092 The select emulator then calls this routine to clean up.
1093 Since the thread signaled failure we can assume it is exiting. */
1095 reap_subprocess (child_process
*cp
)
1097 if (cp
->procinfo
.hProcess
)
1099 /* Reap the process */
1101 /* Process should have already died before we are called. */
1102 if (WaitForSingleObject (cp
->procinfo
.hProcess
, 0) != WAIT_OBJECT_0
)
1103 DebPrint (("reap_subprocess: child fpr fd %d has not died yet!", cp
->fd
));
1105 CloseHandle (cp
->procinfo
.hProcess
);
1106 cp
->procinfo
.hProcess
= NULL
;
1107 CloseHandle (cp
->procinfo
.hThread
);
1108 cp
->procinfo
.hThread
= NULL
;
1111 /* For asynchronous children, the child_proc resources will be freed
1112 when the last pipe read descriptor is closed; for synchronous
1113 children, we must explicitly free the resources now because
1114 register_child has not been called. */
1119 /* Wait for a child process specified by PID, or for any of our
1120 existing child processes (if PID is nonpositive) to die. When it
1121 does, close its handle. Return the pid of the process that died
1122 and fill in STATUS if non-NULL. */
1125 waitpid (pid_t pid
, int *status
, int options
)
1127 DWORD active
, retval
;
1129 child_process
*cp
, *cps
[MAX_CHILDREN
];
1130 HANDLE wait_hnd
[MAX_CHILDREN
];
1132 int dont_wait
= (options
& WNOHANG
) != 0;
1135 /* According to Posix:
1137 PID = -1 means status is requested for any child process.
1139 PID > 0 means status is requested for a single child process
1142 PID = 0 means status is requested for any child process whose
1143 process group ID is equal to that of the calling process. But
1144 since Windows has only a limited support for process groups (only
1145 for console processes and only for the purposes of passing
1146 Ctrl-BREAK signal to them), and since we have no documented way
1147 of determining whether a given process belongs to our group, we
1150 PID < -1 means status is requested for any child process whose
1151 process group ID is equal to the absolute value of PID. Again,
1152 since we don't support process groups, we treat that as -1. */
1157 /* We are requested to wait for a specific child. */
1158 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
1160 /* Some child_procs might be sockets; ignore them. Also
1161 ignore subprocesses whose output is not yet completely
1163 if (CHILD_ACTIVE (cp
)
1164 && cp
->procinfo
.hProcess
1173 if (cp
->fd
< 0 || (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) != 0)
1175 wait_hnd
[nh
] = cp
->procinfo
.hProcess
;
1181 /* PID specifies our subprocess, but its status is not
1188 /* No such child process, or nothing to wait for, so fail. */
1195 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
1197 if (CHILD_ACTIVE (cp
)
1198 && cp
->procinfo
.hProcess
1199 && (cp
->fd
< 0 || (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) != 0))
1201 wait_hnd
[nh
] = cp
->procinfo
.hProcess
;
1208 /* Nothing to wait on, so fail. */
1217 timeout_ms
= 1000; /* check for quit about once a second. */
1222 active
= WaitForMultipleObjects (nh
, wait_hnd
, FALSE
, timeout_ms
);
1223 } while (active
== WAIT_TIMEOUT
);
1225 if (active
== WAIT_FAILED
)
1230 else if (active
>= WAIT_OBJECT_0
1231 && active
< WAIT_OBJECT_0
+MAXIMUM_WAIT_OBJECTS
)
1233 active
-= WAIT_OBJECT_0
;
1235 else if (active
>= WAIT_ABANDONED_0
1236 && active
< WAIT_ABANDONED_0
+MAXIMUM_WAIT_OBJECTS
)
1238 active
-= WAIT_ABANDONED_0
;
1243 if (!GetExitCodeProcess (wait_hnd
[active
], &retval
))
1245 DebPrint (("Wait.GetExitCodeProcess failed with %lu\n",
1249 if (retval
== STILL_ACTIVE
)
1251 /* Should never happen. */
1252 DebPrint (("Wait.WaitForMultipleObjects returned an active process\n"));
1253 if (pid
> 0 && dont_wait
)
1259 /* Massage the exit code from the process to match the format expected
1260 by the WIFSTOPPED et al macros in syswait.h. Only WIFSIGNALED and
1261 WIFEXITED are supported; WIFSTOPPED doesn't make sense under NT. */
1263 if (retval
== STATUS_CONTROL_C_EXIT
)
1268 if (pid
> 0 && active
!= 0)
1273 DebPrint (("Wait signaled with process pid %d\n", cp
->pid
));
1280 else if (synch_process_alive
)
1282 synch_process_alive
= 0;
1284 /* Report the status of the synchronous process. */
1285 if (WIFEXITED (retval
))
1286 synch_process_retcode
= WEXITSTATUS (retval
);
1287 else if (WIFSIGNALED (retval
))
1289 int code
= WTERMSIG (retval
);
1290 const char *signame
;
1292 synchronize_system_messages_locale ();
1293 signame
= strsignal (code
);
1296 signame
= "unknown";
1298 synch_process_death
= signame
;
1301 reap_subprocess (cp
);
1304 reap_subprocess (cp
);
1309 /* Old versions of w32api headers don't have separate 32-bit and
1310 64-bit defines, but the one they have matches the 32-bit variety. */
1311 #ifndef IMAGE_NT_OPTIONAL_HDR32_MAGIC
1312 # define IMAGE_NT_OPTIONAL_HDR32_MAGIC IMAGE_NT_OPTIONAL_HDR_MAGIC
1313 # define IMAGE_OPTIONAL_HEADER32 IMAGE_OPTIONAL_HEADER
1317 w32_executable_type (char * filename
,
1319 int * is_cygnus_app
,
1322 file_data executable
;
1325 /* Default values in case we can't tell for sure. */
1326 *is_dos_app
= FALSE
;
1327 *is_cygnus_app
= FALSE
;
1328 *is_gui_app
= FALSE
;
1330 if (!open_input_file (&executable
, filename
))
1333 p
= strrchr (filename
, '.');
1335 /* We can only identify DOS .com programs from the extension. */
1336 if (p
&& xstrcasecmp (p
, ".com") == 0)
1338 else if (p
&& (xstrcasecmp (p
, ".bat") == 0
1339 || xstrcasecmp (p
, ".cmd") == 0))
1341 /* A DOS shell script - it appears that CreateProcess is happy to
1342 accept this (somewhat surprisingly); presumably it looks at
1343 COMSPEC to determine what executable to actually invoke.
1344 Therefore, we have to do the same here as well. */
1345 /* Actually, I think it uses the program association for that
1346 extension, which is defined in the registry. */
1347 p
= egetenv ("COMSPEC");
1349 w32_executable_type (p
, is_dos_app
, is_cygnus_app
, is_gui_app
);
1353 /* Look for DOS .exe signature - if found, we must also check that
1354 it isn't really a 16- or 32-bit Windows exe, since both formats
1355 start with a DOS program stub. Note that 16-bit Windows
1356 executables use the OS/2 1.x format. */
1358 IMAGE_DOS_HEADER
* dos_header
;
1359 IMAGE_NT_HEADERS
* nt_header
;
1361 dos_header
= (PIMAGE_DOS_HEADER
) executable
.file_base
;
1362 if (dos_header
->e_magic
!= IMAGE_DOS_SIGNATURE
)
1365 nt_header
= (PIMAGE_NT_HEADERS
) ((unsigned char *) dos_header
+ dos_header
->e_lfanew
);
1367 if ((char *) nt_header
> (char *) dos_header
+ executable
.size
)
1369 /* Some dos headers (pkunzip) have bogus e_lfanew fields. */
1372 else if (nt_header
->Signature
!= IMAGE_NT_SIGNATURE
1373 && LOWORD (nt_header
->Signature
) != IMAGE_OS2_SIGNATURE
)
1377 else if (nt_header
->Signature
== IMAGE_NT_SIGNATURE
)
1379 IMAGE_DATA_DIRECTORY
*data_dir
= NULL
;
1380 if (nt_header
->OptionalHeader
.Magic
== IMAGE_NT_OPTIONAL_HDR32_MAGIC
)
1382 /* Ensure we are using the 32 bit structure. */
1383 IMAGE_OPTIONAL_HEADER32
*opt
1384 = (IMAGE_OPTIONAL_HEADER32
*) &(nt_header
->OptionalHeader
);
1385 data_dir
= opt
->DataDirectory
;
1386 *is_gui_app
= (opt
->Subsystem
== IMAGE_SUBSYSTEM_WINDOWS_GUI
);
1388 /* MingW 3.12 has the required 64 bit structs, but in case older
1389 versions don't, only check 64 bit exes if we know how. */
1390 #ifdef IMAGE_NT_OPTIONAL_HDR64_MAGIC
1391 else if (nt_header
->OptionalHeader
.Magic
1392 == IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
1394 IMAGE_OPTIONAL_HEADER64
*opt
1395 = (IMAGE_OPTIONAL_HEADER64
*) &(nt_header
->OptionalHeader
);
1396 data_dir
= opt
->DataDirectory
;
1397 *is_gui_app
= (opt
->Subsystem
== IMAGE_SUBSYSTEM_WINDOWS_GUI
);
1402 /* Look for cygwin.dll in DLL import list. */
1403 IMAGE_DATA_DIRECTORY import_dir
=
1404 data_dir
[IMAGE_DIRECTORY_ENTRY_IMPORT
];
1405 IMAGE_IMPORT_DESCRIPTOR
* imports
;
1406 IMAGE_SECTION_HEADER
* section
;
1408 section
= rva_to_section (import_dir
.VirtualAddress
, nt_header
);
1409 imports
= RVA_TO_PTR (import_dir
.VirtualAddress
, section
,
1412 for ( ; imports
->Name
; imports
++)
1414 char * dllname
= RVA_TO_PTR (imports
->Name
, section
,
1417 /* The exact name of the cygwin dll has changed with
1418 various releases, but hopefully this will be reasonably
1420 if (strncmp (dllname
, "cygwin", 6) == 0)
1422 *is_cygnus_app
= TRUE
;
1431 close_file_data (&executable
);
1435 compare_env (const void *strp1
, const void *strp2
)
1437 const char *str1
= *(const char **)strp1
, *str2
= *(const char **)strp2
;
1439 while (*str1
&& *str2
&& *str1
!= '=' && *str2
!= '=')
1441 /* Sort order in command.com/cmd.exe is based on uppercasing
1442 names, so do the same here. */
1443 if (toupper (*str1
) > toupper (*str2
))
1445 else if (toupper (*str1
) < toupper (*str2
))
1450 if (*str1
== '=' && *str2
== '=')
1452 else if (*str1
== '=')
1459 merge_and_sort_env (char **envp1
, char **envp2
, char **new_envp
)
1461 char **optr
, **nptr
;
1473 num
+= optr
- envp2
;
1475 qsort (new_envp
, num
, sizeof (char *), compare_env
);
1480 /* When a new child process is created we need to register it in our list,
1481 so intercept spawn requests. */
1483 sys_spawnve (int mode
, char *cmdname
, char **argv
, char **envp
)
1485 Lisp_Object program
, full
;
1486 char *cmdline
, *env
, *parg
, **targ
;
1490 int is_dos_app
, is_cygnus_app
, is_gui_app
;
1493 /* We pass our process ID to our children by setting up an environment
1494 variable in their environment. */
1495 char ppid_env_var_buffer
[64];
1496 char *extra_env
[] = {ppid_env_var_buffer
, NULL
};
1497 /* These are the characters that cause an argument to need quoting.
1498 Arguments with whitespace characters need quoting to prevent the
1499 argument being split into two or more. Arguments with wildcards
1500 are also quoted, for consistency with posix platforms, where wildcards
1501 are not expanded if we run the program directly without a shell.
1502 Some extra whitespace characters need quoting in Cygwin programs,
1503 so this list is conditionally modified below. */
1504 char *sepchars
= " \t*?";
1506 /* We don't care about the other modes */
1507 if (mode
!= _P_NOWAIT
)
1513 /* Handle executable names without an executable suffix. */
1514 program
= build_string (cmdname
);
1515 if (NILP (Ffile_executable_p (program
)))
1517 struct gcpro gcpro1
;
1521 openp (Vexec_path
, program
, Vexec_suffixes
, &full
, make_number (X_OK
));
1531 /* make sure argv[0] and cmdname are both in DOS format */
1532 cmdname
= SDATA (program
);
1533 unixtodos_filename (cmdname
);
1536 /* Determine whether program is a 16-bit DOS executable, or a 32-bit Windows
1537 executable that is implicitly linked to the Cygnus dll (implying it
1538 was compiled with the Cygnus GNU toolchain and hence relies on
1539 cygwin.dll to parse the command line - we use this to decide how to
1540 escape quote chars in command line args that must be quoted).
1542 Also determine whether it is a GUI app, so that we don't hide its
1543 initial window unless specifically requested. */
1544 w32_executable_type (cmdname
, &is_dos_app
, &is_cygnus_app
, &is_gui_app
);
1546 /* On Windows 95, if cmdname is a DOS app, we invoke a helper
1547 application to start it by specifying the helper app as cmdname,
1548 while leaving the real app name as argv[0]. */
1551 cmdname
= alloca (MAXPATHLEN
);
1552 if (egetenv ("CMDPROXY"))
1553 strcpy (cmdname
, egetenv ("CMDPROXY"));
1556 strcpy (cmdname
, SDATA (Vinvocation_directory
));
1557 strcat (cmdname
, "cmdproxy.exe");
1559 unixtodos_filename (cmdname
);
1562 /* we have to do some conjuring here to put argv and envp into the
1563 form CreateProcess wants... argv needs to be a space separated/null
1564 terminated list of parameters, and envp is a null
1565 separated/double-null terminated list of parameters.
1567 Additionally, zero-length args and args containing whitespace or
1568 quote chars need to be wrapped in double quotes - for this to work,
1569 embedded quotes need to be escaped as well. The aim is to ensure
1570 the child process reconstructs the argv array we start with
1571 exactly, so we treat quotes at the beginning and end of arguments
1574 The w32 GNU-based library from Cygnus doubles quotes to escape
1575 them, while MSVC uses backslash for escaping. (Actually the MSVC
1576 startup code does attempt to recognize doubled quotes and accept
1577 them, but gets it wrong and ends up requiring three quotes to get a
1578 single embedded quote!) So by default we decide whether to use
1579 quote or backslash as the escape character based on whether the
1580 binary is apparently a Cygnus compiled app.
1582 Note that using backslash to escape embedded quotes requires
1583 additional special handling if an embedded quote is already
1584 preceded by backslash, or if an arg requiring quoting ends with
1585 backslash. In such cases, the run of escape characters needs to be
1586 doubled. For consistency, we apply this special handling as long
1587 as the escape character is not quote.
1589 Since we have no idea how large argv and envp are likely to be we
1590 figure out list lengths on the fly and allocate them. */
1592 if (!NILP (Vw32_quote_process_args
))
1595 /* Override escape char by binding w32-quote-process-args to
1596 desired character, or use t for auto-selection. */
1597 if (INTEGERP (Vw32_quote_process_args
))
1598 escape_char
= XINT (Vw32_quote_process_args
);
1600 escape_char
= is_cygnus_app
? '"' : '\\';
1603 /* Cygwin apps needs quoting a bit more often. */
1604 if (escape_char
== '"')
1605 sepchars
= "\r\n\t\f '";
1613 int need_quotes
= 0;
1614 int escape_char_run
= 0;
1620 if (escape_char
== '"' && *p
== '\\')
1621 /* If it's a Cygwin app, \ needs to be escaped. */
1625 /* allow for embedded quotes to be escaped */
1628 /* handle the case where the embedded quote is already escaped */
1629 if (escape_char_run
> 0)
1631 /* To preserve the arg exactly, we need to double the
1632 preceding escape characters (plus adding one to
1633 escape the quote character itself). */
1634 arglen
+= escape_char_run
;
1637 else if (strchr (sepchars
, *p
) != NULL
)
1642 if (*p
== escape_char
&& escape_char
!= '"')
1645 escape_char_run
= 0;
1650 /* handle the case where the arg ends with an escape char - we
1651 must not let the enclosing quote be escaped. */
1652 if (escape_char_run
> 0)
1653 arglen
+= escape_char_run
;
1655 arglen
+= strlen (*targ
++) + 1;
1657 cmdline
= alloca (arglen
);
1663 int need_quotes
= 0;
1671 if ((strchr (sepchars
, *p
) != NULL
) || *p
== '"')
1676 int escape_char_run
= 0;
1682 last
= p
+ strlen (p
) - 1;
1685 /* This version does not escape quotes if they occur at the
1686 beginning or end of the arg - this could lead to incorrect
1687 behavior when the arg itself represents a command line
1688 containing quoted args. I believe this was originally done
1689 as a hack to make some things work, before
1690 `w32-quote-process-args' was added. */
1693 if (*p
== '"' && p
> first
&& p
< last
)
1694 *parg
++ = escape_char
; /* escape embedded quotes */
1702 /* double preceding escape chars if any */
1703 while (escape_char_run
> 0)
1705 *parg
++ = escape_char
;
1708 /* escape all quote chars, even at beginning or end */
1709 *parg
++ = escape_char
;
1711 else if (escape_char
== '"' && *p
== '\\')
1715 if (*p
== escape_char
&& escape_char
!= '"')
1718 escape_char_run
= 0;
1720 /* double escape chars before enclosing quote */
1721 while (escape_char_run
> 0)
1723 *parg
++ = escape_char
;
1731 strcpy (parg
, *targ
);
1732 parg
+= strlen (*targ
);
1742 numenv
= 1; /* for end null */
1745 arglen
+= strlen (*targ
++) + 1;
1748 /* extra env vars... */
1749 sprintf (ppid_env_var_buffer
, "EM_PARENT_PROCESS_ID=%lu",
1750 GetCurrentProcessId ());
1751 arglen
+= strlen (ppid_env_var_buffer
) + 1;
1754 /* merge env passed in and extra env into one, and sort it. */
1755 targ
= (char **) alloca (numenv
* sizeof (char *));
1756 merge_and_sort_env (envp
, extra_env
, targ
);
1758 /* concatenate env entries. */
1759 env
= alloca (arglen
);
1763 strcpy (parg
, *targ
);
1764 parg
+= strlen (*targ
++);
1777 /* Now create the process. */
1778 if (!create_child (cmdname
, cmdline
, env
, is_gui_app
, &pid
, cp
))
1788 /* Emulate the select call
1789 Wait for available input on any of the given rfds, or timeout if
1790 a timeout is given and no input is detected
1791 wfds and efds are not supported and must be NULL.
1793 For simplicity, we detect the death of child processes here and
1794 synchronously call the SIGCHLD handler. Since it is possible for
1795 children to be created without a corresponding pipe handle from which
1796 to read output, we wait separately on the process handles as well as
1797 the char_avail events for each process pipe. We only call
1798 wait/reap_process when the process actually terminates.
1800 To reduce the number of places in which Emacs can be hung such that
1801 C-g is not able to interrupt it, we always wait on interrupt_handle
1802 (which is signaled by the input thread when C-g is detected). If we
1803 detect that we were woken up by C-g, we return -1 with errno set to
1804 EINTR as on Unix. */
1806 /* From w32console.c */
1807 extern HANDLE keyboard_handle
;
1809 /* From w32xfns.c */
1810 extern HANDLE interrupt_handle
;
1812 /* From process.c */
1813 extern int proc_buffered_char
[];
1816 sys_select (int nfds
, SELECT_TYPE
*rfds
, SELECT_TYPE
*wfds
, SELECT_TYPE
*efds
,
1817 EMACS_TIME
*timeout
, void *ignored
)
1820 DWORD timeout_ms
, start_time
;
1823 child_process
*cp
, *cps
[MAX_CHILDREN
];
1824 HANDLE wait_hnd
[MAXDESC
+ MAX_CHILDREN
];
1825 int fdindex
[MAXDESC
]; /* mapping from wait handles back to descriptors */
1828 timeout
? (timeout
->tv_sec
* 1000 + timeout
->tv_nsec
/ 1000000) : INFINITE
;
1830 /* If the descriptor sets are NULL but timeout isn't, then just Sleep. */
1831 if (rfds
== NULL
&& wfds
== NULL
&& efds
== NULL
&& timeout
!= NULL
)
1837 /* Otherwise, we only handle rfds, so fail otherwise. */
1838 if (rfds
== NULL
|| wfds
!= NULL
|| efds
!= NULL
)
1848 /* Always wait on interrupt_handle, to detect C-g (quit). */
1849 wait_hnd
[0] = interrupt_handle
;
1852 /* Build a list of pipe handles to wait on. */
1854 for (i
= 0; i
< nfds
; i
++)
1855 if (FD_ISSET (i
, &orfds
))
1859 if (keyboard_handle
)
1861 /* Handle stdin specially */
1862 wait_hnd
[nh
] = keyboard_handle
;
1867 /* Check for any emacs-generated input in the queue since
1868 it won't be detected in the wait */
1869 if (detect_input_pending ())
1877 /* Child process and socket input */
1881 int current_status
= cp
->status
;
1883 if (current_status
== STATUS_READ_ACKNOWLEDGED
)
1885 /* Tell reader thread which file handle to use. */
1887 /* Wake up the reader thread for this process */
1888 cp
->status
= STATUS_READ_READY
;
1889 if (!SetEvent (cp
->char_consumed
))
1890 DebPrint (("nt_select.SetEvent failed with "
1891 "%lu for fd %ld\n", GetLastError (), i
));
1894 #ifdef CHECK_INTERLOCK
1895 /* slightly crude cross-checking of interlock between threads */
1897 current_status
= cp
->status
;
1898 if (WaitForSingleObject (cp
->char_avail
, 0) == WAIT_OBJECT_0
)
1900 /* char_avail has been signaled, so status (which may
1901 have changed) should indicate read has completed
1902 but has not been acknowledged. */
1903 current_status
= cp
->status
;
1904 if (current_status
!= STATUS_READ_SUCCEEDED
1905 && current_status
!= STATUS_READ_FAILED
)
1906 DebPrint (("char_avail set, but read not completed: status %d\n",
1911 /* char_avail has not been signaled, so status should
1912 indicate that read is in progress; small possibility
1913 that read has completed but event wasn't yet signaled
1914 when we tested it (because a context switch occurred
1915 or if running on separate CPUs). */
1916 if (current_status
!= STATUS_READ_READY
1917 && current_status
!= STATUS_READ_IN_PROGRESS
1918 && current_status
!= STATUS_READ_SUCCEEDED
1919 && current_status
!= STATUS_READ_FAILED
)
1920 DebPrint (("char_avail reset, but read status is bad: %d\n",
1924 wait_hnd
[nh
] = cp
->char_avail
;
1926 if (!wait_hnd
[nh
]) emacs_abort ();
1929 DebPrint (("select waiting on child %d fd %d\n",
1930 cp
-child_procs
, i
));
1935 /* Unable to find something to wait on for this fd, skip */
1937 /* Note that this is not a fatal error, and can in fact
1938 happen in unusual circumstances. Specifically, if
1939 sys_spawnve fails, eg. because the program doesn't
1940 exist, and debug-on-error is t so Fsignal invokes a
1941 nested input loop, then the process output pipe is
1942 still included in input_wait_mask with no child_proc
1943 associated with it. (It is removed when the debugger
1944 exits the nested input loop and the error is thrown.) */
1946 DebPrint (("sys_select: fd %ld is invalid! ignoring\n", i
));
1952 /* Add handles of child processes. */
1954 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
1955 /* Some child_procs might be sockets; ignore them. Also some
1956 children may have died already, but we haven't finished reading
1957 the process output; ignore them too. */
1958 if (CHILD_ACTIVE (cp
) && cp
->procinfo
.hProcess
1960 || (fd_info
[cp
->fd
].flags
& FILE_SEND_SIGCHLD
) == 0
1961 || (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) != 0)
1964 wait_hnd
[nh
+ nc
] = cp
->procinfo
.hProcess
;
1969 /* Nothing to look for, so we didn't find anything */
1977 start_time
= GetTickCount ();
1979 /* Wait for input or child death to be signaled. If user input is
1980 allowed, then also accept window messages. */
1981 if (FD_ISSET (0, &orfds
))
1982 active
= MsgWaitForMultipleObjects (nh
+ nc
, wait_hnd
, FALSE
, timeout_ms
,
1985 active
= WaitForMultipleObjects (nh
+ nc
, wait_hnd
, FALSE
, timeout_ms
);
1987 if (active
== WAIT_FAILED
)
1989 DebPrint (("select.WaitForMultipleObjects (%d, %lu) failed with %lu\n",
1990 nh
+ nc
, timeout_ms
, GetLastError ()));
1991 /* don't return EBADF - this causes wait_reading_process_output to
1992 abort; WAIT_FAILED is returned when single-stepping under
1993 Windows 95 after switching thread focus in debugger, and
1994 possibly at other times. */
1998 else if (active
== WAIT_TIMEOUT
)
2002 else if (active
>= WAIT_OBJECT_0
2003 && active
< WAIT_OBJECT_0
+MAXIMUM_WAIT_OBJECTS
)
2005 active
-= WAIT_OBJECT_0
;
2007 else if (active
>= WAIT_ABANDONED_0
2008 && active
< WAIT_ABANDONED_0
+MAXIMUM_WAIT_OBJECTS
)
2010 active
-= WAIT_ABANDONED_0
;
2015 /* Loop over all handles after active (now officially documented as
2016 being the first signaled handle in the array). We do this to
2017 ensure fairness, so that all channels with data available will be
2018 processed - otherwise higher numbered channels could be starved. */
2021 if (active
== nh
+ nc
)
2023 /* There are messages in the lisp thread's queue; we must
2024 drain the queue now to ensure they are processed promptly,
2025 because if we don't do so, we will not be woken again until
2026 further messages arrive.
2028 NB. If ever we allow window message procedures to callback
2029 into lisp, we will need to ensure messages are dispatched
2030 at a safe time for lisp code to be run (*), and we may also
2031 want to provide some hooks in the dispatch loop to cater
2032 for modeless dialogs created by lisp (ie. to register
2033 window handles to pass to IsDialogMessage).
2035 (*) Note that MsgWaitForMultipleObjects above is an
2036 internal dispatch point for messages that are sent to
2037 windows created by this thread. */
2038 drain_message_queue ();
2040 else if (active
>= nh
)
2042 cp
= cps
[active
- nh
];
2044 /* We cannot always signal SIGCHLD immediately; if we have not
2045 finished reading the process output, we must delay sending
2046 SIGCHLD until we do. */
2048 if (cp
->fd
>= 0 && (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) == 0)
2049 fd_info
[cp
->fd
].flags
|= FILE_SEND_SIGCHLD
;
2050 /* SIG_DFL for SIGCHLD is ignore */
2051 else if (sig_handlers
[SIGCHLD
] != SIG_DFL
&&
2052 sig_handlers
[SIGCHLD
] != SIG_IGN
)
2055 DebPrint (("select calling SIGCHLD handler for pid %d\n",
2058 sig_handlers
[SIGCHLD
] (SIGCHLD
);
2061 else if (fdindex
[active
] == -1)
2063 /* Quit (C-g) was detected. */
2067 else if (fdindex
[active
] == 0)
2069 /* Keyboard input available */
2075 /* must be a socket or pipe - read ahead should have
2076 completed, either succeeding or failing. */
2077 FD_SET (fdindex
[active
], rfds
);
2081 /* Even though wait_reading_process_output only reads from at most
2082 one channel, we must process all channels here so that we reap
2083 all children that have died. */
2084 while (++active
< nh
+ nc
)
2085 if (WaitForSingleObject (wait_hnd
[active
], 0) == WAIT_OBJECT_0
)
2087 } while (active
< nh
+ nc
);
2089 /* If no input has arrived and timeout hasn't expired, wait again. */
2092 DWORD elapsed
= GetTickCount () - start_time
;
2094 if (timeout_ms
> elapsed
) /* INFINITE is MAX_UINT */
2096 if (timeout_ms
!= INFINITE
)
2097 timeout_ms
-= elapsed
;
2098 goto count_children
;
2105 /* Substitute for certain kill () operations */
2107 static BOOL CALLBACK
2108 find_child_console (HWND hwnd
, LPARAM arg
)
2110 child_process
* cp
= (child_process
*) arg
;
2114 thread_id
= GetWindowThreadProcessId (hwnd
, &process_id
);
2115 if (process_id
== cp
->procinfo
.dwProcessId
)
2117 char window_class
[32];
2119 GetClassName (hwnd
, window_class
, sizeof (window_class
));
2120 if (strcmp (window_class
,
2121 (os_subtype
== OS_9X
)
2123 : "ConsoleWindowClass") == 0)
2133 /* Emulate 'kill', but only for other processes. */
2135 sys_kill (int pid
, int sig
)
2139 int need_to_free
= 0;
2142 /* Only handle signals that will result in the process dying */
2143 if (sig
!= SIGINT
&& sig
!= SIGKILL
&& sig
!= SIGQUIT
&& sig
!= SIGHUP
)
2149 cp
= find_child_pid (pid
);
2152 /* We were passed a PID of something other than our subprocess.
2153 If that is our own PID, we will send to ourself a message to
2154 close the selected frame, which does not necessarily
2155 terminates Emacs. But then we are not supposed to call
2156 sys_kill with our own PID. */
2157 proc_hand
= OpenProcess (PROCESS_TERMINATE
, 0, pid
);
2158 if (proc_hand
== NULL
)
2167 proc_hand
= cp
->procinfo
.hProcess
;
2168 pid
= cp
->procinfo
.dwProcessId
;
2170 /* Try to locate console window for process. */
2171 EnumWindows (find_child_console
, (LPARAM
) cp
);
2174 if (sig
== SIGINT
|| sig
== SIGQUIT
)
2176 if (NILP (Vw32_start_process_share_console
) && cp
&& cp
->hwnd
)
2178 BYTE control_scan_code
= (BYTE
) MapVirtualKey (VK_CONTROL
, 0);
2179 /* Fake Ctrl-C for SIGINT, and Ctrl-Break for SIGQUIT. */
2180 BYTE vk_break_code
= (sig
== SIGINT
) ? 'C' : VK_CANCEL
;
2181 BYTE break_scan_code
= (BYTE
) MapVirtualKey (vk_break_code
, 0);
2182 HWND foreground_window
;
2184 if (break_scan_code
== 0)
2186 /* Fake Ctrl-C for SIGQUIT if we can't manage Ctrl-Break. */
2187 vk_break_code
= 'C';
2188 break_scan_code
= (BYTE
) MapVirtualKey (vk_break_code
, 0);
2191 foreground_window
= GetForegroundWindow ();
2192 if (foreground_window
)
2194 /* NT 5.0, and apparently also Windows 98, will not allow
2195 a Window to be set to foreground directly without the
2196 user's involvement. The workaround is to attach
2197 ourselves to the thread that owns the foreground
2198 window, since that is the only thread that can set the
2199 foreground window. */
2200 DWORD foreground_thread
, child_thread
;
2202 GetWindowThreadProcessId (foreground_window
, NULL
);
2203 if (foreground_thread
== GetCurrentThreadId ()
2204 || !AttachThreadInput (GetCurrentThreadId (),
2205 foreground_thread
, TRUE
))
2206 foreground_thread
= 0;
2208 child_thread
= GetWindowThreadProcessId (cp
->hwnd
, NULL
);
2209 if (child_thread
== GetCurrentThreadId ()
2210 || !AttachThreadInput (GetCurrentThreadId (),
2211 child_thread
, TRUE
))
2214 /* Set the foreground window to the child. */
2215 if (SetForegroundWindow (cp
->hwnd
))
2217 /* Generate keystrokes as if user had typed Ctrl-Break or
2219 keybd_event (VK_CONTROL
, control_scan_code
, 0, 0);
2220 keybd_event (vk_break_code
, break_scan_code
,
2221 (vk_break_code
== 'C' ? 0 : KEYEVENTF_EXTENDEDKEY
), 0);
2222 keybd_event (vk_break_code
, break_scan_code
,
2223 (vk_break_code
== 'C' ? 0 : KEYEVENTF_EXTENDEDKEY
)
2224 | KEYEVENTF_KEYUP
, 0);
2225 keybd_event (VK_CONTROL
, control_scan_code
,
2226 KEYEVENTF_KEYUP
, 0);
2228 /* Sleep for a bit to give time for Emacs frame to respond
2229 to focus change events (if Emacs was active app). */
2232 SetForegroundWindow (foreground_window
);
2234 /* Detach from the foreground and child threads now that
2235 the foreground switching is over. */
2236 if (foreground_thread
)
2237 AttachThreadInput (GetCurrentThreadId (),
2238 foreground_thread
, FALSE
);
2240 AttachThreadInput (GetCurrentThreadId (),
2241 child_thread
, FALSE
);
2244 /* Ctrl-Break is NT equivalent of SIGINT. */
2245 else if (!GenerateConsoleCtrlEvent (CTRL_BREAK_EVENT
, pid
))
2247 DebPrint (("sys_kill.GenerateConsoleCtrlEvent return %d "
2248 "for pid %lu\n", GetLastError (), pid
));
2255 if (NILP (Vw32_start_process_share_console
) && cp
&& cp
->hwnd
)
2258 if (os_subtype
== OS_9X
)
2261 Another possibility is to try terminating the VDM out-right by
2262 calling the Shell VxD (id 0x17) V86 interface, function #4
2263 "SHELL_Destroy_VM", ie.
2269 First need to determine the current VM handle, and then arrange for
2270 the shellapi call to be made from the system vm (by using
2271 Switch_VM_and_callback).
2273 Could try to invoke DestroyVM through CallVxD.
2277 /* On Windows 95, posting WM_QUIT causes the 16-bit subsystem
2278 to hang when cmdproxy is used in conjunction with
2279 command.com for an interactive shell. Posting
2280 WM_CLOSE pops up a dialog that, when Yes is selected,
2281 does the same thing. TerminateProcess is also less
2282 than ideal in that subprocesses tend to stick around
2283 until the machine is shutdown, but at least it
2284 doesn't freeze the 16-bit subsystem. */
2285 PostMessage (cp
->hwnd
, WM_QUIT
, 0xff, 0);
2287 if (!TerminateProcess (proc_hand
, 0xff))
2289 DebPrint (("sys_kill.TerminateProcess returned %d "
2290 "for pid %lu\n", GetLastError (), pid
));
2297 PostMessage (cp
->hwnd
, WM_CLOSE
, 0, 0);
2299 /* Kill the process. On W32 this doesn't kill child processes
2300 so it doesn't work very well for shells which is why it's not
2301 used in every case. */
2302 else if (!TerminateProcess (proc_hand
, 0xff))
2304 DebPrint (("sys_kill.TerminateProcess returned %d "
2305 "for pid %lu\n", GetLastError (), pid
));
2312 CloseHandle (proc_hand
);
2317 /* The following two routines are used to manipulate stdin, stdout, and
2318 stderr of our child processes.
2320 Assuming that in, out, and err are *not* inheritable, we make them
2321 stdin, stdout, and stderr of the child as follows:
2323 - Save the parent's current standard handles.
2324 - Set the std handles to inheritable duplicates of the ones being passed in.
2325 (Note that _get_osfhandle() is an io.h procedure that retrieves the
2326 NT file handle for a crt file descriptor.)
2327 - Spawn the child, which inherits in, out, and err as stdin,
2328 stdout, and stderr. (see Spawnve)
2329 - Close the std handles passed to the child.
2330 - Reset the parent's standard handles to the saved handles.
2331 (see reset_standard_handles)
2332 We assume that the caller closes in, out, and err after calling us. */
2335 prepare_standard_handles (int in
, int out
, int err
, HANDLE handles
[3])
2338 HANDLE newstdin
, newstdout
, newstderr
;
2340 parent
= GetCurrentProcess ();
2342 handles
[0] = GetStdHandle (STD_INPUT_HANDLE
);
2343 handles
[1] = GetStdHandle (STD_OUTPUT_HANDLE
);
2344 handles
[2] = GetStdHandle (STD_ERROR_HANDLE
);
2346 /* make inheritable copies of the new handles */
2347 if (!DuplicateHandle (parent
,
2348 (HANDLE
) _get_osfhandle (in
),
2353 DUPLICATE_SAME_ACCESS
))
2354 report_file_error ("Duplicating input handle for child", Qnil
);
2356 if (!DuplicateHandle (parent
,
2357 (HANDLE
) _get_osfhandle (out
),
2362 DUPLICATE_SAME_ACCESS
))
2363 report_file_error ("Duplicating output handle for child", Qnil
);
2365 if (!DuplicateHandle (parent
,
2366 (HANDLE
) _get_osfhandle (err
),
2371 DUPLICATE_SAME_ACCESS
))
2372 report_file_error ("Duplicating error handle for child", Qnil
);
2374 /* and store them as our std handles */
2375 if (!SetStdHandle (STD_INPUT_HANDLE
, newstdin
))
2376 report_file_error ("Changing stdin handle", Qnil
);
2378 if (!SetStdHandle (STD_OUTPUT_HANDLE
, newstdout
))
2379 report_file_error ("Changing stdout handle", Qnil
);
2381 if (!SetStdHandle (STD_ERROR_HANDLE
, newstderr
))
2382 report_file_error ("Changing stderr handle", Qnil
);
2386 reset_standard_handles (int in
, int out
, int err
, HANDLE handles
[3])
2388 /* close the duplicated handles passed to the child */
2389 CloseHandle (GetStdHandle (STD_INPUT_HANDLE
));
2390 CloseHandle (GetStdHandle (STD_OUTPUT_HANDLE
));
2391 CloseHandle (GetStdHandle (STD_ERROR_HANDLE
));
2393 /* now restore parent's saved std handles */
2394 SetStdHandle (STD_INPUT_HANDLE
, handles
[0]);
2395 SetStdHandle (STD_OUTPUT_HANDLE
, handles
[1]);
2396 SetStdHandle (STD_ERROR_HANDLE
, handles
[2]);
2400 set_process_dir (char * dir
)
2405 /* To avoid problems with winsock implementations that work over dial-up
2406 connections causing or requiring a connection to exist while Emacs is
2407 running, Emacs no longer automatically loads winsock on startup if it
2408 is present. Instead, it will be loaded when open-network-stream is
2411 To allow full control over when winsock is loaded, we provide these
2412 two functions to dynamically load and unload winsock. This allows
2413 dial-up users to only be connected when they actually need to use
2417 extern HANDLE winsock_lib
;
2418 extern BOOL
term_winsock (void);
2419 extern BOOL
init_winsock (int load_now
);
2421 DEFUN ("w32-has-winsock", Fw32_has_winsock
, Sw32_has_winsock
, 0, 1, 0,
2422 doc
: /* Test for presence of the Windows socket library `winsock'.
2423 Returns non-nil if winsock support is present, nil otherwise.
2425 If the optional argument LOAD-NOW is non-nil, the winsock library is
2426 also loaded immediately if not already loaded. If winsock is loaded,
2427 the winsock local hostname is returned (since this may be different from
2428 the value of `system-name' and should supplant it), otherwise t is
2429 returned to indicate winsock support is present. */)
2430 (Lisp_Object load_now
)
2434 have_winsock
= init_winsock (!NILP (load_now
));
2437 if (winsock_lib
!= NULL
)
2439 /* Return new value for system-name. The best way to do this
2440 is to call init_system_name, saving and restoring the
2441 original value to avoid side-effects. */
2442 Lisp_Object orig_hostname
= Vsystem_name
;
2443 Lisp_Object hostname
;
2445 init_system_name ();
2446 hostname
= Vsystem_name
;
2447 Vsystem_name
= orig_hostname
;
2455 DEFUN ("w32-unload-winsock", Fw32_unload_winsock
, Sw32_unload_winsock
,
2457 doc
: /* Unload the Windows socket library `winsock' if loaded.
2458 This is provided to allow dial-up socket connections to be disconnected
2459 when no longer needed. Returns nil without unloading winsock if any
2460 socket connections still exist. */)
2463 return term_winsock () ? Qt
: Qnil
;
2467 /* Some miscellaneous functions that are Windows specific, but not GUI
2468 specific (ie. are applicable in terminal or batch mode as well). */
2470 DEFUN ("w32-short-file-name", Fw32_short_file_name
, Sw32_short_file_name
, 1, 1, 0,
2471 doc
: /* Return the short file name version (8.3) of the full path of FILENAME.
2472 If FILENAME does not exist, return nil.
2473 All path elements in FILENAME are converted to their short names. */)
2474 (Lisp_Object filename
)
2476 char shortname
[MAX_PATH
];
2478 CHECK_STRING (filename
);
2480 /* first expand it. */
2481 filename
= Fexpand_file_name (filename
, Qnil
);
2483 /* luckily, this returns the short version of each element in the path. */
2484 if (GetShortPathName (SDATA (ENCODE_FILE (filename
)), shortname
, MAX_PATH
) == 0)
2487 dostounix_filename (shortname
);
2489 return build_string (shortname
);
2493 DEFUN ("w32-long-file-name", Fw32_long_file_name
, Sw32_long_file_name
,
2495 doc
: /* Return the long file name version of the full path of FILENAME.
2496 If FILENAME does not exist, return nil.
2497 All path elements in FILENAME are converted to their long names. */)
2498 (Lisp_Object filename
)
2500 char longname
[ MAX_PATH
];
2503 CHECK_STRING (filename
);
2505 if (SBYTES (filename
) == 2
2506 && *(SDATA (filename
) + 1) == ':')
2509 /* first expand it. */
2510 filename
= Fexpand_file_name (filename
, Qnil
);
2512 if (!w32_get_long_filename (SDATA (ENCODE_FILE (filename
)), longname
, MAX_PATH
))
2515 dostounix_filename (longname
);
2517 /* If we were passed only a drive, make sure that a slash is not appended
2518 for consistency with directories. Allow for drive mapping via SUBST
2519 in case expand-file-name is ever changed to expand those. */
2520 if (drive_only
&& longname
[1] == ':' && longname
[2] == '/' && !longname
[3])
2523 return DECODE_FILE (build_string (longname
));
2526 DEFUN ("w32-set-process-priority", Fw32_set_process_priority
,
2527 Sw32_set_process_priority
, 2, 2, 0,
2528 doc
: /* Set the priority of PROCESS to PRIORITY.
2529 If PROCESS is nil, the priority of Emacs is changed, otherwise the
2530 priority of the process whose pid is PROCESS is changed.
2531 PRIORITY should be one of the symbols high, normal, or low;
2532 any other symbol will be interpreted as normal.
2534 If successful, the return value is t, otherwise nil. */)
2535 (Lisp_Object process
, Lisp_Object priority
)
2537 HANDLE proc_handle
= GetCurrentProcess ();
2538 DWORD priority_class
= NORMAL_PRIORITY_CLASS
;
2539 Lisp_Object result
= Qnil
;
2541 CHECK_SYMBOL (priority
);
2543 if (!NILP (process
))
2548 CHECK_NUMBER (process
);
2550 /* Allow pid to be an internally generated one, or one obtained
2551 externally. This is necessary because real pids on Windows 95 are
2554 pid
= XINT (process
);
2555 cp
= find_child_pid (pid
);
2557 pid
= cp
->procinfo
.dwProcessId
;
2559 proc_handle
= OpenProcess (PROCESS_SET_INFORMATION
, FALSE
, pid
);
2562 if (EQ (priority
, Qhigh
))
2563 priority_class
= HIGH_PRIORITY_CLASS
;
2564 else if (EQ (priority
, Qlow
))
2565 priority_class
= IDLE_PRIORITY_CLASS
;
2567 if (proc_handle
!= NULL
)
2569 if (SetPriorityClass (proc_handle
, priority_class
))
2571 if (!NILP (process
))
2572 CloseHandle (proc_handle
);
2578 #ifdef HAVE_LANGINFO_CODESET
2579 /* Emulation of nl_langinfo. Used in fns.c:Flocale_info. */
2581 nl_langinfo (nl_item item
)
2583 /* Conversion of Posix item numbers to their Windows equivalents. */
2584 static const LCTYPE w32item
[] = {
2585 LOCALE_IDEFAULTANSICODEPAGE
,
2586 LOCALE_SDAYNAME1
, LOCALE_SDAYNAME2
, LOCALE_SDAYNAME3
,
2587 LOCALE_SDAYNAME4
, LOCALE_SDAYNAME5
, LOCALE_SDAYNAME6
, LOCALE_SDAYNAME7
,
2588 LOCALE_SMONTHNAME1
, LOCALE_SMONTHNAME2
, LOCALE_SMONTHNAME3
,
2589 LOCALE_SMONTHNAME4
, LOCALE_SMONTHNAME5
, LOCALE_SMONTHNAME6
,
2590 LOCALE_SMONTHNAME7
, LOCALE_SMONTHNAME8
, LOCALE_SMONTHNAME9
,
2591 LOCALE_SMONTHNAME10
, LOCALE_SMONTHNAME11
, LOCALE_SMONTHNAME12
2594 static char *nl_langinfo_buf
= NULL
;
2595 static int nl_langinfo_len
= 0;
2597 if (nl_langinfo_len
<= 0)
2598 nl_langinfo_buf
= xmalloc (nl_langinfo_len
= 1);
2600 if (item
< 0 || item
>= _NL_NUM
)
2601 nl_langinfo_buf
[0] = 0;
2604 LCID cloc
= GetThreadLocale ();
2605 int need_len
= GetLocaleInfo (cloc
, w32item
[item
] | LOCALE_USE_CP_ACP
,
2609 nl_langinfo_buf
[0] = 0;
2612 if (item
== CODESET
)
2614 need_len
+= 2; /* for the "cp" prefix */
2615 if (need_len
< 8) /* for the case we call GetACP */
2618 if (nl_langinfo_len
<= need_len
)
2619 nl_langinfo_buf
= xrealloc (nl_langinfo_buf
,
2620 nl_langinfo_len
= need_len
);
2621 if (!GetLocaleInfo (cloc
, w32item
[item
] | LOCALE_USE_CP_ACP
,
2622 nl_langinfo_buf
, nl_langinfo_len
))
2623 nl_langinfo_buf
[0] = 0;
2624 else if (item
== CODESET
)
2626 if (strcmp (nl_langinfo_buf
, "0") == 0 /* CP_ACP */
2627 || strcmp (nl_langinfo_buf
, "1") == 0) /* CP_OEMCP */
2628 sprintf (nl_langinfo_buf
, "cp%u", GetACP ());
2631 memmove (nl_langinfo_buf
+ 2, nl_langinfo_buf
,
2632 strlen (nl_langinfo_buf
) + 1);
2633 nl_langinfo_buf
[0] = 'c';
2634 nl_langinfo_buf
[1] = 'p';
2639 return nl_langinfo_buf
;
2641 #endif /* HAVE_LANGINFO_CODESET */
2643 DEFUN ("w32-get-locale-info", Fw32_get_locale_info
,
2644 Sw32_get_locale_info
, 1, 2, 0,
2645 doc
: /* Return information about the Windows locale LCID.
2646 By default, return a three letter locale code which encodes the default
2647 language as the first two characters, and the country or regional variant
2648 as the third letter. For example, ENU refers to `English (United States)',
2649 while ENC means `English (Canadian)'.
2651 If the optional argument LONGFORM is t, the long form of the locale
2652 name is returned, e.g. `English (United States)' instead; if LONGFORM
2653 is a number, it is interpreted as an LCTYPE constant and the corresponding
2654 locale information is returned.
2656 If LCID (a 16-bit number) is not a valid locale, the result is nil. */)
2657 (Lisp_Object lcid
, Lisp_Object longform
)
2661 char abbrev_name
[32] = { 0 };
2662 char full_name
[256] = { 0 };
2664 CHECK_NUMBER (lcid
);
2666 if (!IsValidLocale (XINT (lcid
), LCID_SUPPORTED
))
2669 if (NILP (longform
))
2671 got_abbrev
= GetLocaleInfo (XINT (lcid
),
2672 LOCALE_SABBREVLANGNAME
| LOCALE_USE_CP_ACP
,
2673 abbrev_name
, sizeof (abbrev_name
));
2675 return build_string (abbrev_name
);
2677 else if (EQ (longform
, Qt
))
2679 got_full
= GetLocaleInfo (XINT (lcid
),
2680 LOCALE_SLANGUAGE
| LOCALE_USE_CP_ACP
,
2681 full_name
, sizeof (full_name
));
2683 return DECODE_SYSTEM (build_string (full_name
));
2685 else if (NUMBERP (longform
))
2687 got_full
= GetLocaleInfo (XINT (lcid
),
2689 full_name
, sizeof (full_name
));
2690 /* GetLocaleInfo's return value includes the terminating null
2691 character, when the returned information is a string, whereas
2692 make_unibyte_string needs the string length without the
2693 terminating null. */
2695 return make_unibyte_string (full_name
, got_full
- 1);
2702 DEFUN ("w32-get-current-locale-id", Fw32_get_current_locale_id
,
2703 Sw32_get_current_locale_id
, 0, 0, 0,
2704 doc
: /* Return Windows locale id for current locale setting.
2705 This is a numerical value; use `w32-get-locale-info' to convert to a
2706 human-readable form. */)
2709 return make_number (GetThreadLocale ());
2713 int_from_hex (char * s
)
2716 static char hex
[] = "0123456789abcdefABCDEF";
2719 while (*s
&& (p
= strchr (hex
, *s
)) != NULL
)
2721 unsigned digit
= p
- hex
;
2724 val
= val
* 16 + digit
;
2730 /* We need to build a global list, since the EnumSystemLocale callback
2731 function isn't given a context pointer. */
2732 Lisp_Object Vw32_valid_locale_ids
;
2734 static BOOL CALLBACK
2735 enum_locale_fn (LPTSTR localeNum
)
2737 DWORD id
= int_from_hex (localeNum
);
2738 Vw32_valid_locale_ids
= Fcons (make_number (id
), Vw32_valid_locale_ids
);
2742 DEFUN ("w32-get-valid-locale-ids", Fw32_get_valid_locale_ids
,
2743 Sw32_get_valid_locale_ids
, 0, 0, 0,
2744 doc
: /* Return list of all valid Windows locale ids.
2745 Each id is a numerical value; use `w32-get-locale-info' to convert to a
2746 human-readable form. */)
2749 Vw32_valid_locale_ids
= Qnil
;
2751 EnumSystemLocales (enum_locale_fn
, LCID_SUPPORTED
);
2753 Vw32_valid_locale_ids
= Fnreverse (Vw32_valid_locale_ids
);
2754 return Vw32_valid_locale_ids
;
2758 DEFUN ("w32-get-default-locale-id", Fw32_get_default_locale_id
, Sw32_get_default_locale_id
, 0, 1, 0,
2759 doc
: /* Return Windows locale id for default locale setting.
2760 By default, the system default locale setting is returned; if the optional
2761 parameter USERP is non-nil, the user default locale setting is returned.
2762 This is a numerical value; use `w32-get-locale-info' to convert to a
2763 human-readable form. */)
2767 return make_number (GetSystemDefaultLCID ());
2768 return make_number (GetUserDefaultLCID ());
2772 DEFUN ("w32-set-current-locale", Fw32_set_current_locale
, Sw32_set_current_locale
, 1, 1, 0,
2773 doc
: /* Make Windows locale LCID be the current locale setting for Emacs.
2774 If successful, the new locale id is returned, otherwise nil. */)
2777 CHECK_NUMBER (lcid
);
2779 if (!IsValidLocale (XINT (lcid
), LCID_SUPPORTED
))
2782 if (!SetThreadLocale (XINT (lcid
)))
2785 /* Need to set input thread locale if present. */
2786 if (dwWindowsThreadId
)
2787 /* Reply is not needed. */
2788 PostThreadMessage (dwWindowsThreadId
, WM_EMACS_SETLOCALE
, XINT (lcid
), 0);
2790 return make_number (GetThreadLocale ());
2794 /* We need to build a global list, since the EnumCodePages callback
2795 function isn't given a context pointer. */
2796 Lisp_Object Vw32_valid_codepages
;
2798 static BOOL CALLBACK
2799 enum_codepage_fn (LPTSTR codepageNum
)
2801 DWORD id
= atoi (codepageNum
);
2802 Vw32_valid_codepages
= Fcons (make_number (id
), Vw32_valid_codepages
);
2806 DEFUN ("w32-get-valid-codepages", Fw32_get_valid_codepages
,
2807 Sw32_get_valid_codepages
, 0, 0, 0,
2808 doc
: /* Return list of all valid Windows codepages. */)
2811 Vw32_valid_codepages
= Qnil
;
2813 EnumSystemCodePages (enum_codepage_fn
, CP_SUPPORTED
);
2815 Vw32_valid_codepages
= Fnreverse (Vw32_valid_codepages
);
2816 return Vw32_valid_codepages
;
2820 DEFUN ("w32-get-console-codepage", Fw32_get_console_codepage
,
2821 Sw32_get_console_codepage
, 0, 0, 0,
2822 doc
: /* Return current Windows codepage for console input. */)
2825 return make_number (GetConsoleCP ());
2829 DEFUN ("w32-set-console-codepage", Fw32_set_console_codepage
,
2830 Sw32_set_console_codepage
, 1, 1, 0,
2831 doc
: /* Make Windows codepage CP be the codepage for Emacs tty keyboard input.
2832 This codepage setting affects keyboard input in tty mode.
2833 If successful, the new CP is returned, otherwise nil. */)
2838 if (!IsValidCodePage (XINT (cp
)))
2841 if (!SetConsoleCP (XINT (cp
)))
2844 return make_number (GetConsoleCP ());
2848 DEFUN ("w32-get-console-output-codepage", Fw32_get_console_output_codepage
,
2849 Sw32_get_console_output_codepage
, 0, 0, 0,
2850 doc
: /* Return current Windows codepage for console output. */)
2853 return make_number (GetConsoleOutputCP ());
2857 DEFUN ("w32-set-console-output-codepage", Fw32_set_console_output_codepage
,
2858 Sw32_set_console_output_codepage
, 1, 1, 0,
2859 doc
: /* Make Windows codepage CP be the codepage for Emacs console output.
2860 This codepage setting affects display in tty mode.
2861 If successful, the new CP is returned, otherwise nil. */)
2866 if (!IsValidCodePage (XINT (cp
)))
2869 if (!SetConsoleOutputCP (XINT (cp
)))
2872 return make_number (GetConsoleOutputCP ());
2876 DEFUN ("w32-get-codepage-charset", Fw32_get_codepage_charset
,
2877 Sw32_get_codepage_charset
, 1, 1, 0,
2878 doc
: /* Return charset ID corresponding to codepage CP.
2879 Returns nil if the codepage is not valid. */)
2886 if (!IsValidCodePage (XINT (cp
)))
2889 if (TranslateCharsetInfo ((DWORD
*) XINT (cp
), &info
, TCI_SRCCODEPAGE
))
2890 return make_number (info
.ciCharset
);
2896 DEFUN ("w32-get-valid-keyboard-layouts", Fw32_get_valid_keyboard_layouts
,
2897 Sw32_get_valid_keyboard_layouts
, 0, 0, 0,
2898 doc
: /* Return list of Windows keyboard languages and layouts.
2899 The return value is a list of pairs of language id and layout id. */)
2902 int num_layouts
= GetKeyboardLayoutList (0, NULL
);
2903 HKL
* layouts
= (HKL
*) alloca (num_layouts
* sizeof (HKL
));
2904 Lisp_Object obj
= Qnil
;
2906 if (GetKeyboardLayoutList (num_layouts
, layouts
) == num_layouts
)
2908 while (--num_layouts
>= 0)
2910 DWORD kl
= (DWORD
) layouts
[num_layouts
];
2912 obj
= Fcons (Fcons (make_number (kl
& 0xffff),
2913 make_number ((kl
>> 16) & 0xffff)),
2922 DEFUN ("w32-get-keyboard-layout", Fw32_get_keyboard_layout
,
2923 Sw32_get_keyboard_layout
, 0, 0, 0,
2924 doc
: /* Return current Windows keyboard language and layout.
2925 The return value is the cons of the language id and the layout id. */)
2928 DWORD kl
= (DWORD
) GetKeyboardLayout (dwWindowsThreadId
);
2930 return Fcons (make_number (kl
& 0xffff),
2931 make_number ((kl
>> 16) & 0xffff));
2935 DEFUN ("w32-set-keyboard-layout", Fw32_set_keyboard_layout
,
2936 Sw32_set_keyboard_layout
, 1, 1, 0,
2937 doc
: /* Make LAYOUT be the current keyboard layout for Emacs.
2938 The keyboard layout setting affects interpretation of keyboard input.
2939 If successful, the new layout id is returned, otherwise nil. */)
2940 (Lisp_Object layout
)
2944 CHECK_CONS (layout
);
2945 CHECK_NUMBER_CAR (layout
);
2946 CHECK_NUMBER_CDR (layout
);
2948 kl
= (XINT (XCAR (layout
)) & 0xffff)
2949 | (XINT (XCDR (layout
)) << 16);
2951 /* Synchronize layout with input thread. */
2952 if (dwWindowsThreadId
)
2954 if (PostThreadMessage (dwWindowsThreadId
, WM_EMACS_SETKEYBOARDLAYOUT
,
2958 GetMessage (&msg
, NULL
, WM_EMACS_DONE
, WM_EMACS_DONE
);
2960 if (msg
.wParam
== 0)
2964 else if (!ActivateKeyboardLayout ((HKL
) kl
, 0))
2967 return Fw32_get_keyboard_layout ();
2972 syms_of_ntproc (void)
2974 DEFSYM (Qhigh
, "high");
2975 DEFSYM (Qlow
, "low");
2977 defsubr (&Sw32_has_winsock
);
2978 defsubr (&Sw32_unload_winsock
);
2980 defsubr (&Sw32_short_file_name
);
2981 defsubr (&Sw32_long_file_name
);
2982 defsubr (&Sw32_set_process_priority
);
2983 defsubr (&Sw32_get_locale_info
);
2984 defsubr (&Sw32_get_current_locale_id
);
2985 defsubr (&Sw32_get_default_locale_id
);
2986 defsubr (&Sw32_get_valid_locale_ids
);
2987 defsubr (&Sw32_set_current_locale
);
2989 defsubr (&Sw32_get_console_codepage
);
2990 defsubr (&Sw32_set_console_codepage
);
2991 defsubr (&Sw32_get_console_output_codepage
);
2992 defsubr (&Sw32_set_console_output_codepage
);
2993 defsubr (&Sw32_get_valid_codepages
);
2994 defsubr (&Sw32_get_codepage_charset
);
2996 defsubr (&Sw32_get_valid_keyboard_layouts
);
2997 defsubr (&Sw32_get_keyboard_layout
);
2998 defsubr (&Sw32_set_keyboard_layout
);
3000 DEFVAR_LISP ("w32-quote-process-args", Vw32_quote_process_args
,
3001 doc
: /* Non-nil enables quoting of process arguments to ensure correct parsing.
3002 Because Windows does not directly pass argv arrays to child processes,
3003 programs have to reconstruct the argv array by parsing the command
3004 line string. For an argument to contain a space, it must be enclosed
3005 in double quotes or it will be parsed as multiple arguments.
3007 If the value is a character, that character will be used to escape any
3008 quote characters that appear, otherwise a suitable escape character
3009 will be chosen based on the type of the program. */);
3010 Vw32_quote_process_args
= Qt
;
3012 DEFVAR_LISP ("w32-start-process-show-window",
3013 Vw32_start_process_show_window
,
3014 doc
: /* When nil, new child processes hide their windows.
3015 When non-nil, they show their window in the method of their choice.
3016 This variable doesn't affect GUI applications, which will never be hidden. */);
3017 Vw32_start_process_show_window
= Qnil
;
3019 DEFVAR_LISP ("w32-start-process-share-console",
3020 Vw32_start_process_share_console
,
3021 doc
: /* When nil, new child processes are given a new console.
3022 When non-nil, they share the Emacs console; this has the limitation of
3023 allowing only one DOS subprocess to run at a time (whether started directly
3024 or indirectly by Emacs), and preventing Emacs from cleanly terminating the
3025 subprocess group, but may allow Emacs to interrupt a subprocess that doesn't
3026 otherwise respond to interrupts from Emacs. */);
3027 Vw32_start_process_share_console
= Qnil
;
3029 DEFVAR_LISP ("w32-start-process-inherit-error-mode",
3030 Vw32_start_process_inherit_error_mode
,
3031 doc
: /* When nil, new child processes revert to the default error mode.
3032 When non-nil, they inherit their error mode setting from Emacs, which stops
3033 them blocking when trying to access unmounted drives etc. */);
3034 Vw32_start_process_inherit_error_mode
= Qt
;
3036 DEFVAR_INT ("w32-pipe-read-delay", w32_pipe_read_delay
,
3037 doc
: /* Forced delay before reading subprocess output.
3038 This is done to improve the buffering of subprocess output, by
3039 avoiding the inefficiency of frequently reading small amounts of data.
3041 If positive, the value is the number of milliseconds to sleep before
3042 reading the subprocess output. If negative, the magnitude is the number
3043 of time slices to wait (effectively boosting the priority of the child
3044 process temporarily). A value of zero disables waiting entirely. */);
3045 w32_pipe_read_delay
= 50;
3047 DEFVAR_LISP ("w32-downcase-file-names", Vw32_downcase_file_names
,
3048 doc
: /* Non-nil means convert all-upper case file names to lower case.
3049 This applies when performing completions and file name expansion.
3050 Note that the value of this setting also affects remote file names,
3051 so you probably don't want to set to non-nil if you use case-sensitive
3052 filesystems via ange-ftp. */);
3053 Vw32_downcase_file_names
= Qnil
;
3056 DEFVAR_LISP ("w32-generate-fake-inodes", Vw32_generate_fake_inodes
,
3057 doc
: /* Non-nil means attempt to fake realistic inode values.
3058 This works by hashing the truename of files, and should detect
3059 aliasing between long and short (8.3 DOS) names, but can have
3060 false positives because of hash collisions. Note that determining
3061 the truename of a file can be slow. */);
3062 Vw32_generate_fake_inodes
= Qnil
;
3065 DEFVAR_LISP ("w32-get-true-file-attributes", Vw32_get_true_file_attributes
,
3066 doc
: /* Non-nil means determine accurate file attributes in `file-attributes'.
3067 This option controls whether to issue additional system calls to determine
3068 accurate link counts, file type, and ownership information. It is more
3069 useful for files on NTFS volumes, where hard links and file security are
3070 supported, than on volumes of the FAT family.
3072 Without these system calls, link count will always be reported as 1 and file
3073 ownership will be attributed to the current user.
3074 The default value `local' means only issue these system calls for files
3075 on local fixed drives. A value of nil means never issue them.
3076 Any other non-nil value means do this even on remote and removable drives
3077 where the performance impact may be noticeable even on modern hardware. */);
3078 Vw32_get_true_file_attributes
= Qlocal
;
3080 staticpro (&Vw32_valid_locale_ids
);
3081 staticpro (&Vw32_valid_codepages
);
3083 /* end of w32proc.c */