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