(define-charset): New args :min-code and :max-code.
[bpt/emacs.git] / src / w32proc.c
CommitLineData
e9e23e23 1/* Process support for GNU Emacs on the Microsoft W32 API.
dbb70029 2 Copyright (C) 1992, 1995, 1999, 2000, 2001 Free Software Foundation, Inc.
6cdfb6e6 3
3b7ad313
EN
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA.
6cdfb6e6
RS
20
21 Drew Bliss Oct 14, 1993
22 Adapted from alarm.c by Tim Fleehart
23*/
24
25#include <stdio.h>
26#include <stdlib.h>
27#include <errno.h>
28#include <io.h>
c519b5e1 29#include <fcntl.h>
6cdfb6e6
RS
30#include <signal.h>
31
c519b5e1 32/* must include CRT headers *before* config.h */
4838e624
PJ
33
34#ifdef HAVE_CONFIG_H
35#include <config.h>
36#endif
37
c519b5e1
GV
38#undef signal
39#undef wait
40#undef spawnve
41#undef select
42#undef kill
43
6cdfb6e6 44#include <windows.h>
42c95ffb
AI
45#ifdef __GNUC__
46/* This definition is missing from mingw32 headers. */
47extern BOOL WINAPI IsValidLocale(LCID, DWORD);
48#endif
6cdfb6e6
RS
49
50#include "lisp.h"
489f9371 51#include "w32.h"
b2fc9f3d 52#include "w32heap.h"
6cdfb6e6 53#include "systime.h"
3d7eead0
GV
54#include "syswait.h"
55#include "process.h"
e7c15bba 56#include "syssignal.h"
ef79fbba 57#include "w32term.h"
3d7eead0 58
93fdf2f8
RS
59/* Control whether spawnve quotes arguments as necessary to ensure
60 correct parsing by child process. Because not all uses of spawnve
61 are careful about constructing argv arrays, we make this behaviour
62 conditional (off by default). */
fbd6baed 63Lisp_Object Vw32_quote_process_args;
93fdf2f8 64
0ecf7d36
RS
65/* Control whether create_child causes the process' window to be
66 hidden. The default is nil. */
fbd6baed 67Lisp_Object Vw32_start_process_show_window;
0ecf7d36 68
b2fc9f3d
GV
69/* Control whether create_child causes the process to inherit Emacs'
70 console window, or be given a new one of its own. The default is
71 nil, to allow multiple DOS programs to run on Win95. Having separate
72 consoles also allows Emacs to cleanly terminate process groups. */
73Lisp_Object Vw32_start_process_share_console;
74
82e7c0a9
AI
75/* Control whether create_child cause the process to inherit Emacs'
76 error mode setting. The default is t, to minimize the possibility of
77 subprocesses blocking when accessing unmounted drives. */
78Lisp_Object Vw32_start_process_inherit_error_mode;
79
817abdf6
KH
80/* Time to sleep before reading from a subprocess output pipe - this
81 avoids the inefficiency of frequently reading small amounts of data.
82 This is primarily necessary for handling DOS processes on Windows 95,
e9e23e23 83 but is useful for W32 processes on both Windows 95 and NT as well. */
fbd6baed 84Lisp_Object Vw32_pipe_read_delay;
817abdf6 85
0c04091e
RS
86/* Control conversion of upper case file names to lower case.
87 nil means no, t means yes. */
fbd6baed 88Lisp_Object Vw32_downcase_file_names;
0c04091e 89
b2fc9f3d
GV
90/* Control whether stat() attempts to generate fake but hopefully
91 "accurate" inode values, by hashing the absolute truenames of files.
92 This should detect aliasing between long and short names, but still
93 allows the possibility of hash collisions. */
94Lisp_Object Vw32_generate_fake_inodes;
95
96/* Control whether stat() attempts to determine file type and link count
97 exactly, at the expense of slower operation. Since true hard links
98 are supported on NTFS volumes, this is only relevant on NT. */
99Lisp_Object Vw32_get_true_file_attributes;
100
101Lisp_Object Qhigh, Qlow;
817abdf6 102
6cdfb6e6 103#ifdef EMACSDEBUG
c519b5e1 104void _DebPrint (const char *fmt, ...)
6cdfb6e6 105{
c519b5e1 106 char buf[1024];
6cdfb6e6
RS
107 va_list args;
108
109 va_start (args, fmt);
110 vsprintf (buf, fmt, args);
111 va_end (args);
112 OutputDebugString (buf);
113}
114#endif
115
c519b5e1 116typedef void (_CALLBACK_ *signal_handler)(int);
6cdfb6e6
RS
117
118/* Signal handlers...SIG_DFL == 0 so this is initialized correctly. */
119static signal_handler sig_handlers[NSIG];
120
121/* Fake signal implementation to record the SIGCHLD handler. */
122signal_handler
c519b5e1 123sys_signal (int sig, signal_handler handler)
6cdfb6e6
RS
124{
125 signal_handler old;
126
127 if (sig != SIGCHLD)
128 {
129 errno = EINVAL;
130 return SIG_ERR;
131 }
132 old = sig_handlers[sig];
133 sig_handlers[sig] = handler;
134 return old;
135}
136
c519b5e1
GV
137/* Defined in <process.h> which conflicts with the local copy */
138#define _P_NOWAIT 1
139
140/* Child process management list. */
141int child_proc_count = 0;
142child_process child_procs[ MAX_CHILDREN ];
143child_process *dead_child = NULL;
144
145DWORD WINAPI reader_thread (void *arg);
146
6cdfb6e6 147/* Find an unused process slot. */
c519b5e1 148child_process *
6cdfb6e6
RS
149new_child (void)
150{
151 child_process *cp;
c519b5e1 152 DWORD id;
6cdfb6e6
RS
153
154 for (cp = child_procs+(child_proc_count-1); cp >= child_procs; cp--)
155 if (!CHILD_ACTIVE (cp))
c519b5e1
GV
156 goto Initialise;
157 if (child_proc_count == MAX_CHILDREN)
158 return NULL;
159 cp = &child_procs[child_proc_count++];
160
161 Initialise:
162 memset (cp, 0, sizeof(*cp));
163 cp->fd = -1;
164 cp->pid = -1;
165 cp->procinfo.hProcess = NULL;
166 cp->status = STATUS_READ_ERROR;
167
168 /* use manual reset event so that select() will function properly */
169 cp->char_avail = CreateEvent (NULL, TRUE, FALSE, NULL);
170 if (cp->char_avail)
171 {
172 cp->char_consumed = CreateEvent (NULL, FALSE, FALSE, NULL);
173 if (cp->char_consumed)
174 {
175 cp->thrd = CreateThread (NULL, 1024, reader_thread, cp, 0, &id);
176 if (cp->thrd)
177 return cp;
178 }
179 }
180 delete_child (cp);
181 return NULL;
182}
183
184void
185delete_child (child_process *cp)
186{
187 int i;
188
189 /* Should not be deleting a child that is still needed. */
190 for (i = 0; i < MAXDESC; i++)
191 if (fd_info[i].cp == cp)
192 abort ();
193
194 if (!CHILD_ACTIVE (cp))
195 return;
196
197 /* reap thread if necessary */
198 if (cp->thrd)
199 {
200 DWORD rc;
201
202 if (GetExitCodeThread (cp->thrd, &rc) && rc == STILL_ACTIVE)
203 {
204 /* let the thread exit cleanly if possible */
205 cp->status = STATUS_READ_ERROR;
206 SetEvent (cp->char_consumed);
207 if (WaitForSingleObject (cp->thrd, 1000) != WAIT_OBJECT_0)
208 {
209 DebPrint (("delete_child.WaitForSingleObject (thread) failed "
210 "with %lu for fd %ld\n", GetLastError (), cp->fd));
211 TerminateThread (cp->thrd, 0);
212 }
213 }
214 CloseHandle (cp->thrd);
215 cp->thrd = NULL;
216 }
217 if (cp->char_avail)
218 {
219 CloseHandle (cp->char_avail);
220 cp->char_avail = NULL;
221 }
222 if (cp->char_consumed)
223 {
224 CloseHandle (cp->char_consumed);
225 cp->char_consumed = NULL;
226 }
227
228 /* update child_proc_count (highest numbered slot in use plus one) */
229 if (cp == child_procs + child_proc_count - 1)
230 {
231 for (i = child_proc_count-1; i >= 0; i--)
232 if (CHILD_ACTIVE (&child_procs[i]))
233 {
234 child_proc_count = i + 1;
235 break;
236 }
237 }
238 if (i < 0)
239 child_proc_count = 0;
6cdfb6e6
RS
240}
241
242/* Find a child by pid. */
243static child_process *
244find_child_pid (DWORD pid)
245{
246 child_process *cp;
c519b5e1 247
6cdfb6e6
RS
248 for (cp = child_procs+(child_proc_count-1); cp >= child_procs; cp--)
249 if (CHILD_ACTIVE (cp) && pid == cp->pid)
250 return cp;
251 return NULL;
252}
253
6cdfb6e6 254
c519b5e1
GV
255/* Thread proc for child process and socket reader threads. Each thread
256 is normally blocked until woken by select() to check for input by
257 reading one char. When the read completes, char_avail is signalled
258 to wake up the select emulator and the thread blocks itself again. */
6cdfb6e6
RS
259DWORD WINAPI
260reader_thread (void *arg)
261{
262 child_process *cp;
263
264 /* Our identity */
265 cp = (child_process *)arg;
266
267 /* We have to wait for the go-ahead before we can start */
b2fc9f3d
GV
268 if (cp == NULL
269 || WaitForSingleObject (cp->char_consumed, INFINITE) != WAIT_OBJECT_0)
c519b5e1
GV
270 return 1;
271
6cdfb6e6
RS
272 for (;;)
273 {
c519b5e1
GV
274 int rc;
275
276 rc = _sys_read_ahead (cp->fd);
277
278 /* The name char_avail is a misnomer - it really just means the
279 read-ahead has completed, whether successfully or not. */
6cdfb6e6
RS
280 if (!SetEvent (cp->char_avail))
281 {
282 DebPrint (("reader_thread.SetEvent failed with %lu for fd %ld\n",
283 GetLastError (), cp->fd));
c519b5e1
GV
284 return 1;
285 }
286
287 if (rc == STATUS_READ_ERROR)
288 return 1;
6cdfb6e6
RS
289
290 /* If the read died, the child has died so let the thread die */
c519b5e1 291 if (rc == STATUS_READ_FAILED)
6cdfb6e6
RS
292 break;
293
294 /* Wait until our input is acknowledged before reading again */
295 if (WaitForSingleObject (cp->char_consumed, INFINITE) != WAIT_OBJECT_0)
296 {
297 DebPrint (("reader_thread.WaitForSingleObject failed with "
298 "%lu for fd %ld\n", GetLastError (), cp->fd));
299 break;
300 }
301 }
302 return 0;
303}
304
b2fc9f3d
GV
305/* To avoid Emacs changing directory, we just record here the directory
306 the new process should start in. This is set just before calling
307 sys_spawnve, and is not generally valid at any other time. */
308static char * process_dir;
309
6cdfb6e6 310static BOOL
a55a5f3c 311create_child (char *exe, char *cmdline, char *env, int is_gui_app,
c519b5e1 312 int * pPid, child_process *cp)
6cdfb6e6 313{
6cdfb6e6
RS
314 STARTUPINFO start;
315 SECURITY_ATTRIBUTES sec_attrs;
42c95ffb 316#if 0
6cdfb6e6 317 SECURITY_DESCRIPTOR sec_desc;
42c95ffb 318#endif
82e7c0a9 319 DWORD flags;
b2fc9f3d 320 char dir[ MAXPATHLEN ];
6cdfb6e6 321
c519b5e1 322 if (cp == NULL) abort ();
6cdfb6e6
RS
323
324 memset (&start, 0, sizeof (start));
325 start.cb = sizeof (start);
326
58d4e829 327#ifdef HAVE_NTGUI
a55a5f3c 328 if (NILP (Vw32_start_process_show_window) && !is_gui_app)
0ecf7d36
RS
329 start.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
330 else
331 start.dwFlags = STARTF_USESTDHANDLES;
58d4e829
GV
332 start.wShowWindow = SW_HIDE;
333
334 start.hStdInput = GetStdHandle (STD_INPUT_HANDLE);
335 start.hStdOutput = GetStdHandle (STD_OUTPUT_HANDLE);
336 start.hStdError = GetStdHandle (STD_ERROR_HANDLE);
337#endif /* HAVE_NTGUI */
338
42c95ffb 339#if 0
6cdfb6e6
RS
340 /* Explicitly specify no security */
341 if (!InitializeSecurityDescriptor (&sec_desc, SECURITY_DESCRIPTOR_REVISION))
c519b5e1 342 goto EH_Fail;
6cdfb6e6 343 if (!SetSecurityDescriptorDacl (&sec_desc, TRUE, NULL, FALSE))
c519b5e1 344 goto EH_Fail;
42c95ffb 345#endif
6cdfb6e6 346 sec_attrs.nLength = sizeof (sec_attrs);
42c95ffb 347 sec_attrs.lpSecurityDescriptor = NULL /* &sec_desc */;
6cdfb6e6
RS
348 sec_attrs.bInheritHandle = FALSE;
349
b2fc9f3d
GV
350 strcpy (dir, process_dir);
351 unixtodos_filename (dir);
82e7c0a9
AI
352
353 flags = (!NILP (Vw32_start_process_share_console)
354 ? CREATE_NEW_PROCESS_GROUP
355 : CREATE_NEW_CONSOLE);
356 if (NILP (Vw32_start_process_inherit_error_mode))
357 flags |= CREATE_DEFAULT_ERROR_MODE;
6cdfb6e6 358 if (!CreateProcess (exe, cmdline, &sec_attrs, NULL, TRUE,
82e7c0a9 359 flags, env, dir, &start, &cp->procinfo))
c519b5e1
GV
360 goto EH_Fail;
361
362 cp->pid = (int) cp->procinfo.dwProcessId;
363
364 /* Hack for Windows 95, which assigns large (ie negative) pids */
365 if (cp->pid < 0)
366 cp->pid = -cp->pid;
367
368 /* pid must fit in a Lisp_Int */
369 cp->pid = (cp->pid & VALMASK);
370
c519b5e1 371 *pPid = cp->pid;
b2fc9f3d 372
6cdfb6e6 373 return TRUE;
b2fc9f3d 374
6cdfb6e6 375 EH_Fail:
c519b5e1 376 DebPrint (("create_child.CreateProcess failed: %ld\n", GetLastError()););
6cdfb6e6
RS
377 return FALSE;
378}
379
380/* create_child doesn't know what emacs' file handle will be for waiting
381 on output from the child, so we need to make this additional call
382 to register the handle with the process
383 This way the select emulator knows how to match file handles with
384 entries in child_procs. */
385void
386register_child (int pid, int fd)
387{
388 child_process *cp;
389
390 cp = find_child_pid (pid);
391 if (cp == NULL)
392 {
393 DebPrint (("register_child unable to find pid %lu\n", pid));
394 return;
395 }
396
397#ifdef FULL_DEBUG
398 DebPrint (("register_child registered fd %d with pid %lu\n", fd, pid));
399#endif
400
401 cp->fd = fd;
6cdfb6e6 402
c519b5e1
GV
403 /* thread is initially blocked until select is called; set status so
404 that select will release thread */
405 cp->status = STATUS_READ_ACKNOWLEDGED;
406
407 /* attach child_process to fd_info */
408 if (fd_info[fd].cp != NULL)
6cdfb6e6 409 {
c519b5e1
GV
410 DebPrint (("register_child: fd_info[%d] apparently in use!\n", fd));
411 abort ();
6cdfb6e6 412 }
c519b5e1
GV
413
414 fd_info[fd].cp = cp;
6cdfb6e6
RS
415}
416
417/* When a process dies its pipe will break so the reader thread will
418 signal failure to the select emulator.
419 The select emulator then calls this routine to clean up.
420 Since the thread signaled failure we can assume it is exiting. */
421static void
c519b5e1 422reap_subprocess (child_process *cp)
6cdfb6e6 423{
c519b5e1 424 if (cp->procinfo.hProcess)
6cdfb6e6 425 {
c519b5e1 426 /* Reap the process */
b2fc9f3d
GV
427#ifdef FULL_DEBUG
428 /* Process should have already died before we are called. */
429 if (WaitForSingleObject (cp->procinfo.hProcess, 0) != WAIT_OBJECT_0)
430 DebPrint (("reap_subprocess: child fpr fd %d has not died yet!", cp->fd));
431#endif
c519b5e1
GV
432 CloseHandle (cp->procinfo.hProcess);
433 cp->procinfo.hProcess = NULL;
434 CloseHandle (cp->procinfo.hThread);
435 cp->procinfo.hThread = NULL;
6cdfb6e6 436 }
c519b5e1
GV
437
438 /* For asynchronous children, the child_proc resources will be freed
439 when the last pipe read descriptor is closed; for synchronous
440 children, we must explicitly free the resources now because
441 register_child has not been called. */
442 if (cp->fd == -1)
443 delete_child (cp);
6cdfb6e6
RS
444}
445
446/* Wait for any of our existing child processes to die
447 When it does, close its handle
448 Return the pid and fill in the status if non-NULL. */
22759c72 449
6cdfb6e6 450int
c519b5e1 451sys_wait (int *status)
6cdfb6e6
RS
452{
453 DWORD active, retval;
454 int nh;
c519b5e1 455 int pid;
6cdfb6e6
RS
456 child_process *cp, *cps[MAX_CHILDREN];
457 HANDLE wait_hnd[MAX_CHILDREN];
458
459 nh = 0;
460 if (dead_child != NULL)
461 {
462 /* We want to wait for a specific child */
c519b5e1 463 wait_hnd[nh] = dead_child->procinfo.hProcess;
6cdfb6e6 464 cps[nh] = dead_child;
c519b5e1 465 if (!wait_hnd[nh]) abort ();
6cdfb6e6 466 nh++;
b2fc9f3d
GV
467 active = 0;
468 goto get_result;
6cdfb6e6
RS
469 }
470 else
471 {
472 for (cp = child_procs+(child_proc_count-1); cp >= child_procs; cp--)
c519b5e1
GV
473 /* some child_procs might be sockets; ignore them */
474 if (CHILD_ACTIVE (cp) && cp->procinfo.hProcess)
6cdfb6e6 475 {
c519b5e1 476 wait_hnd[nh] = cp->procinfo.hProcess;
6cdfb6e6
RS
477 cps[nh] = cp;
478 nh++;
479 }
480 }
481
482 if (nh == 0)
483 {
484 /* Nothing to wait on, so fail */
485 errno = ECHILD;
486 return -1;
487 }
b2fc9f3d
GV
488
489 do
490 {
491 /* Check for quit about once a second. */
492 QUIT;
493 active = WaitForMultipleObjects (nh, wait_hnd, FALSE, 1000);
494 } while (active == WAIT_TIMEOUT);
495
6cdfb6e6
RS
496 if (active == WAIT_FAILED)
497 {
498 errno = EBADF;
499 return -1;
500 }
b2fc9f3d
GV
501 else if (active >= WAIT_OBJECT_0
502 && active < WAIT_OBJECT_0+MAXIMUM_WAIT_OBJECTS)
6cdfb6e6
RS
503 {
504 active -= WAIT_OBJECT_0;
505 }
b2fc9f3d
GV
506 else if (active >= WAIT_ABANDONED_0
507 && active < WAIT_ABANDONED_0+MAXIMUM_WAIT_OBJECTS)
6cdfb6e6
RS
508 {
509 active -= WAIT_ABANDONED_0;
510 }
b2fc9f3d
GV
511 else
512 abort ();
513
514get_result:
6cdfb6e6
RS
515 if (!GetExitCodeProcess (wait_hnd[active], &retval))
516 {
517 DebPrint (("Wait.GetExitCodeProcess failed with %lu\n",
518 GetLastError ()));
519 retval = 1;
520 }
521 if (retval == STILL_ACTIVE)
522 {
523 /* Should never happen */
524 DebPrint (("Wait.WaitForMultipleObjects returned an active process\n"));
525 errno = EINVAL;
526 return -1;
527 }
bc69349b
RS
528
529 /* Massage the exit code from the process to match the format expected
8e6208c5 530 by the WIFSTOPPED et al macros in syswait.h. Only WIFSIGNALED and
bc69349b
RS
531 WIFEXITED are supported; WIFSTOPPED doesn't make sense under NT. */
532
533 if (retval == STATUS_CONTROL_C_EXIT)
534 retval = SIGINT;
535 else
536 retval <<= 8;
c519b5e1 537
6cdfb6e6 538 cp = cps[active];
c519b5e1
GV
539 pid = cp->pid;
540#ifdef FULL_DEBUG
541 DebPrint (("Wait signaled with process pid %d\n", cp->pid));
542#endif
22759c72 543
6cdfb6e6
RS
544 if (status)
545 {
22759c72
KH
546 *status = retval;
547 }
548 else if (synch_process_alive)
549 {
550 synch_process_alive = 0;
22759c72 551
3d7eead0
GV
552 /* Report the status of the synchronous process. */
553 if (WIFEXITED (retval))
554 synch_process_retcode = WRETCODE (retval);
555 else if (WIFSIGNALED (retval))
556 {
557 int code = WTERMSIG (retval);
68c45bf0
PE
558 char *signame;
559
ca9c0567 560 synchronize_system_messages_locale ();
68c45bf0
PE
561 signame = strsignal (code);
562
3d7eead0
GV
563 if (signame == 0)
564 signame = "unknown";
565
566 synch_process_death = signame;
567 }
c519b5e1
GV
568
569 reap_subprocess (cp);
6cdfb6e6 570 }
b2fc9f3d
GV
571
572 reap_subprocess (cp);
6cdfb6e6 573
c519b5e1 574 return pid;
6cdfb6e6
RS
575}
576
b2fc9f3d 577void
a55a5f3c 578w32_executable_type (char * filename, int * is_dos_app, int * is_cygnus_app, int * is_gui_app)
817abdf6 579{
b2fc9f3d
GV
580 file_data executable;
581 char * p;
582
583 /* Default values in case we can't tell for sure. */
584 *is_dos_app = FALSE;
585 *is_cygnus_app = FALSE;
a55a5f3c 586 *is_gui_app = FALSE;
b2fc9f3d
GV
587
588 if (!open_input_file (&executable, filename))
589 return;
817abdf6 590
b2fc9f3d
GV
591 p = strrchr (filename, '.');
592
593 /* We can only identify DOS .com programs from the extension. */
594 if (p && stricmp (p, ".com") == 0)
595 *is_dos_app = TRUE;
596 else if (p && (stricmp (p, ".bat") == 0
597 || stricmp (p, ".cmd") == 0))
598 {
599 /* A DOS shell script - it appears that CreateProcess is happy to
600 accept this (somewhat surprisingly); presumably it looks at
601 COMSPEC to determine what executable to actually invoke.
602 Therefore, we have to do the same here as well. */
603 /* Actually, I think it uses the program association for that
604 extension, which is defined in the registry. */
605 p = egetenv ("COMSPEC");
606 if (p)
a55a5f3c 607 w32_executable_type (p, is_dos_app, is_cygnus_app, is_gui_app);
b2fc9f3d
GV
608 }
609 else
817abdf6 610 {
b2fc9f3d
GV
611 /* Look for DOS .exe signature - if found, we must also check that
612 it isn't really a 16- or 32-bit Windows exe, since both formats
613 start with a DOS program stub. Note that 16-bit Windows
614 executables use the OS/2 1.x format. */
817abdf6 615
b2fc9f3d
GV
616 IMAGE_DOS_HEADER * dos_header;
617 IMAGE_NT_HEADERS * nt_header;
618
619 dos_header = (PIMAGE_DOS_HEADER) executable.file_base;
620 if (dos_header->e_magic != IMAGE_DOS_SIGNATURE)
621 goto unwind;
622
623 nt_header = (PIMAGE_NT_HEADERS) ((char *) dos_header + dos_header->e_lfanew);
624
ef79fbba 625 if ((char *) nt_header > (char *) dos_header + executable.size)
817abdf6 626 {
b2fc9f3d
GV
627 /* Some dos headers (pkunzip) have bogus e_lfanew fields. */
628 *is_dos_app = TRUE;
629 }
630 else if (nt_header->Signature != IMAGE_NT_SIGNATURE
631 && LOWORD (nt_header->Signature) != IMAGE_OS2_SIGNATURE)
632 {
633 *is_dos_app = TRUE;
634 }
635 else if (nt_header->Signature == IMAGE_NT_SIGNATURE)
636 {
637 /* Look for cygwin.dll in DLL import list. */
638 IMAGE_DATA_DIRECTORY import_dir =
639 nt_header->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT];
640 IMAGE_IMPORT_DESCRIPTOR * imports;
641 IMAGE_SECTION_HEADER * section;
642
643 section = rva_to_section (import_dir.VirtualAddress, nt_header);
644 imports = RVA_TO_PTR (import_dir.VirtualAddress, section, executable);
645
646 for ( ; imports->Name; imports++)
647 {
648 char * dllname = RVA_TO_PTR (imports->Name, section, executable);
649
a7325b56
AI
650 /* The exact name of the cygwin dll has changed with
651 various releases, but hopefully this will be reasonably
652 future proof. */
653 if (strncmp (dllname, "cygwin", 6) == 0)
b2fc9f3d
GV
654 {
655 *is_cygnus_app = TRUE;
656 break;
657 }
658 }
a55a5f3c
AI
659
660 /* Check whether app is marked as a console or windowed (aka
661 GUI) app. Accept Posix and OS2 subsytem apps as console
662 apps. */
663 *is_gui_app = (nt_header->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI);
b2fc9f3d 664 }
817abdf6 665 }
b2fc9f3d
GV
666
667unwind:
668 close_file_data (&executable);
817abdf6
KH
669}
670
d9709fde 671int
42c95ffb 672compare_env (const void *strp1, const void *strp2)
d9709fde 673{
42c95ffb 674 const char *str1 = *(const char **)strp1, *str2 = *(const char **)strp2;
d9709fde
GV
675
676 while (*str1 && *str2 && *str1 != '=' && *str2 != '=')
677 {
11c22fff
AI
678 /* Sort order in command.com/cmd.exe is based on uppercasing
679 names, so do the same here. */
680 if (toupper (*str1) > toupper (*str2))
d9709fde 681 return 1;
11c22fff 682 else if (toupper (*str1) < toupper (*str2))
d9709fde
GV
683 return -1;
684 str1++, str2++;
685 }
686
687 if (*str1 == '=' && *str2 == '=')
688 return 0;
689 else if (*str1 == '=')
690 return -1;
691 else
692 return 1;
693}
694
695void
696merge_and_sort_env (char **envp1, char **envp2, char **new_envp)
697{
698 char **optr, **nptr;
699 int num;
700
701 nptr = new_envp;
702 optr = envp1;
703 while (*optr)
704 *nptr++ = *optr++;
705 num = optr - envp1;
706
707 optr = envp2;
708 while (*optr)
709 *nptr++ = *optr++;
710 num += optr - envp2;
711
712 qsort (new_envp, num, sizeof (char *), compare_env);
713
714 *nptr = NULL;
715}
6cdfb6e6
RS
716
717/* When a new child process is created we need to register it in our list,
718 so intercept spawn requests. */
719int
c519b5e1 720sys_spawnve (int mode, char *cmdname, char **argv, char **envp)
6cdfb6e6 721{
0a4de642 722 Lisp_Object program, full;
6cdfb6e6 723 char *cmdline, *env, *parg, **targ;
d9709fde 724 int arglen, numenv;
c519b5e1
GV
725 int pid;
726 child_process *cp;
a55a5f3c 727 int is_dos_app, is_cygnus_app, is_gui_app;
b2fc9f3d
GV
728 int do_quoting = 0;
729 char escape_char;
d9709fde
GV
730 /* We pass our process ID to our children by setting up an environment
731 variable in their environment. */
732 char ppid_env_var_buffer[64];
733 char *extra_env[] = {ppid_env_var_buffer, NULL};
dbb70029 734 char *sepchars = " \t";
d9709fde 735
c519b5e1
GV
736 /* We don't care about the other modes */
737 if (mode != _P_NOWAIT)
738 {
739 errno = EINVAL;
740 return -1;
741 }
0a4de642
RS
742
743 /* Handle executable names without an executable suffix. */
744 program = make_string (cmdname, strlen (cmdname));
745 if (NILP (Ffile_executable_p (program)))
746 {
747 struct gcpro gcpro1;
748
749 full = Qnil;
750 GCPRO1 (program);
c0ec53ad 751 openp (Vexec_path, program, Vexec_suffixes, &full, 1);
0a4de642
RS
752 UNGCPRO;
753 if (NILP (full))
754 {
755 errno = EINVAL;
756 return -1;
757 }
b2fc9f3d 758 program = full;
0a4de642
RS
759 }
760
b2fc9f3d
GV
761 /* make sure argv[0] and cmdname are both in DOS format */
762 cmdname = XSTRING (program)->data;
c519b5e1
GV
763 unixtodos_filename (cmdname);
764 argv[0] = cmdname;
817abdf6 765
ef79fbba 766 /* Determine whether program is a 16-bit DOS executable, or a w32
b2fc9f3d
GV
767 executable that is implicitly linked to the Cygnus dll (implying it
768 was compiled with the Cygnus GNU toolchain and hence relies on
769 cygwin.dll to parse the command line - we use this to decide how to
a55a5f3c
AI
770 escape quote chars in command line args that must be quoted).
771
772 Also determine whether it is a GUI app, so that we don't hide its
773 initial window unless specifically requested. */
774 w32_executable_type (cmdname, &is_dos_app, &is_cygnus_app, &is_gui_app);
b2fc9f3d
GV
775
776 /* On Windows 95, if cmdname is a DOS app, we invoke a helper
777 application to start it by specifying the helper app as cmdname,
778 while leaving the real app name as argv[0]. */
779 if (is_dos_app)
817abdf6 780 {
b2fc9f3d
GV
781 cmdname = alloca (MAXPATHLEN);
782 if (egetenv ("CMDPROXY"))
783 strcpy (cmdname, egetenv ("CMDPROXY"));
784 else
785 {
786 strcpy (cmdname, XSTRING (Vinvocation_directory)->data);
787 strcat (cmdname, "cmdproxy.exe");
788 }
789 unixtodos_filename (cmdname);
817abdf6 790 }
6cdfb6e6
RS
791
792 /* we have to do some conjuring here to put argv and envp into the
793 form CreateProcess wants... argv needs to be a space separated/null
794 terminated list of parameters, and envp is a null
795 separated/double-null terminated list of parameters.
c519b5e1 796
b2fc9f3d
GV
797 Additionally, zero-length args and args containing whitespace or
798 quote chars need to be wrapped in double quotes - for this to work,
799 embedded quotes need to be escaped as well. The aim is to ensure
800 the child process reconstructs the argv array we start with
801 exactly, so we treat quotes at the beginning and end of arguments
802 as embedded quotes.
803
ef79fbba 804 The w32 GNU-based library from Cygnus doubles quotes to escape
b2fc9f3d
GV
805 them, while MSVC uses backslash for escaping. (Actually the MSVC
806 startup code does attempt to recognise doubled quotes and accept
807 them, but gets it wrong and ends up requiring three quotes to get a
808 single embedded quote!) So by default we decide whether to use
809 quote or backslash as the escape character based on whether the
810 binary is apparently a Cygnus compiled app.
811
812 Note that using backslash to escape embedded quotes requires
813 additional special handling if an embedded quote is already
814 preceeded by backslash, or if an arg requiring quoting ends with
815 backslash. In such cases, the run of escape characters needs to be
816 doubled. For consistency, we apply this special handling as long
817 as the escape character is not quote.
818
819 Since we have no idea how large argv and envp are likely to be we
820 figure out list lengths on the fly and allocate them. */
821
822 if (!NILP (Vw32_quote_process_args))
823 {
824 do_quoting = 1;
825 /* Override escape char by binding w32-quote-process-args to
826 desired character, or use t for auto-selection. */
827 if (INTEGERP (Vw32_quote_process_args))
828 escape_char = XINT (Vw32_quote_process_args);
829 else
830 escape_char = is_cygnus_app ? '"' : '\\';
831 }
6cdfb6e6 832
dbb70029
GM
833 /* Cygwin apps needs quoting a bit more often */
834 if (escape_char == '"')
835 sepchars = "\r\n\t\f '";
836
6cdfb6e6
RS
837 /* do argv... */
838 arglen = 0;
839 targ = argv;
840 while (*targ)
841 {
c519b5e1 842 char * p = *targ;
b2fc9f3d
GV
843 int need_quotes = 0;
844 int escape_char_run = 0;
c519b5e1
GV
845
846 if (*p == 0)
b2fc9f3d
GV
847 need_quotes = 1;
848 for ( ; *p; p++)
849 {
dbb70029
GM
850 if (escape_char == '"' && *p == '\\')
851 /* If it's a Cygwin app, \ needs to be escaped. */
852 arglen++;
853 else if (*p == '"')
b2fc9f3d
GV
854 {
855 /* allow for embedded quotes to be escaped */
856 arglen++;
857 need_quotes = 1;
858 /* handle the case where the embedded quote is already escaped */
859 if (escape_char_run > 0)
860 {
861 /* To preserve the arg exactly, we need to double the
862 preceding escape characters (plus adding one to
863 escape the quote character itself). */
864 arglen += escape_char_run;
865 }
866 }
dbb70029 867 else if (strchr (sepchars, *p) != NULL)
b2fc9f3d
GV
868 {
869 need_quotes = 1;
870 }
871
872 if (*p == escape_char && escape_char != '"')
873 escape_char_run++;
874 else
875 escape_char_run = 0;
876 }
877 if (need_quotes)
878 {
879 arglen += 2;
880 /* handle the case where the arg ends with an escape char - we
881 must not let the enclosing quote be escaped. */
882 if (escape_char_run > 0)
883 arglen += escape_char_run;
884 }
6cdfb6e6
RS
885 arglen += strlen (*targ++) + 1;
886 }
c519b5e1 887 cmdline = alloca (arglen);
6cdfb6e6
RS
888 targ = argv;
889 parg = cmdline;
890 while (*targ)
891 {
c519b5e1 892 char * p = *targ;
b2fc9f3d 893 int need_quotes = 0;
c519b5e1
GV
894
895 if (*p == 0)
b2fc9f3d 896 need_quotes = 1;
93fdf2f8 897
b2fc9f3d 898 if (do_quoting)
93fdf2f8 899 {
93fdf2f8 900 for ( ; *p; p++)
dbb70029 901 if ((strchr (sepchars, *p) != NULL) || *p == '"')
b2fc9f3d 902 need_quotes = 1;
93fdf2f8 903 }
b2fc9f3d 904 if (need_quotes)
c519b5e1 905 {
b2fc9f3d 906 int escape_char_run = 0;
c519b5e1
GV
907 char * first;
908 char * last;
909
910 p = *targ;
911 first = p;
912 last = p + strlen (p) - 1;
913 *parg++ = '"';
b2fc9f3d
GV
914#if 0
915 /* This version does not escape quotes if they occur at the
916 beginning or end of the arg - this could lead to incorrect
917 behaviour when the arg itself represents a command line
918 containing quoted args. I believe this was originally done
919 as a hack to make some things work, before
920 `w32-quote-process-args' was added. */
c519b5e1
GV
921 while (*p)
922 {
923 if (*p == '"' && p > first && p < last)
b2fc9f3d 924 *parg++ = escape_char; /* escape embedded quotes */
c519b5e1
GV
925 *parg++ = *p++;
926 }
b2fc9f3d
GV
927#else
928 for ( ; *p; p++)
929 {
930 if (*p == '"')
931 {
932 /* double preceding escape chars if any */
933 while (escape_char_run > 0)
934 {
935 *parg++ = escape_char;
936 escape_char_run--;
937 }
938 /* escape all quote chars, even at beginning or end */
939 *parg++ = escape_char;
940 }
dbb70029
GM
941 else if (escape_char == '"' && *p == '\\')
942 *parg++ = '\\';
b2fc9f3d
GV
943 *parg++ = *p;
944
945 if (*p == escape_char && escape_char != '"')
946 escape_char_run++;
947 else
948 escape_char_run = 0;
949 }
950 /* double escape chars before enclosing quote */
951 while (escape_char_run > 0)
952 {
953 *parg++ = escape_char;
954 escape_char_run--;
955 }
956#endif
c519b5e1
GV
957 *parg++ = '"';
958 }
959 else
960 {
961 strcpy (parg, *targ);
962 parg += strlen (*targ);
963 }
6cdfb6e6 964 *parg++ = ' ';
c519b5e1 965 targ++;
6cdfb6e6
RS
966 }
967 *--parg = '\0';
968
969 /* and envp... */
970 arglen = 1;
971 targ = envp;
d9709fde 972 numenv = 1; /* for end null */
6cdfb6e6
RS
973 while (*targ)
974 {
975 arglen += strlen (*targ++) + 1;
d9709fde 976 numenv++;
6cdfb6e6 977 }
d9709fde 978 /* extra env vars... */
a5b56dcd 979 sprintf (ppid_env_var_buffer, "EM_PARENT_PROCESS_ID=%d",
6cdfb6e6
RS
980 GetCurrentProcessId ());
981 arglen += strlen (ppid_env_var_buffer) + 1;
d9709fde 982 numenv++;
6cdfb6e6 983
d9709fde
GV
984 /* merge env passed in and extra env into one, and sort it. */
985 targ = (char **) alloca (numenv * sizeof (char *));
986 merge_and_sort_env (envp, extra_env, targ);
987
988 /* concatenate env entries. */
c519b5e1 989 env = alloca (arglen);
6cdfb6e6
RS
990 parg = env;
991 while (*targ)
992 {
993 strcpy (parg, *targ);
994 parg += strlen (*targ++);
995 *parg++ = '\0';
996 }
6cdfb6e6
RS
997 *parg++ = '\0';
998 *parg = '\0';
c519b5e1
GV
999
1000 cp = new_child ();
1001 if (cp == NULL)
1002 {
1003 errno = EAGAIN;
1004 return -1;
1005 }
6cdfb6e6
RS
1006
1007 /* Now create the process. */
a55a5f3c 1008 if (!create_child (cmdname, cmdline, env, is_gui_app, &pid, cp))
6cdfb6e6 1009 {
c519b5e1 1010 delete_child (cp);
6cdfb6e6 1011 errno = ENOEXEC;
c519b5e1 1012 return -1;
6cdfb6e6
RS
1013 }
1014
c519b5e1 1015 return pid;
6cdfb6e6
RS
1016}
1017
1018/* Emulate the select call
1019 Wait for available input on any of the given rfds, or timeout if
1020 a timeout is given and no input is detected
b2fc9f3d
GV
1021 wfds and efds are not supported and must be NULL.
1022
1023 For simplicity, we detect the death of child processes here and
1024 synchronously call the SIGCHLD handler. Since it is possible for
1025 children to be created without a corresponding pipe handle from which
1026 to read output, we wait separately on the process handles as well as
1027 the char_avail events for each process pipe. We only call
86143765
RS
1028 wait/reap_process when the process actually terminates.
1029
1030 To reduce the number of places in which Emacs can be hung such that
1031 C-g is not able to interrupt it, we always wait on interrupt_handle
1032 (which is signalled by the input thread when C-g is detected). If we
1033 detect that we were woken up by C-g, we return -1 with errno set to
1034 EINTR as on Unix. */
6cdfb6e6
RS
1035
1036/* From ntterm.c */
1037extern HANDLE keyboard_handle;
86143765
RS
1038
1039/* From w32xfns.c */
1040extern HANDLE interrupt_handle;
1041
6cdfb6e6
RS
1042/* From process.c */
1043extern int proc_buffered_char[];
1044
1045int
22759c72
KH
1046sys_select (int nfds, SELECT_TYPE *rfds, SELECT_TYPE *wfds, SELECT_TYPE *efds,
1047 EMACS_TIME *timeout)
6cdfb6e6
RS
1048{
1049 SELECT_TYPE orfds;
b2fc9f3d
GV
1050 DWORD timeout_ms, start_time;
1051 int i, nh, nc, nr;
6cdfb6e6 1052 DWORD active;
b2fc9f3d
GV
1053 child_process *cp, *cps[MAX_CHILDREN];
1054 HANDLE wait_hnd[MAXDESC + MAX_CHILDREN];
c519b5e1 1055 int fdindex[MAXDESC]; /* mapping from wait handles back to descriptors */
6cdfb6e6 1056
b2fc9f3d
GV
1057 timeout_ms = timeout ? (timeout->tv_sec * 1000 + timeout->tv_usec / 1000) : INFINITE;
1058
6cdfb6e6
RS
1059 /* If the descriptor sets are NULL but timeout isn't, then just Sleep. */
1060 if (rfds == NULL && wfds == NULL && efds == NULL && timeout != NULL)
1061 {
b2fc9f3d 1062 Sleep (timeout_ms);
6cdfb6e6
RS
1063 return 0;
1064 }
1065
1066 /* Otherwise, we only handle rfds, so fail otherwise. */
1067 if (rfds == NULL || wfds != NULL || efds != NULL)
1068 {
1069 errno = EINVAL;
1070 return -1;
1071 }
1072
1073 orfds = *rfds;
1074 FD_ZERO (rfds);
1075 nr = 0;
86143765
RS
1076
1077 /* Always wait on interrupt_handle, to detect C-g (quit). */
1078 wait_hnd[0] = interrupt_handle;
1079 fdindex[0] = -1;
6cdfb6e6 1080
b2fc9f3d 1081 /* Build a list of pipe handles to wait on. */
86143765 1082 nh = 1;
6cdfb6e6
RS
1083 for (i = 0; i < nfds; i++)
1084 if (FD_ISSET (i, &orfds))
1085 {
1086 if (i == 0)
1087 {
c519b5e1
GV
1088 if (keyboard_handle)
1089 {
1090 /* Handle stdin specially */
1091 wait_hnd[nh] = keyboard_handle;
1092 fdindex[nh] = i;
1093 nh++;
1094 }
6cdfb6e6
RS
1095
1096 /* Check for any emacs-generated input in the queue since
1097 it won't be detected in the wait */
1098 if (detect_input_pending ())
1099 {
1100 FD_SET (i, rfds);
c519b5e1 1101 return 1;
6cdfb6e6
RS
1102 }
1103 }
1104 else
1105 {
c519b5e1
GV
1106 /* Child process and socket input */
1107 cp = fd_info[i].cp;
6cdfb6e6
RS
1108 if (cp)
1109 {
c519b5e1
GV
1110 int current_status = cp->status;
1111
1112 if (current_status == STATUS_READ_ACKNOWLEDGED)
1113 {
1114 /* Tell reader thread which file handle to use. */
1115 cp->fd = i;
1116 /* Wake up the reader thread for this process */
1117 cp->status = STATUS_READ_READY;
1118 if (!SetEvent (cp->char_consumed))
1119 DebPrint (("nt_select.SetEvent failed with "
1120 "%lu for fd %ld\n", GetLastError (), i));
1121 }
1122
1123#ifdef CHECK_INTERLOCK
1124 /* slightly crude cross-checking of interlock between threads */
1125
1126 current_status = cp->status;
1127 if (WaitForSingleObject (cp->char_avail, 0) == WAIT_OBJECT_0)
1128 {
1129 /* char_avail has been signalled, so status (which may
1130 have changed) should indicate read has completed
1131 but has not been acknowledged. */
1132 current_status = cp->status;
b2fc9f3d
GV
1133 if (current_status != STATUS_READ_SUCCEEDED
1134 && current_status != STATUS_READ_FAILED)
c519b5e1
GV
1135 DebPrint (("char_avail set, but read not completed: status %d\n",
1136 current_status));
1137 }
1138 else
1139 {
1140 /* char_avail has not been signalled, so status should
1141 indicate that read is in progress; small possibility
1142 that read has completed but event wasn't yet signalled
1143 when we tested it (because a context switch occurred
1144 or if running on separate CPUs). */
b2fc9f3d
GV
1145 if (current_status != STATUS_READ_READY
1146 && current_status != STATUS_READ_IN_PROGRESS
1147 && current_status != STATUS_READ_SUCCEEDED
1148 && current_status != STATUS_READ_FAILED)
c519b5e1
GV
1149 DebPrint (("char_avail reset, but read status is bad: %d\n",
1150 current_status));
1151 }
1152#endif
1153 wait_hnd[nh] = cp->char_avail;
1154 fdindex[nh] = i;
1155 if (!wait_hnd[nh]) abort ();
1156 nh++;
6cdfb6e6
RS
1157#ifdef FULL_DEBUG
1158 DebPrint (("select waiting on child %d fd %d\n",
1159 cp-child_procs, i));
1160#endif
6cdfb6e6
RS
1161 }
1162 else
1163 {
c519b5e1 1164 /* Unable to find something to wait on for this fd, skip */
ef79fbba
GV
1165
1166 /* Note that this is not a fatal error, and can in fact
1167 happen in unusual circumstances. Specifically, if
1168 sys_spawnve fails, eg. because the program doesn't
1169 exist, and debug-on-error is t so Fsignal invokes a
1170 nested input loop, then the process output pipe is
1171 still included in input_wait_mask with no child_proc
1172 associated with it. (It is removed when the debugger
1173 exits the nested input loop and the error is thrown.) */
1174
c519b5e1 1175 DebPrint (("sys_select: fd %ld is invalid! ignoring\n", i));
6cdfb6e6
RS
1176 }
1177 }
1178 }
b2fc9f3d
GV
1179
1180count_children:
1181 /* Add handles of child processes. */
1182 nc = 0;
1183 for (cp = child_procs+(child_proc_count-1); cp >= child_procs; cp--)
ef79fbba
GV
1184 /* Some child_procs might be sockets; ignore them. Also some
1185 children may have died already, but we haven't finished reading
1186 the process output; ignore them too. */
1187 if (CHILD_ACTIVE (cp) && cp->procinfo.hProcess
1188 && (cp->fd < 0
1189 || (fd_info[cp->fd].flags & FILE_SEND_SIGCHLD) == 0
1190 || (fd_info[cp->fd].flags & FILE_AT_EOF) != 0)
1191 )
b2fc9f3d
GV
1192 {
1193 wait_hnd[nh + nc] = cp->procinfo.hProcess;
1194 cps[nc] = cp;
1195 nc++;
1196 }
6cdfb6e6
RS
1197
1198 /* Nothing to look for, so we didn't find anything */
b2fc9f3d 1199 if (nh + nc == 0)
6cdfb6e6 1200 {
22759c72 1201 if (timeout)
b2fc9f3d 1202 Sleep (timeout_ms);
6cdfb6e6
RS
1203 return 0;
1204 }
6cdfb6e6 1205
b2fc9f3d 1206 start_time = GetTickCount ();
8b031dcc
AI
1207
1208 /* Wait for input or child death to be signalled. If user input is
1209 allowed, then also accept window messages. */
1210 if (FD_ISSET (0, &orfds))
1211 active = MsgWaitForMultipleObjects (nh + nc, wait_hnd, FALSE, timeout_ms,
1212 QS_ALLINPUT);
1213 else
1214 active = WaitForMultipleObjects (nh + nc, wait_hnd, FALSE, timeout_ms);
c519b5e1 1215
6cdfb6e6
RS
1216 if (active == WAIT_FAILED)
1217 {
1218 DebPrint (("select.WaitForMultipleObjects (%d, %lu) failed with %lu\n",
b2fc9f3d 1219 nh + nc, timeout_ms, GetLastError ()));
c519b5e1
GV
1220 /* don't return EBADF - this causes wait_reading_process_input to
1221 abort; WAIT_FAILED is returned when single-stepping under
1222 Windows 95 after switching thread focus in debugger, and
1223 possibly at other times. */
1224 errno = EINTR;
6cdfb6e6
RS
1225 return -1;
1226 }
1227 else if (active == WAIT_TIMEOUT)
1228 {
1229 return 0;
1230 }
b2fc9f3d
GV
1231 else if (active >= WAIT_OBJECT_0
1232 && active < WAIT_OBJECT_0+MAXIMUM_WAIT_OBJECTS)
6cdfb6e6
RS
1233 {
1234 active -= WAIT_OBJECT_0;
1235 }
b2fc9f3d
GV
1236 else if (active >= WAIT_ABANDONED_0
1237 && active < WAIT_ABANDONED_0+MAXIMUM_WAIT_OBJECTS)
6cdfb6e6
RS
1238 {
1239 active -= WAIT_ABANDONED_0;
1240 }
b2fc9f3d
GV
1241 else
1242 abort ();
6cdfb6e6 1243
c519b5e1
GV
1244 /* Loop over all handles after active (now officially documented as
1245 being the first signalled handle in the array). We do this to
1246 ensure fairness, so that all channels with data available will be
1247 processed - otherwise higher numbered channels could be starved. */
1248 do
6cdfb6e6 1249 {
8b031dcc
AI
1250 if (active == nh + nc)
1251 {
1252 /* There are messages in the lisp thread's queue; we must
1253 drain the queue now to ensure they are processed promptly,
1254 because if we don't do so, we will not be woken again until
1255 further messages arrive.
1256
1257 NB. If ever we allow window message procedures to callback
1258 into lisp, we will need to ensure messages are dispatched
1259 at a safe time for lisp code to be run (*), and we may also
1260 want to provide some hooks in the dispatch loop to cater
1261 for modeless dialogs created by lisp (ie. to register
1262 window handles to pass to IsDialogMessage).
1263
1264 (*) Note that MsgWaitForMultipleObjects above is an
1265 internal dispatch point for messages that are sent to
1266 windows created by this thread. */
1267 drain_message_queue ();
1268 }
1269 else if (active >= nh)
b2fc9f3d
GV
1270 {
1271 cp = cps[active - nh];
ef79fbba
GV
1272
1273 /* We cannot always signal SIGCHLD immediately; if we have not
1274 finished reading the process output, we must delay sending
1275 SIGCHLD until we do. */
1276
1277 if (cp->fd >= 0 && (fd_info[cp->fd].flags & FILE_AT_EOF) == 0)
1278 fd_info[cp->fd].flags |= FILE_SEND_SIGCHLD;
b2fc9f3d 1279 /* SIG_DFL for SIGCHLD is ignore */
ef79fbba
GV
1280 else if (sig_handlers[SIGCHLD] != SIG_DFL &&
1281 sig_handlers[SIGCHLD] != SIG_IGN)
b2fc9f3d
GV
1282 {
1283#ifdef FULL_DEBUG
1284 DebPrint (("select calling SIGCHLD handler for pid %d\n",
1285 cp->pid));
1286#endif
1287 dead_child = cp;
1288 sig_handlers[SIGCHLD] (SIGCHLD);
1289 dead_child = NULL;
1290 }
1291 }
86143765
RS
1292 else if (fdindex[active] == -1)
1293 {
1294 /* Quit (C-g) was detected. */
1295 errno = EINTR;
1296 return -1;
1297 }
b2fc9f3d 1298 else if (fdindex[active] == 0)
c519b5e1
GV
1299 {
1300 /* Keyboard input available */
1301 FD_SET (0, rfds);
6cdfb6e6 1302 nr++;
c519b5e1 1303 }
6cdfb6e6 1304 else
c519b5e1 1305 {
b2fc9f3d
GV
1306 /* must be a socket or pipe - read ahead should have
1307 completed, either succeeding or failing. */
c519b5e1
GV
1308 FD_SET (fdindex[active], rfds);
1309 nr++;
c519b5e1
GV
1310 }
1311
b2fc9f3d
GV
1312 /* Even though wait_reading_process_output only reads from at most
1313 one channel, we must process all channels here so that we reap
1314 all children that have died. */
1315 while (++active < nh + nc)
c519b5e1
GV
1316 if (WaitForSingleObject (wait_hnd[active], 0) == WAIT_OBJECT_0)
1317 break;
b2fc9f3d
GV
1318 } while (active < nh + nc);
1319
1320 /* If no input has arrived and timeout hasn't expired, wait again. */
1321 if (nr == 0)
1322 {
1323 DWORD elapsed = GetTickCount () - start_time;
1324
1325 if (timeout_ms > elapsed) /* INFINITE is MAX_UINT */
1326 {
1327 if (timeout_ms != INFINITE)
1328 timeout_ms -= elapsed;
1329 goto count_children;
1330 }
1331 }
c519b5e1 1332
6cdfb6e6
RS
1333 return nr;
1334}
1335
c519b5e1 1336/* Substitute for certain kill () operations */
b2fc9f3d
GV
1337
1338static BOOL CALLBACK
42c95ffb 1339find_child_console (HWND hwnd, LPARAM arg)
b2fc9f3d 1340{
42c95ffb 1341 child_process * cp = (child_process *) arg;
b2fc9f3d
GV
1342 DWORD thread_id;
1343 DWORD process_id;
1344
1345 thread_id = GetWindowThreadProcessId (hwnd, &process_id);
1346 if (process_id == cp->procinfo.dwProcessId)
1347 {
1348 char window_class[32];
1349
1350 GetClassName (hwnd, window_class, sizeof (window_class));
1351 if (strcmp (window_class,
1352 (os_subtype == OS_WIN95)
1353 ? "tty"
1354 : "ConsoleWindowClass") == 0)
1355 {
1356 cp->hwnd = hwnd;
1357 return FALSE;
1358 }
1359 }
1360 /* keep looking */
1361 return TRUE;
1362}
1363
6cdfb6e6 1364int
c519b5e1 1365sys_kill (int pid, int sig)
6cdfb6e6
RS
1366{
1367 child_process *cp;
c519b5e1
GV
1368 HANDLE proc_hand;
1369 int need_to_free = 0;
1370 int rc = 0;
6cdfb6e6
RS
1371
1372 /* Only handle signals that will result in the process dying */
1373 if (sig != SIGINT && sig != SIGKILL && sig != SIGQUIT && sig != SIGHUP)
1374 {
1375 errno = EINVAL;
1376 return -1;
1377 }
c519b5e1 1378
6cdfb6e6
RS
1379 cp = find_child_pid (pid);
1380 if (cp == NULL)
1381 {
c519b5e1
GV
1382 proc_hand = OpenProcess (PROCESS_TERMINATE, 0, pid);
1383 if (proc_hand == NULL)
1384 {
1385 errno = EPERM;
1386 return -1;
1387 }
1388 need_to_free = 1;
1389 }
1390 else
1391 {
1392 proc_hand = cp->procinfo.hProcess;
1393 pid = cp->procinfo.dwProcessId;
b2fc9f3d
GV
1394
1395 /* Try to locate console window for process. */
1396 EnumWindows (find_child_console, (LPARAM) cp);
6cdfb6e6
RS
1397 }
1398
a55a5f3c 1399 if (sig == SIGINT || sig == SIGQUIT)
6cdfb6e6 1400 {
b2fc9f3d
GV
1401 if (NILP (Vw32_start_process_share_console) && cp && cp->hwnd)
1402 {
1403 BYTE control_scan_code = (BYTE) MapVirtualKey (VK_CONTROL, 0);
a55a5f3c
AI
1404 /* Fake Ctrl-C for SIGINT, and Ctrl-Break for SIGQUIT. */
1405 BYTE vk_break_code = (sig == SIGINT) ? 'C' : VK_CANCEL;
b2fc9f3d
GV
1406 BYTE break_scan_code = (BYTE) MapVirtualKey (vk_break_code, 0);
1407 HWND foreground_window;
1408
1409 if (break_scan_code == 0)
1410 {
a55a5f3c 1411 /* Fake Ctrl-C for SIGQUIT if we can't manage Ctrl-Break. */
b2fc9f3d
GV
1412 vk_break_code = 'C';
1413 break_scan_code = (BYTE) MapVirtualKey (vk_break_code, 0);
1414 }
1415
1416 foreground_window = GetForegroundWindow ();
f446016f 1417 if (foreground_window)
b2fc9f3d 1418 {
f446016f
AI
1419 /* NT 5.0, and apparently also Windows 98, will not allow
1420 a Window to be set to foreground directly without the
1421 user's involvement. The workaround is to attach
1422 ourselves to the thread that owns the foreground
1423 window, since that is the only thread that can set the
1424 foreground window. */
1425 DWORD foreground_thread, child_thread;
1426 foreground_thread =
1427 GetWindowThreadProcessId (foreground_window, NULL);
1428 if (foreground_thread == GetCurrentThreadId ()
1429 || !AttachThreadInput (GetCurrentThreadId (),
1430 foreground_thread, TRUE))
1431 foreground_thread = 0;
1432
1433 child_thread = GetWindowThreadProcessId (cp->hwnd, NULL);
1434 if (child_thread == GetCurrentThreadId ()
1435 || !AttachThreadInput (GetCurrentThreadId (),
1436 child_thread, TRUE))
1437 child_thread = 0;
1438
1439 /* Set the foreground window to the child. */
1440 if (SetForegroundWindow (cp->hwnd))
1441 {
1442 /* Generate keystrokes as if user had typed Ctrl-Break or
1443 Ctrl-C. */
1444 keybd_event (VK_CONTROL, control_scan_code, 0, 0);
1445 keybd_event (vk_break_code, break_scan_code,
1446 (vk_break_code == 'C' ? 0 : KEYEVENTF_EXTENDEDKEY), 0);
1447 keybd_event (vk_break_code, break_scan_code,
1448 (vk_break_code == 'C' ? 0 : KEYEVENTF_EXTENDEDKEY)
1449 | KEYEVENTF_KEYUP, 0);
1450 keybd_event (VK_CONTROL, control_scan_code,
1451 KEYEVENTF_KEYUP, 0);
1452
1453 /* Sleep for a bit to give time for Emacs frame to respond
1454 to focus change events (if Emacs was active app). */
1455 Sleep (100);
1456
1457 SetForegroundWindow (foreground_window);
1458 }
1459 /* Detach from the foreground and child threads now that
1460 the foreground switching is over. */
1461 if (foreground_thread)
1462 AttachThreadInput (GetCurrentThreadId (),
1463 foreground_thread, FALSE);
1464 if (child_thread)
1465 AttachThreadInput (GetCurrentThreadId (),
1466 child_thread, FALSE);
1467 }
1468 }
c519b5e1 1469 /* Ctrl-Break is NT equivalent of SIGINT. */
b2fc9f3d 1470 else if (!GenerateConsoleCtrlEvent (CTRL_BREAK_EVENT, pid))
6cdfb6e6 1471 {
c519b5e1 1472 DebPrint (("sys_kill.GenerateConsoleCtrlEvent return %d "
6cdfb6e6
RS
1473 "for pid %lu\n", GetLastError (), pid));
1474 errno = EINVAL;
c519b5e1 1475 rc = -1;
80874ef7 1476 }
6cdfb6e6
RS
1477 }
1478 else
1479 {
b2fc9f3d
GV
1480 if (NILP (Vw32_start_process_share_console) && cp && cp->hwnd)
1481 {
1482#if 1
1483 if (os_subtype == OS_WIN95)
1484 {
1485/*
1486 Another possibility is to try terminating the VDM out-right by
1487 calling the Shell VxD (id 0x17) V86 interface, function #4
1488 "SHELL_Destroy_VM", ie.
1489
1490 mov edx,4
1491 mov ebx,vm_handle
1492 call shellapi
1493
1494 First need to determine the current VM handle, and then arrange for
1495 the shellapi call to be made from the system vm (by using
1496 Switch_VM_and_callback).
1497
1498 Could try to invoke DestroyVM through CallVxD.
1499
1500*/
ef79fbba
GV
1501#if 0
1502 /* On Win95, posting WM_QUIT causes the 16-bit subsystem
1503 to hang when cmdproxy is used in conjunction with
1504 command.com for an interactive shell. Posting
1505 WM_CLOSE pops up a dialog that, when Yes is selected,
1506 does the same thing. TerminateProcess is also less
1507 than ideal in that subprocesses tend to stick around
1508 until the machine is shutdown, but at least it
1509 doesn't freeze the 16-bit subsystem. */
b2fc9f3d 1510 PostMessage (cp->hwnd, WM_QUIT, 0xff, 0);
ef79fbba
GV
1511#endif
1512 if (!TerminateProcess (proc_hand, 0xff))
1513 {
1514 DebPrint (("sys_kill.TerminateProcess returned %d "
1515 "for pid %lu\n", GetLastError (), pid));
1516 errno = EINVAL;
1517 rc = -1;
1518 }
b2fc9f3d
GV
1519 }
1520 else
1521#endif
1522 PostMessage (cp->hwnd, WM_CLOSE, 0, 0);
1523 }
fbd6baed 1524 /* Kill the process. On W32 this doesn't kill child processes
8eae7766 1525 so it doesn't work very well for shells which is why it's not
b2fc9f3d
GV
1526 used in every case. */
1527 else if (!TerminateProcess (proc_hand, 0xff))
6cdfb6e6 1528 {
c519b5e1 1529 DebPrint (("sys_kill.TerminateProcess returned %d "
6cdfb6e6
RS
1530 "for pid %lu\n", GetLastError (), pid));
1531 errno = EINVAL;
c519b5e1 1532 rc = -1;
6cdfb6e6
RS
1533 }
1534 }
c519b5e1
GV
1535
1536 if (need_to_free)
1537 CloseHandle (proc_hand);
1538
1539 return rc;
6cdfb6e6
RS
1540}
1541
09522567 1542/* extern int report_file_error (char *, Lisp_Object); */
c519b5e1
GV
1543
1544/* The following two routines are used to manipulate stdin, stdout, and
1545 stderr of our child processes.
1546
1547 Assuming that in, out, and err are *not* inheritable, we make them
1548 stdin, stdout, and stderr of the child as follows:
1549
1550 - Save the parent's current standard handles.
1551 - Set the std handles to inheritable duplicates of the ones being passed in.
1552 (Note that _get_osfhandle() is an io.h procedure that retrieves the
1553 NT file handle for a crt file descriptor.)
1554 - Spawn the child, which inherits in, out, and err as stdin,
1555 stdout, and stderr. (see Spawnve)
1556 - Close the std handles passed to the child.
1557 - Reset the parent's standard handles to the saved handles.
1558 (see reset_standard_handles)
1559 We assume that the caller closes in, out, and err after calling us. */
1560
1561void
1562prepare_standard_handles (int in, int out, int err, HANDLE handles[3])
6cdfb6e6 1563{
c519b5e1
GV
1564 HANDLE parent;
1565 HANDLE newstdin, newstdout, newstderr;
1566
1567 parent = GetCurrentProcess ();
1568
1569 handles[0] = GetStdHandle (STD_INPUT_HANDLE);
1570 handles[1] = GetStdHandle (STD_OUTPUT_HANDLE);
1571 handles[2] = GetStdHandle (STD_ERROR_HANDLE);
1572
1573 /* make inheritable copies of the new handles */
1574 if (!DuplicateHandle (parent,
1575 (HANDLE) _get_osfhandle (in),
1576 parent,
1577 &newstdin,
1578 0,
1579 TRUE,
1580 DUPLICATE_SAME_ACCESS))
1581 report_file_error ("Duplicating input handle for child", Qnil);
6cdfb6e6 1582
c519b5e1
GV
1583 if (!DuplicateHandle (parent,
1584 (HANDLE) _get_osfhandle (out),
1585 parent,
1586 &newstdout,
1587 0,
1588 TRUE,
1589 DUPLICATE_SAME_ACCESS))
1590 report_file_error ("Duplicating output handle for child", Qnil);
6cdfb6e6 1591
c519b5e1
GV
1592 if (!DuplicateHandle (parent,
1593 (HANDLE) _get_osfhandle (err),
1594 parent,
1595 &newstderr,
1596 0,
1597 TRUE,
1598 DUPLICATE_SAME_ACCESS))
1599 report_file_error ("Duplicating error handle for child", Qnil);
1600
1601 /* and store them as our std handles */
1602 if (!SetStdHandle (STD_INPUT_HANDLE, newstdin))
1603 report_file_error ("Changing stdin handle", Qnil);
6cdfb6e6 1604
c519b5e1
GV
1605 if (!SetStdHandle (STD_OUTPUT_HANDLE, newstdout))
1606 report_file_error ("Changing stdout handle", Qnil);
1607
1608 if (!SetStdHandle (STD_ERROR_HANDLE, newstderr))
1609 report_file_error ("Changing stderr handle", Qnil);
1610}
1611
1612void
1613reset_standard_handles (int in, int out, int err, HANDLE handles[3])
1614{
1615 /* close the duplicated handles passed to the child */
1616 CloseHandle (GetStdHandle (STD_INPUT_HANDLE));
1617 CloseHandle (GetStdHandle (STD_OUTPUT_HANDLE));
1618 CloseHandle (GetStdHandle (STD_ERROR_HANDLE));
1619
1620 /* now restore parent's saved std handles */
1621 SetStdHandle (STD_INPUT_HANDLE, handles[0]);
1622 SetStdHandle (STD_OUTPUT_HANDLE, handles[1]);
1623 SetStdHandle (STD_ERROR_HANDLE, handles[2]);
6cdfb6e6 1624}
c519b5e1 1625
b2fc9f3d
GV
1626void
1627set_process_dir (char * dir)
1628{
1629 process_dir = dir;
1630}
1631
a11e68d0
RS
1632#ifdef HAVE_SOCKETS
1633
1634/* To avoid problems with winsock implementations that work over dial-up
1635 connections causing or requiring a connection to exist while Emacs is
1636 running, Emacs no longer automatically loads winsock on startup if it
1637 is present. Instead, it will be loaded when open-network-stream is
1638 first called.
1639
1640 To allow full control over when winsock is loaded, we provide these
1641 two functions to dynamically load and unload winsock. This allows
1642 dial-up users to only be connected when they actually need to use
1643 socket services. */
1644
1645/* From nt.c */
1646extern HANDLE winsock_lib;
1647extern BOOL term_winsock (void);
1648extern BOOL init_winsock (int load_now);
1649
1650extern Lisp_Object Vsystem_name;
1651
fbd6baed 1652DEFUN ("w32-has-winsock", Fw32_has_winsock, Sw32_has_winsock, 0, 1, 0,
33f09670
JR
1653 doc: /* Test for presence of the Windows socket library `winsock'.
1654Returns non-nil if winsock support is present, nil otherwise.
1655
1656If the optional argument LOAD-NOW is non-nil, the winsock library is
1657also loaded immediately if not already loaded. If winsock is loaded,
1658the winsock local hostname is returned (since this may be different from
1659the value of `system-name' and should supplant it), otherwise t is
1660returned to indicate winsock support is present. */)
a11e68d0
RS
1661 (load_now)
1662 Lisp_Object load_now;
1663{
1664 int have_winsock;
1665
1666 have_winsock = init_winsock (!NILP (load_now));
1667 if (have_winsock)
1668 {
1669 if (winsock_lib != NULL)
1670 {
1671 /* Return new value for system-name. The best way to do this
1672 is to call init_system_name, saving and restoring the
1673 original value to avoid side-effects. */
1674 Lisp_Object orig_hostname = Vsystem_name;
1675 Lisp_Object hostname;
1676
1677 init_system_name ();
1678 hostname = Vsystem_name;
1679 Vsystem_name = orig_hostname;
1680 return hostname;
1681 }
1682 return Qt;
1683 }
1684 return Qnil;
1685}
1686
fbd6baed 1687DEFUN ("w32-unload-winsock", Fw32_unload_winsock, Sw32_unload_winsock,
a11e68d0 1688 0, 0, 0,
33f09670
JR
1689 doc: /* Unload the Windows socket library `winsock' if loaded.
1690This is provided to allow dial-up socket connections to be disconnected
1691when no longer needed. Returns nil without unloading winsock if any
1692socket connections still exist. */)
a11e68d0
RS
1693 ()
1694{
1695 return term_winsock () ? Qt : Qnil;
1696}
1697
1698#endif /* HAVE_SOCKETS */
1699
93fdf2f8 1700\f
b2fc9f3d
GV
1701/* Some miscellaneous functions that are Windows specific, but not GUI
1702 specific (ie. are applicable in terminal or batch mode as well). */
1703
1704/* lifted from fileio.c */
1705#define CORRECT_DIR_SEPS(s) \
1706 do { if ('/' == DIRECTORY_SEP) dostounix_filename (s); \
1707 else unixtodos_filename (s); \
1708 } while (0)
1709
1710DEFUN ("w32-short-file-name", Fw32_short_file_name, Sw32_short_file_name, 1, 1, 0,
33f09670
JR
1711 doc: /* Return the short file name version (8.3) of the full path of FILENAME.
1712If FILENAME does not exist, return nil.
1713All path elements in FILENAME are converted to their short names. */)
b2fc9f3d
GV
1714 (filename)
1715 Lisp_Object filename;
1716{
1717 char shortname[MAX_PATH];
1718
b7826503 1719 CHECK_STRING (filename);
b2fc9f3d
GV
1720
1721 /* first expand it. */
1722 filename = Fexpand_file_name (filename, Qnil);
1723
1724 /* luckily, this returns the short version of each element in the path. */
1725 if (GetShortPathName (XSTRING (filename)->data, shortname, MAX_PATH) == 0)
1726 return Qnil;
1727
1728 CORRECT_DIR_SEPS (shortname);
1729
1730 return build_string (shortname);
1731}
1732
1733
1734DEFUN ("w32-long-file-name", Fw32_long_file_name, Sw32_long_file_name,
1735 1, 1, 0,
33f09670
JR
1736 doc: /* Return the long file name version of the full path of FILENAME.
1737If FILENAME does not exist, return nil.
1738All path elements in FILENAME are converted to their long names. */)
b2fc9f3d
GV
1739 (filename)
1740 Lisp_Object filename;
1741{
1742 char longname[ MAX_PATH ];
1743
b7826503 1744 CHECK_STRING (filename);
b2fc9f3d
GV
1745
1746 /* first expand it. */
1747 filename = Fexpand_file_name (filename, Qnil);
1748
1749 if (!w32_get_long_filename (XSTRING (filename)->data, longname, MAX_PATH))
1750 return Qnil;
1751
1752 CORRECT_DIR_SEPS (longname);
1753
1754 return build_string (longname);
1755}
1756
33f09670
JR
1757DEFUN ("w32-set-process-priority", Fw32_set_process_priority,
1758 Sw32_set_process_priority, 2, 2, 0,
1759 doc: /* Set the priority of PROCESS to PRIORITY.
1760If PROCESS is nil, the priority of Emacs is changed, otherwise the
1761priority of the process whose pid is PROCESS is changed.
1762PRIORITY should be one of the symbols high, normal, or low;
1763any other symbol will be interpreted as normal.
1764
1765If successful, the return value is t, otherwise nil. */)
b2fc9f3d
GV
1766 (process, priority)
1767 Lisp_Object process, priority;
1768{
1769 HANDLE proc_handle = GetCurrentProcess ();
1770 DWORD priority_class = NORMAL_PRIORITY_CLASS;
1771 Lisp_Object result = Qnil;
1772
b7826503 1773 CHECK_SYMBOL (priority);
b2fc9f3d
GV
1774
1775 if (!NILP (process))
1776 {
1777 DWORD pid;
1778 child_process *cp;
1779
b7826503 1780 CHECK_NUMBER (process);
b2fc9f3d
GV
1781
1782 /* Allow pid to be an internally generated one, or one obtained
1783 externally. This is necessary because real pids on Win95 are
1784 negative. */
1785
1786 pid = XINT (process);
1787 cp = find_child_pid (pid);
1788 if (cp != NULL)
1789 pid = cp->procinfo.dwProcessId;
1790
1791 proc_handle = OpenProcess (PROCESS_SET_INFORMATION, FALSE, pid);
1792 }
1793
1794 if (EQ (priority, Qhigh))
1795 priority_class = HIGH_PRIORITY_CLASS;
1796 else if (EQ (priority, Qlow))
1797 priority_class = IDLE_PRIORITY_CLASS;
1798
1799 if (proc_handle != NULL)
1800 {
1801 if (SetPriorityClass (proc_handle, priority_class))
1802 result = Qt;
1803 if (!NILP (process))
1804 CloseHandle (proc_handle);
1805 }
1806
1807 return result;
1808}
1809
1810
33f09670
JR
1811DEFUN ("w32-get-locale-info", Fw32_get_locale_info,
1812 Sw32_get_locale_info, 1, 2, 0,
1813 doc: /* Return information about the Windows locale LCID.
1814By default, return a three letter locale code which encodes the default
1815language as the first two characters, and the country or regionial variant
1816as the third letter. For example, ENU refers to `English (United States)',
1817while ENC means `English (Canadian)'.
1818
1819If the optional argument LONGFORM is t, the long form of the locale
1820name is returned, e.g. `English (United States)' instead; if LONGFORM
1821is a number, it is interpreted as an LCTYPE constant and the corresponding
1822locale information is returned.
1823
1824If LCID (a 16-bit number) is not a valid locale, the result is nil. */)
b2fc9f3d
GV
1825 (lcid, longform)
1826 Lisp_Object lcid, longform;
1827{
1828 int got_abbrev;
1829 int got_full;
1830 char abbrev_name[32] = { 0 };
1831 char full_name[256] = { 0 };
1832
b7826503 1833 CHECK_NUMBER (lcid);
b2fc9f3d
GV
1834
1835 if (!IsValidLocale (XINT (lcid), LCID_SUPPORTED))
1836 return Qnil;
1837
1838 if (NILP (longform))
1839 {
1840 got_abbrev = GetLocaleInfo (XINT (lcid),
1841 LOCALE_SABBREVLANGNAME | LOCALE_USE_CP_ACP,
1842 abbrev_name, sizeof (abbrev_name));
1843 if (got_abbrev)
1844 return build_string (abbrev_name);
1845 }
0eaf5926 1846 else if (EQ (longform, Qt))
b2fc9f3d
GV
1847 {
1848 got_full = GetLocaleInfo (XINT (lcid),
1849 LOCALE_SLANGUAGE | LOCALE_USE_CP_ACP,
1850 full_name, sizeof (full_name));
1851 if (got_full)
1852 return build_string (full_name);
1853 }
0eaf5926
GV
1854 else if (NUMBERP (longform))
1855 {
1856 got_full = GetLocaleInfo (XINT (lcid),
1857 XINT (longform),
1858 full_name, sizeof (full_name));
1859 if (got_full)
1860 return make_unibyte_string (full_name, got_full);
1861 }
b2fc9f3d
GV
1862
1863 return Qnil;
1864}
1865
1866
33f09670
JR
1867DEFUN ("w32-get-current-locale-id", Fw32_get_current_locale_id,
1868 Sw32_get_current_locale_id, 0, 0, 0,
1869 doc: /* Return Windows locale id for current locale setting.
1870This is a numerical value; use `w32-get-locale-info' to convert to a
1871human-readable form. */)
b2fc9f3d
GV
1872 ()
1873{
1874 return make_number (GetThreadLocale ());
1875}
1876
ef79fbba
GV
1877DWORD int_from_hex (char * s)
1878{
1879 DWORD val = 0;
1880 static char hex[] = "0123456789abcdefABCDEF";
1881 char * p;
1882
1883 while (*s && (p = strchr(hex, *s)) != NULL)
1884 {
1885 unsigned digit = p - hex;
1886 if (digit > 15)
1887 digit -= 6;
1888 val = val * 16 + digit;
1889 s++;
1890 }
1891 return val;
1892}
1893
1894/* We need to build a global list, since the EnumSystemLocale callback
1895 function isn't given a context pointer. */
1896Lisp_Object Vw32_valid_locale_ids;
1897
1898BOOL CALLBACK enum_locale_fn (LPTSTR localeNum)
1899{
1900 DWORD id = int_from_hex (localeNum);
1901 Vw32_valid_locale_ids = Fcons (make_number (id), Vw32_valid_locale_ids);
1902 return TRUE;
1903}
1904
33f09670
JR
1905DEFUN ("w32-get-valid-locale-ids", Fw32_get_valid_locale_ids,
1906 Sw32_get_valid_locale_ids, 0, 0, 0,
1907 doc: /* Return list of all valid Windows locale ids.
1908Each id is a numerical value; use `w32-get-locale-info' to convert to a
1909human-readable form. */)
ef79fbba
GV
1910 ()
1911{
1912 Vw32_valid_locale_ids = Qnil;
1913
1914 EnumSystemLocales (enum_locale_fn, LCID_SUPPORTED);
1915
1916 Vw32_valid_locale_ids = Fnreverse (Vw32_valid_locale_ids);
1917 return Vw32_valid_locale_ids;
1918}
1919
b2fc9f3d
GV
1920
1921DEFUN ("w32-get-default-locale-id", Fw32_get_default_locale_id, Sw32_get_default_locale_id, 0, 1, 0,
33f09670
JR
1922 doc: /* Return Windows locale id for default locale setting.
1923By default, the system default locale setting is returned; if the optional
1924parameter USERP is non-nil, the user default locale setting is returned.
1925This is a numerical value; use `w32-get-locale-info' to convert to a
1926human-readable form. */)
b2fc9f3d
GV
1927 (userp)
1928 Lisp_Object userp;
1929{
1930 if (NILP (userp))
1931 return make_number (GetSystemDefaultLCID ());
1932 return make_number (GetUserDefaultLCID ());
1933}
1934
1935
1936DEFUN ("w32-set-current-locale", Fw32_set_current_locale, Sw32_set_current_locale, 1, 1, 0,
33f09670
JR
1937 doc: /* Make Windows locale LCID be the current locale setting for Emacs.
1938If successful, the new locale id is returned, otherwise nil. */)
b2fc9f3d
GV
1939 (lcid)
1940 Lisp_Object lcid;
1941{
b7826503 1942 CHECK_NUMBER (lcid);
b2fc9f3d
GV
1943
1944 if (!IsValidLocale (XINT (lcid), LCID_SUPPORTED))
1945 return Qnil;
1946
1947 if (!SetThreadLocale (XINT (lcid)))
1948 return Qnil;
1949
ef79fbba
GV
1950 /* Need to set input thread locale if present. */
1951 if (dwWindowsThreadId)
1952 /* Reply is not needed. */
1953 PostThreadMessage (dwWindowsThreadId, WM_EMACS_SETLOCALE, XINT (lcid), 0);
1954
b2fc9f3d
GV
1955 return make_number (GetThreadLocale ());
1956}
1957
0eaf5926
GV
1958
1959/* We need to build a global list, since the EnumCodePages callback
1960 function isn't given a context pointer. */
1961Lisp_Object Vw32_valid_codepages;
1962
1963BOOL CALLBACK enum_codepage_fn (LPTSTR codepageNum)
1964{
1965 DWORD id = atoi (codepageNum);
1966 Vw32_valid_codepages = Fcons (make_number (id), Vw32_valid_codepages);
1967 return TRUE;
1968}
1969
33f09670
JR
1970DEFUN ("w32-get-valid-codepages", Fw32_get_valid_codepages,
1971 Sw32_get_valid_codepages, 0, 0, 0,
1972 doc: /* Return list of all valid Windows codepages. */)
0eaf5926
GV
1973 ()
1974{
1975 Vw32_valid_codepages = Qnil;
1976
1977 EnumSystemCodePages (enum_codepage_fn, CP_SUPPORTED);
1978
1979 Vw32_valid_codepages = Fnreverse (Vw32_valid_codepages);
1980 return Vw32_valid_codepages;
1981}
1982
1983
33f09670
JR
1984DEFUN ("w32-get-console-codepage", Fw32_get_console_codepage,
1985 Sw32_get_console_codepage, 0, 0, 0,
1986 doc: /* Return current Windows codepage for console input. */)
0eaf5926
GV
1987 ()
1988{
1989 return make_number (GetConsoleCP ());
1990}
1991
1992
33f09670
JR
1993DEFUN ("w32-set-console-codepage", Fw32_set_console_codepage,
1994 Sw32_set_console_codepage, 1, 1, 0,
1995 doc: /* Make Windows codepage CP be the current codepage setting for Emacs.
1996The codepage setting affects keyboard input and display in tty mode.
1997If successful, the new CP is returned, otherwise nil. */)
0eaf5926
GV
1998 (cp)
1999 Lisp_Object cp;
2000{
b7826503 2001 CHECK_NUMBER (cp);
0eaf5926
GV
2002
2003 if (!IsValidCodePage (XINT (cp)))
2004 return Qnil;
2005
2006 if (!SetConsoleCP (XINT (cp)))
2007 return Qnil;
2008
2009 return make_number (GetConsoleCP ());
2010}
2011
2012
33f09670
JR
2013DEFUN ("w32-get-console-output-codepage", Fw32_get_console_output_codepage,
2014 Sw32_get_console_output_codepage, 0, 0, 0,
2015 doc: /* Return current Windows codepage for console output. */)
0eaf5926
GV
2016 ()
2017{
2018 return make_number (GetConsoleOutputCP ());
2019}
2020
2021
33f09670
JR
2022DEFUN ("w32-set-console-output-codepage", Fw32_set_console_output_codepage,
2023 Sw32_set_console_output_codepage, 1, 1, 0,
2024 doc: /* Make Windows codepage CP be the current codepage setting for Emacs.
2025The codepage setting affects keyboard input and display in tty mode.
2026If successful, the new CP is returned, otherwise nil. */)
0eaf5926
GV
2027 (cp)
2028 Lisp_Object cp;
2029{
b7826503 2030 CHECK_NUMBER (cp);
0eaf5926
GV
2031
2032 if (!IsValidCodePage (XINT (cp)))
2033 return Qnil;
2034
2035 if (!SetConsoleOutputCP (XINT (cp)))
2036 return Qnil;
2037
2038 return make_number (GetConsoleOutputCP ());
2039}
2040
2041
33f09670
JR
2042DEFUN ("w32-get-codepage-charset", Fw32_get_codepage_charset,
2043 Sw32_get_codepage_charset, 1, 1, 0,
2044 doc: /* Return charset of codepage CP.
2045Returns nil if the codepage is not valid. */)
0eaf5926
GV
2046 (cp)
2047 Lisp_Object cp;
2048{
2049 CHARSETINFO info;
2050
b7826503 2051 CHECK_NUMBER (cp);
0eaf5926
GV
2052
2053 if (!IsValidCodePage (XINT (cp)))
2054 return Qnil;
2055
2056 if (TranslateCharsetInfo ((DWORD *) XINT (cp), &info, TCI_SRCCODEPAGE))
2057 return make_number (info.ciCharset);
2058
2059 return Qnil;
2060}
2061
2062
33f09670
JR
2063DEFUN ("w32-get-valid-keyboard-layouts", Fw32_get_valid_keyboard_layouts,
2064 Sw32_get_valid_keyboard_layouts, 0, 0, 0,
2065 doc: /* Return list of Windows keyboard languages and layouts.
2066The return value is a list of pairs of language id and layout id. */)
0eaf5926
GV
2067 ()
2068{
2069 int num_layouts = GetKeyboardLayoutList (0, NULL);
2070 HKL * layouts = (HKL *) alloca (num_layouts * sizeof (HKL));
2071 Lisp_Object obj = Qnil;
2072
2073 if (GetKeyboardLayoutList (num_layouts, layouts) == num_layouts)
2074 {
2075 while (--num_layouts >= 0)
2076 {
2077 DWORD kl = (DWORD) layouts[num_layouts];
2078
2079 obj = Fcons (Fcons (make_number (kl & 0xffff),
2080 make_number ((kl >> 16) & 0xffff)),
2081 obj);
2082 }
2083 }
2084
2085 return obj;
2086}
2087
2088
33f09670
JR
2089DEFUN ("w32-get-keyboard-layout", Fw32_get_keyboard_layout,
2090 Sw32_get_keyboard_layout, 0, 0, 0,
2091 doc: /* Return current Windows keyboard language and layout.
2092The return value is the cons of the language id and the layout id. */)
0eaf5926
GV
2093 ()
2094{
2095 DWORD kl = (DWORD) GetKeyboardLayout (dwWindowsThreadId);
2096
2097 return Fcons (make_number (kl & 0xffff),
2098 make_number ((kl >> 16) & 0xffff));
2099}
2100
2101
33f09670
JR
2102DEFUN ("w32-set-keyboard-layout", Fw32_set_keyboard_layout,
2103 Sw32_set_keyboard_layout, 1, 1, 0,
2104 doc: /* Make LAYOUT be the current keyboard layout for Emacs.
2105The keyboard layout setting affects interpretation of keyboard input.
2106If successful, the new layout id is returned, otherwise nil. */)
0eaf5926
GV
2107 (layout)
2108 Lisp_Object layout;
2109{
2110 DWORD kl;
2111
b7826503 2112 CHECK_CONS (layout);
f4532092
AI
2113 CHECK_NUMBER_CAR (layout);
2114 CHECK_NUMBER_CDR (layout);
0eaf5926 2115
8e713be6
KR
2116 kl = (XINT (XCAR (layout)) & 0xffff)
2117 | (XINT (XCDR (layout)) << 16);
0eaf5926
GV
2118
2119 /* Synchronize layout with input thread. */
2120 if (dwWindowsThreadId)
2121 {
2122 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_SETKEYBOARDLAYOUT,
2123 (WPARAM) kl, 0))
2124 {
2125 MSG msg;
2126 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
2127
2128 if (msg.wParam == 0)
2129 return Qnil;
2130 }
2131 }
2132 else if (!ActivateKeyboardLayout ((HKL) kl, 0))
2133 return Qnil;
2134
2135 return Fw32_get_keyboard_layout ();
2136}
2137
b2fc9f3d 2138\f
93fdf2f8
RS
2139syms_of_ntproc ()
2140{
b2fc9f3d
GV
2141 Qhigh = intern ("high");
2142 Qlow = intern ("low");
2143
a11e68d0 2144#ifdef HAVE_SOCKETS
fbd6baed
GV
2145 defsubr (&Sw32_has_winsock);
2146 defsubr (&Sw32_unload_winsock);
a11e68d0 2147#endif
b2fc9f3d
GV
2148 defsubr (&Sw32_short_file_name);
2149 defsubr (&Sw32_long_file_name);
2150 defsubr (&Sw32_set_process_priority);
2151 defsubr (&Sw32_get_locale_info);
2152 defsubr (&Sw32_get_current_locale_id);
2153 defsubr (&Sw32_get_default_locale_id);
ef79fbba 2154 defsubr (&Sw32_get_valid_locale_ids);
b2fc9f3d 2155 defsubr (&Sw32_set_current_locale);
a11e68d0 2156
0eaf5926
GV
2157 defsubr (&Sw32_get_console_codepage);
2158 defsubr (&Sw32_set_console_codepage);
2159 defsubr (&Sw32_get_console_output_codepage);
2160 defsubr (&Sw32_set_console_output_codepage);
2161 defsubr (&Sw32_get_valid_codepages);
2162 defsubr (&Sw32_get_codepage_charset);
2163
2164 defsubr (&Sw32_get_valid_keyboard_layouts);
2165 defsubr (&Sw32_get_keyboard_layout);
2166 defsubr (&Sw32_set_keyboard_layout);
2167
fbd6baed 2168 DEFVAR_LISP ("w32-quote-process-args", &Vw32_quote_process_args,
33f09670
JR
2169 doc: /* Non-nil enables quoting of process arguments to ensure correct parsing.
2170Because Windows does not directly pass argv arrays to child processes,
2171programs have to reconstruct the argv array by parsing the command
2172line string. For an argument to contain a space, it must be enclosed
2173in double quotes or it will be parsed as multiple arguments.
2174
2175If the value is a character, that character will be used to escape any
2176quote characters that appear, otherwise a suitable escape character
2177will be chosen based on the type of the program. */);
b2fc9f3d 2178 Vw32_quote_process_args = Qt;
817abdf6 2179
fbd6baed
GV
2180 DEFVAR_LISP ("w32-start-process-show-window",
2181 &Vw32_start_process_show_window,
33f09670
JR
2182 doc: /* When nil, new child processes hide their windows.
2183When non-nil, they show their window in the method of their choice.
2184This variable doesn't affect GUI applications, which will never be hidden. */);
fbd6baed 2185 Vw32_start_process_show_window = Qnil;
0ecf7d36 2186
b2fc9f3d
GV
2187 DEFVAR_LISP ("w32-start-process-share-console",
2188 &Vw32_start_process_share_console,
33f09670
JR
2189 doc: /* When nil, new child processes are given a new console.
2190When non-nil, they share the Emacs console; this has the limitation of
804d894a 2191allowing only one DOS subprocess to run at a time (whether started directly
33f09670
JR
2192or indirectly by Emacs), and preventing Emacs from cleanly terminating the
2193subprocess group, but may allow Emacs to interrupt a subprocess that doesn't
2194otherwise respond to interrupts from Emacs. */);
b2fc9f3d
GV
2195 Vw32_start_process_share_console = Qnil;
2196
82e7c0a9
AI
2197 DEFVAR_LISP ("w32-start-process-inherit-error-mode",
2198 &Vw32_start_process_inherit_error_mode,
33f09670
JR
2199 doc: /* When nil, new child processes revert to the default error mode.
2200When non-nil, they inherit their error mode setting from Emacs, which stops
2201them blocking when trying to access unmounted drives etc. */);
82e7c0a9
AI
2202 Vw32_start_process_inherit_error_mode = Qt;
2203
fbd6baed 2204 DEFVAR_INT ("w32-pipe-read-delay", &Vw32_pipe_read_delay,
33f09670
JR
2205 doc: /* Forced delay before reading subprocess output.
2206This is done to improve the buffering of subprocess output, by
2207avoiding the inefficiency of frequently reading small amounts of data.
2208
2209If positive, the value is the number of milliseconds to sleep before
2210reading the subprocess output. If negative, the magnitude is the number
2211of time slices to wait (effectively boosting the priority of the child
2212process temporarily). A value of zero disables waiting entirely. */);
fbd6baed 2213 Vw32_pipe_read_delay = 50;
0c04091e 2214
fbd6baed 2215 DEFVAR_LISP ("w32-downcase-file-names", &Vw32_downcase_file_names,
33f09670
JR
2216 doc: /* Non-nil means convert all-upper case file names to lower case.
2217This applies when performing completions and file name expansion.
2218Note that the value of this setting also affects remote file names,
2219so you probably don't want to set to non-nil if you use case-sensitive
2220filesystems via ange-ftp. */);
fbd6baed 2221 Vw32_downcase_file_names = Qnil;
b2fc9f3d
GV
2222
2223#if 0
2224 DEFVAR_LISP ("w32-generate-fake-inodes", &Vw32_generate_fake_inodes,
33f09670
JR
2225 doc: /* Non-nil means attempt to fake realistic inode values.
2226This works by hashing the truename of files, and should detect
2227aliasing between long and short (8.3 DOS) names, but can have
2228false positives because of hash collisions. Note that determing
2229the truename of a file can be slow. */);
b2fc9f3d
GV
2230 Vw32_generate_fake_inodes = Qnil;
2231#endif
2232
2233 DEFVAR_LISP ("w32-get-true-file-attributes", &Vw32_get_true_file_attributes,
33f09670
JR
2234 doc: /* Non-nil means determine accurate link count in file-attributes.
2235This option slows down file-attributes noticeably, so is disabled by
2236default. Note that it is only useful for files on NTFS volumes,
2237where hard links are supported. */);
b2fc9f3d 2238 Vw32_get_true_file_attributes = Qnil;
93fdf2f8 2239}
c519b5e1 2240/* end of ntproc.c */