Improve handling of subprocess shutdown on MS-Windows.
[bpt/emacs.git] / src / w32proc.c
CommitLineData
b46a6a83 1/* Process support for GNU Emacs on the Microsoft Windows API.
acaf905b 2 Copyright (C) 1992, 1995, 1999-2012 Free Software Foundation, Inc.
6cdfb6e6 3
3b7ad313
EN
4This file is part of GNU Emacs.
5
9ec0b715 6GNU Emacs is free software: you can redistribute it and/or modify
3b7ad313 7it under the terms of the GNU General Public License as published by
9ec0b715
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
3b7ad313
EN
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
9ec0b715 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
6cdfb6e6 18
9ec0b715 19/*
6cdfb6e6
RS
20 Drew Bliss Oct 14, 1993
21 Adapted from alarm.c by Tim Fleehart
22*/
23
24#include <stdio.h>
25#include <stdlib.h>
26#include <errno.h>
a68089e4 27#include <ctype.h>
6cdfb6e6 28#include <io.h>
c519b5e1 29#include <fcntl.h>
6cdfb6e6 30#include <signal.h>
51f635c4 31#include <sys/file.h>
6cdfb6e6 32
c519b5e1 33/* must include CRT headers *before* config.h */
4838e624 34#include <config.h>
4838e624 35
c519b5e1
GV
36#undef signal
37#undef wait
38#undef spawnve
39#undef select
40#undef kill
41
6cdfb6e6 42#include <windows.h>
42c95ffb
AI
43#ifdef __GNUC__
44/* This definition is missing from mingw32 headers. */
ed3751c8 45extern BOOL WINAPI IsValidLocale (LCID, DWORD);
42c95ffb 46#endif
6cdfb6e6 47
d613418b
EZ
48#ifdef HAVE_LANGINFO_CODESET
49#include <nl_types.h>
50#include <langinfo.h>
51#endif
52
6cdfb6e6 53#include "lisp.h"
489f9371 54#include "w32.h"
501199a3 55#include "w32common.h"
b2fc9f3d 56#include "w32heap.h"
6cdfb6e6 57#include "systime.h"
3d7eead0
GV
58#include "syswait.h"
59#include "process.h"
e7c15bba 60#include "syssignal.h"
ef79fbba 61#include "w32term.h"
f481eb31 62#include "dispextern.h" /* for xstrcasecmp */
b23077df 63#include "coding.h"
3d7eead0 64
8747ac3f
EZ
65#define RVA_TO_PTR(var,section,filedata) \
66 ((void *)((section)->PointerToRawData \
62aba0d4 67 + ((DWORD_PTR)(var) - (section)->VirtualAddress) \
8747ac3f
EZ
68 + (filedata).file_base))
69
b2fc9f3d 70Lisp_Object Qhigh, Qlow;
817abdf6 71
6cdfb6e6
RS
72/* Signal handlers...SIG_DFL == 0 so this is initialized correctly. */
73static signal_handler sig_handlers[NSIG];
74
c06c382a
EZ
75static sigset_t sig_mask;
76
77static CRITICAL_SECTION crit_sig;
78
16b22fef 79/* Improve on the CRT 'signal' implementation so that we could record
c06c382a 80 the SIGCHLD handler and fake interval timers. */
177c0ea7 81signal_handler
c519b5e1 82sys_signal (int sig, signal_handler handler)
6cdfb6e6
RS
83{
84 signal_handler old;
177c0ea7 85
16b22fef 86 /* SIGCHLD is needed for supporting subprocesses, see sys_kill
c06c382a
EZ
87 below. SIGALRM and SIGPROF are used by setitimer. All the
88 others are the only ones supported by the MS runtime. */
16b22fef 89 if (!(sig == SIGCHLD || sig == SIGSEGV || sig == SIGILL
c06c382a
EZ
90 || sig == SIGFPE || sig == SIGABRT || sig == SIGTERM
91 || sig == SIGALRM || sig == SIGPROF))
6cdfb6e6
RS
92 {
93 errno = EINVAL;
94 return SIG_ERR;
95 }
96 old = sig_handlers[sig];
16b22fef
EZ
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))
103 {
104 sig_handlers[sig] = handler;
c06c382a 105 if (!(sig == SIGCHLD || sig == SIGALRM || sig == SIGPROF))
16b22fef
EZ
106 signal (sig, handler);
107 }
6cdfb6e6
RS
108 return old;
109}
110
3e6d6928
EZ
111/* Emulate sigaction. */
112int
113sigaction (int sig, const struct sigaction *act, struct sigaction *oact)
114{
16b22fef
EZ
115 signal_handler old = SIG_DFL;
116 int retval = 0;
117
118 if (act)
119 old = sys_signal (sig, act->sa_handler);
120 else if (oact)
121 old = sig_handlers[sig];
3e6d6928 122
16b22fef 123 if (old == SIG_ERR)
3e6d6928
EZ
124 {
125 errno = EINVAL;
16b22fef 126 retval = -1;
3e6d6928 127 }
3e6d6928
EZ
128 if (oact)
129 {
130 oact->sa_handler = old;
131 oact->sa_flags = 0;
132 oact->sa_mask = empty_mask;
133 }
16b22fef 134 return retval;
3e6d6928
EZ
135}
136
c06c382a
EZ
137/* Emulate signal sets and blocking of signals used by timers. */
138
139int
140sigemptyset (sigset_t *set)
141{
142 *set = 0;
143 return 0;
144}
145
146int
147sigaddset (sigset_t *set, int signo)
148{
149 if (!set)
150 {
151 errno = EINVAL;
152 return -1;
153 }
154 if (signo < 0 || signo >= NSIG)
155 {
156 errno = EINVAL;
157 return -1;
158 }
159
160 *set |= (1U << signo);
161
162 return 0;
163}
164
165int
166sigfillset (sigset_t *set)
167{
168 if (!set)
169 {
170 errno = EINVAL;
171 return -1;
172 }
173
174 *set = 0xFFFFFFFF;
175 return 0;
176}
177
178int
179sigprocmask (int how, const sigset_t *set, sigset_t *oset)
180{
181 if (!(how == SIG_BLOCK || how == SIG_UNBLOCK || how == SIG_SETMASK))
182 {
183 errno = EINVAL;
184 return -1;
185 }
186
187 if (oset)
188 *oset = sig_mask;
189
190 if (!set)
191 return 0;
192
193 switch (how)
194 {
195 case SIG_BLOCK:
196 sig_mask |= *set;
197 break;
198 case SIG_SETMASK:
199 sig_mask = *set;
200 break;
201 case SIG_UNBLOCK:
202 /* FIXME: Catch signals that are blocked and reissue them when
203 they are unblocked. Important for SIGALRM and SIGPROF only. */
204 sig_mask &= ~(*set);
205 break;
206 }
207
208 return 0;
209}
210
211int
212pthread_sigmask (int how, const sigset_t *set, sigset_t *oset)
213{
214 if (sigprocmask (how, set, oset) == -1)
215 return EINVAL;
216 return 0;
217}
218
219int
220sigismember (const sigset_t *set, int signo)
221{
222 if (signo < 0 || signo >= NSIG)
223 {
224 errno = EINVAL;
225 return -1;
226 }
227 if (signo > sizeof (*set) * BITS_PER_CHAR)
228 emacs_abort ();
229
230 return (*set & (1U << signo)) != 0;
231}
232
dd0333b6
PE
233pid_t
234getpgrp (void)
c06c382a 235{
dd0333b6 236 return getpid ();
c06c382a
EZ
237}
238
7e8b50d9 239pid_t
dd0333b6 240tcgetpgrp (int fd)
7e8b50d9
EZ
241{
242 return getpid ();
243}
244
245int
246setpgid (pid_t pid, pid_t pgid)
247{
248 return 0;
249}
250
dd0333b6
PE
251pid_t
252setsid (void)
253{
254 return getpid ();
255}
256
c06c382a
EZ
257/* Emulations of interval timers.
258
259 Limitations: only ITIMER_REAL and ITIMER_PROF are supported.
260
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. */
264
c06c382a 265struct itimer_data {
2e612797
EZ
266 volatile ULONGLONG expire;
267 volatile ULONGLONG reload;
268 volatile int terminate;
c06c382a
EZ
269 int type;
270 HANDLE caller_thread;
271 HANDLE timer_thread;
272};
273
6c16c13e 274static ULONGLONG ticks_now;
c06c382a 275static struct itimer_data real_itimer, prof_itimer;
6c16c13e 276static ULONGLONG clocks_min;
f0e5f225
EZ
277/* If non-zero, itimers are disabled. Used during shutdown, when we
278 delete the critical sections used by the timer threads. */
279static int disable_itimers;
c06c382a
EZ
280
281static CRITICAL_SECTION crit_real, crit_prof;
282
15cc05e9 283/* GetThreadTimes is not available on Windows 9X and possibly also on 2K. */
6c16c13e
EZ
284typedef BOOL (WINAPI *GetThreadTimes_Proc) (
285 HANDLE hThread,
286 LPFILETIME lpCreationTime,
287 LPFILETIME lpExitTime,
288 LPFILETIME lpKernelTime,
289 LPFILETIME lpUserTime);
290
291static GetThreadTimes_Proc s_pfn_Get_Thread_Times;
292
640bf8ad
EZ
293#define MAX_SINGLE_SLEEP 30
294#define TIMER_TICKS_PER_SEC 1000
295
6c16c13e
EZ
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. */
301static ULONGLONG
302w32_get_timer_time (HANDLE thread)
303{
304 ULONGLONG retval;
305 int use_system_time = 1;
640bf8ad
EZ
306 /* The functions below return times in 100-ns units. */
307 const int tscale = 10 * TIMER_TICKS_PER_SEC;
6c16c13e
EZ
308
309 if (thread && thread != INVALID_HANDLE_VALUE
310 && s_pfn_Get_Thread_Times != NULL)
311 {
312 FILETIME creation_ftime, exit_ftime, kernel_ftime, user_ftime;
313 ULARGE_INTEGER temp_creation, temp_kernel, temp_user;
314
315 if (s_pfn_Get_Thread_Times (thread, &creation_ftime, &exit_ftime,
316 &kernel_ftime, &user_ftime))
317 {
318 use_system_time = 0;
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;
325 retval =
640bf8ad
EZ
326 temp_creation.QuadPart / tscale + temp_kernel.QuadPart / tscale
327 + temp_user.QuadPart / tscale;
6c16c13e
EZ
328 }
329 else
330 DebPrint (("GetThreadTimes failed with error code %lu\n",
331 GetLastError ()));
332 }
c06c382a 333
6c16c13e
EZ
334 if (use_system_time)
335 {
336 FILETIME current_ftime;
337 ULARGE_INTEGER temp;
338
339 GetSystemTimeAsFileTime (&current_ftime);
340
341 temp.LowPart = current_ftime.dwLowDateTime;
342 temp.HighPart = current_ftime.dwHighDateTime;
343
640bf8ad 344 retval = temp.QuadPart / tscale;
6c16c13e
EZ
345 }
346
347 return retval;
348}
349
6c16c13e 350/* Thread function for a timer thread. */
c06c382a
EZ
351static DWORD WINAPI
352timer_loop (LPVOID arg)
353{
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;
640bf8ad 358 const DWORD max_sleep = MAX_SINGLE_SLEEP * 1000 / TIMER_TICKS_PER_SEC;
6c16c13e 359 HANDLE hth = (which == ITIMER_REAL) ? NULL : itimer->caller_thread;
c06c382a
EZ
360
361 while (1)
362 {
363 DWORD sleep_time;
364 signal_handler handler;
6c16c13e 365 ULONGLONG now, expire, reload;
c06c382a
EZ
366
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)
373 return 0;
374
6c16c13e 375 if (expire == 0)
c06c382a
EZ
376 {
377 /* We are idle. */
378 Sleep (max_sleep);
379 continue;
380 }
381
6c16c13e 382 if (expire > (now = w32_get_timer_time (hth)))
c06c382a
EZ
383 sleep_time = expire - now;
384 else
385 sleep_time = 0;
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)
389 {
390 if (itimer->terminate)
391 return 0;
392 Sleep (max_sleep);
6c16c13e 393 EnterCriticalSection (crit);
c06c382a 394 expire = itimer->expire;
6c16c13e
EZ
395 LeaveCriticalSection (crit);
396 sleep_time =
397 (expire > (now = w32_get_timer_time (hth))) ? expire - now : 0;
c06c382a
EZ
398 }
399 if (itimer->terminate)
400 return 0;
401 if (sleep_time > 0)
402 {
640bf8ad 403 Sleep (sleep_time * 1000 / TIMER_TICKS_PER_SEC);
c06c382a
EZ
404 /* Always sleep past the expiration time, to make sure we
405 never call the handler _before_ the expiration time,
ace917bd 406 always slightly after it. Sleep(5) makes sure we don't
6c16c13e
EZ
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)
ace917bd 410 Sleep (5);
c06c382a
EZ
411 }
412
6c16c13e
EZ
413 EnterCriticalSection (crit);
414 expire = itimer->expire;
415 LeaveCriticalSection (crit);
416 if (expire == 0)
c06c382a
EZ
417 continue;
418
419 /* Time's up. */
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
424 unblocked. */
425 && !sigismember (&sig_mask, sig)
426 /* Simulate masking of SIGALRM and SIGPROF when processing
427 fatal signals. */
428 && !fatal_error_in_progress
429 && itimer->caller_thread)
430 {
431 /* Simulate a signal delivered to the thread which installed
432 the timer, by suspending that thread while the handler
433 runs. */
730b2d8f
EZ
434 HANDLE th = itimer->caller_thread;
435 DWORD result = SuspendThread (th);
c06c382a
EZ
436
437 if (result == (DWORD)-1)
db9848e4
EZ
438 return 2;
439
c06c382a 440 handler (sig);
730b2d8f 441 ResumeThread (th);
c06c382a
EZ
442 }
443
c06c382a
EZ
444 /* Update expiration time and loop. */
445 EnterCriticalSection (crit);
446 expire = itimer->expire;
6c16c13e
EZ
447 if (expire == 0)
448 {
449 LeaveCriticalSection (crit);
450 continue;
451 }
c06c382a
EZ
452 reload = itimer->reload;
453 if (reload > 0)
454 {
6c16c13e 455 now = w32_get_timer_time (hth);
c06c382a
EZ
456 if (expire <= now)
457 {
6c16c13e 458 ULONGLONG lag = now - expire;
c06c382a
EZ
459
460 /* If we missed some opportunities (presumably while
461 sleeping or while the signal handler ran), skip
462 them. */
463 if (lag > reload)
464 expire = now - (lag % reload);
465
466 expire += reload;
467 }
468 }
469 else
470 expire = 0; /* become idle */
471 itimer->expire = expire;
472 LeaveCriticalSection (crit);
473 }
474 return 0;
475}
476
477static void
478stop_timer_thread (int which)
479{
480 struct itimer_data *itimer =
481 (which == ITIMER_REAL) ? &real_itimer : &prof_itimer;
482 int i;
a65fbb5f
EZ
483 DWORD err, exit_code = 255;
484 BOOL status;
c06c382a
EZ
485
486 /* Signal the thread that it should terminate. */
487 itimer->terminate = 1;
488
489 if (itimer->timer_thread == NULL)
490 return;
491
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++)
496 {
497 if (!((status = GetExitCodeThread (itimer->timer_thread, &exit_code))
498 && exit_code == STILL_ACTIVE))
499 break;
500 Sleep (10);
501 }
502 if ((status == FALSE && (err = GetLastError ()) == ERROR_INVALID_HANDLE)
503 || exit_code == STILL_ACTIVE)
504 {
505 if (!(status == FALSE && err == ERROR_INVALID_HANDLE))
506 TerminateThread (itimer->timer_thread, 0);
507 }
508
509 /* Clean up. */
510 CloseHandle (itimer->timer_thread);
511 itimer->timer_thread = NULL;
512 if (itimer->caller_thread)
513 {
514 CloseHandle (itimer->caller_thread);
515 itimer->caller_thread = NULL;
516 }
517}
518
519/* This is called at shutdown time from term_ntproc. */
520void
521term_timers (void)
522{
523 if (real_itimer.timer_thread)
524 stop_timer_thread (ITIMER_REAL);
525 if (prof_itimer.timer_thread)
526 stop_timer_thread (ITIMER_PROF);
527
f0e5f225
EZ
528 /* We are going to delete the critical sections, so timers cannot
529 work after this. */
530 disable_itimers = 1;
531
c06c382a
EZ
532 DeleteCriticalSection (&crit_real);
533 DeleteCriticalSection (&crit_prof);
534 DeleteCriticalSection (&crit_sig);
535}
536
537/* This is called at initialization time from init_ntproc. */
538void
539init_timers (void)
540{
5c6ce1c7 541 /* GetThreadTimes is not available on all versions of Windows, so
6c16c13e
EZ
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"),
548 "GetThreadTimes");
549
c06c382a
EZ
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);
554
555 InitializeCriticalSection (&crit_real);
556 InitializeCriticalSection (&crit_prof);
557 InitializeCriticalSection (&crit_sig);
f0e5f225
EZ
558
559 disable_itimers = 0;
c06c382a
EZ
560}
561
562static int
563start_timer_thread (int which)
564{
565 DWORD exit_code;
730b2d8f 566 HANDLE th;
c06c382a
EZ
567 struct itimer_data *itimer =
568 (which == ITIMER_REAL) ? &real_itimer : &prof_itimer;
569
570 if (itimer->timer_thread
571 && GetExitCodeThread (itimer->timer_thread, &exit_code)
572 && exit_code == STILL_ACTIVE)
573 return 0;
574
730b2d8f
EZ
575 /* Clean up after possibly exited thread. */
576 if (itimer->timer_thread)
577 {
578 CloseHandle (itimer->timer_thread);
579 itimer->timer_thread = NULL;
580 }
581 if (itimer->caller_thread)
582 {
583 CloseHandle (itimer->caller_thread);
584 itimer->caller_thread = NULL;
585 }
586
c06c382a 587 /* Start a new thread. */
730b2d8f
EZ
588 if (!DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
589 GetCurrentProcess (), &th, 0, FALSE,
590 DUPLICATE_SAME_ACCESS))
591 {
592 errno = ESRCH;
593 return -1;
594 }
c06c382a
EZ
595 itimer->terminate = 0;
596 itimer->type = which;
730b2d8f 597 itimer->caller_thread = th;
c06c382a
EZ
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
601 new_child below. */
602 itimer->timer_thread = CreateThread (NULL, 64 * 1024, timer_loop,
603 (void *)itimer, 0x00010000, NULL);
604
605 if (!itimer->timer_thread)
606 {
607 CloseHandle (itimer->caller_thread);
608 itimer->caller_thread = NULL;
609 errno = EAGAIN;
610 return -1;
611 }
612
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)
730b2d8f 616 SetThreadPriority (itimer->timer_thread, THREAD_PRIORITY_TIME_CRITICAL);
c06c382a 617
3e6d6928
EZ
618 return 0;
619}
620
c06c382a
EZ
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. */
624int
625getitimer (int which, struct itimerval *value)
626{
6c16c13e
EZ
627 volatile ULONGLONG *t_expire;
628 volatile ULONGLONG *t_reload;
629 ULONGLONG expire, reload;
c06c382a
EZ
630 __int64 usecs;
631 CRITICAL_SECTION *crit;
6c16c13e 632 struct itimer_data *itimer;
c06c382a 633
f0e5f225
EZ
634 if (disable_itimers)
635 return -1;
636
c06c382a
EZ
637 if (!value)
638 {
639 errno = EFAULT;
640 return -1;
641 }
642
643 if (which != ITIMER_REAL && which != ITIMER_PROF)
644 {
645 errno = EINVAL;
646 return -1;
647 }
648
6c16c13e
EZ
649 itimer = (which == ITIMER_REAL) ? &real_itimer : &prof_itimer;
650
6c16c13e
EZ
651 ticks_now = w32_get_timer_time ((which == ITIMER_REAL)
652 ? NULL
730b2d8f 653 : GetCurrentThread ());
6c16c13e
EZ
654
655 t_expire = &itimer->expire;
656 t_reload = &itimer->reload;
c06c382a
EZ
657 crit = (which == ITIMER_REAL) ? &crit_real : &crit_prof;
658
659 EnterCriticalSection (crit);
660 reload = *t_reload;
661 expire = *t_expire;
662 LeaveCriticalSection (crit);
663
664 if (expire)
665 expire -= ticks_now;
666
640bf8ad
EZ
667 value->it_value.tv_sec = expire / TIMER_TICKS_PER_SEC;
668 usecs =
669 (expire % TIMER_TICKS_PER_SEC) * (__int64)1000000 / TIMER_TICKS_PER_SEC;
c06c382a 670 value->it_value.tv_usec = usecs;
640bf8ad
EZ
671 value->it_interval.tv_sec = reload / TIMER_TICKS_PER_SEC;
672 usecs =
673 (reload % TIMER_TICKS_PER_SEC) * (__int64)1000000 / TIMER_TICKS_PER_SEC;
c06c382a
EZ
674 value->it_interval.tv_usec= usecs;
675
676 return 0;
677}
678
679int
680setitimer(int which, struct itimerval *value, struct itimerval *ovalue)
681{
6c16c13e
EZ
682 volatile ULONGLONG *t_expire, *t_reload;
683 ULONGLONG expire, reload, expire_old, reload_old;
c06c382a
EZ
684 __int64 usecs;
685 CRITICAL_SECTION *crit;
6c16c13e 686 struct itimerval tem, *ptem;
c06c382a 687
f0e5f225
EZ
688 if (disable_itimers)
689 return -1;
690
c06c382a
EZ
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. */
694 if (!clocks_min)
695 {
6c16c13e 696 ULONGLONG t1, t2;
c06c382a 697
6c16c13e
EZ
698 for (t1 = w32_get_timer_time (NULL);
699 (t2 = w32_get_timer_time (NULL)) == t1; )
c06c382a
EZ
700 ;
701 clocks_min = t2 - t1;
702 }
703
704 if (ovalue)
6c16c13e 705 ptem = ovalue;
c06c382a 706 else
6c16c13e 707 ptem = &tem;
c06c382a 708
6c16c13e
EZ
709 if (getitimer (which, ptem)) /* also sets ticks_now */
710 return -1; /* errno already set */
c06c382a
EZ
711
712 t_expire =
713 (which == ITIMER_REAL) ? &real_itimer.expire : &prof_itimer.expire;
714 t_reload =
715 (which == ITIMER_REAL) ? &real_itimer.reload : &prof_itimer.reload;
716
717 crit = (which == ITIMER_REAL) ? &crit_real : &crit_prof;
718
719 if (!value
720 || (value->it_value.tv_sec == 0 && value->it_value.tv_usec == 0))
721 {
722 EnterCriticalSection (crit);
723 /* Disable the timer. */
724 *t_expire = 0;
725 *t_reload = 0;
726 LeaveCriticalSection (crit);
727 return 0;
728 }
729
640bf8ad 730 reload = value->it_interval.tv_sec * TIMER_TICKS_PER_SEC;
c06c382a
EZ
731
732 usecs = value->it_interval.tv_usec;
733 if (value->it_interval.tv_sec == 0
640bf8ad 734 && usecs && usecs * TIMER_TICKS_PER_SEC < clocks_min * 1000000)
c06c382a
EZ
735 reload = clocks_min;
736 else
737 {
640bf8ad 738 usecs *= TIMER_TICKS_PER_SEC;
c06c382a
EZ
739 reload += usecs / 1000000;
740 }
741
640bf8ad 742 expire = value->it_value.tv_sec * TIMER_TICKS_PER_SEC;
c06c382a
EZ
743 usecs = value->it_value.tv_usec;
744 if (value->it_value.tv_sec == 0
640bf8ad 745 && usecs * TIMER_TICKS_PER_SEC < clocks_min * 1000000)
c06c382a
EZ
746 expire = clocks_min;
747 else
748 {
640bf8ad 749 usecs *= TIMER_TICKS_PER_SEC;
c06c382a
EZ
750 expire += usecs / 1000000;
751 }
752
753 expire += ticks_now;
754
755 EnterCriticalSection (crit);
756 expire_old = *t_expire;
757 reload_old = *t_reload;
758 if (!(expire == expire_old && reload == reload_old))
759 {
760 *t_reload = reload;
761 *t_expire = expire;
762 }
763 LeaveCriticalSection (crit);
764
765 return start_timer_thread (which);
766}
767
768int
769alarm (int seconds)
770{
4cdfbb89
EZ
771#ifdef HAVE_SETITIMER
772 struct itimerval new_values, old_values;
c06c382a
EZ
773
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;
777
4cdfbb89
EZ
778 if (setitimer (ITIMER_REAL, &new_values, &old_values) < 0)
779 return 0;
780 return old_values.it_value.tv_sec;
781#else
c06c382a 782 return seconds;
4cdfbb89 783#endif
c06c382a
EZ
784}
785
c519b5e1
GV
786/* Defined in <process.h> which conflicts with the local copy */
787#define _P_NOWAIT 1
788
789/* Child process management list. */
790int child_proc_count = 0;
791child_process child_procs[ MAX_CHILDREN ];
c519b5e1 792
24f981c9 793static DWORD WINAPI reader_thread (void *arg);
c519b5e1 794
6cdfb6e6 795/* Find an unused process slot. */
c519b5e1 796child_process *
6cdfb6e6
RS
797new_child (void)
798{
799 child_process *cp;
c519b5e1 800 DWORD id;
177c0ea7 801
9d4f32e8 802 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
7efa3fb3 803 if (!CHILD_ACTIVE (cp) && cp->procinfo.hProcess == NULL)
e1dbe924 804 goto Initialize;
c519b5e1
GV
805 if (child_proc_count == MAX_CHILDREN)
806 return NULL;
807 cp = &child_procs[child_proc_count++];
808
e1dbe924 809 Initialize:
ed3751c8 810 memset (cp, 0, sizeof (*cp));
c519b5e1
GV
811 cp->fd = -1;
812 cp->pid = -1;
813 cp->procinfo.hProcess = NULL;
814 cp->status = STATUS_READ_ERROR;
b0728617
EZ
815 cp->input_file = NULL;
816 cp->pending_deletion = 0;
c519b5e1
GV
817
818 /* use manual reset event so that select() will function properly */
819 cp->char_avail = CreateEvent (NULL, TRUE, FALSE, NULL);
820 if (cp->char_avail)
821 {
822 cp->char_consumed = CreateEvent (NULL, FALSE, FALSE, NULL);
823 if (cp->char_consumed)
824 {
0d887c7d
EZ
825 /* The 0x00010000 flag is STACK_SIZE_PARAM_IS_A_RESERVATION.
826 It means that the 64K stack we are requesting in the 2nd
827 argument is how much memory should be reserved for the
828 stack. If we don't use this flag, the memory requested
829 by the 2nd argument is the amount actually _committed_,
830 but Windows reserves 8MB of memory for each thread's
831 stack. (The 8MB figure comes from the -stack
832 command-line argument we pass to the linker when building
833 Emacs, but that's because we need a large stack for
834 Emacs's main thread.) Since we request 2GB of reserved
835 memory at startup (see w32heap.c), which is close to the
836 maximum memory available for a 32-bit process on Windows,
837 the 8MB reservation for each thread causes failures in
838 starting subprocesses, because we create a thread running
839 reader_thread for each subprocess. As 8MB of stack is
840 way too much for reader_thread, forcing Windows to
841 reserve less wins the day. */
842 cp->thrd = CreateThread (NULL, 64 * 1024, reader_thread, cp,
843 0x00010000, &id);
c519b5e1
GV
844 if (cp->thrd)
845 return cp;
846 }
847 }
848 delete_child (cp);
849 return NULL;
850}
851
177c0ea7 852void
c519b5e1
GV
853delete_child (child_process *cp)
854{
855 int i;
856
857 /* Should not be deleting a child that is still needed. */
858 for (i = 0; i < MAXDESC; i++)
859 if (fd_info[i].cp == cp)
1088b922 860 emacs_abort ();
c519b5e1 861
7efa3fb3 862 if (!CHILD_ACTIVE (cp) && cp->procinfo.hProcess == NULL)
c519b5e1
GV
863 return;
864
b0728617
EZ
865 /* Delete the child's temporary input file, if any, that is pending
866 deletion. */
867 if (cp->input_file)
868 {
869 if (cp->pending_deletion)
870 {
871 if (unlink (cp->input_file))
872 DebPrint (("delete_child.unlink (%s) failed, errno: %d\n",
873 cp->input_file, errno));
874 cp->pending_deletion = 0;
875 }
876 xfree (cp->input_file);
877 cp->input_file = NULL;
878 }
879
c519b5e1
GV
880 /* reap thread if necessary */
881 if (cp->thrd)
882 {
883 DWORD rc;
884
885 if (GetExitCodeThread (cp->thrd, &rc) && rc == STILL_ACTIVE)
886 {
887 /* let the thread exit cleanly if possible */
888 cp->status = STATUS_READ_ERROR;
889 SetEvent (cp->char_consumed);
a017b515 890#if 0
c5e87d10 891 /* We used to forcibly terminate the thread here, but it
a017b515
JR
892 is normally unnecessary, and in abnormal cases, the worst that
893 will happen is we have an extra idle thread hanging around
894 waiting for the zombie process. */
c519b5e1
GV
895 if (WaitForSingleObject (cp->thrd, 1000) != WAIT_OBJECT_0)
896 {
897 DebPrint (("delete_child.WaitForSingleObject (thread) failed "
898 "with %lu for fd %ld\n", GetLastError (), cp->fd));
899 TerminateThread (cp->thrd, 0);
900 }
a017b515 901#endif
c519b5e1
GV
902 }
903 CloseHandle (cp->thrd);
904 cp->thrd = NULL;
905 }
906 if (cp->char_avail)
907 {
908 CloseHandle (cp->char_avail);
909 cp->char_avail = NULL;
910 }
911 if (cp->char_consumed)
912 {
913 CloseHandle (cp->char_consumed);
914 cp->char_consumed = NULL;
915 }
916
917 /* update child_proc_count (highest numbered slot in use plus one) */
918 if (cp == child_procs + child_proc_count - 1)
919 {
920 for (i = child_proc_count-1; i >= 0; i--)
7efa3fb3
EZ
921 if (CHILD_ACTIVE (&child_procs[i])
922 || child_procs[i].procinfo.hProcess != NULL)
c519b5e1
GV
923 {
924 child_proc_count = i + 1;
925 break;
926 }
927 }
928 if (i < 0)
929 child_proc_count = 0;
6cdfb6e6
RS
930}
931
932/* Find a child by pid. */
933static child_process *
934find_child_pid (DWORD pid)
935{
936 child_process *cp;
c519b5e1 937
9d4f32e8 938 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
7efa3fb3
EZ
939 if ((CHILD_ACTIVE (cp) || cp->procinfo.hProcess != NULL)
940 && pid == cp->pid)
6cdfb6e6
RS
941 return cp;
942 return NULL;
943}
944
6cdfb6e6 945
c519b5e1
GV
946/* Thread proc for child process and socket reader threads. Each thread
947 is normally blocked until woken by select() to check for input by
04bf5b65 948 reading one char. When the read completes, char_avail is signaled
c519b5e1 949 to wake up the select emulator and the thread blocks itself again. */
24f981c9 950static DWORD WINAPI
6cdfb6e6
RS
951reader_thread (void *arg)
952{
953 child_process *cp;
177c0ea7 954
6cdfb6e6
RS
955 /* Our identity */
956 cp = (child_process *)arg;
177c0ea7 957
6cdfb6e6 958 /* We have to wait for the go-ahead before we can start */
b2fc9f3d 959 if (cp == NULL
f067b8ec
JB
960 || WaitForSingleObject (cp->char_consumed, INFINITE) != WAIT_OBJECT_0
961 || cp->fd < 0)
c519b5e1
GV
962 return 1;
963
6cdfb6e6
RS
964 for (;;)
965 {
c519b5e1
GV
966 int rc;
967
299614f3 968 if (cp->fd >= 0 && fd_info[cp->fd].flags & FILE_LISTEN)
f9125cde
KS
969 rc = _sys_wait_accept (cp->fd);
970 else
971 rc = _sys_read_ahead (cp->fd);
c519b5e1
GV
972
973 /* The name char_avail is a misnomer - it really just means the
974 read-ahead has completed, whether successfully or not. */
6cdfb6e6
RS
975 if (!SetEvent (cp->char_avail))
976 {
977 DebPrint (("reader_thread.SetEvent failed with %lu for fd %ld\n",
978 GetLastError (), cp->fd));
c519b5e1
GV
979 return 1;
980 }
981
982 if (rc == STATUS_READ_ERROR)
983 return 1;
177c0ea7 984
6cdfb6e6 985 /* If the read died, the child has died so let the thread die */
c519b5e1 986 if (rc == STATUS_READ_FAILED)
6cdfb6e6 987 break;
177c0ea7 988
6cdfb6e6
RS
989 /* Wait until our input is acknowledged before reading again */
990 if (WaitForSingleObject (cp->char_consumed, INFINITE) != WAIT_OBJECT_0)
991 {
992 DebPrint (("reader_thread.WaitForSingleObject failed with "
993 "%lu for fd %ld\n", GetLastError (), cp->fd));
994 break;
995 }
299614f3
EZ
996 if (cp->status == STATUS_READ_ERROR)
997 break;
6cdfb6e6
RS
998 }
999 return 0;
1000}
1001
b2fc9f3d
GV
1002/* To avoid Emacs changing directory, we just record here the directory
1003 the new process should start in. This is set just before calling
1004 sys_spawnve, and is not generally valid at any other time. */
1005static char * process_dir;
1006
177c0ea7 1007static BOOL
a55a5f3c 1008create_child (char *exe, char *cmdline, char *env, int is_gui_app,
c519b5e1 1009 int * pPid, child_process *cp)
6cdfb6e6 1010{
6cdfb6e6
RS
1011 STARTUPINFO start;
1012 SECURITY_ATTRIBUTES sec_attrs;
42c95ffb 1013#if 0
6cdfb6e6 1014 SECURITY_DESCRIPTOR sec_desc;
42c95ffb 1015#endif
82e7c0a9 1016 DWORD flags;
b2fc9f3d 1017 char dir[ MAXPATHLEN ];
177c0ea7 1018
1088b922 1019 if (cp == NULL) emacs_abort ();
177c0ea7 1020
6cdfb6e6
RS
1021 memset (&start, 0, sizeof (start));
1022 start.cb = sizeof (start);
177c0ea7 1023
58d4e829 1024#ifdef HAVE_NTGUI
a55a5f3c 1025 if (NILP (Vw32_start_process_show_window) && !is_gui_app)
0ecf7d36
RS
1026 start.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
1027 else
1028 start.dwFlags = STARTF_USESTDHANDLES;
58d4e829
GV
1029 start.wShowWindow = SW_HIDE;
1030
1031 start.hStdInput = GetStdHandle (STD_INPUT_HANDLE);
1032 start.hStdOutput = GetStdHandle (STD_OUTPUT_HANDLE);
1033 start.hStdError = GetStdHandle (STD_ERROR_HANDLE);
1034#endif /* HAVE_NTGUI */
1035
42c95ffb 1036#if 0
6cdfb6e6
RS
1037 /* Explicitly specify no security */
1038 if (!InitializeSecurityDescriptor (&sec_desc, SECURITY_DESCRIPTOR_REVISION))
c519b5e1 1039 goto EH_Fail;
6cdfb6e6 1040 if (!SetSecurityDescriptorDacl (&sec_desc, TRUE, NULL, FALSE))
c519b5e1 1041 goto EH_Fail;
42c95ffb 1042#endif
6cdfb6e6 1043 sec_attrs.nLength = sizeof (sec_attrs);
42c95ffb 1044 sec_attrs.lpSecurityDescriptor = NULL /* &sec_desc */;
6cdfb6e6 1045 sec_attrs.bInheritHandle = FALSE;
177c0ea7 1046
b2fc9f3d
GV
1047 strcpy (dir, process_dir);
1048 unixtodos_filename (dir);
82e7c0a9
AI
1049
1050 flags = (!NILP (Vw32_start_process_share_console)
1051 ? CREATE_NEW_PROCESS_GROUP
1052 : CREATE_NEW_CONSOLE);
1053 if (NILP (Vw32_start_process_inherit_error_mode))
1054 flags |= CREATE_DEFAULT_ERROR_MODE;
6cdfb6e6 1055 if (!CreateProcess (exe, cmdline, &sec_attrs, NULL, TRUE,
82e7c0a9 1056 flags, env, dir, &start, &cp->procinfo))
c519b5e1
GV
1057 goto EH_Fail;
1058
1059 cp->pid = (int) cp->procinfo.dwProcessId;
1060
1061 /* Hack for Windows 95, which assigns large (ie negative) pids */
1062 if (cp->pid < 0)
1063 cp->pid = -cp->pid;
1064
c519b5e1 1065 *pPid = cp->pid;
b2fc9f3d 1066
6cdfb6e6 1067 return TRUE;
b2fc9f3d 1068
6cdfb6e6 1069 EH_Fail:
ed3751c8 1070 DebPrint (("create_child.CreateProcess failed: %ld\n", GetLastError ()););
6cdfb6e6
RS
1071 return FALSE;
1072}
1073
1074/* create_child doesn't know what emacs' file handle will be for waiting
1075 on output from the child, so we need to make this additional call
1076 to register the handle with the process
1077 This way the select emulator knows how to match file handles with
1078 entries in child_procs. */
177c0ea7 1079void
b0728617 1080register_child (pid_t pid, int fd)
6cdfb6e6
RS
1081{
1082 child_process *cp;
177c0ea7 1083
b0728617 1084 cp = find_child_pid ((DWORD)pid);
6cdfb6e6
RS
1085 if (cp == NULL)
1086 {
1087 DebPrint (("register_child unable to find pid %lu\n", pid));
1088 return;
1089 }
177c0ea7 1090
6cdfb6e6
RS
1091#ifdef FULL_DEBUG
1092 DebPrint (("register_child registered fd %d with pid %lu\n", fd, pid));
1093#endif
177c0ea7 1094
6cdfb6e6 1095 cp->fd = fd;
6cdfb6e6 1096
c519b5e1
GV
1097 /* thread is initially blocked until select is called; set status so
1098 that select will release thread */
1099 cp->status = STATUS_READ_ACKNOWLEDGED;
1100
1101 /* attach child_process to fd_info */
1102 if (fd_info[fd].cp != NULL)
6cdfb6e6 1103 {
c519b5e1 1104 DebPrint (("register_child: fd_info[%d] apparently in use!\n", fd));
1088b922 1105 emacs_abort ();
6cdfb6e6 1106 }
c519b5e1
GV
1107
1108 fd_info[fd].cp = cp;
6cdfb6e6
RS
1109}
1110
b0728617
EZ
1111/* Record INFILE as an input file for process PID. */
1112void
1113record_infile (pid_t pid, char *infile)
1114{
1115 child_process *cp;
1116
1117 /* INFILE should never be NULL, since xstrdup would have signaled
1118 memory full condition in that case, see callproc.c where this
1119 function is called. */
1120 eassert (infile);
1121
1122 cp = find_child_pid ((DWORD)pid);
1123 if (cp == NULL)
1124 {
1125 DebPrint (("record_infile is unable to find pid %lu\n", pid));
1126 return;
1127 }
1128
1129 cp->input_file = infile;
1130}
1131
1132/* Mark the input file INFILE of the corresponding subprocess as
1133 temporary, to be deleted when the subprocess exits. */
1134void
1135record_pending_deletion (char *infile)
1136{
1137 child_process *cp;
1138
1139 eassert (infile);
1140
1141 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
1142 if (CHILD_ACTIVE (cp)
1143 && cp->input_file && xstrcasecmp (cp->input_file, infile) == 0)
1144 {
1145 cp->pending_deletion = 1;
1146 break;
1147 }
1148}
1149
7be7da6c 1150/* Called from waitpid when a process exits. */
177c0ea7 1151static void
c519b5e1 1152reap_subprocess (child_process *cp)
6cdfb6e6 1153{
c519b5e1 1154 if (cp->procinfo.hProcess)
6cdfb6e6 1155 {
c519b5e1 1156 /* Reap the process */
b2fc9f3d
GV
1157#ifdef FULL_DEBUG
1158 /* Process should have already died before we are called. */
1159 if (WaitForSingleObject (cp->procinfo.hProcess, 0) != WAIT_OBJECT_0)
b0728617 1160 DebPrint (("reap_subprocess: child for fd %d has not died yet!", cp->fd));
b2fc9f3d 1161#endif
c519b5e1
GV
1162 CloseHandle (cp->procinfo.hProcess);
1163 cp->procinfo.hProcess = NULL;
1164 CloseHandle (cp->procinfo.hThread);
1165 cp->procinfo.hThread = NULL;
6cdfb6e6 1166 }
c519b5e1 1167
299614f3
EZ
1168 /* If cp->fd was not closed yet, we might be still reading the
1169 process output, so don't free its resources just yet. The call
1170 to delete_child on behalf of this subprocess will be made by
1171 sys_read when the subprocess output is fully read. */
1172 if (cp->fd < 0)
c519b5e1 1173 delete_child (cp);
6cdfb6e6
RS
1174}
1175
22bae83f
EZ
1176/* Wait for a child process specified by PID, or for any of our
1177 existing child processes (if PID is nonpositive) to die. When it
1178 does, close its handle. Return the pid of the process that died
1179 and fill in STATUS if non-NULL. */
22759c72 1180
22bae83f
EZ
1181pid_t
1182waitpid (pid_t pid, int *status, int options)
6cdfb6e6
RS
1183{
1184 DWORD active, retval;
1185 int nh;
1186 child_process *cp, *cps[MAX_CHILDREN];
1187 HANDLE wait_hnd[MAX_CHILDREN];
22bae83f
EZ
1188 DWORD timeout_ms;
1189 int dont_wait = (options & WNOHANG) != 0;
177c0ea7 1190
6cdfb6e6 1191 nh = 0;
22bae83f
EZ
1192 /* According to Posix:
1193
1194 PID = -1 means status is requested for any child process.
1195
1196 PID > 0 means status is requested for a single child process
1197 whose pid is PID.
1198
1199 PID = 0 means status is requested for any child process whose
1200 process group ID is equal to that of the calling process. But
1201 since Windows has only a limited support for process groups (only
1202 for console processes and only for the purposes of passing
1203 Ctrl-BREAK signal to them), and since we have no documented way
1204 of determining whether a given process belongs to our group, we
1205 treat 0 as -1.
1206
1207 PID < -1 means status is requested for any child process whose
1208 process group ID is equal to the absolute value of PID. Again,
1209 since we don't support process groups, we treat that as -1. */
1210 if (pid > 0)
6cdfb6e6 1211 {
22bae83f
EZ
1212 int our_child = 0;
1213
1214 /* We are requested to wait for a specific child. */
1215 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
1216 {
1217 /* Some child_procs might be sockets; ignore them. Also
1218 ignore subprocesses whose output is not yet completely
1219 read. */
1220 if (CHILD_ACTIVE (cp)
1221 && cp->procinfo.hProcess
1222 && cp->pid == pid)
1223 {
1224 our_child = 1;
1225 break;
1226 }
1227 }
1228 if (our_child)
1229 {
1230 if (cp->fd < 0 || (fd_info[cp->fd].flags & FILE_AT_EOF) != 0)
1231 {
1232 wait_hnd[nh] = cp->procinfo.hProcess;
1233 cps[nh] = cp;
1234 nh++;
1235 }
1236 else if (dont_wait)
1237 {
1238 /* PID specifies our subprocess, but its status is not
1239 yet available. */
1240 return 0;
1241 }
1242 }
1243 if (nh == 0)
1244 {
1245 /* No such child process, or nothing to wait for, so fail. */
1246 errno = ECHILD;
1247 return -1;
1248 }
6cdfb6e6
RS
1249 }
1250 else
1251 {
9d4f32e8 1252 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
22bae83f
EZ
1253 {
1254 if (CHILD_ACTIVE (cp)
1255 && cp->procinfo.hProcess
1256 && (cp->fd < 0 || (fd_info[cp->fd].flags & FILE_AT_EOF) != 0))
1257 {
1258 wait_hnd[nh] = cp->procinfo.hProcess;
1259 cps[nh] = cp;
1260 nh++;
1261 }
1262 }
1263 if (nh == 0)
1264 {
1265 /* Nothing to wait on, so fail. */
1266 errno = ECHILD;
1267 return -1;
1268 }
6cdfb6e6 1269 }
177c0ea7 1270
22bae83f
EZ
1271 if (dont_wait)
1272 timeout_ms = 0;
1273 else
1274 timeout_ms = 1000; /* check for quit about once a second. */
b2fc9f3d
GV
1275
1276 do
1277 {
b2fc9f3d 1278 QUIT;
22bae83f 1279 active = WaitForMultipleObjects (nh, wait_hnd, FALSE, timeout_ms);
e86f5134 1280 } while (active == WAIT_TIMEOUT && !dont_wait);
b2fc9f3d 1281
6cdfb6e6
RS
1282 if (active == WAIT_FAILED)
1283 {
1284 errno = EBADF;
1285 return -1;
1286 }
e86f5134
EZ
1287 else if (active == WAIT_TIMEOUT && dont_wait)
1288 {
1289 /* PID specifies our subprocess, but it didn't exit yet, so its
1290 status is not yet available. */
1291#ifdef FULL_DEBUG
1292 DebPrint (("Wait: PID %d not reap yet\n", cp->pid));
1293#endif
1294 return 0;
1295 }
b2fc9f3d
GV
1296 else if (active >= WAIT_OBJECT_0
1297 && active < WAIT_OBJECT_0+MAXIMUM_WAIT_OBJECTS)
6cdfb6e6
RS
1298 {
1299 active -= WAIT_OBJECT_0;
1300 }
b2fc9f3d
GV
1301 else if (active >= WAIT_ABANDONED_0
1302 && active < WAIT_ABANDONED_0+MAXIMUM_WAIT_OBJECTS)
6cdfb6e6
RS
1303 {
1304 active -= WAIT_ABANDONED_0;
1305 }
b2fc9f3d 1306 else
1088b922 1307 emacs_abort ();
b2fc9f3d 1308
6cdfb6e6
RS
1309 if (!GetExitCodeProcess (wait_hnd[active], &retval))
1310 {
1311 DebPrint (("Wait.GetExitCodeProcess failed with %lu\n",
1312 GetLastError ()));
1313 retval = 1;
1314 }
1315 if (retval == STILL_ACTIVE)
1316 {
22bae83f 1317 /* Should never happen. */
6cdfb6e6 1318 DebPrint (("Wait.WaitForMultipleObjects returned an active process\n"));
22bae83f
EZ
1319 if (pid > 0 && dont_wait)
1320 return 0;
6cdfb6e6
RS
1321 errno = EINVAL;
1322 return -1;
1323 }
bc69349b
RS
1324
1325 /* Massage the exit code from the process to match the format expected
8e6208c5 1326 by the WIFSTOPPED et al macros in syswait.h. Only WIFSIGNALED and
bc69349b
RS
1327 WIFEXITED are supported; WIFSTOPPED doesn't make sense under NT. */
1328
1329 if (retval == STATUS_CONTROL_C_EXIT)
1330 retval = SIGINT;
1331 else
1332 retval <<= 8;
177c0ea7 1333
22bae83f
EZ
1334 if (pid > 0 && active != 0)
1335 emacs_abort ();
6cdfb6e6 1336 cp = cps[active];
c519b5e1
GV
1337 pid = cp->pid;
1338#ifdef FULL_DEBUG
1339 DebPrint (("Wait signaled with process pid %d\n", cp->pid));
1340#endif
22759c72 1341
6cdfb6e6 1342 if (status)
bb5f74ee 1343 *status = retval;
b2fc9f3d 1344 reap_subprocess (cp);
177c0ea7 1345
c519b5e1 1346 return pid;
6cdfb6e6
RS
1347}
1348
75be5258
EZ
1349/* Old versions of w32api headers don't have separate 32-bit and
1350 64-bit defines, but the one they have matches the 32-bit variety. */
1351#ifndef IMAGE_NT_OPTIONAL_HDR32_MAGIC
1352# define IMAGE_NT_OPTIONAL_HDR32_MAGIC IMAGE_NT_OPTIONAL_HDR_MAGIC
1353# define IMAGE_OPTIONAL_HEADER32 IMAGE_OPTIONAL_HEADER
1354#endif
1355
24f981c9 1356static void
b56ceb92
JB
1357w32_executable_type (char * filename,
1358 int * is_dos_app,
1359 int * is_cygnus_app,
1360 int * is_gui_app)
817abdf6 1361{
b2fc9f3d
GV
1362 file_data executable;
1363 char * p;
177c0ea7 1364
b2fc9f3d
GV
1365 /* Default values in case we can't tell for sure. */
1366 *is_dos_app = FALSE;
1367 *is_cygnus_app = FALSE;
a55a5f3c 1368 *is_gui_app = FALSE;
b2fc9f3d
GV
1369
1370 if (!open_input_file (&executable, filename))
1371 return;
817abdf6 1372
b2fc9f3d 1373 p = strrchr (filename, '.');
177c0ea7 1374
b2fc9f3d 1375 /* We can only identify DOS .com programs from the extension. */
05131107 1376 if (p && xstrcasecmp (p, ".com") == 0)
b2fc9f3d 1377 *is_dos_app = TRUE;
05131107
JR
1378 else if (p && (xstrcasecmp (p, ".bat") == 0
1379 || xstrcasecmp (p, ".cmd") == 0))
b2fc9f3d
GV
1380 {
1381 /* A DOS shell script - it appears that CreateProcess is happy to
1382 accept this (somewhat surprisingly); presumably it looks at
1383 COMSPEC to determine what executable to actually invoke.
1384 Therefore, we have to do the same here as well. */
1385 /* Actually, I think it uses the program association for that
1386 extension, which is defined in the registry. */
1387 p = egetenv ("COMSPEC");
1388 if (p)
a55a5f3c 1389 w32_executable_type (p, is_dos_app, is_cygnus_app, is_gui_app);
b2fc9f3d
GV
1390 }
1391 else
817abdf6 1392 {
b2fc9f3d
GV
1393 /* Look for DOS .exe signature - if found, we must also check that
1394 it isn't really a 16- or 32-bit Windows exe, since both formats
1395 start with a DOS program stub. Note that 16-bit Windows
1396 executables use the OS/2 1.x format. */
817abdf6 1397
b2fc9f3d
GV
1398 IMAGE_DOS_HEADER * dos_header;
1399 IMAGE_NT_HEADERS * nt_header;
1400
1401 dos_header = (PIMAGE_DOS_HEADER) executable.file_base;
1402 if (dos_header->e_magic != IMAGE_DOS_SIGNATURE)
1403 goto unwind;
1404
62aba0d4 1405 nt_header = (PIMAGE_NT_HEADERS) ((unsigned char *) dos_header + dos_header->e_lfanew);
b2fc9f3d 1406
177c0ea7 1407 if ((char *) nt_header > (char *) dos_header + executable.size)
817abdf6 1408 {
b2fc9f3d
GV
1409 /* Some dos headers (pkunzip) have bogus e_lfanew fields. */
1410 *is_dos_app = TRUE;
177c0ea7 1411 }
b2fc9f3d
GV
1412 else if (nt_header->Signature != IMAGE_NT_SIGNATURE
1413 && LOWORD (nt_header->Signature) != IMAGE_OS2_SIGNATURE)
1414 {
1415 *is_dos_app = TRUE;
1416 }
1417 else if (nt_header->Signature == IMAGE_NT_SIGNATURE)
1418 {
2b6e2f4d
JR
1419 IMAGE_DATA_DIRECTORY *data_dir = NULL;
1420 if (nt_header->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC)
1421 {
1422 /* Ensure we are using the 32 bit structure. */
1423 IMAGE_OPTIONAL_HEADER32 *opt
1424 = (IMAGE_OPTIONAL_HEADER32*) &(nt_header->OptionalHeader);
1425 data_dir = opt->DataDirectory;
1426 *is_gui_app = (opt->Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI);
1427 }
1428 /* MingW 3.12 has the required 64 bit structs, but in case older
1429 versions don't, only check 64 bit exes if we know how. */
1430#ifdef IMAGE_NT_OPTIONAL_HDR64_MAGIC
1431 else if (nt_header->OptionalHeader.Magic
1432 == IMAGE_NT_OPTIONAL_HDR64_MAGIC)
1433 {
1434 IMAGE_OPTIONAL_HEADER64 *opt
1435 = (IMAGE_OPTIONAL_HEADER64*) &(nt_header->OptionalHeader);
1436 data_dir = opt->DataDirectory;
1437 *is_gui_app = (opt->Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI);
1438 }
1439#endif
1440 if (data_dir)
1441 {
1442 /* Look for cygwin.dll in DLL import list. */
1443 IMAGE_DATA_DIRECTORY import_dir =
1444 data_dir[IMAGE_DIRECTORY_ENTRY_IMPORT];
1445 IMAGE_IMPORT_DESCRIPTOR * imports;
1446 IMAGE_SECTION_HEADER * section;
1447
1448 section = rva_to_section (import_dir.VirtualAddress, nt_header);
1449 imports = RVA_TO_PTR (import_dir.VirtualAddress, section,
1450 executable);
1451
1452 for ( ; imports->Name; imports++)
1453 {
1454 char * dllname = RVA_TO_PTR (imports->Name, section,
1455 executable);
35f36d65 1456
2b6e2f4d
JR
1457 /* The exact name of the cygwin dll has changed with
1458 various releases, but hopefully this will be reasonably
1459 future proof. */
1460 if (strncmp (dllname, "cygwin", 6) == 0)
1461 {
1462 *is_cygnus_app = TRUE;
1463 break;
1464 }
1465 }
1466 }
b2fc9f3d 1467 }
817abdf6 1468 }
177c0ea7 1469
b2fc9f3d
GV
1470unwind:
1471 close_file_data (&executable);
817abdf6
KH
1472}
1473
24f981c9 1474static int
42c95ffb 1475compare_env (const void *strp1, const void *strp2)
d9709fde 1476{
42c95ffb 1477 const char *str1 = *(const char **)strp1, *str2 = *(const char **)strp2;
d9709fde
GV
1478
1479 while (*str1 && *str2 && *str1 != '=' && *str2 != '=')
1480 {
11c22fff
AI
1481 /* Sort order in command.com/cmd.exe is based on uppercasing
1482 names, so do the same here. */
1483 if (toupper (*str1) > toupper (*str2))
d9709fde 1484 return 1;
11c22fff 1485 else if (toupper (*str1) < toupper (*str2))
d9709fde
GV
1486 return -1;
1487 str1++, str2++;
1488 }
1489
1490 if (*str1 == '=' && *str2 == '=')
1491 return 0;
1492 else if (*str1 == '=')
1493 return -1;
1494 else
1495 return 1;
1496}
1497
24f981c9 1498static void
d9709fde
GV
1499merge_and_sort_env (char **envp1, char **envp2, char **new_envp)
1500{
1501 char **optr, **nptr;
1502 int num;
1503
1504 nptr = new_envp;
1505 optr = envp1;
1506 while (*optr)
1507 *nptr++ = *optr++;
1508 num = optr - envp1;
1509
1510 optr = envp2;
1511 while (*optr)
1512 *nptr++ = *optr++;
1513 num += optr - envp2;
1514
1515 qsort (new_envp, num, sizeof (char *), compare_env);
1516
1517 *nptr = NULL;
1518}
6cdfb6e6
RS
1519
1520/* When a new child process is created we need to register it in our list,
1521 so intercept spawn requests. */
177c0ea7 1522int
c519b5e1 1523sys_spawnve (int mode, char *cmdname, char **argv, char **envp)
6cdfb6e6 1524{
0a4de642 1525 Lisp_Object program, full;
6cdfb6e6 1526 char *cmdline, *env, *parg, **targ;
d9709fde 1527 int arglen, numenv;
b0728617 1528 pid_t pid;
c519b5e1 1529 child_process *cp;
a55a5f3c 1530 int is_dos_app, is_cygnus_app, is_gui_app;
b2fc9f3d
GV
1531 int do_quoting = 0;
1532 char escape_char;
d9709fde
GV
1533 /* We pass our process ID to our children by setting up an environment
1534 variable in their environment. */
1535 char ppid_env_var_buffer[64];
1536 char *extra_env[] = {ppid_env_var_buffer, NULL};
0a7a6051
JR
1537 /* These are the characters that cause an argument to need quoting.
1538 Arguments with whitespace characters need quoting to prevent the
1539 argument being split into two or more. Arguments with wildcards
1540 are also quoted, for consistency with posix platforms, where wildcards
1541 are not expanded if we run the program directly without a shell.
1542 Some extra whitespace characters need quoting in Cygwin programs,
1543 so this list is conditionally modified below. */
1544 char *sepchars = " \t*?";
d9709fde 1545
c519b5e1
GV
1546 /* We don't care about the other modes */
1547 if (mode != _P_NOWAIT)
1548 {
1549 errno = EINVAL;
1550 return -1;
1551 }
0a4de642
RS
1552
1553 /* Handle executable names without an executable suffix. */
1130ecfc 1554 program = build_string (cmdname);
0a4de642
RS
1555 if (NILP (Ffile_executable_p (program)))
1556 {
1557 struct gcpro gcpro1;
177c0ea7 1558
0a4de642
RS
1559 full = Qnil;
1560 GCPRO1 (program);
44c7a526 1561 openp (Vexec_path, program, Vexec_suffixes, &full, make_number (X_OK));
0a4de642
RS
1562 UNGCPRO;
1563 if (NILP (full))
1564 {
1565 errno = EINVAL;
1566 return -1;
1567 }
b2fc9f3d 1568 program = full;
0a4de642
RS
1569 }
1570
b2fc9f3d 1571 /* make sure argv[0] and cmdname are both in DOS format */
d5db4077 1572 cmdname = SDATA (program);
c519b5e1
GV
1573 unixtodos_filename (cmdname);
1574 argv[0] = cmdname;
817abdf6 1575
b46a6a83 1576 /* Determine whether program is a 16-bit DOS executable, or a 32-bit Windows
b2fc9f3d
GV
1577 executable that is implicitly linked to the Cygnus dll (implying it
1578 was compiled with the Cygnus GNU toolchain and hence relies on
1579 cygwin.dll to parse the command line - we use this to decide how to
a55a5f3c
AI
1580 escape quote chars in command line args that must be quoted).
1581
1582 Also determine whether it is a GUI app, so that we don't hide its
1583 initial window unless specifically requested. */
1584 w32_executable_type (cmdname, &is_dos_app, &is_cygnus_app, &is_gui_app);
b2fc9f3d
GV
1585
1586 /* On Windows 95, if cmdname is a DOS app, we invoke a helper
1587 application to start it by specifying the helper app as cmdname,
1588 while leaving the real app name as argv[0]. */
1589 if (is_dos_app)
817abdf6 1590 {
b2fc9f3d
GV
1591 cmdname = alloca (MAXPATHLEN);
1592 if (egetenv ("CMDPROXY"))
1593 strcpy (cmdname, egetenv ("CMDPROXY"));
1594 else
1595 {
d5db4077 1596 strcpy (cmdname, SDATA (Vinvocation_directory));
b2fc9f3d
GV
1597 strcat (cmdname, "cmdproxy.exe");
1598 }
1599 unixtodos_filename (cmdname);
817abdf6 1600 }
177c0ea7 1601
6cdfb6e6
RS
1602 /* we have to do some conjuring here to put argv and envp into the
1603 form CreateProcess wants... argv needs to be a space separated/null
1604 terminated list of parameters, and envp is a null
1605 separated/double-null terminated list of parameters.
c519b5e1 1606
b2fc9f3d
GV
1607 Additionally, zero-length args and args containing whitespace or
1608 quote chars need to be wrapped in double quotes - for this to work,
1609 embedded quotes need to be escaped as well. The aim is to ensure
1610 the child process reconstructs the argv array we start with
1611 exactly, so we treat quotes at the beginning and end of arguments
1612 as embedded quotes.
1613
ef79fbba 1614 The w32 GNU-based library from Cygnus doubles quotes to escape
b2fc9f3d 1615 them, while MSVC uses backslash for escaping. (Actually the MSVC
e1dbe924 1616 startup code does attempt to recognize doubled quotes and accept
b2fc9f3d
GV
1617 them, but gets it wrong and ends up requiring three quotes to get a
1618 single embedded quote!) So by default we decide whether to use
1619 quote or backslash as the escape character based on whether the
1620 binary is apparently a Cygnus compiled app.
1621
1622 Note that using backslash to escape embedded quotes requires
1623 additional special handling if an embedded quote is already
97610156 1624 preceded by backslash, or if an arg requiring quoting ends with
b2fc9f3d
GV
1625 backslash. In such cases, the run of escape characters needs to be
1626 doubled. For consistency, we apply this special handling as long
1627 as the escape character is not quote.
1628
1629 Since we have no idea how large argv and envp are likely to be we
1630 figure out list lengths on the fly and allocate them. */
1631
1632 if (!NILP (Vw32_quote_process_args))
1633 {
1634 do_quoting = 1;
1635 /* Override escape char by binding w32-quote-process-args to
1636 desired character, or use t for auto-selection. */
1637 if (INTEGERP (Vw32_quote_process_args))
1638 escape_char = XINT (Vw32_quote_process_args);
1639 else
1640 escape_char = is_cygnus_app ? '"' : '\\';
1641 }
177c0ea7 1642
9d4f32e8 1643 /* Cygwin apps needs quoting a bit more often. */
dbb70029
GM
1644 if (escape_char == '"')
1645 sepchars = "\r\n\t\f '";
1646
6cdfb6e6
RS
1647 /* do argv... */
1648 arglen = 0;
1649 targ = argv;
1650 while (*targ)
1651 {
c519b5e1 1652 char * p = *targ;
b2fc9f3d
GV
1653 int need_quotes = 0;
1654 int escape_char_run = 0;
c519b5e1
GV
1655
1656 if (*p == 0)
b2fc9f3d
GV
1657 need_quotes = 1;
1658 for ( ; *p; p++)
1659 {
dbb70029
GM
1660 if (escape_char == '"' && *p == '\\')
1661 /* If it's a Cygwin app, \ needs to be escaped. */
1662 arglen++;
1663 else if (*p == '"')
b2fc9f3d
GV
1664 {
1665 /* allow for embedded quotes to be escaped */
1666 arglen++;
1667 need_quotes = 1;
1668 /* handle the case where the embedded quote is already escaped */
1669 if (escape_char_run > 0)
1670 {
1671 /* To preserve the arg exactly, we need to double the
1672 preceding escape characters (plus adding one to
1673 escape the quote character itself). */
1674 arglen += escape_char_run;
1675 }
1676 }
dbb70029 1677 else if (strchr (sepchars, *p) != NULL)
b2fc9f3d
GV
1678 {
1679 need_quotes = 1;
1680 }
1681
1682 if (*p == escape_char && escape_char != '"')
1683 escape_char_run++;
1684 else
1685 escape_char_run = 0;
1686 }
1687 if (need_quotes)
1688 {
1689 arglen += 2;
1690 /* handle the case where the arg ends with an escape char - we
1691 must not let the enclosing quote be escaped. */
1692 if (escape_char_run > 0)
1693 arglen += escape_char_run;
1694 }
6cdfb6e6
RS
1695 arglen += strlen (*targ++) + 1;
1696 }
c519b5e1 1697 cmdline = alloca (arglen);
6cdfb6e6
RS
1698 targ = argv;
1699 parg = cmdline;
1700 while (*targ)
1701 {
c519b5e1 1702 char * p = *targ;
b2fc9f3d 1703 int need_quotes = 0;
c519b5e1
GV
1704
1705 if (*p == 0)
b2fc9f3d 1706 need_quotes = 1;
93fdf2f8 1707
b2fc9f3d 1708 if (do_quoting)
93fdf2f8 1709 {
93fdf2f8 1710 for ( ; *p; p++)
dbb70029 1711 if ((strchr (sepchars, *p) != NULL) || *p == '"')
b2fc9f3d 1712 need_quotes = 1;
93fdf2f8 1713 }
b2fc9f3d 1714 if (need_quotes)
c519b5e1 1715 {
b2fc9f3d 1716 int escape_char_run = 0;
c519b5e1
GV
1717 char * first;
1718 char * last;
1719
1720 p = *targ;
1721 first = p;
1722 last = p + strlen (p) - 1;
1723 *parg++ = '"';
b2fc9f3d
GV
1724#if 0
1725 /* This version does not escape quotes if they occur at the
1726 beginning or end of the arg - this could lead to incorrect
fffa137c 1727 behavior when the arg itself represents a command line
b2fc9f3d
GV
1728 containing quoted args. I believe this was originally done
1729 as a hack to make some things work, before
1730 `w32-quote-process-args' was added. */
c519b5e1
GV
1731 while (*p)
1732 {
1733 if (*p == '"' && p > first && p < last)
b2fc9f3d 1734 *parg++ = escape_char; /* escape embedded quotes */
c519b5e1
GV
1735 *parg++ = *p++;
1736 }
b2fc9f3d
GV
1737#else
1738 for ( ; *p; p++)
1739 {
1740 if (*p == '"')
1741 {
1742 /* double preceding escape chars if any */
1743 while (escape_char_run > 0)
1744 {
1745 *parg++ = escape_char;
1746 escape_char_run--;
1747 }
1748 /* escape all quote chars, even at beginning or end */
1749 *parg++ = escape_char;
1750 }
dbb70029
GM
1751 else if (escape_char == '"' && *p == '\\')
1752 *parg++ = '\\';
b2fc9f3d
GV
1753 *parg++ = *p;
1754
1755 if (*p == escape_char && escape_char != '"')
1756 escape_char_run++;
1757 else
1758 escape_char_run = 0;
1759 }
1760 /* double escape chars before enclosing quote */
1761 while (escape_char_run > 0)
1762 {
1763 *parg++ = escape_char;
1764 escape_char_run--;
1765 }
1766#endif
c519b5e1
GV
1767 *parg++ = '"';
1768 }
1769 else
1770 {
1771 strcpy (parg, *targ);
1772 parg += strlen (*targ);
1773 }
6cdfb6e6 1774 *parg++ = ' ';
c519b5e1 1775 targ++;
6cdfb6e6
RS
1776 }
1777 *--parg = '\0';
177c0ea7 1778
6cdfb6e6
RS
1779 /* and envp... */
1780 arglen = 1;
1781 targ = envp;
d9709fde 1782 numenv = 1; /* for end null */
6cdfb6e6
RS
1783 while (*targ)
1784 {
1785 arglen += strlen (*targ++) + 1;
d9709fde 1786 numenv++;
6cdfb6e6 1787 }
d9709fde 1788 /* extra env vars... */
2f246cd3 1789 sprintf (ppid_env_var_buffer, "EM_PARENT_PROCESS_ID=%lu",
6cdfb6e6
RS
1790 GetCurrentProcessId ());
1791 arglen += strlen (ppid_env_var_buffer) + 1;
d9709fde 1792 numenv++;
6cdfb6e6 1793
d9709fde
GV
1794 /* merge env passed in and extra env into one, and sort it. */
1795 targ = (char **) alloca (numenv * sizeof (char *));
1796 merge_and_sort_env (envp, extra_env, targ);
1797
1798 /* concatenate env entries. */
c519b5e1 1799 env = alloca (arglen);
6cdfb6e6
RS
1800 parg = env;
1801 while (*targ)
1802 {
1803 strcpy (parg, *targ);
1804 parg += strlen (*targ++);
1805 *parg++ = '\0';
1806 }
6cdfb6e6
RS
1807 *parg++ = '\0';
1808 *parg = '\0';
c519b5e1
GV
1809
1810 cp = new_child ();
1811 if (cp == NULL)
1812 {
1813 errno = EAGAIN;
1814 return -1;
1815 }
177c0ea7 1816
6cdfb6e6 1817 /* Now create the process. */
a55a5f3c 1818 if (!create_child (cmdname, cmdline, env, is_gui_app, &pid, cp))
6cdfb6e6 1819 {
c519b5e1 1820 delete_child (cp);
6cdfb6e6 1821 errno = ENOEXEC;
c519b5e1 1822 return -1;
6cdfb6e6 1823 }
177c0ea7 1824
c519b5e1 1825 return pid;
6cdfb6e6
RS
1826}
1827
1828/* Emulate the select call
1829 Wait for available input on any of the given rfds, or timeout if
1830 a timeout is given and no input is detected
b2fc9f3d
GV
1831 wfds and efds are not supported and must be NULL.
1832
1833 For simplicity, we detect the death of child processes here and
1834 synchronously call the SIGCHLD handler. Since it is possible for
1835 children to be created without a corresponding pipe handle from which
1836 to read output, we wait separately on the process handles as well as
1837 the char_avail events for each process pipe. We only call
86143765
RS
1838 wait/reap_process when the process actually terminates.
1839
1840 To reduce the number of places in which Emacs can be hung such that
1841 C-g is not able to interrupt it, we always wait on interrupt_handle
04bf5b65 1842 (which is signaled by the input thread when C-g is detected). If we
86143765
RS
1843 detect that we were woken up by C-g, we return -1 with errno set to
1844 EINTR as on Unix. */
6cdfb6e6 1845
7684e57b 1846/* From w32console.c */
6cdfb6e6 1847extern HANDLE keyboard_handle;
86143765
RS
1848
1849/* From w32xfns.c */
1850extern HANDLE interrupt_handle;
1851
6cdfb6e6
RS
1852/* From process.c */
1853extern int proc_buffered_char[];
1854
177c0ea7 1855int
22759c72 1856sys_select (int nfds, SELECT_TYPE *rfds, SELECT_TYPE *wfds, SELECT_TYPE *efds,
c9240d7a 1857 EMACS_TIME *timeout, void *ignored)
6cdfb6e6
RS
1858{
1859 SELECT_TYPE orfds;
b2fc9f3d
GV
1860 DWORD timeout_ms, start_time;
1861 int i, nh, nc, nr;
6cdfb6e6 1862 DWORD active;
b2fc9f3d
GV
1863 child_process *cp, *cps[MAX_CHILDREN];
1864 HANDLE wait_hnd[MAXDESC + MAX_CHILDREN];
c519b5e1 1865 int fdindex[MAXDESC]; /* mapping from wait handles back to descriptors */
177c0ea7 1866
388cdec0
EZ
1867 timeout_ms =
1868 timeout ? (timeout->tv_sec * 1000 + timeout->tv_nsec / 1000000) : INFINITE;
b2fc9f3d 1869
6cdfb6e6 1870 /* If the descriptor sets are NULL but timeout isn't, then just Sleep. */
177c0ea7 1871 if (rfds == NULL && wfds == NULL && efds == NULL && timeout != NULL)
6cdfb6e6 1872 {
b2fc9f3d 1873 Sleep (timeout_ms);
6cdfb6e6
RS
1874 return 0;
1875 }
1876
1877 /* Otherwise, we only handle rfds, so fail otherwise. */
1878 if (rfds == NULL || wfds != NULL || efds != NULL)
1879 {
1880 errno = EINVAL;
1881 return -1;
1882 }
177c0ea7 1883
6cdfb6e6
RS
1884 orfds = *rfds;
1885 FD_ZERO (rfds);
1886 nr = 0;
86143765
RS
1887
1888 /* Always wait on interrupt_handle, to detect C-g (quit). */
1889 wait_hnd[0] = interrupt_handle;
1890 fdindex[0] = -1;
177c0ea7 1891
b2fc9f3d 1892 /* Build a list of pipe handles to wait on. */
86143765 1893 nh = 1;
6cdfb6e6
RS
1894 for (i = 0; i < nfds; i++)
1895 if (FD_ISSET (i, &orfds))
1896 {
1897 if (i == 0)
1898 {
c519b5e1
GV
1899 if (keyboard_handle)
1900 {
1901 /* Handle stdin specially */
1902 wait_hnd[nh] = keyboard_handle;
1903 fdindex[nh] = i;
1904 nh++;
1905 }
6cdfb6e6
RS
1906
1907 /* Check for any emacs-generated input in the queue since
1908 it won't be detected in the wait */
1909 if (detect_input_pending ())
1910 {
1911 FD_SET (i, rfds);
c519b5e1 1912 return 1;
6cdfb6e6
RS
1913 }
1914 }
1915 else
1916 {
d3d14b40 1917 /* Child process and socket/comm port input. */
c519b5e1 1918 cp = fd_info[i].cp;
6cdfb6e6
RS
1919 if (cp)
1920 {
c519b5e1
GV
1921 int current_status = cp->status;
1922
1923 if (current_status == STATUS_READ_ACKNOWLEDGED)
1924 {
1925 /* Tell reader thread which file handle to use. */
1926 cp->fd = i;
1927 /* Wake up the reader thread for this process */
1928 cp->status = STATUS_READ_READY;
1929 if (!SetEvent (cp->char_consumed))
d3d14b40 1930 DebPrint (("sys_select.SetEvent failed with "
c519b5e1
GV
1931 "%lu for fd %ld\n", GetLastError (), i));
1932 }
1933
1934#ifdef CHECK_INTERLOCK
1935 /* slightly crude cross-checking of interlock between threads */
1936
1937 current_status = cp->status;
1938 if (WaitForSingleObject (cp->char_avail, 0) == WAIT_OBJECT_0)
1939 {
04bf5b65 1940 /* char_avail has been signaled, so status (which may
c519b5e1
GV
1941 have changed) should indicate read has completed
1942 but has not been acknowledged. */
1943 current_status = cp->status;
b2fc9f3d
GV
1944 if (current_status != STATUS_READ_SUCCEEDED
1945 && current_status != STATUS_READ_FAILED)
c519b5e1
GV
1946 DebPrint (("char_avail set, but read not completed: status %d\n",
1947 current_status));
1948 }
1949 else
1950 {
04bf5b65 1951 /* char_avail has not been signaled, so status should
c519b5e1 1952 indicate that read is in progress; small possibility
04bf5b65 1953 that read has completed but event wasn't yet signaled
c519b5e1
GV
1954 when we tested it (because a context switch occurred
1955 or if running on separate CPUs). */
b2fc9f3d
GV
1956 if (current_status != STATUS_READ_READY
1957 && current_status != STATUS_READ_IN_PROGRESS
1958 && current_status != STATUS_READ_SUCCEEDED
1959 && current_status != STATUS_READ_FAILED)
c519b5e1
GV
1960 DebPrint (("char_avail reset, but read status is bad: %d\n",
1961 current_status));
1962 }
1963#endif
1964 wait_hnd[nh] = cp->char_avail;
1965 fdindex[nh] = i;
1088b922 1966 if (!wait_hnd[nh]) emacs_abort ();
c519b5e1 1967 nh++;
6cdfb6e6
RS
1968#ifdef FULL_DEBUG
1969 DebPrint (("select waiting on child %d fd %d\n",
1970 cp-child_procs, i));
1971#endif
6cdfb6e6
RS
1972 }
1973 else
1974 {
c519b5e1 1975 /* Unable to find something to wait on for this fd, skip */
ef79fbba
GV
1976
1977 /* Note that this is not a fatal error, and can in fact
1978 happen in unusual circumstances. Specifically, if
1979 sys_spawnve fails, eg. because the program doesn't
1980 exist, and debug-on-error is t so Fsignal invokes a
1981 nested input loop, then the process output pipe is
1982 still included in input_wait_mask with no child_proc
1983 associated with it. (It is removed when the debugger
1984 exits the nested input loop and the error is thrown.) */
1985
c519b5e1 1986 DebPrint (("sys_select: fd %ld is invalid! ignoring\n", i));
6cdfb6e6
RS
1987 }
1988 }
1989 }
b2fc9f3d
GV
1990
1991count_children:
1992 /* Add handles of child processes. */
1993 nc = 0;
9d4f32e8 1994 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
ef79fbba
GV
1995 /* Some child_procs might be sockets; ignore them. Also some
1996 children may have died already, but we haven't finished reading
1997 the process output; ignore them too. */
1998 if (CHILD_ACTIVE (cp) && cp->procinfo.hProcess
1999 && (cp->fd < 0
2000 || (fd_info[cp->fd].flags & FILE_SEND_SIGCHLD) == 0
2001 || (fd_info[cp->fd].flags & FILE_AT_EOF) != 0)
2002 )
b2fc9f3d
GV
2003 {
2004 wait_hnd[nh + nc] = cp->procinfo.hProcess;
2005 cps[nc] = cp;
2006 nc++;
2007 }
177c0ea7 2008
6cdfb6e6 2009 /* Nothing to look for, so we didn't find anything */
177c0ea7 2010 if (nh + nc == 0)
6cdfb6e6 2011 {
22759c72 2012 if (timeout)
b2fc9f3d 2013 Sleep (timeout_ms);
6cdfb6e6
RS
2014 return 0;
2015 }
177c0ea7 2016
b2fc9f3d 2017 start_time = GetTickCount ();
8b031dcc 2018
04bf5b65 2019 /* Wait for input or child death to be signaled. If user input is
8b031dcc
AI
2020 allowed, then also accept window messages. */
2021 if (FD_ISSET (0, &orfds))
2022 active = MsgWaitForMultipleObjects (nh + nc, wait_hnd, FALSE, timeout_ms,
2023 QS_ALLINPUT);
2024 else
2025 active = WaitForMultipleObjects (nh + nc, wait_hnd, FALSE, timeout_ms);
c519b5e1 2026
6cdfb6e6
RS
2027 if (active == WAIT_FAILED)
2028 {
2029 DebPrint (("select.WaitForMultipleObjects (%d, %lu) failed with %lu\n",
b2fc9f3d 2030 nh + nc, timeout_ms, GetLastError ()));
d64b707c 2031 /* don't return EBADF - this causes wait_reading_process_output to
c519b5e1
GV
2032 abort; WAIT_FAILED is returned when single-stepping under
2033 Windows 95 after switching thread focus in debugger, and
2034 possibly at other times. */
2035 errno = EINTR;
6cdfb6e6
RS
2036 return -1;
2037 }
2038 else if (active == WAIT_TIMEOUT)
2039 {
2040 return 0;
2041 }
b2fc9f3d
GV
2042 else if (active >= WAIT_OBJECT_0
2043 && active < WAIT_OBJECT_0+MAXIMUM_WAIT_OBJECTS)
6cdfb6e6
RS
2044 {
2045 active -= WAIT_OBJECT_0;
2046 }
b2fc9f3d
GV
2047 else if (active >= WAIT_ABANDONED_0
2048 && active < WAIT_ABANDONED_0+MAXIMUM_WAIT_OBJECTS)
6cdfb6e6
RS
2049 {
2050 active -= WAIT_ABANDONED_0;
2051 }
b2fc9f3d 2052 else
1088b922 2053 emacs_abort ();
6cdfb6e6 2054
c519b5e1 2055 /* Loop over all handles after active (now officially documented as
04bf5b65 2056 being the first signaled handle in the array). We do this to
c519b5e1
GV
2057 ensure fairness, so that all channels with data available will be
2058 processed - otherwise higher numbered channels could be starved. */
2059 do
6cdfb6e6 2060 {
8b031dcc
AI
2061 if (active == nh + nc)
2062 {
2063 /* There are messages in the lisp thread's queue; we must
2064 drain the queue now to ensure they are processed promptly,
2065 because if we don't do so, we will not be woken again until
2066 further messages arrive.
2067
2068 NB. If ever we allow window message procedures to callback
2069 into lisp, we will need to ensure messages are dispatched
2070 at a safe time for lisp code to be run (*), and we may also
2071 want to provide some hooks in the dispatch loop to cater
2072 for modeless dialogs created by lisp (ie. to register
2073 window handles to pass to IsDialogMessage).
2074
2075 (*) Note that MsgWaitForMultipleObjects above is an
2076 internal dispatch point for messages that are sent to
2077 windows created by this thread. */
977c6479
EZ
2078 if (drain_message_queue ()
2079 /* If drain_message_queue returns non-zero, that means
2080 we received a WM_EMACS_FILENOTIFY message. If this
2081 is a TTY frame, we must signal the caller that keyboard
2082 input is available, so that w32_console_read_socket
2083 will be called to pick up the notifications. If we
2084 don't do that, file notifications will only work when
2085 the Emacs TTY frame has focus. */
2086 && FRAME_TERMCAP_P (SELECTED_FRAME ())
2087 /* they asked for stdin reads */
2088 && FD_ISSET (0, &orfds)
2089 /* the stdin handle is valid */
2090 && keyboard_handle)
2091 {
2092 FD_SET (0, rfds);
2093 if (nr == 0)
2094 nr = 1;
2095 }
8b031dcc
AI
2096 }
2097 else if (active >= nh)
b2fc9f3d
GV
2098 {
2099 cp = cps[active - nh];
ef79fbba
GV
2100
2101 /* We cannot always signal SIGCHLD immediately; if we have not
2102 finished reading the process output, we must delay sending
2103 SIGCHLD until we do. */
2104
2105 if (cp->fd >= 0 && (fd_info[cp->fd].flags & FILE_AT_EOF) == 0)
2106 fd_info[cp->fd].flags |= FILE_SEND_SIGCHLD;
b2fc9f3d 2107 /* SIG_DFL for SIGCHLD is ignore */
ef79fbba
GV
2108 else if (sig_handlers[SIGCHLD] != SIG_DFL &&
2109 sig_handlers[SIGCHLD] != SIG_IGN)
b2fc9f3d
GV
2110 {
2111#ifdef FULL_DEBUG
2112 DebPrint (("select calling SIGCHLD handler for pid %d\n",
2113 cp->pid));
2114#endif
b2fc9f3d 2115 sig_handlers[SIGCHLD] (SIGCHLD);
b2fc9f3d
GV
2116 }
2117 }
86143765
RS
2118 else if (fdindex[active] == -1)
2119 {
2120 /* Quit (C-g) was detected. */
2121 errno = EINTR;
2122 return -1;
2123 }
b2fc9f3d 2124 else if (fdindex[active] == 0)
c519b5e1
GV
2125 {
2126 /* Keyboard input available */
2127 FD_SET (0, rfds);
6cdfb6e6 2128 nr++;
c519b5e1 2129 }
6cdfb6e6 2130 else
c519b5e1 2131 {
b2fc9f3d
GV
2132 /* must be a socket or pipe - read ahead should have
2133 completed, either succeeding or failing. */
c519b5e1
GV
2134 FD_SET (fdindex[active], rfds);
2135 nr++;
c519b5e1
GV
2136 }
2137
b2fc9f3d
GV
2138 /* Even though wait_reading_process_output only reads from at most
2139 one channel, we must process all channels here so that we reap
2140 all children that have died. */
2141 while (++active < nh + nc)
c519b5e1
GV
2142 if (WaitForSingleObject (wait_hnd[active], 0) == WAIT_OBJECT_0)
2143 break;
b2fc9f3d
GV
2144 } while (active < nh + nc);
2145
2146 /* If no input has arrived and timeout hasn't expired, wait again. */
2147 if (nr == 0)
2148 {
2149 DWORD elapsed = GetTickCount () - start_time;
2150
2151 if (timeout_ms > elapsed) /* INFINITE is MAX_UINT */
2152 {
2153 if (timeout_ms != INFINITE)
2154 timeout_ms -= elapsed;
2155 goto count_children;
2156 }
2157 }
c519b5e1 2158
6cdfb6e6
RS
2159 return nr;
2160}
2161
c519b5e1 2162/* Substitute for certain kill () operations */
b2fc9f3d
GV
2163
2164static BOOL CALLBACK
42c95ffb 2165find_child_console (HWND hwnd, LPARAM arg)
b2fc9f3d 2166{
42c95ffb 2167 child_process * cp = (child_process *) arg;
b2fc9f3d
GV
2168 DWORD thread_id;
2169 DWORD process_id;
2170
2171 thread_id = GetWindowThreadProcessId (hwnd, &process_id);
2172 if (process_id == cp->procinfo.dwProcessId)
2173 {
2174 char window_class[32];
2175
2176 GetClassName (hwnd, window_class, sizeof (window_class));
2177 if (strcmp (window_class,
417a7a0e 2178 (os_subtype == OS_9X)
b2fc9f3d
GV
2179 ? "tty"
2180 : "ConsoleWindowClass") == 0)
2181 {
2182 cp->hwnd = hwnd;
2183 return FALSE;
2184 }
2185 }
2186 /* keep looking */
2187 return TRUE;
2188}
2189
16b22fef 2190/* Emulate 'kill', but only for other processes. */
177c0ea7 2191int
b0728617 2192sys_kill (pid_t pid, int sig)
6cdfb6e6
RS
2193{
2194 child_process *cp;
c519b5e1
GV
2195 HANDLE proc_hand;
2196 int need_to_free = 0;
2197 int rc = 0;
177c0ea7 2198
d983a10b
PE
2199 /* Each process is in its own process group. */
2200 if (pid < 0)
2201 pid = -pid;
2202
6cdfb6e6
RS
2203 /* Only handle signals that will result in the process dying */
2204 if (sig != SIGINT && sig != SIGKILL && sig != SIGQUIT && sig != SIGHUP)
2205 {
2206 errno = EINVAL;
2207 return -1;
2208 }
c519b5e1 2209
6cdfb6e6
RS
2210 cp = find_child_pid (pid);
2211 if (cp == NULL)
2212 {
16b22fef
EZ
2213 /* We were passed a PID of something other than our subprocess.
2214 If that is our own PID, we will send to ourself a message to
2215 close the selected frame, which does not necessarily
2216 terminates Emacs. But then we are not supposed to call
2217 sys_kill with our own PID. */
c519b5e1
GV
2218 proc_hand = OpenProcess (PROCESS_TERMINATE, 0, pid);
2219 if (proc_hand == NULL)
2220 {
2221 errno = EPERM;
2222 return -1;
2223 }
2224 need_to_free = 1;
2225 }
2226 else
2227 {
2228 proc_hand = cp->procinfo.hProcess;
2229 pid = cp->procinfo.dwProcessId;
b2fc9f3d
GV
2230
2231 /* Try to locate console window for process. */
2232 EnumWindows (find_child_console, (LPARAM) cp);
6cdfb6e6 2233 }
177c0ea7 2234
a55a5f3c 2235 if (sig == SIGINT || sig == SIGQUIT)
6cdfb6e6 2236 {
b2fc9f3d
GV
2237 if (NILP (Vw32_start_process_share_console) && cp && cp->hwnd)
2238 {
2239 BYTE control_scan_code = (BYTE) MapVirtualKey (VK_CONTROL, 0);
a55a5f3c
AI
2240 /* Fake Ctrl-C for SIGINT, and Ctrl-Break for SIGQUIT. */
2241 BYTE vk_break_code = (sig == SIGINT) ? 'C' : VK_CANCEL;
b2fc9f3d
GV
2242 BYTE break_scan_code = (BYTE) MapVirtualKey (vk_break_code, 0);
2243 HWND foreground_window;
2244
2245 if (break_scan_code == 0)
2246 {
a55a5f3c 2247 /* Fake Ctrl-C for SIGQUIT if we can't manage Ctrl-Break. */
b2fc9f3d
GV
2248 vk_break_code = 'C';
2249 break_scan_code = (BYTE) MapVirtualKey (vk_break_code, 0);
2250 }
2251
2252 foreground_window = GetForegroundWindow ();
f446016f 2253 if (foreground_window)
b2fc9f3d 2254 {
f446016f
AI
2255 /* NT 5.0, and apparently also Windows 98, will not allow
2256 a Window to be set to foreground directly without the
2257 user's involvement. The workaround is to attach
2258 ourselves to the thread that owns the foreground
2259 window, since that is the only thread that can set the
2260 foreground window. */
2261 DWORD foreground_thread, child_thread;
2262 foreground_thread =
2263 GetWindowThreadProcessId (foreground_window, NULL);
2264 if (foreground_thread == GetCurrentThreadId ()
2265 || !AttachThreadInput (GetCurrentThreadId (),
2266 foreground_thread, TRUE))
2267 foreground_thread = 0;
2268
2269 child_thread = GetWindowThreadProcessId (cp->hwnd, NULL);
2270 if (child_thread == GetCurrentThreadId ()
2271 || !AttachThreadInput (GetCurrentThreadId (),
2272 child_thread, TRUE))
2273 child_thread = 0;
2274
2275 /* Set the foreground window to the child. */
2276 if (SetForegroundWindow (cp->hwnd))
2277 {
2278 /* Generate keystrokes as if user had typed Ctrl-Break or
2279 Ctrl-C. */
2280 keybd_event (VK_CONTROL, control_scan_code, 0, 0);
2281 keybd_event (vk_break_code, break_scan_code,
2282 (vk_break_code == 'C' ? 0 : KEYEVENTF_EXTENDEDKEY), 0);
2283 keybd_event (vk_break_code, break_scan_code,
2284 (vk_break_code == 'C' ? 0 : KEYEVENTF_EXTENDEDKEY)
2285 | KEYEVENTF_KEYUP, 0);
2286 keybd_event (VK_CONTROL, control_scan_code,
2287 KEYEVENTF_KEYUP, 0);
2288
2289 /* Sleep for a bit to give time for Emacs frame to respond
2290 to focus change events (if Emacs was active app). */
2291 Sleep (100);
2292
2293 SetForegroundWindow (foreground_window);
2294 }
2295 /* Detach from the foreground and child threads now that
2296 the foreground switching is over. */
2297 if (foreground_thread)
2298 AttachThreadInput (GetCurrentThreadId (),
2299 foreground_thread, FALSE);
2300 if (child_thread)
2301 AttachThreadInput (GetCurrentThreadId (),
2302 child_thread, FALSE);
2303 }
2304 }
c519b5e1 2305 /* Ctrl-Break is NT equivalent of SIGINT. */
b2fc9f3d 2306 else if (!GenerateConsoleCtrlEvent (CTRL_BREAK_EVENT, pid))
6cdfb6e6 2307 {
c519b5e1 2308 DebPrint (("sys_kill.GenerateConsoleCtrlEvent return %d "
6cdfb6e6
RS
2309 "for pid %lu\n", GetLastError (), pid));
2310 errno = EINVAL;
c519b5e1 2311 rc = -1;
80874ef7 2312 }
6cdfb6e6
RS
2313 }
2314 else
2315 {
b2fc9f3d
GV
2316 if (NILP (Vw32_start_process_share_console) && cp && cp->hwnd)
2317 {
2318#if 1
417a7a0e 2319 if (os_subtype == OS_9X)
b2fc9f3d
GV
2320 {
2321/*
2322 Another possibility is to try terminating the VDM out-right by
2323 calling the Shell VxD (id 0x17) V86 interface, function #4
2324 "SHELL_Destroy_VM", ie.
2325
2326 mov edx,4
2327 mov ebx,vm_handle
2328 call shellapi
2329
2330 First need to determine the current VM handle, and then arrange for
2331 the shellapi call to be made from the system vm (by using
2332 Switch_VM_and_callback).
2333
2334 Could try to invoke DestroyVM through CallVxD.
2335
2336*/
ef79fbba 2337#if 0
b46a6a83 2338 /* On Windows 95, posting WM_QUIT causes the 16-bit subsystem
ef79fbba
GV
2339 to hang when cmdproxy is used in conjunction with
2340 command.com for an interactive shell. Posting
2341 WM_CLOSE pops up a dialog that, when Yes is selected,
2342 does the same thing. TerminateProcess is also less
2343 than ideal in that subprocesses tend to stick around
2344 until the machine is shutdown, but at least it
2345 doesn't freeze the 16-bit subsystem. */
b2fc9f3d 2346 PostMessage (cp->hwnd, WM_QUIT, 0xff, 0);
ef79fbba
GV
2347#endif
2348 if (!TerminateProcess (proc_hand, 0xff))
2349 {
2350 DebPrint (("sys_kill.TerminateProcess returned %d "
2351 "for pid %lu\n", GetLastError (), pid));
2352 errno = EINVAL;
2353 rc = -1;
2354 }
b2fc9f3d
GV
2355 }
2356 else
2357#endif
2358 PostMessage (cp->hwnd, WM_CLOSE, 0, 0);
2359 }
fbd6baed 2360 /* Kill the process. On W32 this doesn't kill child processes
8eae7766 2361 so it doesn't work very well for shells which is why it's not
b2fc9f3d
GV
2362 used in every case. */
2363 else if (!TerminateProcess (proc_hand, 0xff))
6cdfb6e6 2364 {
c519b5e1 2365 DebPrint (("sys_kill.TerminateProcess returned %d "
6cdfb6e6
RS
2366 "for pid %lu\n", GetLastError (), pid));
2367 errno = EINVAL;
c519b5e1 2368 rc = -1;
6cdfb6e6
RS
2369 }
2370 }
c519b5e1
GV
2371
2372 if (need_to_free)
2373 CloseHandle (proc_hand);
2374
2375 return rc;
6cdfb6e6
RS
2376}
2377
c519b5e1
GV
2378/* The following two routines are used to manipulate stdin, stdout, and
2379 stderr of our child processes.
2380
2381 Assuming that in, out, and err are *not* inheritable, we make them
2382 stdin, stdout, and stderr of the child as follows:
2383
2384 - Save the parent's current standard handles.
2385 - Set the std handles to inheritable duplicates of the ones being passed in.
2386 (Note that _get_osfhandle() is an io.h procedure that retrieves the
2387 NT file handle for a crt file descriptor.)
2388 - Spawn the child, which inherits in, out, and err as stdin,
2389 stdout, and stderr. (see Spawnve)
2390 - Close the std handles passed to the child.
2391 - Reset the parent's standard handles to the saved handles.
2392 (see reset_standard_handles)
2393 We assume that the caller closes in, out, and err after calling us. */
2394
2395void
2396prepare_standard_handles (int in, int out, int err, HANDLE handles[3])
6cdfb6e6 2397{
c519b5e1
GV
2398 HANDLE parent;
2399 HANDLE newstdin, newstdout, newstderr;
2400
2401 parent = GetCurrentProcess ();
2402
2403 handles[0] = GetStdHandle (STD_INPUT_HANDLE);
2404 handles[1] = GetStdHandle (STD_OUTPUT_HANDLE);
2405 handles[2] = GetStdHandle (STD_ERROR_HANDLE);
2406
2407 /* make inheritable copies of the new handles */
177c0ea7 2408 if (!DuplicateHandle (parent,
c519b5e1
GV
2409 (HANDLE) _get_osfhandle (in),
2410 parent,
177c0ea7
JB
2411 &newstdin,
2412 0,
2413 TRUE,
c519b5e1
GV
2414 DUPLICATE_SAME_ACCESS))
2415 report_file_error ("Duplicating input handle for child", Qnil);
177c0ea7 2416
c519b5e1
GV
2417 if (!DuplicateHandle (parent,
2418 (HANDLE) _get_osfhandle (out),
2419 parent,
2420 &newstdout,
2421 0,
2422 TRUE,
2423 DUPLICATE_SAME_ACCESS))
2424 report_file_error ("Duplicating output handle for child", Qnil);
177c0ea7 2425
c519b5e1
GV
2426 if (!DuplicateHandle (parent,
2427 (HANDLE) _get_osfhandle (err),
2428 parent,
2429 &newstderr,
2430 0,
2431 TRUE,
2432 DUPLICATE_SAME_ACCESS))
2433 report_file_error ("Duplicating error handle for child", Qnil);
2434
2435 /* and store them as our std handles */
2436 if (!SetStdHandle (STD_INPUT_HANDLE, newstdin))
2437 report_file_error ("Changing stdin handle", Qnil);
177c0ea7 2438
c519b5e1
GV
2439 if (!SetStdHandle (STD_OUTPUT_HANDLE, newstdout))
2440 report_file_error ("Changing stdout handle", Qnil);
2441
2442 if (!SetStdHandle (STD_ERROR_HANDLE, newstderr))
2443 report_file_error ("Changing stderr handle", Qnil);
2444}
2445
2446void
2447reset_standard_handles (int in, int out, int err, HANDLE handles[3])
2448{
2449 /* close the duplicated handles passed to the child */
2450 CloseHandle (GetStdHandle (STD_INPUT_HANDLE));
2451 CloseHandle (GetStdHandle (STD_OUTPUT_HANDLE));
2452 CloseHandle (GetStdHandle (STD_ERROR_HANDLE));
2453
2454 /* now restore parent's saved std handles */
2455 SetStdHandle (STD_INPUT_HANDLE, handles[0]);
2456 SetStdHandle (STD_OUTPUT_HANDLE, handles[1]);
2457 SetStdHandle (STD_ERROR_HANDLE, handles[2]);
6cdfb6e6 2458}
c519b5e1 2459
b2fc9f3d
GV
2460void
2461set_process_dir (char * dir)
2462{
2463 process_dir = dir;
2464}
2465
a11e68d0
RS
2466/* To avoid problems with winsock implementations that work over dial-up
2467 connections causing or requiring a connection to exist while Emacs is
2468 running, Emacs no longer automatically loads winsock on startup if it
2469 is present. Instead, it will be loaded when open-network-stream is
2470 first called.
2471
2472 To allow full control over when winsock is loaded, we provide these
2473 two functions to dynamically load and unload winsock. This allows
2474 dial-up users to only be connected when they actually need to use
2475 socket services. */
2476
7684e57b 2477/* From w32.c */
a11e68d0
RS
2478extern HANDLE winsock_lib;
2479extern BOOL term_winsock (void);
2480extern BOOL init_winsock (int load_now);
2481
fbd6baed 2482DEFUN ("w32-has-winsock", Fw32_has_winsock, Sw32_has_winsock, 0, 1, 0,
33f09670
JR
2483 doc: /* Test for presence of the Windows socket library `winsock'.
2484Returns non-nil if winsock support is present, nil otherwise.
2485
2486If the optional argument LOAD-NOW is non-nil, the winsock library is
2487also loaded immediately if not already loaded. If winsock is loaded,
2488the winsock local hostname is returned (since this may be different from
2489the value of `system-name' and should supplant it), otherwise t is
2490returned to indicate winsock support is present. */)
5842a27b 2491 (Lisp_Object load_now)
a11e68d0
RS
2492{
2493 int have_winsock;
2494
2495 have_winsock = init_winsock (!NILP (load_now));
2496 if (have_winsock)
2497 {
2498 if (winsock_lib != NULL)
2499 {
2500 /* Return new value for system-name. The best way to do this
2501 is to call init_system_name, saving and restoring the
2502 original value to avoid side-effects. */
2503 Lisp_Object orig_hostname = Vsystem_name;
2504 Lisp_Object hostname;
2505
2506 init_system_name ();
2507 hostname = Vsystem_name;
2508 Vsystem_name = orig_hostname;
2509 return hostname;
2510 }
2511 return Qt;
2512 }
2513 return Qnil;
2514}
2515
fbd6baed 2516DEFUN ("w32-unload-winsock", Fw32_unload_winsock, Sw32_unload_winsock,
a11e68d0 2517 0, 0, 0,
33f09670
JR
2518 doc: /* Unload the Windows socket library `winsock' if loaded.
2519This is provided to allow dial-up socket connections to be disconnected
2520when no longer needed. Returns nil without unloading winsock if any
2521socket connections still exist. */)
5842a27b 2522 (void)
a11e68d0
RS
2523{
2524 return term_winsock () ? Qt : Qnil;
2525}
2526
93fdf2f8 2527\f
b2fc9f3d
GV
2528/* Some miscellaneous functions that are Windows specific, but not GUI
2529 specific (ie. are applicable in terminal or batch mode as well). */
2530
b2fc9f3d 2531DEFUN ("w32-short-file-name", Fw32_short_file_name, Sw32_short_file_name, 1, 1, 0,
33f09670
JR
2532 doc: /* Return the short file name version (8.3) of the full path of FILENAME.
2533If FILENAME does not exist, return nil.
2534All path elements in FILENAME are converted to their short names. */)
5842a27b 2535 (Lisp_Object filename)
b2fc9f3d
GV
2536{
2537 char shortname[MAX_PATH];
2538
b7826503 2539 CHECK_STRING (filename);
b2fc9f3d
GV
2540
2541 /* first expand it. */
2542 filename = Fexpand_file_name (filename, Qnil);
2543
2544 /* luckily, this returns the short version of each element in the path. */
b23077df 2545 if (GetShortPathName (SDATA (ENCODE_FILE (filename)), shortname, MAX_PATH) == 0)
b2fc9f3d
GV
2546 return Qnil;
2547
087fc47a 2548 dostounix_filename (shortname);
b2fc9f3d
GV
2549
2550 return build_string (shortname);
2551}
2552
2553
2554DEFUN ("w32-long-file-name", Fw32_long_file_name, Sw32_long_file_name,
2555 1, 1, 0,
33f09670
JR
2556 doc: /* Return the long file name version of the full path of FILENAME.
2557If FILENAME does not exist, return nil.
2558All path elements in FILENAME are converted to their long names. */)
5842a27b 2559 (Lisp_Object filename)
b2fc9f3d
GV
2560{
2561 char longname[ MAX_PATH ];
8dcaeba2 2562 int drive_only = 0;
b2fc9f3d 2563
b7826503 2564 CHECK_STRING (filename);
b2fc9f3d 2565
8dcaeba2
JR
2566 if (SBYTES (filename) == 2
2567 && *(SDATA (filename) + 1) == ':')
2568 drive_only = 1;
2569
b2fc9f3d
GV
2570 /* first expand it. */
2571 filename = Fexpand_file_name (filename, Qnil);
2572
b23077df 2573 if (!w32_get_long_filename (SDATA (ENCODE_FILE (filename)), longname, MAX_PATH))
b2fc9f3d
GV
2574 return Qnil;
2575
087fc47a 2576 dostounix_filename (longname);
b2fc9f3d 2577
8dcaeba2
JR
2578 /* If we were passed only a drive, make sure that a slash is not appended
2579 for consistency with directories. Allow for drive mapping via SUBST
2580 in case expand-file-name is ever changed to expand those. */
2581 if (drive_only && longname[1] == ':' && longname[2] == '/' && !longname[3])
2582 longname[2] = '\0';
2583
b23077df 2584 return DECODE_FILE (build_string (longname));
b2fc9f3d
GV
2585}
2586
33f09670
JR
2587DEFUN ("w32-set-process-priority", Fw32_set_process_priority,
2588 Sw32_set_process_priority, 2, 2, 0,
2589 doc: /* Set the priority of PROCESS to PRIORITY.
2590If PROCESS is nil, the priority of Emacs is changed, otherwise the
2591priority of the process whose pid is PROCESS is changed.
2592PRIORITY should be one of the symbols high, normal, or low;
2593any other symbol will be interpreted as normal.
2594
2595If successful, the return value is t, otherwise nil. */)
5842a27b 2596 (Lisp_Object process, Lisp_Object priority)
b2fc9f3d
GV
2597{
2598 HANDLE proc_handle = GetCurrentProcess ();
2599 DWORD priority_class = NORMAL_PRIORITY_CLASS;
2600 Lisp_Object result = Qnil;
2601
b7826503 2602 CHECK_SYMBOL (priority);
b2fc9f3d
GV
2603
2604 if (!NILP (process))
2605 {
2606 DWORD pid;
2607 child_process *cp;
2608
b7826503 2609 CHECK_NUMBER (process);
b2fc9f3d
GV
2610
2611 /* Allow pid to be an internally generated one, or one obtained
b46a6a83 2612 externally. This is necessary because real pids on Windows 95 are
b2fc9f3d
GV
2613 negative. */
2614
2615 pid = XINT (process);
2616 cp = find_child_pid (pid);
2617 if (cp != NULL)
2618 pid = cp->procinfo.dwProcessId;
2619
2620 proc_handle = OpenProcess (PROCESS_SET_INFORMATION, FALSE, pid);
2621 }
2622
2623 if (EQ (priority, Qhigh))
2624 priority_class = HIGH_PRIORITY_CLASS;
2625 else if (EQ (priority, Qlow))
2626 priority_class = IDLE_PRIORITY_CLASS;
2627
2628 if (proc_handle != NULL)
2629 {
2630 if (SetPriorityClass (proc_handle, priority_class))
2631 result = Qt;
2632 if (!NILP (process))
2633 CloseHandle (proc_handle);
2634 }
2635
2636 return result;
2637}
2638
d613418b
EZ
2639#ifdef HAVE_LANGINFO_CODESET
2640/* Emulation of nl_langinfo. Used in fns.c:Flocale_info. */
b56ceb92
JB
2641char *
2642nl_langinfo (nl_item item)
d613418b
EZ
2643{
2644 /* Conversion of Posix item numbers to their Windows equivalents. */
2645 static const LCTYPE w32item[] = {
2646 LOCALE_IDEFAULTANSICODEPAGE,
2647 LOCALE_SDAYNAME1, LOCALE_SDAYNAME2, LOCALE_SDAYNAME3,
2648 LOCALE_SDAYNAME4, LOCALE_SDAYNAME5, LOCALE_SDAYNAME6, LOCALE_SDAYNAME7,
2649 LOCALE_SMONTHNAME1, LOCALE_SMONTHNAME2, LOCALE_SMONTHNAME3,
2650 LOCALE_SMONTHNAME4, LOCALE_SMONTHNAME5, LOCALE_SMONTHNAME6,
2651 LOCALE_SMONTHNAME7, LOCALE_SMONTHNAME8, LOCALE_SMONTHNAME9,
2652 LOCALE_SMONTHNAME10, LOCALE_SMONTHNAME11, LOCALE_SMONTHNAME12
2653 };
2654
2655 static char *nl_langinfo_buf = NULL;
2656 static int nl_langinfo_len = 0;
2657
2658 if (nl_langinfo_len <= 0)
2659 nl_langinfo_buf = xmalloc (nl_langinfo_len = 1);
2660
2661 if (item < 0 || item >= _NL_NUM)
2662 nl_langinfo_buf[0] = 0;
2663 else
2664 {
2665 LCID cloc = GetThreadLocale ();
2666 int need_len = GetLocaleInfo (cloc, w32item[item] | LOCALE_USE_CP_ACP,
2667 NULL, 0);
2668
2669 if (need_len <= 0)
2670 nl_langinfo_buf[0] = 0;
2671 else
2672 {
2673 if (item == CODESET)
2674 {
2675 need_len += 2; /* for the "cp" prefix */
2676 if (need_len < 8) /* for the case we call GetACP */
2677 need_len = 8;
2678 }
2679 if (nl_langinfo_len <= need_len)
2680 nl_langinfo_buf = xrealloc (nl_langinfo_buf,
2681 nl_langinfo_len = need_len);
2682 if (!GetLocaleInfo (cloc, w32item[item] | LOCALE_USE_CP_ACP,
2683 nl_langinfo_buf, nl_langinfo_len))
2684 nl_langinfo_buf[0] = 0;
2685 else if (item == CODESET)
2686 {
2687 if (strcmp (nl_langinfo_buf, "0") == 0 /* CP_ACP */
2688 || strcmp (nl_langinfo_buf, "1") == 0) /* CP_OEMCP */
2689 sprintf (nl_langinfo_buf, "cp%u", GetACP ());
2690 else
2691 {
2692 memmove (nl_langinfo_buf + 2, nl_langinfo_buf,
2693 strlen (nl_langinfo_buf) + 1);
2694 nl_langinfo_buf[0] = 'c';
2695 nl_langinfo_buf[1] = 'p';
2696 }
2697 }
2698 }
2699 }
2700 return nl_langinfo_buf;
2701}
2702#endif /* HAVE_LANGINFO_CODESET */
b2fc9f3d 2703
33f09670
JR
2704DEFUN ("w32-get-locale-info", Fw32_get_locale_info,
2705 Sw32_get_locale_info, 1, 2, 0,
2706 doc: /* Return information about the Windows locale LCID.
2707By default, return a three letter locale code which encodes the default
35f36d65 2708language as the first two characters, and the country or regional variant
33f09670
JR
2709as the third letter. For example, ENU refers to `English (United States)',
2710while ENC means `English (Canadian)'.
2711
2712If the optional argument LONGFORM is t, the long form of the locale
2713name is returned, e.g. `English (United States)' instead; if LONGFORM
2714is a number, it is interpreted as an LCTYPE constant and the corresponding
2715locale information is returned.
2716
2717If LCID (a 16-bit number) is not a valid locale, the result is nil. */)
5842a27b 2718 (Lisp_Object lcid, Lisp_Object longform)
b2fc9f3d
GV
2719{
2720 int got_abbrev;
2721 int got_full;
2722 char abbrev_name[32] = { 0 };
2723 char full_name[256] = { 0 };
2724
b7826503 2725 CHECK_NUMBER (lcid);
b2fc9f3d
GV
2726
2727 if (!IsValidLocale (XINT (lcid), LCID_SUPPORTED))
2728 return Qnil;
2729
2730 if (NILP (longform))
2731 {
2732 got_abbrev = GetLocaleInfo (XINT (lcid),
2733 LOCALE_SABBREVLANGNAME | LOCALE_USE_CP_ACP,
2734 abbrev_name, sizeof (abbrev_name));
2735 if (got_abbrev)
2736 return build_string (abbrev_name);
2737 }
0eaf5926 2738 else if (EQ (longform, Qt))
b2fc9f3d
GV
2739 {
2740 got_full = GetLocaleInfo (XINT (lcid),
2741 LOCALE_SLANGUAGE | LOCALE_USE_CP_ACP,
2742 full_name, sizeof (full_name));
2743 if (got_full)
011a0143 2744 return DECODE_SYSTEM (build_string (full_name));
b2fc9f3d 2745 }
0eaf5926
GV
2746 else if (NUMBERP (longform))
2747 {
2748 got_full = GetLocaleInfo (XINT (lcid),
2749 XINT (longform),
2750 full_name, sizeof (full_name));
96512555
EZ
2751 /* GetLocaleInfo's return value includes the terminating null
2752 character, when the returned information is a string, whereas
2753 make_unibyte_string needs the string length without the
2754 terminating null. */
0eaf5926 2755 if (got_full)
96512555 2756 return make_unibyte_string (full_name, got_full - 1);
0eaf5926 2757 }
b2fc9f3d
GV
2758
2759 return Qnil;
2760}
2761
2762
33f09670
JR
2763DEFUN ("w32-get-current-locale-id", Fw32_get_current_locale_id,
2764 Sw32_get_current_locale_id, 0, 0, 0,
2765 doc: /* Return Windows locale id for current locale setting.
2766This is a numerical value; use `w32-get-locale-info' to convert to a
2767human-readable form. */)
5842a27b 2768 (void)
b2fc9f3d
GV
2769{
2770 return make_number (GetThreadLocale ());
2771}
2772
24f981c9 2773static DWORD
b56ceb92 2774int_from_hex (char * s)
ef79fbba
GV
2775{
2776 DWORD val = 0;
2777 static char hex[] = "0123456789abcdefABCDEF";
2778 char * p;
2779
ed3751c8 2780 while (*s && (p = strchr (hex, *s)) != NULL)
ef79fbba
GV
2781 {
2782 unsigned digit = p - hex;
2783 if (digit > 15)
2784 digit -= 6;
2785 val = val * 16 + digit;
2786 s++;
2787 }
2788 return val;
2789}
2790
2791/* We need to build a global list, since the EnumSystemLocale callback
2792 function isn't given a context pointer. */
2793Lisp_Object Vw32_valid_locale_ids;
2794
24f981c9 2795static BOOL CALLBACK
b56ceb92 2796enum_locale_fn (LPTSTR localeNum)
ef79fbba
GV
2797{
2798 DWORD id = int_from_hex (localeNum);
2799 Vw32_valid_locale_ids = Fcons (make_number (id), Vw32_valid_locale_ids);
2800 return TRUE;
2801}
2802
33f09670
JR
2803DEFUN ("w32-get-valid-locale-ids", Fw32_get_valid_locale_ids,
2804 Sw32_get_valid_locale_ids, 0, 0, 0,
2805 doc: /* Return list of all valid Windows locale ids.
2806Each id is a numerical value; use `w32-get-locale-info' to convert to a
2807human-readable form. */)
5842a27b 2808 (void)
ef79fbba
GV
2809{
2810 Vw32_valid_locale_ids = Qnil;
2811
2812 EnumSystemLocales (enum_locale_fn, LCID_SUPPORTED);
2813
2814 Vw32_valid_locale_ids = Fnreverse (Vw32_valid_locale_ids);
2815 return Vw32_valid_locale_ids;
2816}
2817
b2fc9f3d
GV
2818
2819DEFUN ("w32-get-default-locale-id", Fw32_get_default_locale_id, Sw32_get_default_locale_id, 0, 1, 0,
33f09670
JR
2820 doc: /* Return Windows locale id for default locale setting.
2821By default, the system default locale setting is returned; if the optional
2822parameter USERP is non-nil, the user default locale setting is returned.
2823This is a numerical value; use `w32-get-locale-info' to convert to a
2824human-readable form. */)
5842a27b 2825 (Lisp_Object userp)
b2fc9f3d
GV
2826{
2827 if (NILP (userp))
2828 return make_number (GetSystemDefaultLCID ());
2829 return make_number (GetUserDefaultLCID ());
2830}
2831
177c0ea7 2832
b2fc9f3d 2833DEFUN ("w32-set-current-locale", Fw32_set_current_locale, Sw32_set_current_locale, 1, 1, 0,
33f09670
JR
2834 doc: /* Make Windows locale LCID be the current locale setting for Emacs.
2835If successful, the new locale id is returned, otherwise nil. */)
5842a27b 2836 (Lisp_Object lcid)
b2fc9f3d 2837{
b7826503 2838 CHECK_NUMBER (lcid);
b2fc9f3d
GV
2839
2840 if (!IsValidLocale (XINT (lcid), LCID_SUPPORTED))
2841 return Qnil;
2842
2843 if (!SetThreadLocale (XINT (lcid)))
2844 return Qnil;
2845
ef79fbba
GV
2846 /* Need to set input thread locale if present. */
2847 if (dwWindowsThreadId)
2848 /* Reply is not needed. */
2849 PostThreadMessage (dwWindowsThreadId, WM_EMACS_SETLOCALE, XINT (lcid), 0);
2850
b2fc9f3d
GV
2851 return make_number (GetThreadLocale ());
2852}
2853
0eaf5926
GV
2854
2855/* We need to build a global list, since the EnumCodePages callback
2856 function isn't given a context pointer. */
2857Lisp_Object Vw32_valid_codepages;
2858
24f981c9 2859static BOOL CALLBACK
b56ceb92 2860enum_codepage_fn (LPTSTR codepageNum)
0eaf5926
GV
2861{
2862 DWORD id = atoi (codepageNum);
2863 Vw32_valid_codepages = Fcons (make_number (id), Vw32_valid_codepages);
2864 return TRUE;
2865}
2866
33f09670
JR
2867DEFUN ("w32-get-valid-codepages", Fw32_get_valid_codepages,
2868 Sw32_get_valid_codepages, 0, 0, 0,
2869 doc: /* Return list of all valid Windows codepages. */)
5842a27b 2870 (void)
0eaf5926
GV
2871{
2872 Vw32_valid_codepages = Qnil;
2873
2874 EnumSystemCodePages (enum_codepage_fn, CP_SUPPORTED);
2875
2876 Vw32_valid_codepages = Fnreverse (Vw32_valid_codepages);
2877 return Vw32_valid_codepages;
2878}
2879
2880
33f09670
JR
2881DEFUN ("w32-get-console-codepage", Fw32_get_console_codepage,
2882 Sw32_get_console_codepage, 0, 0, 0,
2883 doc: /* Return current Windows codepage for console input. */)
5842a27b 2884 (void)
0eaf5926
GV
2885{
2886 return make_number (GetConsoleCP ());
2887}
2888
177c0ea7 2889
33f09670
JR
2890DEFUN ("w32-set-console-codepage", Fw32_set_console_codepage,
2891 Sw32_set_console_codepage, 1, 1, 0,
62356a1b
EZ
2892 doc: /* Make Windows codepage CP be the codepage for Emacs tty keyboard input.
2893This codepage setting affects keyboard input in tty mode.
33f09670 2894If successful, the new CP is returned, otherwise nil. */)
5842a27b 2895 (Lisp_Object cp)
0eaf5926 2896{
b7826503 2897 CHECK_NUMBER (cp);
0eaf5926
GV
2898
2899 if (!IsValidCodePage (XINT (cp)))
2900 return Qnil;
2901
2902 if (!SetConsoleCP (XINT (cp)))
2903 return Qnil;
2904
2905 return make_number (GetConsoleCP ());
2906}
2907
2908
33f09670
JR
2909DEFUN ("w32-get-console-output-codepage", Fw32_get_console_output_codepage,
2910 Sw32_get_console_output_codepage, 0, 0, 0,
2911 doc: /* Return current Windows codepage for console output. */)
5842a27b 2912 (void)
0eaf5926
GV
2913{
2914 return make_number (GetConsoleOutputCP ());
2915}
2916
177c0ea7 2917
33f09670
JR
2918DEFUN ("w32-set-console-output-codepage", Fw32_set_console_output_codepage,
2919 Sw32_set_console_output_codepage, 1, 1, 0,
62356a1b
EZ
2920 doc: /* Make Windows codepage CP be the codepage for Emacs console output.
2921This codepage setting affects display in tty mode.
33f09670 2922If successful, the new CP is returned, otherwise nil. */)
5842a27b 2923 (Lisp_Object cp)
0eaf5926 2924{
b7826503 2925 CHECK_NUMBER (cp);
0eaf5926
GV
2926
2927 if (!IsValidCodePage (XINT (cp)))
2928 return Qnil;
2929
2930 if (!SetConsoleOutputCP (XINT (cp)))
2931 return Qnil;
2932
2933 return make_number (GetConsoleOutputCP ());
2934}
2935
2936
33f09670
JR
2937DEFUN ("w32-get-codepage-charset", Fw32_get_codepage_charset,
2938 Sw32_get_codepage_charset, 1, 1, 0,
62356a1b 2939 doc: /* Return charset ID corresponding to codepage CP.
33f09670 2940Returns nil if the codepage is not valid. */)
5842a27b 2941 (Lisp_Object cp)
0eaf5926
GV
2942{
2943 CHARSETINFO info;
2944
b7826503 2945 CHECK_NUMBER (cp);
0eaf5926
GV
2946
2947 if (!IsValidCodePage (XINT (cp)))
2948 return Qnil;
2949
2950 if (TranslateCharsetInfo ((DWORD *) XINT (cp), &info, TCI_SRCCODEPAGE))
2951 return make_number (info.ciCharset);
2952
2953 return Qnil;
2954}
2955
2956
33f09670
JR
2957DEFUN ("w32-get-valid-keyboard-layouts", Fw32_get_valid_keyboard_layouts,
2958 Sw32_get_valid_keyboard_layouts, 0, 0, 0,
2959 doc: /* Return list of Windows keyboard languages and layouts.
2960The return value is a list of pairs of language id and layout id. */)
5842a27b 2961 (void)
0eaf5926
GV
2962{
2963 int num_layouts = GetKeyboardLayoutList (0, NULL);
2964 HKL * layouts = (HKL *) alloca (num_layouts * sizeof (HKL));
2965 Lisp_Object obj = Qnil;
2966
2967 if (GetKeyboardLayoutList (num_layouts, layouts) == num_layouts)
2968 {
2969 while (--num_layouts >= 0)
2970 {
2971 DWORD kl = (DWORD) layouts[num_layouts];
2972
2973 obj = Fcons (Fcons (make_number (kl & 0xffff),
2974 make_number ((kl >> 16) & 0xffff)),
2975 obj);
2976 }
2977 }
2978
2979 return obj;
2980}
2981
2982
33f09670
JR
2983DEFUN ("w32-get-keyboard-layout", Fw32_get_keyboard_layout,
2984 Sw32_get_keyboard_layout, 0, 0, 0,
2985 doc: /* Return current Windows keyboard language and layout.
2986The return value is the cons of the language id and the layout id. */)
5842a27b 2987 (void)
0eaf5926
GV
2988{
2989 DWORD kl = (DWORD) GetKeyboardLayout (dwWindowsThreadId);
2990
2991 return Fcons (make_number (kl & 0xffff),
2992 make_number ((kl >> 16) & 0xffff));
2993}
2994
177c0ea7 2995
33f09670
JR
2996DEFUN ("w32-set-keyboard-layout", Fw32_set_keyboard_layout,
2997 Sw32_set_keyboard_layout, 1, 1, 0,
2998 doc: /* Make LAYOUT be the current keyboard layout for Emacs.
2999The keyboard layout setting affects interpretation of keyboard input.
3000If successful, the new layout id is returned, otherwise nil. */)
5842a27b 3001 (Lisp_Object layout)
0eaf5926
GV
3002{
3003 DWORD kl;
3004
b7826503 3005 CHECK_CONS (layout);
f4532092
AI
3006 CHECK_NUMBER_CAR (layout);
3007 CHECK_NUMBER_CDR (layout);
0eaf5926 3008
8e713be6
KR
3009 kl = (XINT (XCAR (layout)) & 0xffff)
3010 | (XINT (XCDR (layout)) << 16);
0eaf5926
GV
3011
3012 /* Synchronize layout with input thread. */
3013 if (dwWindowsThreadId)
3014 {
3015 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_SETKEYBOARDLAYOUT,
3016 (WPARAM) kl, 0))
3017 {
3018 MSG msg;
3019 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
3020
3021 if (msg.wParam == 0)
3022 return Qnil;
3023 }
3024 }
3025 else if (!ActivateKeyboardLayout ((HKL) kl, 0))
3026 return Qnil;
3027
3028 return Fw32_get_keyboard_layout ();
3029}
3030
b2fc9f3d 3031\f
b56ceb92
JB
3032void
3033syms_of_ntproc (void)
93fdf2f8 3034{
51128692
JR
3035 DEFSYM (Qhigh, "high");
3036 DEFSYM (Qlow, "low");
b2fc9f3d 3037
fbd6baed
GV
3038 defsubr (&Sw32_has_winsock);
3039 defsubr (&Sw32_unload_winsock);
7d701334 3040
b2fc9f3d
GV
3041 defsubr (&Sw32_short_file_name);
3042 defsubr (&Sw32_long_file_name);
3043 defsubr (&Sw32_set_process_priority);
3044 defsubr (&Sw32_get_locale_info);
3045 defsubr (&Sw32_get_current_locale_id);
3046 defsubr (&Sw32_get_default_locale_id);
ef79fbba 3047 defsubr (&Sw32_get_valid_locale_ids);
b2fc9f3d 3048 defsubr (&Sw32_set_current_locale);
a11e68d0 3049
0eaf5926
GV
3050 defsubr (&Sw32_get_console_codepage);
3051 defsubr (&Sw32_set_console_codepage);
3052 defsubr (&Sw32_get_console_output_codepage);
3053 defsubr (&Sw32_set_console_output_codepage);
3054 defsubr (&Sw32_get_valid_codepages);
3055 defsubr (&Sw32_get_codepage_charset);
3056
3057 defsubr (&Sw32_get_valid_keyboard_layouts);
3058 defsubr (&Sw32_get_keyboard_layout);
3059 defsubr (&Sw32_set_keyboard_layout);
3060
29208e82 3061 DEFVAR_LISP ("w32-quote-process-args", Vw32_quote_process_args,
33f09670
JR
3062 doc: /* Non-nil enables quoting of process arguments to ensure correct parsing.
3063Because Windows does not directly pass argv arrays to child processes,
3064programs have to reconstruct the argv array by parsing the command
3065line string. For an argument to contain a space, it must be enclosed
3066in double quotes or it will be parsed as multiple arguments.
3067
3068If the value is a character, that character will be used to escape any
3069quote characters that appear, otherwise a suitable escape character
3070will be chosen based on the type of the program. */);
b2fc9f3d 3071 Vw32_quote_process_args = Qt;
817abdf6 3072
fbd6baed 3073 DEFVAR_LISP ("w32-start-process-show-window",
29208e82 3074 Vw32_start_process_show_window,
33f09670
JR
3075 doc: /* When nil, new child processes hide their windows.
3076When non-nil, they show their window in the method of their choice.
3077This variable doesn't affect GUI applications, which will never be hidden. */);
fbd6baed 3078 Vw32_start_process_show_window = Qnil;
0ecf7d36 3079
b2fc9f3d 3080 DEFVAR_LISP ("w32-start-process-share-console",
29208e82 3081 Vw32_start_process_share_console,
33f09670
JR
3082 doc: /* When nil, new child processes are given a new console.
3083When non-nil, they share the Emacs console; this has the limitation of
804d894a 3084allowing only one DOS subprocess to run at a time (whether started directly
33f09670
JR
3085or indirectly by Emacs), and preventing Emacs from cleanly terminating the
3086subprocess group, but may allow Emacs to interrupt a subprocess that doesn't
3087otherwise respond to interrupts from Emacs. */);
b2fc9f3d
GV
3088 Vw32_start_process_share_console = Qnil;
3089
82e7c0a9 3090 DEFVAR_LISP ("w32-start-process-inherit-error-mode",
29208e82 3091 Vw32_start_process_inherit_error_mode,
33f09670
JR
3092 doc: /* When nil, new child processes revert to the default error mode.
3093When non-nil, they inherit their error mode setting from Emacs, which stops
3094them blocking when trying to access unmounted drives etc. */);
82e7c0a9
AI
3095 Vw32_start_process_inherit_error_mode = Qt;
3096
29208e82 3097 DEFVAR_INT ("w32-pipe-read-delay", w32_pipe_read_delay,
33f09670
JR
3098 doc: /* Forced delay before reading subprocess output.
3099This is done to improve the buffering of subprocess output, by
3100avoiding the inefficiency of frequently reading small amounts of data.
3101
3102If positive, the value is the number of milliseconds to sleep before
3103reading the subprocess output. If negative, the magnitude is the number
3104of time slices to wait (effectively boosting the priority of the child
3105process temporarily). A value of zero disables waiting entirely. */);
5322f50b 3106 w32_pipe_read_delay = 50;
0c04091e 3107
29208e82 3108 DEFVAR_LISP ("w32-downcase-file-names", Vw32_downcase_file_names,
33f09670
JR
3109 doc: /* Non-nil means convert all-upper case file names to lower case.
3110This applies when performing completions and file name expansion.
3111Note that the value of this setting also affects remote file names,
3112so you probably don't want to set to non-nil if you use case-sensitive
177c0ea7 3113filesystems via ange-ftp. */);
fbd6baed 3114 Vw32_downcase_file_names = Qnil;
b2fc9f3d
GV
3115
3116#if 0
29208e82 3117 DEFVAR_LISP ("w32-generate-fake-inodes", Vw32_generate_fake_inodes,
33f09670
JR
3118 doc: /* Non-nil means attempt to fake realistic inode values.
3119This works by hashing the truename of files, and should detect
3120aliasing between long and short (8.3 DOS) names, but can have
4c36be58 3121false positives because of hash collisions. Note that determining
33f09670 3122the truename of a file can be slow. */);
b2fc9f3d
GV
3123 Vw32_generate_fake_inodes = Qnil;
3124#endif
3125
29208e82 3126 DEFVAR_LISP ("w32-get-true-file-attributes", Vw32_get_true_file_attributes,
ed4c17bb
EZ
3127 doc: /* Non-nil means determine accurate file attributes in `file-attributes'.
3128This option controls whether to issue additional system calls to determine
017dab84 3129accurate link counts, file type, and ownership information. It is more
ed4c17bb 3130useful for files on NTFS volumes, where hard links and file security are
017dab84 3131supported, than on volumes of the FAT family.
ed4c17bb
EZ
3132
3133Without these system calls, link count will always be reported as 1 and file
3134ownership will be attributed to the current user.
3135The default value `local' means only issue these system calls for files
3136on local fixed drives. A value of nil means never issue them.
3137Any other non-nil value means do this even on remote and removable drives
3138where the performance impact may be noticeable even on modern hardware. */);
2fa4f090 3139 Vw32_get_true_file_attributes = Qlocal;
af621bc3
EZ
3140
3141 staticpro (&Vw32_valid_locale_ids);
3142 staticpro (&Vw32_valid_codepages);
93fdf2f8 3143}
42a7e7f1 3144/* end of w32proc.c */