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