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