New unwind-protect flavors to better type-check C callbacks.
[bpt/emacs.git] / src / w32proc.c
CommitLineData
b46a6a83 1/* Process support for GNU Emacs on the Microsoft Windows API.
ab422c4d 2 Copyright (C) 1992, 1995, 1999-2013 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;
0e4e7b74
EZ
805 if (child_proc_count == MAX_CHILDREN)
806 {
ef862e20 807 int i = 0;
a7727d05 808 child_process *dead_cp = NULL;
ef862e20 809
0e4e7b74
EZ
810 DebPrint (("new_child: No vacant slots, looking for dead processes\n"));
811 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
812 if (!CHILD_ACTIVE (cp) && cp->procinfo.hProcess)
813 {
814 DWORD status = 0;
815
816 if (!GetExitCodeProcess (cp->procinfo.hProcess, &status))
817 {
818 DebPrint (("new_child.GetExitCodeProcess: error %lu for PID %lu\n",
819 GetLastError (), cp->procinfo.dwProcessId));
820 status = STILL_ACTIVE;
821 }
822 if (status != STILL_ACTIVE
823 || WaitForSingleObject (cp->procinfo.hProcess, 0) == WAIT_OBJECT_0)
824 {
ef862e20
EZ
825 DebPrint (("new_child: Freeing slot of dead process %d, fd %d\n",
826 cp->procinfo.dwProcessId, cp->fd));
0e4e7b74
EZ
827 CloseHandle (cp->procinfo.hProcess);
828 cp->procinfo.hProcess = NULL;
829 CloseHandle (cp->procinfo.hThread);
830 cp->procinfo.hThread = NULL;
ef862e20
EZ
831 /* Free up to 2 dead slots at a time, so that if we
832 have a lot of them, they will eventually all be
833 freed when the tornado ends. */
834 if (i == 0)
835 dead_cp = cp;
836 else
a7727d05 837 break;
ef862e20 838 i++;
0e4e7b74
EZ
839 }
840 }
a7727d05
EZ
841 if (dead_cp)
842 {
843 cp = dead_cp;
844 goto Initialize;
845 }
0e4e7b74 846 }
c519b5e1
GV
847 if (child_proc_count == MAX_CHILDREN)
848 return NULL;
849 cp = &child_procs[child_proc_count++];
850
e1dbe924 851 Initialize:
17ddfd15
EZ
852 /* Last opportunity to avoid leaking handles before we forget them
853 for good. */
854 if (cp->procinfo.hProcess)
855 CloseHandle (cp->procinfo.hProcess);
856 if (cp->procinfo.hThread)
857 CloseHandle (cp->procinfo.hThread);
ed3751c8 858 memset (cp, 0, sizeof (*cp));
c519b5e1
GV
859 cp->fd = -1;
860 cp->pid = -1;
861 cp->procinfo.hProcess = NULL;
862 cp->status = STATUS_READ_ERROR;
b0728617
EZ
863 cp->input_file = NULL;
864 cp->pending_deletion = 0;
c519b5e1
GV
865
866 /* use manual reset event so that select() will function properly */
867 cp->char_avail = CreateEvent (NULL, TRUE, FALSE, NULL);
868 if (cp->char_avail)
869 {
870 cp->char_consumed = CreateEvent (NULL, FALSE, FALSE, NULL);
871 if (cp->char_consumed)
872 {
0d887c7d
EZ
873 /* The 0x00010000 flag is STACK_SIZE_PARAM_IS_A_RESERVATION.
874 It means that the 64K stack we are requesting in the 2nd
875 argument is how much memory should be reserved for the
876 stack. If we don't use this flag, the memory requested
877 by the 2nd argument is the amount actually _committed_,
878 but Windows reserves 8MB of memory for each thread's
879 stack. (The 8MB figure comes from the -stack
880 command-line argument we pass to the linker when building
881 Emacs, but that's because we need a large stack for
882 Emacs's main thread.) Since we request 2GB of reserved
883 memory at startup (see w32heap.c), which is close to the
884 maximum memory available for a 32-bit process on Windows,
885 the 8MB reservation for each thread causes failures in
886 starting subprocesses, because we create a thread running
887 reader_thread for each subprocess. As 8MB of stack is
888 way too much for reader_thread, forcing Windows to
889 reserve less wins the day. */
890 cp->thrd = CreateThread (NULL, 64 * 1024, reader_thread, cp,
891 0x00010000, &id);
c519b5e1
GV
892 if (cp->thrd)
893 return cp;
894 }
895 }
896 delete_child (cp);
897 return NULL;
898}
899
177c0ea7 900void
c519b5e1
GV
901delete_child (child_process *cp)
902{
903 int i;
904
905 /* Should not be deleting a child that is still needed. */
906 for (i = 0; i < MAXDESC; i++)
907 if (fd_info[i].cp == cp)
1088b922 908 emacs_abort ();
c519b5e1 909
7efa3fb3 910 if (!CHILD_ACTIVE (cp) && cp->procinfo.hProcess == NULL)
c519b5e1
GV
911 return;
912
b0728617
EZ
913 /* Delete the child's temporary input file, if any, that is pending
914 deletion. */
915 if (cp->input_file)
916 {
917 if (cp->pending_deletion)
918 {
919 if (unlink (cp->input_file))
920 DebPrint (("delete_child.unlink (%s) failed, errno: %d\n",
921 cp->input_file, errno));
922 cp->pending_deletion = 0;
923 }
924 xfree (cp->input_file);
925 cp->input_file = NULL;
926 }
927
c519b5e1
GV
928 /* reap thread if necessary */
929 if (cp->thrd)
930 {
931 DWORD rc;
932
933 if (GetExitCodeThread (cp->thrd, &rc) && rc == STILL_ACTIVE)
934 {
935 /* let the thread exit cleanly if possible */
936 cp->status = STATUS_READ_ERROR;
937 SetEvent (cp->char_consumed);
a017b515 938#if 0
c5e87d10 939 /* We used to forcibly terminate the thread here, but it
a017b515
JR
940 is normally unnecessary, and in abnormal cases, the worst that
941 will happen is we have an extra idle thread hanging around
942 waiting for the zombie process. */
c519b5e1
GV
943 if (WaitForSingleObject (cp->thrd, 1000) != WAIT_OBJECT_0)
944 {
945 DebPrint (("delete_child.WaitForSingleObject (thread) failed "
946 "with %lu for fd %ld\n", GetLastError (), cp->fd));
947 TerminateThread (cp->thrd, 0);
948 }
a017b515 949#endif
c519b5e1
GV
950 }
951 CloseHandle (cp->thrd);
952 cp->thrd = NULL;
953 }
954 if (cp->char_avail)
955 {
956 CloseHandle (cp->char_avail);
957 cp->char_avail = NULL;
958 }
959 if (cp->char_consumed)
960 {
961 CloseHandle (cp->char_consumed);
962 cp->char_consumed = NULL;
963 }
964
965 /* update child_proc_count (highest numbered slot in use plus one) */
966 if (cp == child_procs + child_proc_count - 1)
967 {
968 for (i = child_proc_count-1; i >= 0; i--)
7efa3fb3
EZ
969 if (CHILD_ACTIVE (&child_procs[i])
970 || child_procs[i].procinfo.hProcess != NULL)
c519b5e1
GV
971 {
972 child_proc_count = i + 1;
973 break;
974 }
975 }
976 if (i < 0)
977 child_proc_count = 0;
6cdfb6e6
RS
978}
979
980/* Find a child by pid. */
981static child_process *
982find_child_pid (DWORD pid)
983{
984 child_process *cp;
c519b5e1 985
9d4f32e8 986 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
7efa3fb3
EZ
987 if ((CHILD_ACTIVE (cp) || cp->procinfo.hProcess != NULL)
988 && pid == cp->pid)
6cdfb6e6
RS
989 return cp;
990 return NULL;
991}
992
6cdfb6e6 993
c519b5e1
GV
994/* Thread proc for child process and socket reader threads. Each thread
995 is normally blocked until woken by select() to check for input by
04bf5b65 996 reading one char. When the read completes, char_avail is signaled
c519b5e1 997 to wake up the select emulator and the thread blocks itself again. */
24f981c9 998static DWORD WINAPI
6cdfb6e6
RS
999reader_thread (void *arg)
1000{
1001 child_process *cp;
177c0ea7 1002
6cdfb6e6
RS
1003 /* Our identity */
1004 cp = (child_process *)arg;
177c0ea7 1005
6cdfb6e6 1006 /* We have to wait for the go-ahead before we can start */
b2fc9f3d 1007 if (cp == NULL
f067b8ec
JB
1008 || WaitForSingleObject (cp->char_consumed, INFINITE) != WAIT_OBJECT_0
1009 || cp->fd < 0)
c519b5e1
GV
1010 return 1;
1011
6cdfb6e6
RS
1012 for (;;)
1013 {
c519b5e1
GV
1014 int rc;
1015
299614f3 1016 if (cp->fd >= 0 && fd_info[cp->fd].flags & FILE_LISTEN)
f9125cde
KS
1017 rc = _sys_wait_accept (cp->fd);
1018 else
1019 rc = _sys_read_ahead (cp->fd);
c519b5e1 1020
e7ae8039
EZ
1021 /* Don't bother waiting for the event if we already have been
1022 told to exit by delete_child. */
1023 if (cp->status == STATUS_READ_ERROR || !cp->char_avail)
1024 break;
1025
c519b5e1
GV
1026 /* The name char_avail is a misnomer - it really just means the
1027 read-ahead has completed, whether successfully or not. */
6cdfb6e6
RS
1028 if (!SetEvent (cp->char_avail))
1029 {
ef862e20
EZ
1030 DebPrint (("reader_thread.SetEvent(0x%x) failed with %lu for fd %ld (PID %d)\n",
1031 (DWORD_PTR)cp->char_avail, GetLastError (),
1032 cp->fd, cp->pid));
c519b5e1
GV
1033 return 1;
1034 }
1035
1036 if (rc == STATUS_READ_ERROR)
1037 return 1;
177c0ea7 1038
6cdfb6e6 1039 /* If the read died, the child has died so let the thread die */
c519b5e1 1040 if (rc == STATUS_READ_FAILED)
6cdfb6e6 1041 break;
177c0ea7 1042
e7ae8039
EZ
1043 /* Don't bother waiting for the acknowledge if we already have
1044 been told to exit by delete_child. */
1045 if (cp->status == STATUS_READ_ERROR || !cp->char_consumed)
1046 break;
1047
6cdfb6e6
RS
1048 /* Wait until our input is acknowledged before reading again */
1049 if (WaitForSingleObject (cp->char_consumed, INFINITE) != WAIT_OBJECT_0)
1050 {
1051 DebPrint (("reader_thread.WaitForSingleObject failed with "
1052 "%lu for fd %ld\n", GetLastError (), cp->fd));
1053 break;
1054 }
e7ae8039
EZ
1055 /* delete_child sets status to STATUS_READ_ERROR when it wants
1056 us to exit. */
299614f3
EZ
1057 if (cp->status == STATUS_READ_ERROR)
1058 break;
6cdfb6e6
RS
1059 }
1060 return 0;
1061}
1062
b2fc9f3d
GV
1063/* To avoid Emacs changing directory, we just record here the directory
1064 the new process should start in. This is set just before calling
1065 sys_spawnve, and is not generally valid at any other time. */
1066static char * process_dir;
1067
177c0ea7 1068static BOOL
a55a5f3c 1069create_child (char *exe, char *cmdline, char *env, int is_gui_app,
c519b5e1 1070 int * pPid, child_process *cp)
6cdfb6e6 1071{
6cdfb6e6
RS
1072 STARTUPINFO start;
1073 SECURITY_ATTRIBUTES sec_attrs;
42c95ffb 1074#if 0
6cdfb6e6 1075 SECURITY_DESCRIPTOR sec_desc;
42c95ffb 1076#endif
82e7c0a9 1077 DWORD flags;
b2fc9f3d 1078 char dir[ MAXPATHLEN ];
177c0ea7 1079
1088b922 1080 if (cp == NULL) emacs_abort ();
177c0ea7 1081
6cdfb6e6
RS
1082 memset (&start, 0, sizeof (start));
1083 start.cb = sizeof (start);
177c0ea7 1084
58d4e829 1085#ifdef HAVE_NTGUI
a55a5f3c 1086 if (NILP (Vw32_start_process_show_window) && !is_gui_app)
0ecf7d36
RS
1087 start.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
1088 else
1089 start.dwFlags = STARTF_USESTDHANDLES;
58d4e829
GV
1090 start.wShowWindow = SW_HIDE;
1091
1092 start.hStdInput = GetStdHandle (STD_INPUT_HANDLE);
1093 start.hStdOutput = GetStdHandle (STD_OUTPUT_HANDLE);
1094 start.hStdError = GetStdHandle (STD_ERROR_HANDLE);
1095#endif /* HAVE_NTGUI */
1096
42c95ffb 1097#if 0
6cdfb6e6
RS
1098 /* Explicitly specify no security */
1099 if (!InitializeSecurityDescriptor (&sec_desc, SECURITY_DESCRIPTOR_REVISION))
c519b5e1 1100 goto EH_Fail;
6cdfb6e6 1101 if (!SetSecurityDescriptorDacl (&sec_desc, TRUE, NULL, FALSE))
c519b5e1 1102 goto EH_Fail;
42c95ffb 1103#endif
6cdfb6e6 1104 sec_attrs.nLength = sizeof (sec_attrs);
42c95ffb 1105 sec_attrs.lpSecurityDescriptor = NULL /* &sec_desc */;
6cdfb6e6 1106 sec_attrs.bInheritHandle = FALSE;
177c0ea7 1107
b2fc9f3d
GV
1108 strcpy (dir, process_dir);
1109 unixtodos_filename (dir);
82e7c0a9
AI
1110
1111 flags = (!NILP (Vw32_start_process_share_console)
1112 ? CREATE_NEW_PROCESS_GROUP
1113 : CREATE_NEW_CONSOLE);
1114 if (NILP (Vw32_start_process_inherit_error_mode))
1115 flags |= CREATE_DEFAULT_ERROR_MODE;
6cdfb6e6 1116 if (!CreateProcess (exe, cmdline, &sec_attrs, NULL, TRUE,
82e7c0a9 1117 flags, env, dir, &start, &cp->procinfo))
c519b5e1
GV
1118 goto EH_Fail;
1119
1120 cp->pid = (int) cp->procinfo.dwProcessId;
1121
1122 /* Hack for Windows 95, which assigns large (ie negative) pids */
1123 if (cp->pid < 0)
1124 cp->pid = -cp->pid;
1125
c519b5e1 1126 *pPid = cp->pid;
b2fc9f3d 1127
6cdfb6e6 1128 return TRUE;
b2fc9f3d 1129
6cdfb6e6 1130 EH_Fail:
ed3751c8 1131 DebPrint (("create_child.CreateProcess failed: %ld\n", GetLastError ()););
6cdfb6e6
RS
1132 return FALSE;
1133}
1134
1135/* create_child doesn't know what emacs' file handle will be for waiting
1136 on output from the child, so we need to make this additional call
1137 to register the handle with the process
1138 This way the select emulator knows how to match file handles with
1139 entries in child_procs. */
177c0ea7 1140void
b0728617 1141register_child (pid_t pid, int fd)
6cdfb6e6
RS
1142{
1143 child_process *cp;
177c0ea7 1144
b0728617 1145 cp = find_child_pid ((DWORD)pid);
6cdfb6e6
RS
1146 if (cp == NULL)
1147 {
1148 DebPrint (("register_child unable to find pid %lu\n", pid));
1149 return;
1150 }
177c0ea7 1151
6cdfb6e6
RS
1152#ifdef FULL_DEBUG
1153 DebPrint (("register_child registered fd %d with pid %lu\n", fd, pid));
1154#endif
177c0ea7 1155
6cdfb6e6 1156 cp->fd = fd;
6cdfb6e6 1157
c519b5e1
GV
1158 /* thread is initially blocked until select is called; set status so
1159 that select will release thread */
1160 cp->status = STATUS_READ_ACKNOWLEDGED;
1161
1162 /* attach child_process to fd_info */
1163 if (fd_info[fd].cp != NULL)
6cdfb6e6 1164 {
c519b5e1 1165 DebPrint (("register_child: fd_info[%d] apparently in use!\n", fd));
1088b922 1166 emacs_abort ();
6cdfb6e6 1167 }
c519b5e1
GV
1168
1169 fd_info[fd].cp = cp;
6cdfb6e6
RS
1170}
1171
b0728617
EZ
1172/* Record INFILE as an input file for process PID. */
1173void
1174record_infile (pid_t pid, char *infile)
1175{
1176 child_process *cp;
1177
1178 /* INFILE should never be NULL, since xstrdup would have signaled
1179 memory full condition in that case, see callproc.c where this
1180 function is called. */
1181 eassert (infile);
1182
1183 cp = find_child_pid ((DWORD)pid);
1184 if (cp == NULL)
1185 {
1186 DebPrint (("record_infile is unable to find pid %lu\n", pid));
1187 return;
1188 }
1189
1190 cp->input_file = infile;
1191}
1192
1193/* Mark the input file INFILE of the corresponding subprocess as
1194 temporary, to be deleted when the subprocess exits. */
1195void
1196record_pending_deletion (char *infile)
1197{
1198 child_process *cp;
1199
1200 eassert (infile);
1201
1202 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
1203 if (CHILD_ACTIVE (cp)
1204 && cp->input_file && xstrcasecmp (cp->input_file, infile) == 0)
1205 {
1206 cp->pending_deletion = 1;
1207 break;
1208 }
1209}
1210
7be7da6c 1211/* Called from waitpid when a process exits. */
177c0ea7 1212static void
c519b5e1 1213reap_subprocess (child_process *cp)
6cdfb6e6 1214{
c519b5e1 1215 if (cp->procinfo.hProcess)
6cdfb6e6 1216 {
c519b5e1 1217 /* Reap the process */
b2fc9f3d
GV
1218#ifdef FULL_DEBUG
1219 /* Process should have already died before we are called. */
1220 if (WaitForSingleObject (cp->procinfo.hProcess, 0) != WAIT_OBJECT_0)
b0728617 1221 DebPrint (("reap_subprocess: child for fd %d has not died yet!", cp->fd));
b2fc9f3d 1222#endif
c519b5e1
GV
1223 CloseHandle (cp->procinfo.hProcess);
1224 cp->procinfo.hProcess = NULL;
1225 CloseHandle (cp->procinfo.hThread);
1226 cp->procinfo.hThread = NULL;
6cdfb6e6 1227 }
c519b5e1 1228
299614f3
EZ
1229 /* If cp->fd was not closed yet, we might be still reading the
1230 process output, so don't free its resources just yet. The call
1231 to delete_child on behalf of this subprocess will be made by
1232 sys_read when the subprocess output is fully read. */
1233 if (cp->fd < 0)
c519b5e1 1234 delete_child (cp);
6cdfb6e6
RS
1235}
1236
22bae83f
EZ
1237/* Wait for a child process specified by PID, or for any of our
1238 existing child processes (if PID is nonpositive) to die. When it
1239 does, close its handle. Return the pid of the process that died
1240 and fill in STATUS if non-NULL. */
22759c72 1241
22bae83f
EZ
1242pid_t
1243waitpid (pid_t pid, int *status, int options)
6cdfb6e6
RS
1244{
1245 DWORD active, retval;
1246 int nh;
1247 child_process *cp, *cps[MAX_CHILDREN];
1248 HANDLE wait_hnd[MAX_CHILDREN];
22bae83f
EZ
1249 DWORD timeout_ms;
1250 int dont_wait = (options & WNOHANG) != 0;
177c0ea7 1251
6cdfb6e6 1252 nh = 0;
22bae83f
EZ
1253 /* According to Posix:
1254
1255 PID = -1 means status is requested for any child process.
1256
1257 PID > 0 means status is requested for a single child process
1258 whose pid is PID.
1259
1260 PID = 0 means status is requested for any child process whose
1261 process group ID is equal to that of the calling process. But
1262 since Windows has only a limited support for process groups (only
1263 for console processes and only for the purposes of passing
1264 Ctrl-BREAK signal to them), and since we have no documented way
1265 of determining whether a given process belongs to our group, we
1266 treat 0 as -1.
1267
1268 PID < -1 means status is requested for any child process whose
1269 process group ID is equal to the absolute value of PID. Again,
1270 since we don't support process groups, we treat that as -1. */
1271 if (pid > 0)
6cdfb6e6 1272 {
22bae83f
EZ
1273 int our_child = 0;
1274
1275 /* We are requested to wait for a specific child. */
1276 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
1277 {
1278 /* Some child_procs might be sockets; ignore them. Also
1279 ignore subprocesses whose output is not yet completely
1280 read. */
1281 if (CHILD_ACTIVE (cp)
1282 && cp->procinfo.hProcess
1283 && cp->pid == pid)
1284 {
1285 our_child = 1;
1286 break;
1287 }
1288 }
1289 if (our_child)
1290 {
1291 if (cp->fd < 0 || (fd_info[cp->fd].flags & FILE_AT_EOF) != 0)
1292 {
1293 wait_hnd[nh] = cp->procinfo.hProcess;
1294 cps[nh] = cp;
1295 nh++;
1296 }
1297 else if (dont_wait)
1298 {
1299 /* PID specifies our subprocess, but its status is not
1300 yet available. */
1301 return 0;
1302 }
1303 }
1304 if (nh == 0)
1305 {
1306 /* No such child process, or nothing to wait for, so fail. */
1307 errno = ECHILD;
1308 return -1;
1309 }
6cdfb6e6
RS
1310 }
1311 else
1312 {
9d4f32e8 1313 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
22bae83f
EZ
1314 {
1315 if (CHILD_ACTIVE (cp)
1316 && cp->procinfo.hProcess
1317 && (cp->fd < 0 || (fd_info[cp->fd].flags & FILE_AT_EOF) != 0))
1318 {
1319 wait_hnd[nh] = cp->procinfo.hProcess;
1320 cps[nh] = cp;
1321 nh++;
1322 }
1323 }
1324 if (nh == 0)
1325 {
1326 /* Nothing to wait on, so fail. */
1327 errno = ECHILD;
1328 return -1;
1329 }
6cdfb6e6 1330 }
177c0ea7 1331
22bae83f
EZ
1332 if (dont_wait)
1333 timeout_ms = 0;
1334 else
1335 timeout_ms = 1000; /* check for quit about once a second. */
b2fc9f3d
GV
1336
1337 do
1338 {
b2fc9f3d 1339 QUIT;
22bae83f 1340 active = WaitForMultipleObjects (nh, wait_hnd, FALSE, timeout_ms);
e86f5134 1341 } while (active == WAIT_TIMEOUT && !dont_wait);
b2fc9f3d 1342
6cdfb6e6
RS
1343 if (active == WAIT_FAILED)
1344 {
1345 errno = EBADF;
1346 return -1;
1347 }
e86f5134
EZ
1348 else if (active == WAIT_TIMEOUT && dont_wait)
1349 {
1350 /* PID specifies our subprocess, but it didn't exit yet, so its
1351 status is not yet available. */
1352#ifdef FULL_DEBUG
1353 DebPrint (("Wait: PID %d not reap yet\n", cp->pid));
1354#endif
1355 return 0;
1356 }
b2fc9f3d
GV
1357 else if (active >= WAIT_OBJECT_0
1358 && active < WAIT_OBJECT_0+MAXIMUM_WAIT_OBJECTS)
6cdfb6e6
RS
1359 {
1360 active -= WAIT_OBJECT_0;
1361 }
b2fc9f3d
GV
1362 else if (active >= WAIT_ABANDONED_0
1363 && active < WAIT_ABANDONED_0+MAXIMUM_WAIT_OBJECTS)
6cdfb6e6
RS
1364 {
1365 active -= WAIT_ABANDONED_0;
1366 }
b2fc9f3d 1367 else
1088b922 1368 emacs_abort ();
b2fc9f3d 1369
6cdfb6e6
RS
1370 if (!GetExitCodeProcess (wait_hnd[active], &retval))
1371 {
1372 DebPrint (("Wait.GetExitCodeProcess failed with %lu\n",
1373 GetLastError ()));
1374 retval = 1;
1375 }
1376 if (retval == STILL_ACTIVE)
1377 {
22bae83f 1378 /* Should never happen. */
6cdfb6e6 1379 DebPrint (("Wait.WaitForMultipleObjects returned an active process\n"));
22bae83f
EZ
1380 if (pid > 0 && dont_wait)
1381 return 0;
6cdfb6e6
RS
1382 errno = EINVAL;
1383 return -1;
1384 }
bc69349b
RS
1385
1386 /* Massage the exit code from the process to match the format expected
8e6208c5 1387 by the WIFSTOPPED et al macros in syswait.h. Only WIFSIGNALED and
bc69349b
RS
1388 WIFEXITED are supported; WIFSTOPPED doesn't make sense under NT. */
1389
1390 if (retval == STATUS_CONTROL_C_EXIT)
1391 retval = SIGINT;
1392 else
1393 retval <<= 8;
177c0ea7 1394
22bae83f
EZ
1395 if (pid > 0 && active != 0)
1396 emacs_abort ();
6cdfb6e6 1397 cp = cps[active];
c519b5e1
GV
1398 pid = cp->pid;
1399#ifdef FULL_DEBUG
1400 DebPrint (("Wait signaled with process pid %d\n", cp->pid));
1401#endif
22759c72 1402
6cdfb6e6 1403 if (status)
bb5f74ee 1404 *status = retval;
b2fc9f3d 1405 reap_subprocess (cp);
177c0ea7 1406
c519b5e1 1407 return pid;
6cdfb6e6
RS
1408}
1409
75be5258
EZ
1410/* Old versions of w32api headers don't have separate 32-bit and
1411 64-bit defines, but the one they have matches the 32-bit variety. */
1412#ifndef IMAGE_NT_OPTIONAL_HDR32_MAGIC
1413# define IMAGE_NT_OPTIONAL_HDR32_MAGIC IMAGE_NT_OPTIONAL_HDR_MAGIC
1414# define IMAGE_OPTIONAL_HEADER32 IMAGE_OPTIONAL_HEADER
1415#endif
1416
24f981c9 1417static void
b56ceb92
JB
1418w32_executable_type (char * filename,
1419 int * is_dos_app,
1420 int * is_cygnus_app,
1421 int * is_gui_app)
817abdf6 1422{
b2fc9f3d
GV
1423 file_data executable;
1424 char * p;
177c0ea7 1425
b2fc9f3d
GV
1426 /* Default values in case we can't tell for sure. */
1427 *is_dos_app = FALSE;
1428 *is_cygnus_app = FALSE;
a55a5f3c 1429 *is_gui_app = FALSE;
b2fc9f3d
GV
1430
1431 if (!open_input_file (&executable, filename))
1432 return;
817abdf6 1433
b2fc9f3d 1434 p = strrchr (filename, '.');
177c0ea7 1435
b2fc9f3d 1436 /* We can only identify DOS .com programs from the extension. */
05131107 1437 if (p && xstrcasecmp (p, ".com") == 0)
b2fc9f3d 1438 *is_dos_app = TRUE;
05131107
JR
1439 else if (p && (xstrcasecmp (p, ".bat") == 0
1440 || xstrcasecmp (p, ".cmd") == 0))
b2fc9f3d
GV
1441 {
1442 /* A DOS shell script - it appears that CreateProcess is happy to
1443 accept this (somewhat surprisingly); presumably it looks at
1444 COMSPEC to determine what executable to actually invoke.
1445 Therefore, we have to do the same here as well. */
1446 /* Actually, I think it uses the program association for that
1447 extension, which is defined in the registry. */
1448 p = egetenv ("COMSPEC");
1449 if (p)
a55a5f3c 1450 w32_executable_type (p, is_dos_app, is_cygnus_app, is_gui_app);
b2fc9f3d
GV
1451 }
1452 else
817abdf6 1453 {
b2fc9f3d
GV
1454 /* Look for DOS .exe signature - if found, we must also check that
1455 it isn't really a 16- or 32-bit Windows exe, since both formats
1456 start with a DOS program stub. Note that 16-bit Windows
1457 executables use the OS/2 1.x format. */
817abdf6 1458
b2fc9f3d
GV
1459 IMAGE_DOS_HEADER * dos_header;
1460 IMAGE_NT_HEADERS * nt_header;
1461
1462 dos_header = (PIMAGE_DOS_HEADER) executable.file_base;
1463 if (dos_header->e_magic != IMAGE_DOS_SIGNATURE)
1464 goto unwind;
1465
62aba0d4 1466 nt_header = (PIMAGE_NT_HEADERS) ((unsigned char *) dos_header + dos_header->e_lfanew);
b2fc9f3d 1467
177c0ea7 1468 if ((char *) nt_header > (char *) dos_header + executable.size)
817abdf6 1469 {
b2fc9f3d
GV
1470 /* Some dos headers (pkunzip) have bogus e_lfanew fields. */
1471 *is_dos_app = TRUE;
177c0ea7 1472 }
b2fc9f3d
GV
1473 else if (nt_header->Signature != IMAGE_NT_SIGNATURE
1474 && LOWORD (nt_header->Signature) != IMAGE_OS2_SIGNATURE)
1475 {
1476 *is_dos_app = TRUE;
1477 }
1478 else if (nt_header->Signature == IMAGE_NT_SIGNATURE)
1479 {
2b6e2f4d
JR
1480 IMAGE_DATA_DIRECTORY *data_dir = NULL;
1481 if (nt_header->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC)
1482 {
1483 /* Ensure we are using the 32 bit structure. */
1484 IMAGE_OPTIONAL_HEADER32 *opt
1485 = (IMAGE_OPTIONAL_HEADER32*) &(nt_header->OptionalHeader);
1486 data_dir = opt->DataDirectory;
1487 *is_gui_app = (opt->Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI);
1488 }
1489 /* MingW 3.12 has the required 64 bit structs, but in case older
1490 versions don't, only check 64 bit exes if we know how. */
1491#ifdef IMAGE_NT_OPTIONAL_HDR64_MAGIC
1492 else if (nt_header->OptionalHeader.Magic
1493 == IMAGE_NT_OPTIONAL_HDR64_MAGIC)
1494 {
1495 IMAGE_OPTIONAL_HEADER64 *opt
1496 = (IMAGE_OPTIONAL_HEADER64*) &(nt_header->OptionalHeader);
1497 data_dir = opt->DataDirectory;
1498 *is_gui_app = (opt->Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI);
1499 }
1500#endif
1501 if (data_dir)
1502 {
1503 /* Look for cygwin.dll in DLL import list. */
1504 IMAGE_DATA_DIRECTORY import_dir =
1505 data_dir[IMAGE_DIRECTORY_ENTRY_IMPORT];
1506 IMAGE_IMPORT_DESCRIPTOR * imports;
1507 IMAGE_SECTION_HEADER * section;
1508
1509 section = rva_to_section (import_dir.VirtualAddress, nt_header);
1510 imports = RVA_TO_PTR (import_dir.VirtualAddress, section,
1511 executable);
1512
1513 for ( ; imports->Name; imports++)
1514 {
1515 char * dllname = RVA_TO_PTR (imports->Name, section,
1516 executable);
35f36d65 1517
2b6e2f4d
JR
1518 /* The exact name of the cygwin dll has changed with
1519 various releases, but hopefully this will be reasonably
1520 future proof. */
1521 if (strncmp (dllname, "cygwin", 6) == 0)
1522 {
1523 *is_cygnus_app = TRUE;
1524 break;
1525 }
1526 }
1527 }
b2fc9f3d 1528 }
817abdf6 1529 }
177c0ea7 1530
b2fc9f3d
GV
1531unwind:
1532 close_file_data (&executable);
817abdf6
KH
1533}
1534
24f981c9 1535static int
42c95ffb 1536compare_env (const void *strp1, const void *strp2)
d9709fde 1537{
42c95ffb 1538 const char *str1 = *(const char **)strp1, *str2 = *(const char **)strp2;
d9709fde
GV
1539
1540 while (*str1 && *str2 && *str1 != '=' && *str2 != '=')
1541 {
11c22fff
AI
1542 /* Sort order in command.com/cmd.exe is based on uppercasing
1543 names, so do the same here. */
1544 if (toupper (*str1) > toupper (*str2))
d9709fde 1545 return 1;
11c22fff 1546 else if (toupper (*str1) < toupper (*str2))
d9709fde
GV
1547 return -1;
1548 str1++, str2++;
1549 }
1550
1551 if (*str1 == '=' && *str2 == '=')
1552 return 0;
1553 else if (*str1 == '=')
1554 return -1;
1555 else
1556 return 1;
1557}
1558
24f981c9 1559static void
d9709fde
GV
1560merge_and_sort_env (char **envp1, char **envp2, char **new_envp)
1561{
1562 char **optr, **nptr;
1563 int num;
1564
1565 nptr = new_envp;
1566 optr = envp1;
1567 while (*optr)
1568 *nptr++ = *optr++;
1569 num = optr - envp1;
1570
1571 optr = envp2;
1572 while (*optr)
1573 *nptr++ = *optr++;
1574 num += optr - envp2;
1575
1576 qsort (new_envp, num, sizeof (char *), compare_env);
1577
1578 *nptr = NULL;
1579}
6cdfb6e6
RS
1580
1581/* When a new child process is created we need to register it in our list,
1582 so intercept spawn requests. */
177c0ea7 1583int
c519b5e1 1584sys_spawnve (int mode, char *cmdname, char **argv, char **envp)
6cdfb6e6 1585{
0a4de642 1586 Lisp_Object program, full;
6cdfb6e6 1587 char *cmdline, *env, *parg, **targ;
d9709fde 1588 int arglen, numenv;
b0728617 1589 pid_t pid;
c519b5e1 1590 child_process *cp;
a55a5f3c 1591 int is_dos_app, is_cygnus_app, is_gui_app;
b2fc9f3d 1592 int do_quoting = 0;
d9709fde
GV
1593 /* We pass our process ID to our children by setting up an environment
1594 variable in their environment. */
1595 char ppid_env_var_buffer[64];
1596 char *extra_env[] = {ppid_env_var_buffer, NULL};
0a7a6051
JR
1597 /* These are the characters that cause an argument to need quoting.
1598 Arguments with whitespace characters need quoting to prevent the
1599 argument being split into two or more. Arguments with wildcards
1600 are also quoted, for consistency with posix platforms, where wildcards
1601 are not expanded if we run the program directly without a shell.
1602 Some extra whitespace characters need quoting in Cygwin programs,
1603 so this list is conditionally modified below. */
1604 char *sepchars = " \t*?";
18a80473
EZ
1605 /* This is for native w32 apps; modified below for Cygwin apps. */
1606 char escape_char = '\\';
d9709fde 1607
c519b5e1
GV
1608 /* We don't care about the other modes */
1609 if (mode != _P_NOWAIT)
1610 {
1611 errno = EINVAL;
1612 return -1;
1613 }
0a4de642
RS
1614
1615 /* Handle executable names without an executable suffix. */
1130ecfc 1616 program = build_string (cmdname);
0a4de642
RS
1617 if (NILP (Ffile_executable_p (program)))
1618 {
1619 struct gcpro gcpro1;
177c0ea7 1620
0a4de642
RS
1621 full = Qnil;
1622 GCPRO1 (program);
44c7a526 1623 openp (Vexec_path, program, Vexec_suffixes, &full, make_number (X_OK));
0a4de642
RS
1624 UNGCPRO;
1625 if (NILP (full))
1626 {
1627 errno = EINVAL;
1628 return -1;
1629 }
b2fc9f3d 1630 program = full;
0a4de642
RS
1631 }
1632
b2fc9f3d 1633 /* make sure argv[0] and cmdname are both in DOS format */
d5db4077 1634 cmdname = SDATA (program);
c519b5e1
GV
1635 unixtodos_filename (cmdname);
1636 argv[0] = cmdname;
817abdf6 1637
b46a6a83 1638 /* Determine whether program is a 16-bit DOS executable, or a 32-bit Windows
b2fc9f3d
GV
1639 executable that is implicitly linked to the Cygnus dll (implying it
1640 was compiled with the Cygnus GNU toolchain and hence relies on
1641 cygwin.dll to parse the command line - we use this to decide how to
a55a5f3c
AI
1642 escape quote chars in command line args that must be quoted).
1643
1644 Also determine whether it is a GUI app, so that we don't hide its
1645 initial window unless specifically requested. */
1646 w32_executable_type (cmdname, &is_dos_app, &is_cygnus_app, &is_gui_app);
b2fc9f3d
GV
1647
1648 /* On Windows 95, if cmdname is a DOS app, we invoke a helper
1649 application to start it by specifying the helper app as cmdname,
1650 while leaving the real app name as argv[0]. */
1651 if (is_dos_app)
817abdf6 1652 {
b2fc9f3d
GV
1653 cmdname = alloca (MAXPATHLEN);
1654 if (egetenv ("CMDPROXY"))
1655 strcpy (cmdname, egetenv ("CMDPROXY"));
1656 else
1657 {
d5db4077 1658 strcpy (cmdname, SDATA (Vinvocation_directory));
b2fc9f3d
GV
1659 strcat (cmdname, "cmdproxy.exe");
1660 }
1661 unixtodos_filename (cmdname);
817abdf6 1662 }
177c0ea7 1663
6cdfb6e6
RS
1664 /* we have to do some conjuring here to put argv and envp into the
1665 form CreateProcess wants... argv needs to be a space separated/null
1666 terminated list of parameters, and envp is a null
1667 separated/double-null terminated list of parameters.
c519b5e1 1668
b2fc9f3d
GV
1669 Additionally, zero-length args and args containing whitespace or
1670 quote chars need to be wrapped in double quotes - for this to work,
1671 embedded quotes need to be escaped as well. The aim is to ensure
1672 the child process reconstructs the argv array we start with
1673 exactly, so we treat quotes at the beginning and end of arguments
1674 as embedded quotes.
1675
ef79fbba 1676 The w32 GNU-based library from Cygnus doubles quotes to escape
b2fc9f3d 1677 them, while MSVC uses backslash for escaping. (Actually the MSVC
e1dbe924 1678 startup code does attempt to recognize doubled quotes and accept
b2fc9f3d
GV
1679 them, but gets it wrong and ends up requiring three quotes to get a
1680 single embedded quote!) So by default we decide whether to use
1681 quote or backslash as the escape character based on whether the
1682 binary is apparently a Cygnus compiled app.
1683
1684 Note that using backslash to escape embedded quotes requires
1685 additional special handling if an embedded quote is already
97610156 1686 preceded by backslash, or if an arg requiring quoting ends with
b2fc9f3d
GV
1687 backslash. In such cases, the run of escape characters needs to be
1688 doubled. For consistency, we apply this special handling as long
1689 as the escape character is not quote.
1690
1691 Since we have no idea how large argv and envp are likely to be we
1692 figure out list lengths on the fly and allocate them. */
1693
1694 if (!NILP (Vw32_quote_process_args))
1695 {
1696 do_quoting = 1;
1697 /* Override escape char by binding w32-quote-process-args to
1698 desired character, or use t for auto-selection. */
1699 if (INTEGERP (Vw32_quote_process_args))
1700 escape_char = XINT (Vw32_quote_process_args);
1701 else
1702 escape_char = is_cygnus_app ? '"' : '\\';
1703 }
177c0ea7 1704
9d4f32e8 1705 /* Cygwin apps needs quoting a bit more often. */
dbb70029
GM
1706 if (escape_char == '"')
1707 sepchars = "\r\n\t\f '";
1708
6cdfb6e6
RS
1709 /* do argv... */
1710 arglen = 0;
1711 targ = argv;
1712 while (*targ)
1713 {
c519b5e1 1714 char * p = *targ;
b2fc9f3d
GV
1715 int need_quotes = 0;
1716 int escape_char_run = 0;
c519b5e1
GV
1717
1718 if (*p == 0)
b2fc9f3d
GV
1719 need_quotes = 1;
1720 for ( ; *p; p++)
1721 {
dbb70029
GM
1722 if (escape_char == '"' && *p == '\\')
1723 /* If it's a Cygwin app, \ needs to be escaped. */
1724 arglen++;
1725 else if (*p == '"')
b2fc9f3d
GV
1726 {
1727 /* allow for embedded quotes to be escaped */
1728 arglen++;
1729 need_quotes = 1;
1730 /* handle the case where the embedded quote is already escaped */
1731 if (escape_char_run > 0)
1732 {
1733 /* To preserve the arg exactly, we need to double the
1734 preceding escape characters (plus adding one to
1735 escape the quote character itself). */
1736 arglen += escape_char_run;
1737 }
1738 }
dbb70029 1739 else if (strchr (sepchars, *p) != NULL)
b2fc9f3d
GV
1740 {
1741 need_quotes = 1;
1742 }
1743
1744 if (*p == escape_char && escape_char != '"')
1745 escape_char_run++;
1746 else
1747 escape_char_run = 0;
1748 }
1749 if (need_quotes)
1750 {
1751 arglen += 2;
1752 /* handle the case where the arg ends with an escape char - we
1753 must not let the enclosing quote be escaped. */
1754 if (escape_char_run > 0)
1755 arglen += escape_char_run;
1756 }
6cdfb6e6
RS
1757 arglen += strlen (*targ++) + 1;
1758 }
c519b5e1 1759 cmdline = alloca (arglen);
6cdfb6e6
RS
1760 targ = argv;
1761 parg = cmdline;
1762 while (*targ)
1763 {
c519b5e1 1764 char * p = *targ;
b2fc9f3d 1765 int need_quotes = 0;
c519b5e1
GV
1766
1767 if (*p == 0)
b2fc9f3d 1768 need_quotes = 1;
93fdf2f8 1769
b2fc9f3d 1770 if (do_quoting)
93fdf2f8 1771 {
93fdf2f8 1772 for ( ; *p; p++)
dbb70029 1773 if ((strchr (sepchars, *p) != NULL) || *p == '"')
b2fc9f3d 1774 need_quotes = 1;
93fdf2f8 1775 }
b2fc9f3d 1776 if (need_quotes)
c519b5e1 1777 {
b2fc9f3d 1778 int escape_char_run = 0;
c519b5e1
GV
1779 char * first;
1780 char * last;
1781
1782 p = *targ;
1783 first = p;
1784 last = p + strlen (p) - 1;
1785 *parg++ = '"';
b2fc9f3d
GV
1786#if 0
1787 /* This version does not escape quotes if they occur at the
1788 beginning or end of the arg - this could lead to incorrect
fffa137c 1789 behavior when the arg itself represents a command line
b2fc9f3d
GV
1790 containing quoted args. I believe this was originally done
1791 as a hack to make some things work, before
1792 `w32-quote-process-args' was added. */
c519b5e1
GV
1793 while (*p)
1794 {
1795 if (*p == '"' && p > first && p < last)
b2fc9f3d 1796 *parg++ = escape_char; /* escape embedded quotes */
c519b5e1
GV
1797 *parg++ = *p++;
1798 }
b2fc9f3d
GV
1799#else
1800 for ( ; *p; p++)
1801 {
1802 if (*p == '"')
1803 {
1804 /* double preceding escape chars if any */
1805 while (escape_char_run > 0)
1806 {
1807 *parg++ = escape_char;
1808 escape_char_run--;
1809 }
1810 /* escape all quote chars, even at beginning or end */
1811 *parg++ = escape_char;
1812 }
dbb70029
GM
1813 else if (escape_char == '"' && *p == '\\')
1814 *parg++ = '\\';
b2fc9f3d
GV
1815 *parg++ = *p;
1816
1817 if (*p == escape_char && escape_char != '"')
1818 escape_char_run++;
1819 else
1820 escape_char_run = 0;
1821 }
1822 /* double escape chars before enclosing quote */
1823 while (escape_char_run > 0)
1824 {
1825 *parg++ = escape_char;
1826 escape_char_run--;
1827 }
1828#endif
c519b5e1
GV
1829 *parg++ = '"';
1830 }
1831 else
1832 {
1833 strcpy (parg, *targ);
1834 parg += strlen (*targ);
1835 }
6cdfb6e6 1836 *parg++ = ' ';
c519b5e1 1837 targ++;
6cdfb6e6
RS
1838 }
1839 *--parg = '\0';
177c0ea7 1840
6cdfb6e6
RS
1841 /* and envp... */
1842 arglen = 1;
1843 targ = envp;
d9709fde 1844 numenv = 1; /* for end null */
6cdfb6e6
RS
1845 while (*targ)
1846 {
1847 arglen += strlen (*targ++) + 1;
d9709fde 1848 numenv++;
6cdfb6e6 1849 }
d9709fde 1850 /* extra env vars... */
2f246cd3 1851 sprintf (ppid_env_var_buffer, "EM_PARENT_PROCESS_ID=%lu",
6cdfb6e6
RS
1852 GetCurrentProcessId ());
1853 arglen += strlen (ppid_env_var_buffer) + 1;
d9709fde 1854 numenv++;
6cdfb6e6 1855
d9709fde
GV
1856 /* merge env passed in and extra env into one, and sort it. */
1857 targ = (char **) alloca (numenv * sizeof (char *));
1858 merge_and_sort_env (envp, extra_env, targ);
1859
1860 /* concatenate env entries. */
c519b5e1 1861 env = alloca (arglen);
6cdfb6e6
RS
1862 parg = env;
1863 while (*targ)
1864 {
1865 strcpy (parg, *targ);
1866 parg += strlen (*targ++);
1867 *parg++ = '\0';
1868 }
6cdfb6e6
RS
1869 *parg++ = '\0';
1870 *parg = '\0';
c519b5e1
GV
1871
1872 cp = new_child ();
1873 if (cp == NULL)
1874 {
1875 errno = EAGAIN;
1876 return -1;
1877 }
177c0ea7 1878
6cdfb6e6 1879 /* Now create the process. */
a55a5f3c 1880 if (!create_child (cmdname, cmdline, env, is_gui_app, &pid, cp))
6cdfb6e6 1881 {
c519b5e1 1882 delete_child (cp);
6cdfb6e6 1883 errno = ENOEXEC;
c519b5e1 1884 return -1;
6cdfb6e6 1885 }
177c0ea7 1886
c519b5e1 1887 return pid;
6cdfb6e6
RS
1888}
1889
1890/* Emulate the select call
1891 Wait for available input on any of the given rfds, or timeout if
1892 a timeout is given and no input is detected
b2fc9f3d
GV
1893 wfds and efds are not supported and must be NULL.
1894
1895 For simplicity, we detect the death of child processes here and
1896 synchronously call the SIGCHLD handler. Since it is possible for
1897 children to be created without a corresponding pipe handle from which
1898 to read output, we wait separately on the process handles as well as
1899 the char_avail events for each process pipe. We only call
86143765
RS
1900 wait/reap_process when the process actually terminates.
1901
1902 To reduce the number of places in which Emacs can be hung such that
1903 C-g is not able to interrupt it, we always wait on interrupt_handle
04bf5b65 1904 (which is signaled by the input thread when C-g is detected). If we
86143765
RS
1905 detect that we were woken up by C-g, we return -1 with errno set to
1906 EINTR as on Unix. */
6cdfb6e6 1907
7684e57b 1908/* From w32console.c */
6cdfb6e6 1909extern HANDLE keyboard_handle;
86143765
RS
1910
1911/* From w32xfns.c */
1912extern HANDLE interrupt_handle;
1913
6cdfb6e6
RS
1914/* From process.c */
1915extern int proc_buffered_char[];
1916
177c0ea7 1917int
22759c72 1918sys_select (int nfds, SELECT_TYPE *rfds, SELECT_TYPE *wfds, SELECT_TYPE *efds,
c9240d7a 1919 EMACS_TIME *timeout, void *ignored)
6cdfb6e6
RS
1920{
1921 SELECT_TYPE orfds;
b2fc9f3d
GV
1922 DWORD timeout_ms, start_time;
1923 int i, nh, nc, nr;
6cdfb6e6 1924 DWORD active;
b2fc9f3d
GV
1925 child_process *cp, *cps[MAX_CHILDREN];
1926 HANDLE wait_hnd[MAXDESC + MAX_CHILDREN];
c519b5e1 1927 int fdindex[MAXDESC]; /* mapping from wait handles back to descriptors */
177c0ea7 1928
388cdec0
EZ
1929 timeout_ms =
1930 timeout ? (timeout->tv_sec * 1000 + timeout->tv_nsec / 1000000) : INFINITE;
b2fc9f3d 1931
6cdfb6e6 1932 /* If the descriptor sets are NULL but timeout isn't, then just Sleep. */
177c0ea7 1933 if (rfds == NULL && wfds == NULL && efds == NULL && timeout != NULL)
6cdfb6e6 1934 {
b2fc9f3d 1935 Sleep (timeout_ms);
6cdfb6e6
RS
1936 return 0;
1937 }
1938
1939 /* Otherwise, we only handle rfds, so fail otherwise. */
1940 if (rfds == NULL || wfds != NULL || efds != NULL)
1941 {
1942 errno = EINVAL;
1943 return -1;
1944 }
177c0ea7 1945
6cdfb6e6
RS
1946 orfds = *rfds;
1947 FD_ZERO (rfds);
1948 nr = 0;
86143765
RS
1949
1950 /* Always wait on interrupt_handle, to detect C-g (quit). */
1951 wait_hnd[0] = interrupt_handle;
1952 fdindex[0] = -1;
177c0ea7 1953
b2fc9f3d 1954 /* Build a list of pipe handles to wait on. */
86143765 1955 nh = 1;
6cdfb6e6
RS
1956 for (i = 0; i < nfds; i++)
1957 if (FD_ISSET (i, &orfds))
1958 {
1959 if (i == 0)
1960 {
c519b5e1
GV
1961 if (keyboard_handle)
1962 {
1963 /* Handle stdin specially */
1964 wait_hnd[nh] = keyboard_handle;
1965 fdindex[nh] = i;
1966 nh++;
1967 }
6cdfb6e6
RS
1968
1969 /* Check for any emacs-generated input in the queue since
1970 it won't be detected in the wait */
1971 if (detect_input_pending ())
1972 {
1973 FD_SET (i, rfds);
c519b5e1 1974 return 1;
6cdfb6e6
RS
1975 }
1976 }
1977 else
1978 {
d3d14b40 1979 /* Child process and socket/comm port input. */
c519b5e1 1980 cp = fd_info[i].cp;
6cdfb6e6
RS
1981 if (cp)
1982 {
c519b5e1
GV
1983 int current_status = cp->status;
1984
1985 if (current_status == STATUS_READ_ACKNOWLEDGED)
1986 {
1987 /* Tell reader thread which file handle to use. */
1988 cp->fd = i;
1989 /* Wake up the reader thread for this process */
1990 cp->status = STATUS_READ_READY;
1991 if (!SetEvent (cp->char_consumed))
d3d14b40 1992 DebPrint (("sys_select.SetEvent failed with "
c519b5e1
GV
1993 "%lu for fd %ld\n", GetLastError (), i));
1994 }
1995
1996#ifdef CHECK_INTERLOCK
1997 /* slightly crude cross-checking of interlock between threads */
1998
1999 current_status = cp->status;
2000 if (WaitForSingleObject (cp->char_avail, 0) == WAIT_OBJECT_0)
2001 {
04bf5b65 2002 /* char_avail has been signaled, so status (which may
c519b5e1
GV
2003 have changed) should indicate read has completed
2004 but has not been acknowledged. */
2005 current_status = cp->status;
b2fc9f3d
GV
2006 if (current_status != STATUS_READ_SUCCEEDED
2007 && current_status != STATUS_READ_FAILED)
c519b5e1
GV
2008 DebPrint (("char_avail set, but read not completed: status %d\n",
2009 current_status));
2010 }
2011 else
2012 {
04bf5b65 2013 /* char_avail has not been signaled, so status should
c519b5e1 2014 indicate that read is in progress; small possibility
04bf5b65 2015 that read has completed but event wasn't yet signaled
c519b5e1
GV
2016 when we tested it (because a context switch occurred
2017 or if running on separate CPUs). */
b2fc9f3d
GV
2018 if (current_status != STATUS_READ_READY
2019 && current_status != STATUS_READ_IN_PROGRESS
2020 && current_status != STATUS_READ_SUCCEEDED
2021 && current_status != STATUS_READ_FAILED)
c519b5e1
GV
2022 DebPrint (("char_avail reset, but read status is bad: %d\n",
2023 current_status));
2024 }
2025#endif
2026 wait_hnd[nh] = cp->char_avail;
2027 fdindex[nh] = i;
1088b922 2028 if (!wait_hnd[nh]) emacs_abort ();
c519b5e1 2029 nh++;
6cdfb6e6
RS
2030#ifdef FULL_DEBUG
2031 DebPrint (("select waiting on child %d fd %d\n",
2032 cp-child_procs, i));
2033#endif
6cdfb6e6
RS
2034 }
2035 else
2036 {
c519b5e1 2037 /* Unable to find something to wait on for this fd, skip */
ef79fbba
GV
2038
2039 /* Note that this is not a fatal error, and can in fact
2040 happen in unusual circumstances. Specifically, if
2041 sys_spawnve fails, eg. because the program doesn't
2042 exist, and debug-on-error is t so Fsignal invokes a
2043 nested input loop, then the process output pipe is
2044 still included in input_wait_mask with no child_proc
2045 associated with it. (It is removed when the debugger
2046 exits the nested input loop and the error is thrown.) */
2047
c519b5e1 2048 DebPrint (("sys_select: fd %ld is invalid! ignoring\n", i));
6cdfb6e6
RS
2049 }
2050 }
2051 }
b2fc9f3d
GV
2052
2053count_children:
2054 /* Add handles of child processes. */
2055 nc = 0;
9d4f32e8 2056 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
ef79fbba
GV
2057 /* Some child_procs might be sockets; ignore them. Also some
2058 children may have died already, but we haven't finished reading
2059 the process output; ignore them too. */
b2af991a 2060 if ((CHILD_ACTIVE (cp) && cp->procinfo.hProcess)
ef79fbba
GV
2061 && (cp->fd < 0
2062 || (fd_info[cp->fd].flags & FILE_SEND_SIGCHLD) == 0
2063 || (fd_info[cp->fd].flags & FILE_AT_EOF) != 0)
2064 )
b2fc9f3d
GV
2065 {
2066 wait_hnd[nh + nc] = cp->procinfo.hProcess;
2067 cps[nc] = cp;
2068 nc++;
2069 }
177c0ea7 2070
6cdfb6e6 2071 /* Nothing to look for, so we didn't find anything */
177c0ea7 2072 if (nh + nc == 0)
6cdfb6e6 2073 {
22759c72 2074 if (timeout)
b2fc9f3d 2075 Sleep (timeout_ms);
6cdfb6e6
RS
2076 return 0;
2077 }
177c0ea7 2078
b2fc9f3d 2079 start_time = GetTickCount ();
8b031dcc 2080
04bf5b65 2081 /* Wait for input or child death to be signaled. If user input is
8b031dcc
AI
2082 allowed, then also accept window messages. */
2083 if (FD_ISSET (0, &orfds))
2084 active = MsgWaitForMultipleObjects (nh + nc, wait_hnd, FALSE, timeout_ms,
2085 QS_ALLINPUT);
2086 else
2087 active = WaitForMultipleObjects (nh + nc, wait_hnd, FALSE, timeout_ms);
c519b5e1 2088
6cdfb6e6
RS
2089 if (active == WAIT_FAILED)
2090 {
2091 DebPrint (("select.WaitForMultipleObjects (%d, %lu) failed with %lu\n",
b2fc9f3d 2092 nh + nc, timeout_ms, GetLastError ()));
d64b707c 2093 /* don't return EBADF - this causes wait_reading_process_output to
c519b5e1
GV
2094 abort; WAIT_FAILED is returned when single-stepping under
2095 Windows 95 after switching thread focus in debugger, and
2096 possibly at other times. */
2097 errno = EINTR;
6cdfb6e6
RS
2098 return -1;
2099 }
2100 else if (active == WAIT_TIMEOUT)
2101 {
2102 return 0;
2103 }
b2fc9f3d
GV
2104 else if (active >= WAIT_OBJECT_0
2105 && active < WAIT_OBJECT_0+MAXIMUM_WAIT_OBJECTS)
6cdfb6e6
RS
2106 {
2107 active -= WAIT_OBJECT_0;
2108 }
b2fc9f3d
GV
2109 else if (active >= WAIT_ABANDONED_0
2110 && active < WAIT_ABANDONED_0+MAXIMUM_WAIT_OBJECTS)
6cdfb6e6
RS
2111 {
2112 active -= WAIT_ABANDONED_0;
2113 }
b2fc9f3d 2114 else
1088b922 2115 emacs_abort ();
6cdfb6e6 2116
c519b5e1 2117 /* Loop over all handles after active (now officially documented as
04bf5b65 2118 being the first signaled handle in the array). We do this to
c519b5e1
GV
2119 ensure fairness, so that all channels with data available will be
2120 processed - otherwise higher numbered channels could be starved. */
2121 do
6cdfb6e6 2122 {
8b031dcc
AI
2123 if (active == nh + nc)
2124 {
2125 /* There are messages in the lisp thread's queue; we must
2126 drain the queue now to ensure they are processed promptly,
2127 because if we don't do so, we will not be woken again until
2128 further messages arrive.
2129
2130 NB. If ever we allow window message procedures to callback
2131 into lisp, we will need to ensure messages are dispatched
2132 at a safe time for lisp code to be run (*), and we may also
2133 want to provide some hooks in the dispatch loop to cater
2134 for modeless dialogs created by lisp (ie. to register
2135 window handles to pass to IsDialogMessage).
2136
2137 (*) Note that MsgWaitForMultipleObjects above is an
2138 internal dispatch point for messages that are sent to
2139 windows created by this thread. */
977c6479
EZ
2140 if (drain_message_queue ()
2141 /* If drain_message_queue returns non-zero, that means
2142 we received a WM_EMACS_FILENOTIFY message. If this
2143 is a TTY frame, we must signal the caller that keyboard
2144 input is available, so that w32_console_read_socket
2145 will be called to pick up the notifications. If we
2146 don't do that, file notifications will only work when
2147 the Emacs TTY frame has focus. */
2148 && FRAME_TERMCAP_P (SELECTED_FRAME ())
2149 /* they asked for stdin reads */
2150 && FD_ISSET (0, &orfds)
2151 /* the stdin handle is valid */
2152 && keyboard_handle)
2153 {
2154 FD_SET (0, rfds);
2155 if (nr == 0)
2156 nr = 1;
2157 }
8b031dcc
AI
2158 }
2159 else if (active >= nh)
b2fc9f3d
GV
2160 {
2161 cp = cps[active - nh];
ef79fbba
GV
2162
2163 /* We cannot always signal SIGCHLD immediately; if we have not
2164 finished reading the process output, we must delay sending
2165 SIGCHLD until we do. */
2166
2167 if (cp->fd >= 0 && (fd_info[cp->fd].flags & FILE_AT_EOF) == 0)
2168 fd_info[cp->fd].flags |= FILE_SEND_SIGCHLD;
b2fc9f3d 2169 /* SIG_DFL for SIGCHLD is ignore */
ef79fbba
GV
2170 else if (sig_handlers[SIGCHLD] != SIG_DFL &&
2171 sig_handlers[SIGCHLD] != SIG_IGN)
b2fc9f3d
GV
2172 {
2173#ifdef FULL_DEBUG
2174 DebPrint (("select calling SIGCHLD handler for pid %d\n",
2175 cp->pid));
2176#endif
b2fc9f3d 2177 sig_handlers[SIGCHLD] (SIGCHLD);
b2fc9f3d
GV
2178 }
2179 }
86143765
RS
2180 else if (fdindex[active] == -1)
2181 {
2182 /* Quit (C-g) was detected. */
2183 errno = EINTR;
2184 return -1;
2185 }
b2fc9f3d 2186 else if (fdindex[active] == 0)
c519b5e1
GV
2187 {
2188 /* Keyboard input available */
2189 FD_SET (0, rfds);
6cdfb6e6 2190 nr++;
c519b5e1 2191 }
6cdfb6e6 2192 else
c519b5e1 2193 {
b2fc9f3d
GV
2194 /* must be a socket or pipe - read ahead should have
2195 completed, either succeeding or failing. */
c519b5e1
GV
2196 FD_SET (fdindex[active], rfds);
2197 nr++;
c519b5e1
GV
2198 }
2199
b2fc9f3d
GV
2200 /* Even though wait_reading_process_output only reads from at most
2201 one channel, we must process all channels here so that we reap
2202 all children that have died. */
2203 while (++active < nh + nc)
c519b5e1
GV
2204 if (WaitForSingleObject (wait_hnd[active], 0) == WAIT_OBJECT_0)
2205 break;
b2fc9f3d
GV
2206 } while (active < nh + nc);
2207
2208 /* If no input has arrived and timeout hasn't expired, wait again. */
2209 if (nr == 0)
2210 {
2211 DWORD elapsed = GetTickCount () - start_time;
2212
2213 if (timeout_ms > elapsed) /* INFINITE is MAX_UINT */
2214 {
2215 if (timeout_ms != INFINITE)
2216 timeout_ms -= elapsed;
2217 goto count_children;
2218 }
2219 }
c519b5e1 2220
6cdfb6e6
RS
2221 return nr;
2222}
2223
c519b5e1 2224/* Substitute for certain kill () operations */
b2fc9f3d
GV
2225
2226static BOOL CALLBACK
42c95ffb 2227find_child_console (HWND hwnd, LPARAM arg)
b2fc9f3d 2228{
42c95ffb 2229 child_process * cp = (child_process *) arg;
b2fc9f3d
GV
2230 DWORD thread_id;
2231 DWORD process_id;
2232
2233 thread_id = GetWindowThreadProcessId (hwnd, &process_id);
2234 if (process_id == cp->procinfo.dwProcessId)
2235 {
2236 char window_class[32];
2237
2238 GetClassName (hwnd, window_class, sizeof (window_class));
2239 if (strcmp (window_class,
417a7a0e 2240 (os_subtype == OS_9X)
b2fc9f3d
GV
2241 ? "tty"
2242 : "ConsoleWindowClass") == 0)
2243 {
2244 cp->hwnd = hwnd;
2245 return FALSE;
2246 }
2247 }
2248 /* keep looking */
2249 return TRUE;
2250}
2251
16b22fef 2252/* Emulate 'kill', but only for other processes. */
177c0ea7 2253int
b0728617 2254sys_kill (pid_t pid, int sig)
6cdfb6e6
RS
2255{
2256 child_process *cp;
c519b5e1
GV
2257 HANDLE proc_hand;
2258 int need_to_free = 0;
2259 int rc = 0;
177c0ea7 2260
d983a10b
PE
2261 /* Each process is in its own process group. */
2262 if (pid < 0)
2263 pid = -pid;
2264
6cdfb6e6 2265 /* Only handle signals that will result in the process dying */
343a2aef
EZ
2266 if (sig != 0
2267 && sig != SIGINT && sig != SIGKILL && sig != SIGQUIT && sig != SIGHUP)
6cdfb6e6
RS
2268 {
2269 errno = EINVAL;
2270 return -1;
2271 }
c519b5e1 2272
343a2aef
EZ
2273 if (sig == 0)
2274 {
2275 /* It will take _some_ time before PID 4 or less on Windows will
2276 be Emacs... */
2277 if (pid <= 4)
2278 {
2279 errno = EPERM;
2280 return -1;
2281 }
2282 proc_hand = OpenProcess (PROCESS_QUERY_INFORMATION, 0, pid);
2283 if (proc_hand == NULL)
2284 {
2285 DWORD err = GetLastError ();
2286
2287 switch (err)
2288 {
2289 case ERROR_ACCESS_DENIED: /* existing process, but access denied */
2290 errno = EPERM;
2291 return -1;
2292 case ERROR_INVALID_PARAMETER: /* process PID does not exist */
2293 errno = ESRCH;
2294 return -1;
2295 }
2296 }
2297 else
2298 CloseHandle (proc_hand);
2299 return 0;
2300 }
2301
6cdfb6e6
RS
2302 cp = find_child_pid (pid);
2303 if (cp == NULL)
2304 {
16b22fef
EZ
2305 /* We were passed a PID of something other than our subprocess.
2306 If that is our own PID, we will send to ourself a message to
2307 close the selected frame, which does not necessarily
2308 terminates Emacs. But then we are not supposed to call
2309 sys_kill with our own PID. */
c519b5e1
GV
2310 proc_hand = OpenProcess (PROCESS_TERMINATE, 0, pid);
2311 if (proc_hand == NULL)
2312 {
2313 errno = EPERM;
2314 return -1;
2315 }
2316 need_to_free = 1;
2317 }
2318 else
2319 {
2320 proc_hand = cp->procinfo.hProcess;
2321 pid = cp->procinfo.dwProcessId;
b2fc9f3d
GV
2322
2323 /* Try to locate console window for process. */
2324 EnumWindows (find_child_console, (LPARAM) cp);
6cdfb6e6 2325 }
177c0ea7 2326
a55a5f3c 2327 if (sig == SIGINT || sig == SIGQUIT)
6cdfb6e6 2328 {
b2fc9f3d
GV
2329 if (NILP (Vw32_start_process_share_console) && cp && cp->hwnd)
2330 {
2331 BYTE control_scan_code = (BYTE) MapVirtualKey (VK_CONTROL, 0);
a55a5f3c
AI
2332 /* Fake Ctrl-C for SIGINT, and Ctrl-Break for SIGQUIT. */
2333 BYTE vk_break_code = (sig == SIGINT) ? 'C' : VK_CANCEL;
b2fc9f3d
GV
2334 BYTE break_scan_code = (BYTE) MapVirtualKey (vk_break_code, 0);
2335 HWND foreground_window;
2336
2337 if (break_scan_code == 0)
2338 {
a55a5f3c 2339 /* Fake Ctrl-C for SIGQUIT if we can't manage Ctrl-Break. */
b2fc9f3d
GV
2340 vk_break_code = 'C';
2341 break_scan_code = (BYTE) MapVirtualKey (vk_break_code, 0);
2342 }
2343
2344 foreground_window = GetForegroundWindow ();
f446016f 2345 if (foreground_window)
b2fc9f3d 2346 {
f446016f
AI
2347 /* NT 5.0, and apparently also Windows 98, will not allow
2348 a Window to be set to foreground directly without the
2349 user's involvement. The workaround is to attach
2350 ourselves to the thread that owns the foreground
2351 window, since that is the only thread that can set the
2352 foreground window. */
2353 DWORD foreground_thread, child_thread;
2354 foreground_thread =
2355 GetWindowThreadProcessId (foreground_window, NULL);
2356 if (foreground_thread == GetCurrentThreadId ()
2357 || !AttachThreadInput (GetCurrentThreadId (),
2358 foreground_thread, TRUE))
2359 foreground_thread = 0;
2360
2361 child_thread = GetWindowThreadProcessId (cp->hwnd, NULL);
2362 if (child_thread == GetCurrentThreadId ()
2363 || !AttachThreadInput (GetCurrentThreadId (),
2364 child_thread, TRUE))
2365 child_thread = 0;
2366
2367 /* Set the foreground window to the child. */
2368 if (SetForegroundWindow (cp->hwnd))
2369 {
2370 /* Generate keystrokes as if user had typed Ctrl-Break or
2371 Ctrl-C. */
2372 keybd_event (VK_CONTROL, control_scan_code, 0, 0);
2373 keybd_event (vk_break_code, break_scan_code,
2374 (vk_break_code == 'C' ? 0 : KEYEVENTF_EXTENDEDKEY), 0);
2375 keybd_event (vk_break_code, break_scan_code,
2376 (vk_break_code == 'C' ? 0 : KEYEVENTF_EXTENDEDKEY)
2377 | KEYEVENTF_KEYUP, 0);
2378 keybd_event (VK_CONTROL, control_scan_code,
2379 KEYEVENTF_KEYUP, 0);
2380
2381 /* Sleep for a bit to give time for Emacs frame to respond
2382 to focus change events (if Emacs was active app). */
2383 Sleep (100);
2384
2385 SetForegroundWindow (foreground_window);
2386 }
2387 /* Detach from the foreground and child threads now that
2388 the foreground switching is over. */
2389 if (foreground_thread)
2390 AttachThreadInput (GetCurrentThreadId (),
2391 foreground_thread, FALSE);
2392 if (child_thread)
2393 AttachThreadInput (GetCurrentThreadId (),
2394 child_thread, FALSE);
2395 }
2396 }
c519b5e1 2397 /* Ctrl-Break is NT equivalent of SIGINT. */
b2fc9f3d 2398 else if (!GenerateConsoleCtrlEvent (CTRL_BREAK_EVENT, pid))
6cdfb6e6 2399 {
c519b5e1 2400 DebPrint (("sys_kill.GenerateConsoleCtrlEvent return %d "
6cdfb6e6
RS
2401 "for pid %lu\n", GetLastError (), pid));
2402 errno = EINVAL;
c519b5e1 2403 rc = -1;
80874ef7 2404 }
6cdfb6e6
RS
2405 }
2406 else
2407 {
b2fc9f3d
GV
2408 if (NILP (Vw32_start_process_share_console) && cp && cp->hwnd)
2409 {
2410#if 1
417a7a0e 2411 if (os_subtype == OS_9X)
b2fc9f3d
GV
2412 {
2413/*
2414 Another possibility is to try terminating the VDM out-right by
2415 calling the Shell VxD (id 0x17) V86 interface, function #4
2416 "SHELL_Destroy_VM", ie.
2417
2418 mov edx,4
2419 mov ebx,vm_handle
2420 call shellapi
2421
2422 First need to determine the current VM handle, and then arrange for
2423 the shellapi call to be made from the system vm (by using
2424 Switch_VM_and_callback).
2425
2426 Could try to invoke DestroyVM through CallVxD.
2427
2428*/
ef79fbba 2429#if 0
b46a6a83 2430 /* On Windows 95, posting WM_QUIT causes the 16-bit subsystem
ef79fbba
GV
2431 to hang when cmdproxy is used in conjunction with
2432 command.com for an interactive shell. Posting
2433 WM_CLOSE pops up a dialog that, when Yes is selected,
2434 does the same thing. TerminateProcess is also less
2435 than ideal in that subprocesses tend to stick around
2436 until the machine is shutdown, but at least it
2437 doesn't freeze the 16-bit subsystem. */
b2fc9f3d 2438 PostMessage (cp->hwnd, WM_QUIT, 0xff, 0);
ef79fbba
GV
2439#endif
2440 if (!TerminateProcess (proc_hand, 0xff))
2441 {
2442 DebPrint (("sys_kill.TerminateProcess returned %d "
2443 "for pid %lu\n", GetLastError (), pid));
2444 errno = EINVAL;
2445 rc = -1;
2446 }
b2fc9f3d
GV
2447 }
2448 else
2449#endif
2450 PostMessage (cp->hwnd, WM_CLOSE, 0, 0);
2451 }
fbd6baed 2452 /* Kill the process. On W32 this doesn't kill child processes
8eae7766 2453 so it doesn't work very well for shells which is why it's not
b2fc9f3d
GV
2454 used in every case. */
2455 else if (!TerminateProcess (proc_hand, 0xff))
6cdfb6e6 2456 {
c519b5e1 2457 DebPrint (("sys_kill.TerminateProcess returned %d "
6cdfb6e6
RS
2458 "for pid %lu\n", GetLastError (), pid));
2459 errno = EINVAL;
c519b5e1 2460 rc = -1;
6cdfb6e6
RS
2461 }
2462 }
c519b5e1
GV
2463
2464 if (need_to_free)
2465 CloseHandle (proc_hand);
2466
2467 return rc;
6cdfb6e6
RS
2468}
2469
c519b5e1
GV
2470/* The following two routines are used to manipulate stdin, stdout, and
2471 stderr of our child processes.
2472
2473 Assuming that in, out, and err are *not* inheritable, we make them
2474 stdin, stdout, and stderr of the child as follows:
2475
2476 - Save the parent's current standard handles.
2477 - Set the std handles to inheritable duplicates of the ones being passed in.
2478 (Note that _get_osfhandle() is an io.h procedure that retrieves the
2479 NT file handle for a crt file descriptor.)
2480 - Spawn the child, which inherits in, out, and err as stdin,
2481 stdout, and stderr. (see Spawnve)
2482 - Close the std handles passed to the child.
2483 - Reset the parent's standard handles to the saved handles.
2484 (see reset_standard_handles)
2485 We assume that the caller closes in, out, and err after calling us. */
2486
2487void
2488prepare_standard_handles (int in, int out, int err, HANDLE handles[3])
6cdfb6e6 2489{
c519b5e1
GV
2490 HANDLE parent;
2491 HANDLE newstdin, newstdout, newstderr;
2492
2493 parent = GetCurrentProcess ();
2494
2495 handles[0] = GetStdHandle (STD_INPUT_HANDLE);
2496 handles[1] = GetStdHandle (STD_OUTPUT_HANDLE);
2497 handles[2] = GetStdHandle (STD_ERROR_HANDLE);
2498
2499 /* make inheritable copies of the new handles */
177c0ea7 2500 if (!DuplicateHandle (parent,
c519b5e1
GV
2501 (HANDLE) _get_osfhandle (in),
2502 parent,
177c0ea7
JB
2503 &newstdin,
2504 0,
2505 TRUE,
c519b5e1
GV
2506 DUPLICATE_SAME_ACCESS))
2507 report_file_error ("Duplicating input handle for child", Qnil);
177c0ea7 2508
c519b5e1
GV
2509 if (!DuplicateHandle (parent,
2510 (HANDLE) _get_osfhandle (out),
2511 parent,
2512 &newstdout,
2513 0,
2514 TRUE,
2515 DUPLICATE_SAME_ACCESS))
2516 report_file_error ("Duplicating output handle for child", Qnil);
177c0ea7 2517
c519b5e1
GV
2518 if (!DuplicateHandle (parent,
2519 (HANDLE) _get_osfhandle (err),
2520 parent,
2521 &newstderr,
2522 0,
2523 TRUE,
2524 DUPLICATE_SAME_ACCESS))
2525 report_file_error ("Duplicating error handle for child", Qnil);
2526
2527 /* and store them as our std handles */
2528 if (!SetStdHandle (STD_INPUT_HANDLE, newstdin))
2529 report_file_error ("Changing stdin handle", Qnil);
177c0ea7 2530
c519b5e1
GV
2531 if (!SetStdHandle (STD_OUTPUT_HANDLE, newstdout))
2532 report_file_error ("Changing stdout handle", Qnil);
2533
2534 if (!SetStdHandle (STD_ERROR_HANDLE, newstderr))
2535 report_file_error ("Changing stderr handle", Qnil);
2536}
2537
2538void
2539reset_standard_handles (int in, int out, int err, HANDLE handles[3])
2540{
2541 /* close the duplicated handles passed to the child */
2542 CloseHandle (GetStdHandle (STD_INPUT_HANDLE));
2543 CloseHandle (GetStdHandle (STD_OUTPUT_HANDLE));
2544 CloseHandle (GetStdHandle (STD_ERROR_HANDLE));
2545
2546 /* now restore parent's saved std handles */
2547 SetStdHandle (STD_INPUT_HANDLE, handles[0]);
2548 SetStdHandle (STD_OUTPUT_HANDLE, handles[1]);
2549 SetStdHandle (STD_ERROR_HANDLE, handles[2]);
6cdfb6e6 2550}
c519b5e1 2551
b2fc9f3d
GV
2552void
2553set_process_dir (char * dir)
2554{
2555 process_dir = dir;
2556}
2557
a11e68d0
RS
2558/* To avoid problems with winsock implementations that work over dial-up
2559 connections causing or requiring a connection to exist while Emacs is
2560 running, Emacs no longer automatically loads winsock on startup if it
2561 is present. Instead, it will be loaded when open-network-stream is
2562 first called.
2563
2564 To allow full control over when winsock is loaded, we provide these
2565 two functions to dynamically load and unload winsock. This allows
2566 dial-up users to only be connected when they actually need to use
2567 socket services. */
2568
7684e57b 2569/* From w32.c */
a11e68d0
RS
2570extern HANDLE winsock_lib;
2571extern BOOL term_winsock (void);
2572extern BOOL init_winsock (int load_now);
2573
fbd6baed 2574DEFUN ("w32-has-winsock", Fw32_has_winsock, Sw32_has_winsock, 0, 1, 0,
33f09670
JR
2575 doc: /* Test for presence of the Windows socket library `winsock'.
2576Returns non-nil if winsock support is present, nil otherwise.
2577
2578If the optional argument LOAD-NOW is non-nil, the winsock library is
2579also loaded immediately if not already loaded. If winsock is loaded,
2580the winsock local hostname is returned (since this may be different from
2581the value of `system-name' and should supplant it), otherwise t is
2582returned to indicate winsock support is present. */)
5842a27b 2583 (Lisp_Object load_now)
a11e68d0
RS
2584{
2585 int have_winsock;
2586
2587 have_winsock = init_winsock (!NILP (load_now));
2588 if (have_winsock)
2589 {
2590 if (winsock_lib != NULL)
2591 {
2592 /* Return new value for system-name. The best way to do this
2593 is to call init_system_name, saving and restoring the
2594 original value to avoid side-effects. */
2595 Lisp_Object orig_hostname = Vsystem_name;
2596 Lisp_Object hostname;
2597
2598 init_system_name ();
2599 hostname = Vsystem_name;
2600 Vsystem_name = orig_hostname;
2601 return hostname;
2602 }
2603 return Qt;
2604 }
2605 return Qnil;
2606}
2607
fbd6baed 2608DEFUN ("w32-unload-winsock", Fw32_unload_winsock, Sw32_unload_winsock,
a11e68d0 2609 0, 0, 0,
33f09670
JR
2610 doc: /* Unload the Windows socket library `winsock' if loaded.
2611This is provided to allow dial-up socket connections to be disconnected
2612when no longer needed. Returns nil without unloading winsock if any
2613socket connections still exist. */)
5842a27b 2614 (void)
a11e68d0
RS
2615{
2616 return term_winsock () ? Qt : Qnil;
2617}
2618
93fdf2f8 2619\f
b2fc9f3d
GV
2620/* Some miscellaneous functions that are Windows specific, but not GUI
2621 specific (ie. are applicable in terminal or batch mode as well). */
2622
b2fc9f3d 2623DEFUN ("w32-short-file-name", Fw32_short_file_name, Sw32_short_file_name, 1, 1, 0,
33f09670
JR
2624 doc: /* Return the short file name version (8.3) of the full path of FILENAME.
2625If FILENAME does not exist, return nil.
2626All path elements in FILENAME are converted to their short names. */)
5842a27b 2627 (Lisp_Object filename)
b2fc9f3d
GV
2628{
2629 char shortname[MAX_PATH];
2630
b7826503 2631 CHECK_STRING (filename);
b2fc9f3d
GV
2632
2633 /* first expand it. */
2634 filename = Fexpand_file_name (filename, Qnil);
2635
2636 /* luckily, this returns the short version of each element in the path. */
b23077df 2637 if (GetShortPathName (SDATA (ENCODE_FILE (filename)), shortname, MAX_PATH) == 0)
b2fc9f3d
GV
2638 return Qnil;
2639
e7ac588e 2640 dostounix_filename (shortname, 0);
b2fc9f3d 2641
e7ac588e 2642 /* No need to DECODE_FILE, because 8.3 names are pure ASCII. */
b2fc9f3d
GV
2643 return build_string (shortname);
2644}
2645
2646
2647DEFUN ("w32-long-file-name", Fw32_long_file_name, Sw32_long_file_name,
2648 1, 1, 0,
33f09670
JR
2649 doc: /* Return the long file name version of the full path of FILENAME.
2650If FILENAME does not exist, return nil.
2651All path elements in FILENAME are converted to their long names. */)
5842a27b 2652 (Lisp_Object filename)
b2fc9f3d
GV
2653{
2654 char longname[ MAX_PATH ];
8dcaeba2 2655 int drive_only = 0;
b2fc9f3d 2656
b7826503 2657 CHECK_STRING (filename);
b2fc9f3d 2658
8dcaeba2
JR
2659 if (SBYTES (filename) == 2
2660 && *(SDATA (filename) + 1) == ':')
2661 drive_only = 1;
2662
b2fc9f3d
GV
2663 /* first expand it. */
2664 filename = Fexpand_file_name (filename, Qnil);
2665
b23077df 2666 if (!w32_get_long_filename (SDATA (ENCODE_FILE (filename)), longname, MAX_PATH))
b2fc9f3d
GV
2667 return Qnil;
2668
e7ac588e 2669 dostounix_filename (longname, 0);
b2fc9f3d 2670
8dcaeba2
JR
2671 /* If we were passed only a drive, make sure that a slash is not appended
2672 for consistency with directories. Allow for drive mapping via SUBST
2673 in case expand-file-name is ever changed to expand those. */
2674 if (drive_only && longname[1] == ':' && longname[2] == '/' && !longname[3])
2675 longname[2] = '\0';
2676
b23077df 2677 return DECODE_FILE (build_string (longname));
b2fc9f3d
GV
2678}
2679
33f09670
JR
2680DEFUN ("w32-set-process-priority", Fw32_set_process_priority,
2681 Sw32_set_process_priority, 2, 2, 0,
2682 doc: /* Set the priority of PROCESS to PRIORITY.
2683If PROCESS is nil, the priority of Emacs is changed, otherwise the
2684priority of the process whose pid is PROCESS is changed.
2685PRIORITY should be one of the symbols high, normal, or low;
2686any other symbol will be interpreted as normal.
2687
2688If successful, the return value is t, otherwise nil. */)
5842a27b 2689 (Lisp_Object process, Lisp_Object priority)
b2fc9f3d
GV
2690{
2691 HANDLE proc_handle = GetCurrentProcess ();
2692 DWORD priority_class = NORMAL_PRIORITY_CLASS;
2693 Lisp_Object result = Qnil;
2694
b7826503 2695 CHECK_SYMBOL (priority);
b2fc9f3d
GV
2696
2697 if (!NILP (process))
2698 {
2699 DWORD pid;
2700 child_process *cp;
2701
b7826503 2702 CHECK_NUMBER (process);
b2fc9f3d
GV
2703
2704 /* Allow pid to be an internally generated one, or one obtained
b46a6a83 2705 externally. This is necessary because real pids on Windows 95 are
b2fc9f3d
GV
2706 negative. */
2707
2708 pid = XINT (process);
2709 cp = find_child_pid (pid);
2710 if (cp != NULL)
2711 pid = cp->procinfo.dwProcessId;
2712
2713 proc_handle = OpenProcess (PROCESS_SET_INFORMATION, FALSE, pid);
2714 }
2715
2716 if (EQ (priority, Qhigh))
2717 priority_class = HIGH_PRIORITY_CLASS;
2718 else if (EQ (priority, Qlow))
2719 priority_class = IDLE_PRIORITY_CLASS;
2720
2721 if (proc_handle != NULL)
2722 {
2723 if (SetPriorityClass (proc_handle, priority_class))
2724 result = Qt;
2725 if (!NILP (process))
2726 CloseHandle (proc_handle);
2727 }
2728
2729 return result;
2730}
2731
d613418b
EZ
2732#ifdef HAVE_LANGINFO_CODESET
2733/* Emulation of nl_langinfo. Used in fns.c:Flocale_info. */
b56ceb92
JB
2734char *
2735nl_langinfo (nl_item item)
d613418b
EZ
2736{
2737 /* Conversion of Posix item numbers to their Windows equivalents. */
2738 static const LCTYPE w32item[] = {
2739 LOCALE_IDEFAULTANSICODEPAGE,
2740 LOCALE_SDAYNAME1, LOCALE_SDAYNAME2, LOCALE_SDAYNAME3,
2741 LOCALE_SDAYNAME4, LOCALE_SDAYNAME5, LOCALE_SDAYNAME6, LOCALE_SDAYNAME7,
2742 LOCALE_SMONTHNAME1, LOCALE_SMONTHNAME2, LOCALE_SMONTHNAME3,
2743 LOCALE_SMONTHNAME4, LOCALE_SMONTHNAME5, LOCALE_SMONTHNAME6,
2744 LOCALE_SMONTHNAME7, LOCALE_SMONTHNAME8, LOCALE_SMONTHNAME9,
2745 LOCALE_SMONTHNAME10, LOCALE_SMONTHNAME11, LOCALE_SMONTHNAME12
2746 };
2747
2748 static char *nl_langinfo_buf = NULL;
2749 static int nl_langinfo_len = 0;
2750
2751 if (nl_langinfo_len <= 0)
2752 nl_langinfo_buf = xmalloc (nl_langinfo_len = 1);
2753
2754 if (item < 0 || item >= _NL_NUM)
2755 nl_langinfo_buf[0] = 0;
2756 else
2757 {
2758 LCID cloc = GetThreadLocale ();
2759 int need_len = GetLocaleInfo (cloc, w32item[item] | LOCALE_USE_CP_ACP,
2760 NULL, 0);
2761
2762 if (need_len <= 0)
2763 nl_langinfo_buf[0] = 0;
2764 else
2765 {
2766 if (item == CODESET)
2767 {
2768 need_len += 2; /* for the "cp" prefix */
2769 if (need_len < 8) /* for the case we call GetACP */
2770 need_len = 8;
2771 }
2772 if (nl_langinfo_len <= need_len)
2773 nl_langinfo_buf = xrealloc (nl_langinfo_buf,
2774 nl_langinfo_len = need_len);
2775 if (!GetLocaleInfo (cloc, w32item[item] | LOCALE_USE_CP_ACP,
2776 nl_langinfo_buf, nl_langinfo_len))
2777 nl_langinfo_buf[0] = 0;
2778 else if (item == CODESET)
2779 {
2780 if (strcmp (nl_langinfo_buf, "0") == 0 /* CP_ACP */
2781 || strcmp (nl_langinfo_buf, "1") == 0) /* CP_OEMCP */
2782 sprintf (nl_langinfo_buf, "cp%u", GetACP ());
2783 else
2784 {
2785 memmove (nl_langinfo_buf + 2, nl_langinfo_buf,
2786 strlen (nl_langinfo_buf) + 1);
2787 nl_langinfo_buf[0] = 'c';
2788 nl_langinfo_buf[1] = 'p';
2789 }
2790 }
2791 }
2792 }
2793 return nl_langinfo_buf;
2794}
2795#endif /* HAVE_LANGINFO_CODESET */
b2fc9f3d 2796
33f09670
JR
2797DEFUN ("w32-get-locale-info", Fw32_get_locale_info,
2798 Sw32_get_locale_info, 1, 2, 0,
2799 doc: /* Return information about the Windows locale LCID.
2800By default, return a three letter locale code which encodes the default
35f36d65 2801language as the first two characters, and the country or regional variant
33f09670
JR
2802as the third letter. For example, ENU refers to `English (United States)',
2803while ENC means `English (Canadian)'.
2804
2805If the optional argument LONGFORM is t, the long form of the locale
2806name is returned, e.g. `English (United States)' instead; if LONGFORM
2807is a number, it is interpreted as an LCTYPE constant and the corresponding
2808locale information is returned.
2809
2810If LCID (a 16-bit number) is not a valid locale, the result is nil. */)
5842a27b 2811 (Lisp_Object lcid, Lisp_Object longform)
b2fc9f3d
GV
2812{
2813 int got_abbrev;
2814 int got_full;
2815 char abbrev_name[32] = { 0 };
2816 char full_name[256] = { 0 };
2817
b7826503 2818 CHECK_NUMBER (lcid);
b2fc9f3d
GV
2819
2820 if (!IsValidLocale (XINT (lcid), LCID_SUPPORTED))
2821 return Qnil;
2822
2823 if (NILP (longform))
2824 {
2825 got_abbrev = GetLocaleInfo (XINT (lcid),
2826 LOCALE_SABBREVLANGNAME | LOCALE_USE_CP_ACP,
2827 abbrev_name, sizeof (abbrev_name));
2828 if (got_abbrev)
2829 return build_string (abbrev_name);
2830 }
0eaf5926 2831 else if (EQ (longform, Qt))
b2fc9f3d
GV
2832 {
2833 got_full = GetLocaleInfo (XINT (lcid),
2834 LOCALE_SLANGUAGE | LOCALE_USE_CP_ACP,
2835 full_name, sizeof (full_name));
2836 if (got_full)
011a0143 2837 return DECODE_SYSTEM (build_string (full_name));
b2fc9f3d 2838 }
0eaf5926
GV
2839 else if (NUMBERP (longform))
2840 {
2841 got_full = GetLocaleInfo (XINT (lcid),
2842 XINT (longform),
2843 full_name, sizeof (full_name));
96512555
EZ
2844 /* GetLocaleInfo's return value includes the terminating null
2845 character, when the returned information is a string, whereas
2846 make_unibyte_string needs the string length without the
2847 terminating null. */
0eaf5926 2848 if (got_full)
96512555 2849 return make_unibyte_string (full_name, got_full - 1);
0eaf5926 2850 }
b2fc9f3d
GV
2851
2852 return Qnil;
2853}
2854
2855
33f09670
JR
2856DEFUN ("w32-get-current-locale-id", Fw32_get_current_locale_id,
2857 Sw32_get_current_locale_id, 0, 0, 0,
2858 doc: /* Return Windows locale id for current locale setting.
2859This is a numerical value; use `w32-get-locale-info' to convert to a
2860human-readable form. */)
5842a27b 2861 (void)
b2fc9f3d
GV
2862{
2863 return make_number (GetThreadLocale ());
2864}
2865
24f981c9 2866static DWORD
b56ceb92 2867int_from_hex (char * s)
ef79fbba
GV
2868{
2869 DWORD val = 0;
2870 static char hex[] = "0123456789abcdefABCDEF";
2871 char * p;
2872
ed3751c8 2873 while (*s && (p = strchr (hex, *s)) != NULL)
ef79fbba
GV
2874 {
2875 unsigned digit = p - hex;
2876 if (digit > 15)
2877 digit -= 6;
2878 val = val * 16 + digit;
2879 s++;
2880 }
2881 return val;
2882}
2883
2884/* We need to build a global list, since the EnumSystemLocale callback
2885 function isn't given a context pointer. */
2886Lisp_Object Vw32_valid_locale_ids;
2887
24f981c9 2888static BOOL CALLBACK
b56ceb92 2889enum_locale_fn (LPTSTR localeNum)
ef79fbba
GV
2890{
2891 DWORD id = int_from_hex (localeNum);
2892 Vw32_valid_locale_ids = Fcons (make_number (id), Vw32_valid_locale_ids);
2893 return TRUE;
2894}
2895
33f09670
JR
2896DEFUN ("w32-get-valid-locale-ids", Fw32_get_valid_locale_ids,
2897 Sw32_get_valid_locale_ids, 0, 0, 0,
2898 doc: /* Return list of all valid Windows locale ids.
2899Each id is a numerical value; use `w32-get-locale-info' to convert to a
2900human-readable form. */)
5842a27b 2901 (void)
ef79fbba
GV
2902{
2903 Vw32_valid_locale_ids = Qnil;
2904
2905 EnumSystemLocales (enum_locale_fn, LCID_SUPPORTED);
2906
2907 Vw32_valid_locale_ids = Fnreverse (Vw32_valid_locale_ids);
2908 return Vw32_valid_locale_ids;
2909}
2910
b2fc9f3d
GV
2911
2912DEFUN ("w32-get-default-locale-id", Fw32_get_default_locale_id, Sw32_get_default_locale_id, 0, 1, 0,
33f09670
JR
2913 doc: /* Return Windows locale id for default locale setting.
2914By default, the system default locale setting is returned; if the optional
2915parameter USERP is non-nil, the user default locale setting is returned.
2916This is a numerical value; use `w32-get-locale-info' to convert to a
2917human-readable form. */)
5842a27b 2918 (Lisp_Object userp)
b2fc9f3d
GV
2919{
2920 if (NILP (userp))
2921 return make_number (GetSystemDefaultLCID ());
2922 return make_number (GetUserDefaultLCID ());
2923}
2924
177c0ea7 2925
b2fc9f3d 2926DEFUN ("w32-set-current-locale", Fw32_set_current_locale, Sw32_set_current_locale, 1, 1, 0,
33f09670
JR
2927 doc: /* Make Windows locale LCID be the current locale setting for Emacs.
2928If successful, the new locale id is returned, otherwise nil. */)
5842a27b 2929 (Lisp_Object lcid)
b2fc9f3d 2930{
b7826503 2931 CHECK_NUMBER (lcid);
b2fc9f3d
GV
2932
2933 if (!IsValidLocale (XINT (lcid), LCID_SUPPORTED))
2934 return Qnil;
2935
2936 if (!SetThreadLocale (XINT (lcid)))
2937 return Qnil;
2938
ef79fbba
GV
2939 /* Need to set input thread locale if present. */
2940 if (dwWindowsThreadId)
2941 /* Reply is not needed. */
2942 PostThreadMessage (dwWindowsThreadId, WM_EMACS_SETLOCALE, XINT (lcid), 0);
2943
b2fc9f3d
GV
2944 return make_number (GetThreadLocale ());
2945}
2946
0eaf5926
GV
2947
2948/* We need to build a global list, since the EnumCodePages callback
2949 function isn't given a context pointer. */
2950Lisp_Object Vw32_valid_codepages;
2951
24f981c9 2952static BOOL CALLBACK
b56ceb92 2953enum_codepage_fn (LPTSTR codepageNum)
0eaf5926
GV
2954{
2955 DWORD id = atoi (codepageNum);
2956 Vw32_valid_codepages = Fcons (make_number (id), Vw32_valid_codepages);
2957 return TRUE;
2958}
2959
33f09670
JR
2960DEFUN ("w32-get-valid-codepages", Fw32_get_valid_codepages,
2961 Sw32_get_valid_codepages, 0, 0, 0,
2962 doc: /* Return list of all valid Windows codepages. */)
5842a27b 2963 (void)
0eaf5926
GV
2964{
2965 Vw32_valid_codepages = Qnil;
2966
2967 EnumSystemCodePages (enum_codepage_fn, CP_SUPPORTED);
2968
2969 Vw32_valid_codepages = Fnreverse (Vw32_valid_codepages);
2970 return Vw32_valid_codepages;
2971}
2972
2973
33f09670
JR
2974DEFUN ("w32-get-console-codepage", Fw32_get_console_codepage,
2975 Sw32_get_console_codepage, 0, 0, 0,
2976 doc: /* Return current Windows codepage for console input. */)
5842a27b 2977 (void)
0eaf5926
GV
2978{
2979 return make_number (GetConsoleCP ());
2980}
2981
177c0ea7 2982
33f09670
JR
2983DEFUN ("w32-set-console-codepage", Fw32_set_console_codepage,
2984 Sw32_set_console_codepage, 1, 1, 0,
62356a1b
EZ
2985 doc: /* Make Windows codepage CP be the codepage for Emacs tty keyboard input.
2986This codepage setting affects keyboard input in tty mode.
33f09670 2987If successful, the new CP is returned, otherwise nil. */)
5842a27b 2988 (Lisp_Object cp)
0eaf5926 2989{
b7826503 2990 CHECK_NUMBER (cp);
0eaf5926
GV
2991
2992 if (!IsValidCodePage (XINT (cp)))
2993 return Qnil;
2994
2995 if (!SetConsoleCP (XINT (cp)))
2996 return Qnil;
2997
2998 return make_number (GetConsoleCP ());
2999}
3000
3001
33f09670
JR
3002DEFUN ("w32-get-console-output-codepage", Fw32_get_console_output_codepage,
3003 Sw32_get_console_output_codepage, 0, 0, 0,
3004 doc: /* Return current Windows codepage for console output. */)
5842a27b 3005 (void)
0eaf5926
GV
3006{
3007 return make_number (GetConsoleOutputCP ());
3008}
3009
177c0ea7 3010
33f09670
JR
3011DEFUN ("w32-set-console-output-codepage", Fw32_set_console_output_codepage,
3012 Sw32_set_console_output_codepage, 1, 1, 0,
62356a1b
EZ
3013 doc: /* Make Windows codepage CP be the codepage for Emacs console output.
3014This codepage setting affects display in tty mode.
33f09670 3015If successful, the new CP is returned, otherwise nil. */)
5842a27b 3016 (Lisp_Object cp)
0eaf5926 3017{
b7826503 3018 CHECK_NUMBER (cp);
0eaf5926
GV
3019
3020 if (!IsValidCodePage (XINT (cp)))
3021 return Qnil;
3022
3023 if (!SetConsoleOutputCP (XINT (cp)))
3024 return Qnil;
3025
3026 return make_number (GetConsoleOutputCP ());
3027}
3028
3029
33f09670
JR
3030DEFUN ("w32-get-codepage-charset", Fw32_get_codepage_charset,
3031 Sw32_get_codepage_charset, 1, 1, 0,
62356a1b 3032 doc: /* Return charset ID corresponding to codepage CP.
33f09670 3033Returns nil if the codepage is not valid. */)
5842a27b 3034 (Lisp_Object cp)
0eaf5926
GV
3035{
3036 CHARSETINFO info;
3037
b7826503 3038 CHECK_NUMBER (cp);
0eaf5926
GV
3039
3040 if (!IsValidCodePage (XINT (cp)))
3041 return Qnil;
3042
3043 if (TranslateCharsetInfo ((DWORD *) XINT (cp), &info, TCI_SRCCODEPAGE))
3044 return make_number (info.ciCharset);
3045
3046 return Qnil;
3047}
3048
3049
33f09670
JR
3050DEFUN ("w32-get-valid-keyboard-layouts", Fw32_get_valid_keyboard_layouts,
3051 Sw32_get_valid_keyboard_layouts, 0, 0, 0,
3052 doc: /* Return list of Windows keyboard languages and layouts.
3053The return value is a list of pairs of language id and layout id. */)
5842a27b 3054 (void)
0eaf5926
GV
3055{
3056 int num_layouts = GetKeyboardLayoutList (0, NULL);
3057 HKL * layouts = (HKL *) alloca (num_layouts * sizeof (HKL));
3058 Lisp_Object obj = Qnil;
3059
3060 if (GetKeyboardLayoutList (num_layouts, layouts) == num_layouts)
3061 {
3062 while (--num_layouts >= 0)
3063 {
3064 DWORD kl = (DWORD) layouts[num_layouts];
3065
3066 obj = Fcons (Fcons (make_number (kl & 0xffff),
3067 make_number ((kl >> 16) & 0xffff)),
3068 obj);
3069 }
3070 }
3071
3072 return obj;
3073}
3074
3075
33f09670
JR
3076DEFUN ("w32-get-keyboard-layout", Fw32_get_keyboard_layout,
3077 Sw32_get_keyboard_layout, 0, 0, 0,
3078 doc: /* Return current Windows keyboard language and layout.
3079The return value is the cons of the language id and the layout id. */)
5842a27b 3080 (void)
0eaf5926
GV
3081{
3082 DWORD kl = (DWORD) GetKeyboardLayout (dwWindowsThreadId);
3083
3084 return Fcons (make_number (kl & 0xffff),
3085 make_number ((kl >> 16) & 0xffff));
3086}
3087
177c0ea7 3088
33f09670
JR
3089DEFUN ("w32-set-keyboard-layout", Fw32_set_keyboard_layout,
3090 Sw32_set_keyboard_layout, 1, 1, 0,
3091 doc: /* Make LAYOUT be the current keyboard layout for Emacs.
3092The keyboard layout setting affects interpretation of keyboard input.
3093If successful, the new layout id is returned, otherwise nil. */)
5842a27b 3094 (Lisp_Object layout)
0eaf5926
GV
3095{
3096 DWORD kl;
3097
b7826503 3098 CHECK_CONS (layout);
f4532092
AI
3099 CHECK_NUMBER_CAR (layout);
3100 CHECK_NUMBER_CDR (layout);
0eaf5926 3101
8e713be6
KR
3102 kl = (XINT (XCAR (layout)) & 0xffff)
3103 | (XINT (XCDR (layout)) << 16);
0eaf5926
GV
3104
3105 /* Synchronize layout with input thread. */
3106 if (dwWindowsThreadId)
3107 {
3108 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_SETKEYBOARDLAYOUT,
3109 (WPARAM) kl, 0))
3110 {
3111 MSG msg;
3112 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
3113
3114 if (msg.wParam == 0)
3115 return Qnil;
3116 }
3117 }
3118 else if (!ActivateKeyboardLayout ((HKL) kl, 0))
3119 return Qnil;
3120
3121 return Fw32_get_keyboard_layout ();
3122}
3123
b2fc9f3d 3124\f
b56ceb92
JB
3125void
3126syms_of_ntproc (void)
93fdf2f8 3127{
51128692
JR
3128 DEFSYM (Qhigh, "high");
3129 DEFSYM (Qlow, "low");
b2fc9f3d 3130
fbd6baed
GV
3131 defsubr (&Sw32_has_winsock);
3132 defsubr (&Sw32_unload_winsock);
7d701334 3133
b2fc9f3d
GV
3134 defsubr (&Sw32_short_file_name);
3135 defsubr (&Sw32_long_file_name);
3136 defsubr (&Sw32_set_process_priority);
3137 defsubr (&Sw32_get_locale_info);
3138 defsubr (&Sw32_get_current_locale_id);
3139 defsubr (&Sw32_get_default_locale_id);
ef79fbba 3140 defsubr (&Sw32_get_valid_locale_ids);
b2fc9f3d 3141 defsubr (&Sw32_set_current_locale);
a11e68d0 3142
0eaf5926
GV
3143 defsubr (&Sw32_get_console_codepage);
3144 defsubr (&Sw32_set_console_codepage);
3145 defsubr (&Sw32_get_console_output_codepage);
3146 defsubr (&Sw32_set_console_output_codepage);
3147 defsubr (&Sw32_get_valid_codepages);
3148 defsubr (&Sw32_get_codepage_charset);
3149
3150 defsubr (&Sw32_get_valid_keyboard_layouts);
3151 defsubr (&Sw32_get_keyboard_layout);
3152 defsubr (&Sw32_set_keyboard_layout);
3153
29208e82 3154 DEFVAR_LISP ("w32-quote-process-args", Vw32_quote_process_args,
33f09670
JR
3155 doc: /* Non-nil enables quoting of process arguments to ensure correct parsing.
3156Because Windows does not directly pass argv arrays to child processes,
3157programs have to reconstruct the argv array by parsing the command
3158line string. For an argument to contain a space, it must be enclosed
3159in double quotes or it will be parsed as multiple arguments.
3160
3161If the value is a character, that character will be used to escape any
3162quote characters that appear, otherwise a suitable escape character
3163will be chosen based on the type of the program. */);
b2fc9f3d 3164 Vw32_quote_process_args = Qt;
817abdf6 3165
fbd6baed 3166 DEFVAR_LISP ("w32-start-process-show-window",
29208e82 3167 Vw32_start_process_show_window,
33f09670
JR
3168 doc: /* When nil, new child processes hide their windows.
3169When non-nil, they show their window in the method of their choice.
3170This variable doesn't affect GUI applications, which will never be hidden. */);
fbd6baed 3171 Vw32_start_process_show_window = Qnil;
0ecf7d36 3172
b2fc9f3d 3173 DEFVAR_LISP ("w32-start-process-share-console",
29208e82 3174 Vw32_start_process_share_console,
33f09670
JR
3175 doc: /* When nil, new child processes are given a new console.
3176When non-nil, they share the Emacs console; this has the limitation of
804d894a 3177allowing only one DOS subprocess to run at a time (whether started directly
33f09670
JR
3178or indirectly by Emacs), and preventing Emacs from cleanly terminating the
3179subprocess group, but may allow Emacs to interrupt a subprocess that doesn't
3180otherwise respond to interrupts from Emacs. */);
b2fc9f3d
GV
3181 Vw32_start_process_share_console = Qnil;
3182
82e7c0a9 3183 DEFVAR_LISP ("w32-start-process-inherit-error-mode",
29208e82 3184 Vw32_start_process_inherit_error_mode,
33f09670
JR
3185 doc: /* When nil, new child processes revert to the default error mode.
3186When non-nil, they inherit their error mode setting from Emacs, which stops
3187them blocking when trying to access unmounted drives etc. */);
82e7c0a9
AI
3188 Vw32_start_process_inherit_error_mode = Qt;
3189
29208e82 3190 DEFVAR_INT ("w32-pipe-read-delay", w32_pipe_read_delay,
33f09670
JR
3191 doc: /* Forced delay before reading subprocess output.
3192This is done to improve the buffering of subprocess output, by
3193avoiding the inefficiency of frequently reading small amounts of data.
3194
3195If positive, the value is the number of milliseconds to sleep before
3196reading the subprocess output. If negative, the magnitude is the number
3197of time slices to wait (effectively boosting the priority of the child
3198process temporarily). A value of zero disables waiting entirely. */);
5322f50b 3199 w32_pipe_read_delay = 50;
0c04091e 3200
29208e82 3201 DEFVAR_LISP ("w32-downcase-file-names", Vw32_downcase_file_names,
33f09670
JR
3202 doc: /* Non-nil means convert all-upper case file names to lower case.
3203This applies when performing completions and file name expansion.
3204Note that the value of this setting also affects remote file names,
3205so you probably don't want to set to non-nil if you use case-sensitive
177c0ea7 3206filesystems via ange-ftp. */);
fbd6baed 3207 Vw32_downcase_file_names = Qnil;
b2fc9f3d
GV
3208
3209#if 0
29208e82 3210 DEFVAR_LISP ("w32-generate-fake-inodes", Vw32_generate_fake_inodes,
33f09670
JR
3211 doc: /* Non-nil means attempt to fake realistic inode values.
3212This works by hashing the truename of files, and should detect
3213aliasing between long and short (8.3 DOS) names, but can have
4c36be58 3214false positives because of hash collisions. Note that determining
33f09670 3215the truename of a file can be slow. */);
b2fc9f3d
GV
3216 Vw32_generate_fake_inodes = Qnil;
3217#endif
3218
29208e82 3219 DEFVAR_LISP ("w32-get-true-file-attributes", Vw32_get_true_file_attributes,
ed4c17bb
EZ
3220 doc: /* Non-nil means determine accurate file attributes in `file-attributes'.
3221This option controls whether to issue additional system calls to determine
017dab84 3222accurate link counts, file type, and ownership information. It is more
ed4c17bb 3223useful for files on NTFS volumes, where hard links and file security are
017dab84 3224supported, than on volumes of the FAT family.
ed4c17bb
EZ
3225
3226Without these system calls, link count will always be reported as 1 and file
3227ownership will be attributed to the current user.
3228The default value `local' means only issue these system calls for files
3229on local fixed drives. A value of nil means never issue them.
3230Any other non-nil value means do this even on remote and removable drives
3231where the performance impact may be noticeable even on modern hardware. */);
2fa4f090 3232 Vw32_get_true_file_attributes = Qlocal;
af621bc3
EZ
3233
3234 staticpro (&Vw32_valid_locale_ids);
3235 staticpro (&Vw32_valid_codepages);
93fdf2f8 3236}
42a7e7f1 3237/* end of w32proc.c */