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