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