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