import -ko -b 1.1.3 XEmacs XEmacs-21_2 r21-2-35
[chise/xemacs-chise.git.1] / src / ntproc.c
1 /* Process support for Windows NT port of XEMACS.
2    Copyright (C) 1992, 1995 Free Software Foundation, Inc.
3
4 This file is part of XEmacs.
5
6 XEmacs is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
9 later version.
10
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with XEmacs; see the file COPYING.  If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.
20
21    Drew Bliss                   Oct 14, 1993
22      Adapted from alarm.c by Tim Fleehart */
23
24 /* Adapted for XEmacs by David Hobley <david@spook-le0.cia.com.au> */
25 /* Synced with FSF Emacs 19.34.6 by Marc Paquette <marcpa@cam.org> */
26
27 #include <config.h>
28 #undef signal
29 #undef wait
30 #undef spawnve
31 #undef select
32 #undef kill
33
34 #include <windows.h>
35 #ifdef HAVE_A_OUT_H
36 #include <a.out.h>
37 #endif
38 #include "lisp.h"
39 #include "sysproc.h"
40 #include "nt.h"
41 #include "ntheap.h" /* From 19.34.6 */
42 #include "systime.h"
43 #include "syssignal.h"
44 #include "sysfile.h"
45 #include "syswait.h"
46 #include "buffer.h"
47 #include "process.h"
48
49 #include "console-msw.h"
50
51 /*#include "w32term.h"*/ /* From 19.34.6: sync in ? --marcpa */
52
53 /* #### I'm not going to play with shit. */
54 #pragma warning (disable:4013 4024 4090)
55
56 /* Control whether spawnve quotes arguments as necessary to ensure
57    correct parsing by child process.  Because not all uses of spawnve
58    are careful about constructing argv arrays, we make this behavior
59    conditional (off by default). */
60 Lisp_Object Vwin32_quote_process_args;
61
62 /* Control whether create_child causes the process' window to be
63    hidden.  The default is nil. */
64 Lisp_Object Vwin32_start_process_show_window;
65
66 /* Control whether create_child causes the process to inherit Emacs'
67    console window, or be given a new one of its own.  The default is
68    nil, to allow multiple DOS programs to run on Win95.  Having separate
69    consoles also allows Emacs to cleanly terminate process groups.  */
70 Lisp_Object Vwin32_start_process_share_console;
71
72 /* Time to sleep before reading from a subprocess output pipe - this
73    avoids the inefficiency of frequently reading small amounts of data.
74    This is primarily necessary for handling DOS processes on Windows 95,
75    but is useful for Win32 processes on both Win95 and NT as well.  */
76 Lisp_Object Vwin32_pipe_read_delay;
77
78 /* Control whether stat() attempts to generate fake but hopefully
79    "accurate" inode values, by hashing the absolute truenames of files.
80    This should detect aliasing between long and short names, but still
81    allows the possibility of hash collisions.  */
82 Lisp_Object Vwin32_generate_fake_inodes;
83
84 Lisp_Object Qhigh, Qlow;
85
86 extern Lisp_Object Vlisp_EXEC_SUFFIXES;
87
88 #ifndef DEBUG_XEMACS
89 __inline
90 #endif
91 void _DebPrint (const char *fmt, ...)
92 {
93 #ifdef DEBUG_XEMACS
94   char buf[1024];
95   va_list args;
96
97   va_start (args, fmt);
98   vsprintf (buf, fmt, args);
99   va_end (args);
100   OutputDebugString (buf);
101 #endif
102 }
103
104 /* sys_signal moved to nt.c. It's now called mswindows_signal... */
105
106 /* Defined in <process.h> which conflicts with the local copy */
107 #define _P_NOWAIT 1
108
109 /* Child process management list.  */
110 int child_proc_count = 0;
111 child_process child_procs[ MAX_CHILDREN ];
112 child_process *dead_child = NULL;
113
114 DWORD WINAPI reader_thread (void *arg);
115
116 /* Find an unused process slot.  */
117 child_process *
118 new_child (void)
119 {
120   child_process *cp;
121   DWORD id;
122   
123   for (cp = child_procs+(child_proc_count-1); cp >= child_procs; cp--)
124     if (!CHILD_ACTIVE (cp))
125       goto Initialize;
126   if (child_proc_count == MAX_CHILDREN)
127     return NULL;
128   cp = &child_procs[child_proc_count++];
129
130  Initialize:
131   xzero (*cp);
132   cp->fd = -1;
133   cp->pid = -1;
134   if (cp->procinfo.hProcess)
135     CloseHandle(cp->procinfo.hProcess);
136   cp->procinfo.hProcess = NULL;
137   cp->status = STATUS_READ_ERROR;
138
139   /* use manual reset event so that select() will function properly */
140   cp->char_avail = CreateEvent (NULL, TRUE, FALSE, NULL);
141   if (cp->char_avail)
142     {
143       cp->char_consumed = CreateEvent (NULL, FALSE, FALSE, NULL);
144       if (cp->char_consumed)
145         {
146           cp->thrd = CreateThread (NULL, 1024, reader_thread, cp, 0, &id);
147           if (cp->thrd)
148             return cp;
149         }
150     }
151   delete_child (cp);
152   return NULL;
153 }
154
155 void 
156 delete_child (child_process *cp)
157 {
158   int i;
159
160   /* Should not be deleting a child that is still needed. */
161   for (i = 0; i < MAXDESC; i++)
162     if (fd_info[i].cp == cp)
163       abort ();
164
165   if (!CHILD_ACTIVE (cp))
166     return;
167
168   /* reap thread if necessary */
169   if (cp->thrd)
170     {
171       DWORD rc;
172
173       if (GetExitCodeThread (cp->thrd, &rc) && rc == STILL_ACTIVE)
174         {
175           /* let the thread exit cleanly if possible */
176           cp->status = STATUS_READ_ERROR;
177           SetEvent (cp->char_consumed);
178           if (WaitForSingleObject (cp->thrd, 1000) != WAIT_OBJECT_0)
179             {
180               DebPrint (("delete_child.WaitForSingleObject (thread) failed "
181                          "with %lu for fd %ld\n", GetLastError (), cp->fd));
182               TerminateThread (cp->thrd, 0);
183             }
184         }
185       CloseHandle (cp->thrd);
186       cp->thrd = NULL;
187     }
188   if (cp->char_avail)
189     {
190       CloseHandle (cp->char_avail);
191       cp->char_avail = NULL;
192     }
193   if (cp->char_consumed)
194     {
195       CloseHandle (cp->char_consumed);
196       cp->char_consumed = NULL;
197     }
198
199   /* update child_proc_count (highest numbered slot in use plus one) */
200   if (cp == child_procs + child_proc_count - 1)
201     {
202       for (i = child_proc_count-1; i >= 0; i--)
203         if (CHILD_ACTIVE (&child_procs[i]))
204           {
205             child_proc_count = i + 1;
206             break;
207           }
208     }
209   if (i < 0)
210     child_proc_count = 0;
211 }
212
213 /* Find a child by pid.  */
214 static child_process *
215 find_child_pid (DWORD pid)
216 {
217   child_process *cp;
218
219   for (cp = child_procs+(child_proc_count-1); cp >= child_procs; cp--)
220     if (CHILD_ACTIVE (cp) && pid == cp->pid)
221       return cp;
222   return NULL;
223 }
224
225 /* Function to do blocking read of one byte, needed to implement
226    select.  It is only allowed on sockets and pipes. */
227 static int
228 _sys_read_ahead (int fd)
229 {
230   child_process * cp;
231   int rc = 0;
232
233   if (fd < 0 || fd >= MAXDESC)
234     return STATUS_READ_ERROR;
235
236   cp = fd_info[fd].cp;
237
238   if (cp == NULL || cp->fd != fd || cp->status != STATUS_READ_READY)
239     return STATUS_READ_ERROR;
240
241   if ((fd_info[fd].flags & (FILE_PIPE | FILE_SOCKET)) == 0
242       || (fd_info[fd].flags & FILE_READ) == 0)
243     {
244       /* fd is not a pipe or socket */
245       abort ();
246     }
247   
248   cp->status = STATUS_READ_IN_PROGRESS;
249   
250   if (fd_info[fd].flags & FILE_PIPE)
251     {
252       rc = _read (fd, &cp->chr, sizeof (char));
253
254       /* Give subprocess time to buffer some more output for us before
255          reporting that input is available; we need this because Win95
256          connects DOS programs to pipes by making the pipe appear to be
257          the normal console stdout - as a result most DOS programs will
258          write to stdout without buffering, ie.  one character at a
259          time.  Even some Win32 programs do this - "dir" in a command
260          shell on NT is very slow if we don't do this. */
261       if (rc > 0)
262         {
263           int wait = XINT (Vwin32_pipe_read_delay);
264
265           if (wait > 0)
266             Sleep (wait);
267           else if (wait < 0)
268             while (++wait <= 0)
269               /* Yield remainder of our time slice, effectively giving a
270                  temporary priority boost to the child process. */
271               Sleep (0);
272         }
273     }
274
275   if (rc == sizeof (char))
276     cp->status = STATUS_READ_SUCCEEDED;
277   else
278     cp->status = STATUS_READ_FAILED;
279
280   return cp->status;
281 }
282
283 /* Thread proc for child process and socket reader threads. Each thread
284    is normally blocked until woken by select() to check for input by
285    reading one char.  When the read completes, char_avail is signalled
286    to wake up the select emulator and the thread blocks itself again. */
287 DWORD WINAPI 
288 reader_thread (void *arg)
289 {
290   child_process *cp;
291   
292   /* Our identity */
293   cp = (child_process *)arg;
294   
295   /* <matts@tibco.com> - I think the test below is wrong - we don't
296      want to wait for someone to signal char_consumed, as we haven't
297      read anything for them to consume yet! */
298
299   /*
300   if (cp == NULL ||
301       WaitForSingleObject (cp->char_consumed, INFINITE) != WAIT_OBJECT_0)
302   */
303
304   if (cp == NULL)
305   {
306       return 1;
307   }
308
309   for (;;)
310     {
311       int rc;
312
313       rc = _sys_read_ahead (cp->fd);
314
315       /* The name char_avail is a misnomer - it really just means the
316          read-ahead has completed, whether successfully or not. */
317       if (!SetEvent (cp->char_avail))
318         {
319           DebPrint (("reader_thread.SetEvent failed with %lu for fd %ld\n",
320                      GetLastError (), cp->fd));
321           return 1;
322         }
323
324       if (rc == STATUS_READ_ERROR)
325       {
326         /* We are finished, so clean up handles and set to NULL so
327            that CHILD_ACTIVE will see what is going on */
328         if (cp->char_avail) {
329           CloseHandle (cp->char_avail);
330           cp->char_avail = NULL;
331         }
332         if (cp->thrd) {
333           CloseHandle (cp->thrd);
334           cp->thrd = NULL;
335         }
336         if (cp->char_consumed) {
337           CloseHandle(cp->char_consumed);
338           cp->char_consumed = NULL;
339         }
340         if (cp->procinfo.hProcess)
341         {
342           CloseHandle (cp->procinfo.hProcess);
343           cp->procinfo.hProcess=NULL;
344         }
345         return 1;
346       }
347         
348       /* If the read died, the child has died so let the thread die */
349       if (rc == STATUS_READ_FAILED)
350         break;
351         
352       /* Wait until our input is acknowledged before reading again */
353       if (WaitForSingleObject (cp->char_consumed, INFINITE) != WAIT_OBJECT_0)
354         {
355           DebPrint (("reader_thread.WaitForSingleObject failed with "
356                      "%lu for fd %ld\n", GetLastError (), cp->fd));
357           break;
358         }
359     }
360   /* We are finished, so clean up handles and set to NULL so that
361      CHILD_ACTIVE will see what is going on */
362   if (cp->char_avail) {
363     CloseHandle (cp->char_avail);
364     cp->char_avail = NULL;
365   }
366   if (cp->thrd) {
367     CloseHandle (cp->thrd);
368     cp->thrd = NULL;
369   }
370   if (cp->char_consumed) {
371     CloseHandle(cp->char_consumed);
372     cp->char_consumed = NULL;
373   }
374   if (cp->procinfo.hProcess)
375   {
376     CloseHandle (cp->procinfo.hProcess);
377     cp->procinfo.hProcess=NULL;
378   }
379   
380   return 0;
381 }
382
383 /* To avoid Emacs changing directory, we just record here the directory
384    the new process should start in.  This is set just before calling
385    sys_spawnve, and is not generally valid at any other time.  */
386 static const char * process_dir;
387
388 static BOOL 
389 create_child (const char *exe, char *cmdline, char *env,
390               int * pPid, child_process *cp)
391 {
392   STARTUPINFO start;
393   SECURITY_ATTRIBUTES sec_attrs;
394   SECURITY_DESCRIPTOR sec_desc;
395   char dir[ MAXPATHLEN ];
396   
397   if (cp == NULL) abort ();
398   
399   xzero (start);
400   start.cb = sizeof (start);
401   
402   if (NILP (Vwin32_start_process_show_window))
403   start.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
404   else
405     start.dwFlags = STARTF_USESTDHANDLES;
406   start.wShowWindow = SW_HIDE;
407
408   start.hStdInput = GetStdHandle (STD_INPUT_HANDLE);
409   start.hStdOutput = GetStdHandle (STD_OUTPUT_HANDLE);
410   start.hStdError = GetStdHandle (STD_ERROR_HANDLE);
411
412   /* Explicitly specify no security */
413   if (!InitializeSecurityDescriptor (&sec_desc, SECURITY_DESCRIPTOR_REVISION))
414     goto EH_Fail;
415   if (!SetSecurityDescriptorDacl (&sec_desc, TRUE, NULL, FALSE))
416     goto EH_Fail;
417   sec_attrs.nLength = sizeof (sec_attrs);
418   sec_attrs.lpSecurityDescriptor = &sec_desc;
419   sec_attrs.bInheritHandle = FALSE;
420   
421   strcpy (dir, process_dir);
422   unixtodos_filename (dir);
423   
424   if (!CreateProcess (exe, cmdline, &sec_attrs, NULL, TRUE,
425                       (!NILP (Vwin32_start_process_share_console)
426                        ? CREATE_NEW_PROCESS_GROUP
427                        : CREATE_NEW_CONSOLE),
428                       env, dir,
429                       &start, &cp->procinfo))
430     goto EH_Fail;
431
432   cp->pid = (int) cp->procinfo.dwProcessId;
433
434   CloseHandle (cp->procinfo.hThread);
435   CloseHandle (cp->procinfo.hProcess);
436   cp->procinfo.hThread=NULL;
437   cp->procinfo.hProcess=NULL;
438
439   /* pid must fit in a Lisp_Int */
440
441
442   *pPid = cp->pid;
443   
444   return TRUE;
445   
446  EH_Fail:
447   DebPrint (("create_child.CreateProcess failed: %ld\n", GetLastError()););
448   return FALSE;
449 }
450
451 void
452 merge_and_sort_env (char **envp1, char **envp2, char **new_envp)
453 {
454   char **optr, **nptr;
455   int num;
456
457   nptr = new_envp;
458   optr = envp1;
459   while (*optr)
460     *nptr++ = *optr++;
461   num = optr - envp1;
462
463   optr = envp2;
464   while (*optr)
465     *nptr++ = *optr++;
466   num += optr - envp2;
467
468   qsort (new_envp, num, sizeof (char*), compare_env);
469
470   *nptr = NULL;
471 }
472
473 /* When a new child process is created we need to register it in our list,
474    so intercept spawn requests.  */
475 int 
476 sys_spawnve (int mode, const char *cmdname,
477              const char * const *argv, const char *const *envp)
478 {
479   Lisp_Object program, full;
480   char *cmdline, *env, *parg, **targ;
481   int arglen, numenv;
482   int pid;
483   child_process *cp;
484   int is_dos_app, is_cygnus_app;
485   int do_quoting = 0;
486   char escape_char = 0;
487   /* We pass our process ID to our children by setting up an environment
488      variable in their environment.  */
489   char ppid_env_var_buffer[64];
490   char *extra_env[] = {ppid_env_var_buffer, NULL};
491   struct gcpro gcpro1;
492     
493   /* We don't care about the other modes */
494   if (mode != _P_NOWAIT)
495     {
496       errno = EINVAL;
497       return -1;
498     }
499
500   /* Handle executable names without an executable suffix.  */
501   program = make_string (cmdname, strlen (cmdname));
502   GCPRO1 (program);
503   if (NILP (Ffile_executable_p (program)))
504     {
505       full = Qnil;
506       locate_file (Vexec_path, program, Vlisp_EXEC_SUFFIXES, &full, 1);
507       if (NILP (full))
508         {
509           UNGCPRO;
510           errno = EINVAL;
511           return -1;
512         }
513       TO_EXTERNAL_FORMAT (LISP_STRING, full,
514                           C_STRING_ALLOCA, cmdname,
515                           Qfile_name);
516     }
517   else
518     {
519       cmdname = (char*)alloca (strlen (argv[0]) + 1);
520       strcpy ((char*)cmdname, argv[0]);
521     }
522   UNGCPRO;
523
524   /* make sure argv[0] and cmdname are both in DOS format */
525   unixtodos_filename ((char*)cmdname);
526   /* #### KLUDGE */
527   ((const char**)argv)[0] = cmdname;
528
529   /* Determine whether program is a 16-bit DOS executable, or a Win32
530      executable that is implicitly linked to the Cygnus dll (implying it
531      was compiled with the Cygnus GNU toolchain and hence relies on
532      cygwin.dll to parse the command line - we use this to decide how to
533      escape quote chars in command line args that must be quoted). */
534   mswindows_executable_type (cmdname, &is_dos_app, &is_cygnus_app);
535
536   /* On Windows 95, if cmdname is a DOS app, we invoke a helper
537      application to start it by specifying the helper app as cmdname,
538      while leaving the real app name as argv[0].  */
539   if (is_dos_app)
540     {
541       cmdname = (char*) alloca (MAXPATHLEN);
542       if (egetenv ("CMDPROXY"))
543         strcpy ((char*)cmdname, egetenv ("CMDPROXY"));
544       else
545     {
546           strcpy ((char*)cmdname, XSTRING_DATA (Vinvocation_directory));
547           strcat ((char*)cmdname, "cmdproxy.exe");
548         }
549       unixtodos_filename ((char*)cmdname);
550     }
551   
552   /* we have to do some conjuring here to put argv and envp into the
553      form CreateProcess wants...  argv needs to be a space separated/null
554      terminated list of parameters, and envp is a null
555      separated/double-null terminated list of parameters.
556
557      Additionally, zero-length args and args containing whitespace or
558      quote chars need to be wrapped in double quotes - for this to work,
559      embedded quotes need to be escaped as well.  The aim is to ensure
560      the child process reconstructs the argv array we start with
561      exactly, so we treat quotes at the beginning and end of arguments
562      as embedded quotes.
563
564      The Win32 GNU-based library from Cygnus doubles quotes to escape
565      them, while MSVC uses backslash for escaping.  (Actually the MSVC
566      startup code does attempt to recognize doubled quotes and accept
567      them, but gets it wrong and ends up requiring three quotes to get a
568      single embedded quote!)  So by default we decide whether to use
569      quote or backslash as the escape character based on whether the
570      binary is apparently a Cygnus compiled app.
571
572      Note that using backslash to escape embedded quotes requires
573      additional special handling if an embedded quote is already
574      preceded by backslash, or if an arg requiring quoting ends with
575      backslash.  In such cases, the run of escape characters needs to be
576      doubled.  For consistency, we apply this special handling as long
577      as the escape character is not quote.
578    
579      Since we have no idea how large argv and envp are likely to be we
580      figure out list lengths on the fly and allocate them.  */
581   
582   if (!NILP (Vwin32_quote_process_args))
583     {
584       do_quoting = 1;
585       /* Override escape char by binding win32-quote-process-args to
586          desired character, or use t for auto-selection.  */
587       if (INTP (Vwin32_quote_process_args))
588         escape_char = (char) XINT (Vwin32_quote_process_args);
589       else
590         escape_char = is_cygnus_app ? '"' : '\\';
591     }
592   
593   /* do argv...  */
594   arglen = 0;
595   targ = (char**)argv;
596   while (*targ)
597     {
598       char * p = *targ;
599       int need_quotes = 0;
600       int escape_char_run = 0;
601
602       if (*p == 0)
603         need_quotes = 1;
604       for ( ; *p; p++)
605         {
606           if (*p == '"')
607           {
608               /* allow for embedded quotes to be escaped */
609             arglen++;
610               need_quotes = 1;
611               /* handle the case where the embedded quote is already escaped */
612               if (escape_char_run > 0)
613                 {
614                   /* To preserve the arg exactly, we need to double the
615                      preceding escape characters (plus adding one to
616                      escape the quote character itself).  */
617                   arglen += escape_char_run;
618           }
619             }
620       else if (*p == ' ' || *p == '\t')
621             {
622               need_quotes = 1;
623             }
624
625           if (*p == escape_char && escape_char != '"')
626             escape_char_run++;
627           else
628             escape_char_run = 0;
629         }
630       if (need_quotes)
631         {
632         arglen += 2;
633           /* handle the case where the arg ends with an escape char - we
634              must not let the enclosing quote be escaped.  */
635           if (escape_char_run > 0)
636             arglen += escape_char_run;
637         }
638       arglen += strlen (*targ++) + 1;
639     }
640   cmdline = (char*) alloca (arglen);
641   targ = (char**)argv;
642   parg = cmdline;
643   while (*targ)
644     {
645       char * p = *targ;
646       int need_quotes = 0;
647
648       if (*p == 0)
649         need_quotes = 1;
650
651       if (do_quoting)
652         {
653           for ( ; *p; p++)
654             if (*p == ' ' || *p == '\t' || *p == '"')
655               need_quotes = 1;
656         }
657       if (need_quotes)
658         {
659           int escape_char_run = 0;
660           char * first;
661           char * last;
662
663           p = *targ;
664           first = p;
665           last = p + strlen (p) - 1;
666           *parg++ = '"';
667 #if 0
668           /* This version does not escape quotes if they occur at the
669              beginning or end of the arg - this could lead to incorrect
670              behavior when the arg itself represents a command line
671              containing quoted args.  I believe this was originally done
672              as a hack to make some things work, before
673              `win32-quote-process-args' was added.  */
674           while (*p)
675             {
676               if (*p == '"' && p > first && p < last)
677                 *parg++ = escape_char;  /* escape embedded quotes */
678               *parg++ = *p++;
679             }
680 #else
681           for ( ; *p; p++)
682             {
683               if (*p == '"')
684                 {
685                   /* double preceding escape chars if any */
686                   while (escape_char_run > 0)
687                     {
688                       *parg++ = escape_char;
689                       escape_char_run--;
690                     }
691                   /* escape all quote chars, even at beginning or end */
692                   *parg++ = escape_char;
693                 }
694               *parg++ = *p;
695
696               if (*p == escape_char && escape_char != '"')
697                 escape_char_run++;
698               else
699                 escape_char_run = 0;
700             }
701           /* double escape chars before enclosing quote */
702           while (escape_char_run > 0)
703             {
704               *parg++ = escape_char;
705               escape_char_run--;
706             }
707 #endif
708           *parg++ = '"';
709         }
710       else
711         {
712           strcpy (parg, *targ);
713           parg += strlen (*targ);
714         }
715       *parg++ = ' ';
716       targ++;
717     }
718   *--parg = '\0';
719   
720   /* and envp...  */
721   arglen = 1;
722   targ = (char**) envp;
723   numenv = 1; /* for end null */
724   while (*targ)
725     {
726       arglen += strlen (*targ++) + 1;
727       numenv++;
728     }
729   /* extra env vars... */
730   sprintf (ppid_env_var_buffer, "__PARENT_PROCESS_ID=%d", 
731            GetCurrentProcessId ());
732   arglen += strlen (ppid_env_var_buffer) + 1;
733   numenv++;
734
735   /* merge env passed in and extra env into one, and sort it.  */
736   targ = (char **) alloca (numenv * sizeof (char*));
737   merge_and_sort_env ((char**) envp, extra_env, targ);
738
739   /* concatenate env entries.  */
740   env = (char*) alloca (arglen);
741   parg = env;
742   while (*targ)
743     {
744       strcpy (parg, *targ);
745       parg += strlen (*targ++);
746       *parg++ = '\0';
747     }
748   *parg++ = '\0';
749   *parg = '\0';
750
751   cp = new_child ();
752   if (cp == NULL)
753     {
754       errno = EAGAIN;
755       return -1;
756     }
757   
758   /* Now create the process.  */
759   if (!create_child (cmdname, cmdline, env, &pid, cp))
760     {
761       delete_child (cp);
762       errno = ENOEXEC;
763       return -1;
764     }
765
766   return pid;
767 }
768
769 /* Substitute for certain kill () operations */
770
771 static BOOL CALLBACK
772 find_child_console (HWND hwnd, child_process * cp)
773 {
774   DWORD thread_id;
775   DWORD process_id;
776
777   thread_id = GetWindowThreadProcessId (hwnd, &process_id);
778   if (process_id == cp->procinfo.dwProcessId)
779     {
780       char window_class[32];
781
782       GetClassName (hwnd, window_class, sizeof (window_class));
783       if (strcmp (window_class,
784                   mswindows_windows9x_p()
785                   ? "tty"
786                   : "ConsoleWindowClass") == 0)
787         {
788           cp->hwnd = hwnd;
789           return FALSE;
790         }
791     }
792   /* keep looking */
793   return TRUE;
794 }
795
796 int 
797 sys_kill (int pid, int sig)
798 {
799   child_process *cp;
800   HANDLE proc_hand;
801   int need_to_free = 0;
802   int rc = 0;
803   
804   /* Only handle signals that will result in the process dying */
805   if (sig != SIGINT && sig != SIGKILL && sig != SIGQUIT && sig != SIGHUP)
806     {
807       errno = EINVAL;
808       return -1;
809     }
810
811   cp = find_child_pid (pid);
812   if (cp == NULL)
813     {
814       proc_hand = OpenProcess (PROCESS_TERMINATE, 0, pid);
815       if (proc_hand == NULL)
816         {
817           errno = EPERM;
818           return -1;
819         }
820       need_to_free = 1;
821     }
822   else
823     {
824       proc_hand = cp->procinfo.hProcess;
825       pid = cp->procinfo.dwProcessId;
826
827       /* Try to locate console window for process. */
828       EnumWindows ((WNDENUMPROC)find_child_console, (LPARAM) cp);
829     }
830   
831   if (sig == SIGINT)
832     {
833       if (NILP (Vwin32_start_process_share_console) && cp && cp->hwnd)
834         {
835           BYTE control_scan_code = (BYTE) MapVirtualKey (VK_CONTROL, 0);
836           BYTE vk_break_code = VK_CANCEL;
837           BYTE break_scan_code = (BYTE) MapVirtualKey (vk_break_code, 0);
838           HWND foreground_window;
839
840           if (break_scan_code == 0)
841             {
842               /* Fake Ctrl-C if we can't manage Ctrl-Break. */
843               vk_break_code = 'C';
844               break_scan_code = (BYTE) MapVirtualKey (vk_break_code, 0);
845             }
846
847           foreground_window = GetForegroundWindow ();
848           if (foreground_window && SetForegroundWindow (cp->hwnd))
849             {
850               /* Generate keystrokes as if user had typed Ctrl-Break or Ctrl-C.  */
851               keybd_event (VK_CONTROL, control_scan_code, 0, 0);
852               keybd_event (vk_break_code, break_scan_code, 0, 0);
853               keybd_event (vk_break_code, break_scan_code, KEYEVENTF_KEYUP, 0);
854               keybd_event (VK_CONTROL, control_scan_code, KEYEVENTF_KEYUP, 0);
855
856               /* Sleep for a bit to give time for Emacs frame to respond
857                  to focus change events (if Emacs was active app).  */
858               Sleep (10);
859
860               SetForegroundWindow (foreground_window);
861             }
862         }
863       /* Ctrl-Break is NT equivalent of SIGINT.  */
864       else if (!GenerateConsoleCtrlEvent (CTRL_BREAK_EVENT, pid))
865         {
866           DebPrint (("sys_kill.GenerateConsoleCtrlEvent return %d "
867                      "for pid %lu\n", GetLastError (), pid));
868           errno = EINVAL;
869           rc = -1;
870         }
871     }
872   else
873     {
874       if (NILP (Vwin32_start_process_share_console) && cp && cp->hwnd)
875         {
876 #if 1
877           if (mswindows_windows9x_p())
878             {
879 /*
880    Another possibility is to try terminating the VDM out-right by
881    calling the Shell VxD (id 0x17) V86 interface, function #4
882    "SHELL_Destroy_VM", ie.
883
884      mov edx,4
885      mov ebx,vm_handle
886      call shellapi
887
888    First need to determine the current VM handle, and then arrange for
889    the shellapi call to be made from the system vm (by using
890    Switch_VM_and_callback).
891
892    Could try to invoke DestroyVM through CallVxD.
893
894 */
895 #if 0
896               /* On Win95, posting WM_QUIT causes the 16-bit subsystem
897                  to hang when cmdproxy is used in conjunction with
898                  command.com for an interactive shell.  Posting
899                  WM_CLOSE pops up a dialog that, when Yes is selected,
900                  does the same thing.  TerminateProcess is also less
901                  than ideal in that subprocesses tend to stick around
902                  until the machine is shutdown, but at least it
903                  doesn't freeze the 16-bit subsystem.  */
904               PostMessage (cp->hwnd, WM_QUIT, 0xff, 0);
905 #endif
906               if (!TerminateProcess (proc_hand, 0xff))
907                 {
908                   DebPrint (("sys_kill.TerminateProcess returned %d "
909                              "for pid %lu\n", GetLastError (), pid));
910                   errno = EINVAL;
911                   rc = -1;
912                 }
913             }
914           else
915 #endif
916             PostMessage (cp->hwnd, WM_CLOSE, 0, 0);
917         }
918       /* Kill the process.  On Win32 this doesn't kill child processes
919          so it doesn't work very well for shells which is why it's not
920          used in every case.  */
921       else if (!TerminateProcess (proc_hand, 0xff))
922         {
923           DebPrint (("sys_kill.TerminateProcess returned %d "
924                      "for pid %lu\n", GetLastError (), pid));
925           errno = EINVAL;
926           rc = -1;
927         }
928     }
929
930   if (need_to_free)
931     CloseHandle (proc_hand);
932
933   return rc;
934 }
935
936 #if 0
937 /* Sync with FSF Emacs 19.34.6 note: ifdef'ed out in XEmacs */
938 extern int report_file_error (const char *, Lisp_Object);
939 #endif
940 /* The following two routines are used to manipulate stdin, stdout, and
941    stderr of our child processes.
942
943    Assuming that in, out, and err are *not* inheritable, we make them
944    stdin, stdout, and stderr of the child as follows:
945
946    - Save the parent's current standard handles.
947    - Set the std handles to inheritable duplicates of the ones being passed in.
948      (Note that _get_osfhandle() is an io.h procedure that retrieves the
949      NT file handle for a crt file descriptor.)
950    - Spawn the child, which inherits in, out, and err as stdin,
951      stdout, and stderr. (see Spawnve)
952    - Close the std handles passed to the child.
953    - Reset the parent's standard handles to the saved handles.
954      (see reset_standard_handles)
955    We assume that the caller closes in, out, and err after calling us.  */
956
957 void
958 prepare_standard_handles (int in, int out, int err, HANDLE handles[3])
959 {
960   HANDLE parent;
961   HANDLE newstdin, newstdout, newstderr;
962
963   parent = GetCurrentProcess ();
964
965   handles[0] = GetStdHandle (STD_INPUT_HANDLE);
966   handles[1] = GetStdHandle (STD_OUTPUT_HANDLE);
967   handles[2] = GetStdHandle (STD_ERROR_HANDLE);
968
969   /* make inheritable copies of the new handles */
970   if (!DuplicateHandle (parent, 
971                        (HANDLE) _get_osfhandle (in),
972                        parent,
973                        &newstdin, 
974                        0, 
975                        TRUE, 
976                        DUPLICATE_SAME_ACCESS))
977     report_file_error ("Duplicating input handle for child", Qnil);
978   
979   if (!DuplicateHandle (parent,
980                        (HANDLE) _get_osfhandle (out),
981                        parent,
982                        &newstdout,
983                        0,
984                        TRUE,
985                        DUPLICATE_SAME_ACCESS))
986     report_file_error ("Duplicating output handle for child", Qnil);
987   
988   if (!DuplicateHandle (parent,
989                        (HANDLE) _get_osfhandle (err),
990                        parent,
991                        &newstderr,
992                        0,
993                        TRUE,
994                        DUPLICATE_SAME_ACCESS))
995     report_file_error ("Duplicating error handle for child", Qnil);
996
997   /* and store them as our std handles */
998   if (!SetStdHandle (STD_INPUT_HANDLE, newstdin))
999     report_file_error ("Changing stdin handle", Qnil);
1000   
1001   if (!SetStdHandle (STD_OUTPUT_HANDLE, newstdout))
1002     report_file_error ("Changing stdout handle", Qnil);
1003
1004   if (!SetStdHandle (STD_ERROR_HANDLE, newstderr))
1005     report_file_error ("Changing stderr handle", Qnil);
1006 }
1007
1008 void
1009 reset_standard_handles (int in, int out, int err, HANDLE handles[3])
1010 {
1011   /* close the duplicated handles passed to the child */
1012   CloseHandle (GetStdHandle (STD_INPUT_HANDLE));
1013   CloseHandle (GetStdHandle (STD_OUTPUT_HANDLE));
1014   CloseHandle (GetStdHandle (STD_ERROR_HANDLE));
1015
1016   /* now restore parent's saved std handles */
1017   SetStdHandle (STD_INPUT_HANDLE, handles[0]);
1018   SetStdHandle (STD_OUTPUT_HANDLE, handles[1]);
1019   SetStdHandle (STD_ERROR_HANDLE, handles[2]);
1020 }
1021
1022 void
1023 set_process_dir (const char * dir)
1024 {
1025   process_dir = dir;
1026 }
1027 \f
1028 /* Some miscellaneous functions that are Windows specific, but not GUI
1029    specific (ie. are applicable in terminal or batch mode as well).  */
1030
1031 DEFUN ("win32-short-file-name", Fwin32_short_file_name, 1, 1, "", /*
1032   Return the short file name version (8.3) of the full path of FILENAME.
1033 If FILENAME does not exist, return nil.
1034 All path elements in FILENAME are converted to their short names.
1035 */
1036        (filename))
1037 {
1038   char shortname[MAX_PATH];
1039
1040   CHECK_STRING (filename);
1041
1042   /* first expand it.  */
1043   filename = Fexpand_file_name (filename, Qnil);
1044
1045   /* luckily, this returns the short version of each element in the path.  */
1046   if (GetShortPathName (XSTRING_DATA (filename), shortname, MAX_PATH) == 0)
1047     return Qnil;
1048
1049   CORRECT_DIR_SEPS (shortname);
1050
1051   return build_string (shortname);
1052 }
1053
1054
1055 DEFUN ("win32-long-file-name", Fwin32_long_file_name, 1, 1, "", /*
1056   Return the long file name version of the full path of FILENAME.
1057 If FILENAME does not exist, return nil.
1058 All path elements in FILENAME are converted to their long names.
1059 */
1060        (filename))
1061 {
1062   char longname[ MAX_PATH ];
1063
1064   CHECK_STRING (filename);
1065
1066   /* first expand it.  */
1067   filename = Fexpand_file_name (filename, Qnil);
1068
1069   if (!win32_get_long_filename (XSTRING_DATA (filename), longname, MAX_PATH))
1070     return Qnil;
1071
1072   CORRECT_DIR_SEPS (longname);
1073
1074   return build_string (longname);
1075 }
1076
1077 DEFUN ("win32-set-process-priority", Fwin32_set_process_priority, 2, 2, "", /*
1078   Set the priority of PROCESS to PRIORITY.
1079 If PROCESS is nil, the priority of Emacs is changed, otherwise the
1080 priority of the process whose pid is PROCESS is changed.
1081 PRIORITY should be one of the symbols high, normal, or low;
1082 any other symbol will be interpreted as normal.
1083
1084 If successful, the return value is t, otherwise nil.
1085 */
1086        (process, priority))
1087 {
1088   HANDLE proc_handle = GetCurrentProcess ();
1089   DWORD  priority_class = NORMAL_PRIORITY_CLASS;
1090   Lisp_Object result = Qnil;
1091
1092   CHECK_SYMBOL (priority);
1093
1094   if (!NILP (process))
1095     {
1096       DWORD pid;
1097       child_process *cp;
1098
1099       CHECK_INT (process);
1100
1101       /* Allow pid to be an internally generated one, or one obtained
1102          externally.  This is necessary because real pids on Win95 are
1103          negative.  */
1104
1105       pid = XINT (process);
1106       cp = find_child_pid (pid);
1107       if (cp != NULL)
1108         pid = cp->procinfo.dwProcessId;
1109
1110       proc_handle = OpenProcess (PROCESS_SET_INFORMATION, FALSE, pid);
1111     }
1112
1113   if (EQ (priority, Qhigh))
1114     priority_class = HIGH_PRIORITY_CLASS;
1115   else if (EQ (priority, Qlow))
1116     priority_class = IDLE_PRIORITY_CLASS;
1117
1118   if (proc_handle != NULL)
1119     {
1120       if (SetPriorityClass (proc_handle, priority_class))
1121         result = Qt;
1122       if (!NILP (process))
1123         CloseHandle (proc_handle);
1124     }
1125
1126   return result;
1127 }
1128
1129
1130 DEFUN ("win32-get-locale-info", Fwin32_get_locale_info, 1, 2, "", /*
1131   "Return information about the Windows locale LCID.
1132 By default, return a three letter locale code which encodes the default
1133 language as the first two characters, and the country or regional variant
1134 as the third letter.  For example, ENU refers to `English (United States)',
1135 while ENC means `English (Canadian)'.
1136
1137 If the optional argument LONGFORM is non-nil, the long form of the locale
1138 name is returned, e.g. `English (United States)' instead.
1139
1140 If LCID (a 16-bit number) is not a valid locale, the result is nil.
1141 */
1142      (lcid, longform))
1143 {
1144   int got_abbrev;
1145   int got_full;
1146   char abbrev_name[32] = { 0 };
1147   char full_name[256] = { 0 };
1148
1149   CHECK_INT (lcid);
1150
1151   if (!IsValidLocale (XINT (lcid), LCID_SUPPORTED))
1152     return Qnil;
1153
1154   if (NILP (longform))
1155     {
1156       got_abbrev = GetLocaleInfo (XINT (lcid),
1157                                   LOCALE_SABBREVLANGNAME | LOCALE_USE_CP_ACP,
1158                                   abbrev_name, sizeof (abbrev_name));
1159       if (got_abbrev)
1160         return build_string (abbrev_name);
1161     }
1162   else
1163     {
1164       got_full = GetLocaleInfo (XINT (lcid),
1165                                 LOCALE_SLANGUAGE | LOCALE_USE_CP_ACP,
1166                                 full_name, sizeof (full_name));
1167       if (got_full)
1168         return build_string (full_name);
1169     }
1170
1171   return Qnil;
1172 }
1173
1174
1175 DEFUN ("win32-get-current-locale-id", Fwin32_get_current_locale_id, 0, 0, "", /*
1176   "Return Windows locale id for current locale setting.
1177 This is a numerical value; use `win32-get-locale-info' to convert to a
1178 human-readable form.
1179 */
1180        ())
1181 {
1182   return make_int (GetThreadLocale ());
1183 }
1184
1185
1186 DEFUN ("win32-get-default-locale-id", Fwin32_get_default_locale_id, 0, 1, "", /*
1187   "Return Windows locale id for default locale setting.
1188 By default, the system default locale setting is returned; if the optional
1189 parameter USERP is non-nil, the user default locale setting is returned.
1190 This is a numerical value; use `win32-get-locale-info' to convert to a
1191 human-readable form.
1192 */
1193        (userp))
1194 {
1195   if (NILP (userp))
1196     return make_int (GetSystemDefaultLCID ());
1197   return make_int (GetUserDefaultLCID ());
1198 }
1199
1200 DWORD int_from_hex (char * s)
1201 {
1202   DWORD val = 0;
1203   static char hex[] = "0123456789abcdefABCDEF";
1204   char * p;
1205
1206   while (*s && (p = strchr(hex, *s)) != NULL)
1207     {
1208       unsigned digit = p - hex;
1209       if (digit > 15)
1210         digit -= 6;
1211       val = val * 16 + digit;
1212       s++;
1213     }
1214   return val;
1215 }
1216
1217 /* We need to build a global list, since the EnumSystemLocale callback
1218    function isn't given a context pointer.  */
1219 Lisp_Object Vwin32_valid_locale_ids;
1220
1221 BOOL CALLBACK enum_locale_fn (LPTSTR localeNum)
1222 {
1223   DWORD id = int_from_hex (localeNum);
1224   Vwin32_valid_locale_ids = Fcons (make_int (id), Vwin32_valid_locale_ids);
1225   return TRUE;
1226 }
1227
1228 DEFUN ("win32-get-valid-locale-ids", Fwin32_get_valid_locale_ids, 0, 0, "", /*
1229   Return list of all valid Windows locale ids.
1230 Each id is a numerical value; use `win32-get-locale-info' to convert to a
1231 human-readable form.
1232 */
1233        ())
1234 {
1235   Vwin32_valid_locale_ids = Qnil;
1236
1237   EnumSystemLocales (enum_locale_fn, LCID_SUPPORTED);
1238
1239   Vwin32_valid_locale_ids = Fnreverse (Vwin32_valid_locale_ids);
1240   return Vwin32_valid_locale_ids;
1241 }
1242
1243
1244 DEFUN ("win32-set-current-locale", Fwin32_set_current_locale, 1, 1, "", /*
1245   Make Windows locale LCID be the current locale setting for Emacs.
1246 If successful, the new locale id is returned, otherwise nil.
1247 */
1248      (lcid))
1249 {
1250   CHECK_INT (lcid);
1251
1252   if (!IsValidLocale (XINT (lcid), LCID_SUPPORTED))
1253     return Qnil;
1254
1255   if (!SetThreadLocale (XINT (lcid)))
1256     return Qnil;
1257
1258 /* Sync with FSF Emacs 19.34.6 note: dwWinThreadId declared in
1259    w32term.h and defined in w32fns.c, both of which are not in current
1260    XEmacs.  #### Check what we lose by ifdef'ing out these. --marcpa */
1261 #if 0
1262   /* Need to set input thread locale if present.  */
1263   if (dwWinThreadId)
1264     /* Reply is not needed.  */
1265     PostThreadMessage (dwWinThreadId, WM_EMACS_SETLOCALE, XINT (lcid), 0);
1266 #endif
1267
1268   return make_int (GetThreadLocale ());
1269 }
1270
1271 \f
1272 void
1273 syms_of_ntproc (void)
1274 {
1275   DEFSUBR (Fwin32_short_file_name);
1276   DEFSUBR (Fwin32_long_file_name);
1277   DEFSUBR (Fwin32_set_process_priority);
1278   DEFSUBR (Fwin32_get_locale_info);
1279   DEFSUBR (Fwin32_get_current_locale_id);
1280   DEFSUBR (Fwin32_get_default_locale_id);
1281   DEFSUBR (Fwin32_get_valid_locale_ids);
1282   DEFSUBR (Fwin32_set_current_locale);
1283 }
1284
1285
1286 void
1287 vars_of_ntproc (void)
1288 {
1289   defsymbol (&Qhigh, "high");
1290   defsymbol (&Qlow, "low");
1291
1292   DEFVAR_LISP ("win32-quote-process-args", &Vwin32_quote_process_args /*
1293     Non-nil enables quoting of process arguments to ensure correct parsing.
1294 Because Windows does not directly pass argv arrays to child processes,
1295 programs have to reconstruct the argv array by parsing the command
1296 line string.  For an argument to contain a space, it must be enclosed
1297 in double quotes or it will be parsed as multiple arguments.
1298
1299 If the value is a character, that character will be used to escape any
1300 quote characters that appear, otherwise a suitable escape character
1301 will be chosen based on the type of the program.
1302 */ );
1303   Vwin32_quote_process_args = Qt;
1304
1305   DEFVAR_LISP ("win32-start-process-show-window",
1306                &Vwin32_start_process_show_window /*
1307     When nil, processes started via start-process hide their windows.
1308 When non-nil, they show their window in the method of their choice.
1309 */ );
1310   Vwin32_start_process_show_window = Qnil;
1311
1312   DEFVAR_LISP ("win32-start-process-share-console",
1313                &Vwin32_start_process_share_console /*
1314     When nil, processes started via start-process are given a new console.
1315 When non-nil, they share the Emacs console; this has the limitation of
1316 allowing only only DOS subprocess to run at a time (whether started directly
1317 or indirectly by Emacs), and preventing Emacs from cleanly terminating the
1318 subprocess group, but may allow Emacs to interrupt a subprocess that doesn't
1319 otherwise respond to interrupts from Emacs.
1320 */ );
1321   Vwin32_start_process_share_console = Qt;
1322
1323   DEFVAR_LISP ("win32-pipe-read-delay", &Vwin32_pipe_read_delay /*
1324     Forced delay before reading subprocess output.
1325 This is done to improve the buffering of subprocess output, by
1326 avoiding the inefficiency of frequently reading small amounts of data.
1327
1328 If positive, the value is the number of milliseconds to sleep before
1329 reading the subprocess output.  If negative, the magnitude is the number
1330 of time slices to wait (effectively boosting the priority of the child
1331 process temporarily).  A value of zero disables waiting entirely.
1332 */ );
1333   Vwin32_pipe_read_delay = make_int (50);
1334
1335 #if 0
1336   DEFVAR_LISP ("win32-generate-fake-inodes", &Vwin32_generate_fake_inodes /*
1337     "Non-nil means attempt to fake realistic inode values.
1338 This works by hashing the truename of files, and should detect 
1339 aliasing between long and short (8.3 DOS) names, but can have
1340 false positives because of hash collisions.  Note that determining
1341 the truename of a file can be slow.
1342 */ );
1343   Vwin32_generate_fake_inodes = Qnil;
1344 #endif
1345 }
1346
1347 /* end of ntproc.c */