import -ko -b 1.1.3 XEmacs XEmacs-21_2 r21-2-35
[chise/xemacs-chise.git.1] / src / callproc.c
1 /* Synchronous subprocess invocation for XEmacs.
2    Copyright (C) 1985, 86, 87, 88, 93, 94, 95 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 /* Synched up with: Mule 2.0, FSF 19.30. */
22 /* Partly sync'ed with 19.36.4 */
23
24 #include <config.h>
25 #include "lisp.h"
26
27 #include "buffer.h"
28 #include "commands.h"
29 #include "insdel.h"
30 #include "lstream.h"
31 #include "process.h"
32 #include "sysdep.h"
33 #include "window.h"
34 #ifdef FILE_CODING
35 #include "file-coding.h"
36 #endif
37
38 #include "systime.h"
39 #include "sysproc.h"
40 #include "sysfile.h" /* Always include after sysproc.h */
41 #include "syssignal.h" /* Always include before systty.h */
42 #include "systty.h"
43
44 #ifdef WIN32_NATIVE
45 #define _P_NOWAIT 1     /* from process.h */
46 #include "nt.h"
47 #endif
48
49 #ifdef WIN32_NATIVE
50 /* When we are starting external processes we need to know whether they
51    take binary input (no conversion) or text input (\n is converted to
52    \r\n).  Similarly for output: if newlines are written as \r\n then it's
53    text process output, otherwise it's binary.  */
54 Lisp_Object Vbinary_process_input;
55 Lisp_Object Vbinary_process_output;
56 #endif /* WIN32_NATIVE */
57
58 Lisp_Object Vshell_file_name;
59
60 /* The environment to pass to all subprocesses when they are started.
61    This is in the semi-bogus format of ("VAR=VAL" "VAR2=VAL2" ... )
62  */
63 Lisp_Object Vprocess_environment;
64
65 /* True iff we are about to fork off a synchronous process or if we
66    are waiting for it.  */
67 volatile int synch_process_alive;
68
69 /* Nonzero => this is a string explaining death of synchronous subprocess.  */
70 const char *synch_process_death;
71
72 /* If synch_process_death is zero,
73    this is exit code of synchronous subprocess.  */
74 int synch_process_retcode;
75 \f
76 /* Clean up when exiting Fcall_process_internal.
77    On Windows, delete the temporary file on any kind of termination.
78    On Unix, kill the process and any children on termination by signal.  */
79
80 /* Nonzero if this is termination due to exit.  */
81 static int call_process_exited;
82
83 Lisp_Object Vlisp_EXEC_SUFFIXES;
84
85 static Lisp_Object
86 call_process_kill (Lisp_Object fdpid)
87 {
88   Lisp_Object fd = Fcar (fdpid);
89   Lisp_Object pid = Fcdr (fdpid);
90
91   if (!NILP (fd))
92     close (XINT (fd));
93
94   if (!NILP (pid))
95     EMACS_KILLPG (XINT (pid), SIGKILL);
96
97   synch_process_alive = 0;
98   return Qnil;
99 }
100
101 static Lisp_Object
102 call_process_cleanup (Lisp_Object fdpid)
103 {
104   int fd  = XINT (Fcar (fdpid));
105   int pid = XINT (Fcdr (fdpid));
106
107   if (!call_process_exited &&
108       EMACS_KILLPG (pid, SIGINT) == 0)
109   {
110     int speccount = specpdl_depth ();
111
112     record_unwind_protect (call_process_kill, fdpid);
113     /* #### "c-G" -- need non-consing Single-key-description */
114     message ("Waiting for process to die...(type C-g again to kill it instantly)");
115
116 #ifdef WIN32_NATIVE
117     {
118       HANDLE pHandle = OpenProcess (PROCESS_ALL_ACCESS, 0, pid);
119       if (pHandle == NULL)
120         warn_when_safe (Qprocess, Qwarning,
121                         "cannot open process (PID %d) for cleanup", pid);
122       else
123         wait_for_termination (pHandle);
124     }
125 #else
126     wait_for_termination (pid);
127 #endif
128
129     /* "Discard" the unwind protect.  */
130     XCAR (fdpid) = Qnil;
131     XCDR (fdpid) = Qnil;
132     unbind_to (speccount, Qnil);
133
134     message ("Waiting for process to die... done");
135   }
136   synch_process_alive = 0;
137   close (fd);
138   return Qnil;
139 }
140
141 static Lisp_Object fork_error;
142 #if 0 /* UNUSED */
143 static void
144 report_fork_error (char *string, Lisp_Object data)
145 {
146   Lisp_Object errstring = lisp_strerror (errno);
147
148   fork_error = Fcons (build_string (string), Fcons (errstring, data));
149
150   /* terminate this branch of the fork, without closing stdin/out/etc. */
151   _exit (1);
152 }
153 #endif /* unused */
154
155 DEFUN ("old-call-process-internal", Fold_call_process_internal, 1, MANY, 0, /*
156 Call PROGRAM synchronously in separate process, with coding-system specified.
157 Arguments are
158  (PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS).
159 The program's input comes from file INFILE (nil means `/dev/null').
160 Insert output in BUFFER before point; t means current buffer;
161  nil for BUFFER means discard it; 0 means discard and don't wait.
162 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
163 REAL-BUFFER says what to do with standard output, as above,
164 while STDERR-FILE says what to do with standard error in the child.
165 STDERR-FILE may be nil (discard standard error output),
166 t (mix it with ordinary output), or a file name string.
167
168 Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
169 Remaining arguments are strings passed as command arguments to PROGRAM.
170
171 If BUFFER is 0, `call-process' returns immediately with value nil.
172 Otherwise it waits for PROGRAM to terminate and returns a numeric exit status
173  or a signal description string.
174 If you quit, the process is killed with SIGINT, or SIGKILL if you
175  quit again.
176 */
177        (int nargs, Lisp_Object *args))
178 {
179   /* This function can GC */
180   Lisp_Object infile, buffer, current_dir, display, path;
181   int fd[2];
182   int filefd;
183 #ifdef WIN32_NATIVE
184   HANDLE pHandle;
185 #endif
186   int pid;
187   char buf[16384];
188   char *bufptr = buf;
189   int bufsize = 16384;
190   int speccount = specpdl_depth ();
191   struct gcpro gcpro1, gcpro2, gcpro3;
192   char **new_argv = alloca_array (char *, max (2, nargs - 2));
193
194   /* File to use for stderr in the child.
195      t means use same as standard output.  */
196   Lisp_Object error_file;
197
198   CHECK_STRING (args[0]);
199
200   error_file = Qt;
201
202 #if defined (NO_SUBPROCESSES)
203   /* Without asynchronous processes we cannot have BUFFER == 0.  */
204   if (nargs >= 3 && !INTP (args[2]))
205     error ("Operating system cannot handle asynchronous subprocesses");
206 #endif /* NO_SUBPROCESSES */
207
208   /* Do this before building new_argv because GC in Lisp code
209    *  called by various filename-hacking routines might relocate strings */
210   locate_file (Vexec_path, args[0], Vlisp_EXEC_SUFFIXES, &path, X_OK);
211
212   /* Make sure that the child will be able to chdir to the current
213      buffer's current directory, or its unhandled equivalent.  We
214      can't just have the child check for an error when it does the
215      chdir, since it's in a vfork. */
216   {
217     struct gcpro ngcpro1, ngcpro2;
218     /* Do this test before building new_argv because GC in Lisp code
219      *  called by various filename-hacking routines might relocate strings */
220     /* Make sure that the child will be able to chdir to the current
221        buffer's current directory.  We can't just have the child check
222        for an error when it does the chdir, since it's in a vfork.  */
223
224     NGCPRO2 (current_dir, path);   /* Caller gcprotects args[] */
225     current_dir = current_buffer->directory;
226     current_dir = Funhandled_file_name_directory (current_dir);
227     current_dir = expand_and_dir_to_file (current_dir, Qnil);
228 #if 0
229     /* This is in FSF, but it breaks everything in the presence of
230        ange-ftp-visited files, so away with it.  */
231     if (NILP (Ffile_accessible_directory_p (current_dir)))
232       report_file_error ("Setting current directory",
233                          Fcons (current_buffer->directory, Qnil));
234 #endif /* 0 */
235     NUNGCPRO;
236   }
237
238   GCPRO2 (current_dir, path);
239
240   if (nargs >= 2 && ! NILP (args[1]))
241     {
242       struct gcpro ngcpro1;
243       NGCPRO1 (current_buffer->directory);
244       infile = Fexpand_file_name (args[1], current_buffer->directory);
245       NUNGCPRO;
246       CHECK_STRING (infile);
247     }
248   else
249     infile = build_string (NULL_DEVICE);
250
251   UNGCPRO;
252
253   GCPRO3 (infile, current_dir, path);   /* Fexpand_file_name might trash it */
254
255   if (nargs >= 3)
256     {
257       buffer = args[2];
258
259       /* If BUFFER is a list, its meaning is
260          (BUFFER-FOR-STDOUT FILE-FOR-STDERR).  */
261       if (CONSP (buffer))
262         {
263           if (CONSP (XCDR (buffer)))
264             {
265               Lisp_Object file_for_stderr = XCAR (XCDR (buffer));
266
267               if (NILP (file_for_stderr) || EQ (Qt, file_for_stderr))
268                 error_file = file_for_stderr;
269               else
270                 error_file = Fexpand_file_name (file_for_stderr, Qnil);
271             }
272
273           buffer = XCAR (buffer);
274         }
275
276       if (!(EQ (buffer, Qnil)
277             || EQ (buffer, Qt)
278             || ZEROP (buffer)))
279         {
280           Lisp_Object spec_buffer = buffer;
281           buffer = Fget_buffer (buffer);
282           /* Mention the buffer name for a better error message.  */
283           if (NILP (buffer))
284             CHECK_BUFFER (spec_buffer);
285           CHECK_BUFFER (buffer);
286         }
287     }
288   else
289     buffer = Qnil;
290
291   UNGCPRO;
292
293   display = ((nargs >= 4) ? args[3] : Qnil);
294
295   /* From here we assume we won't GC (unless an error is signaled). */
296   {
297     REGISTER int i;
298     for (i = 4; i < nargs; i++)
299       {
300         CHECK_STRING (args[i]);
301         new_argv[i - 3] = (char *) XSTRING_DATA (args[i]);
302       }
303   }
304   new_argv[max(nargs - 3,1)] = 0;
305
306   if (NILP (path))
307     report_file_error ("Searching for program", Fcons (args[0], Qnil));
308   new_argv[0] = (char *) XSTRING_DATA (path);
309
310   filefd = open ((char *) XSTRING_DATA (infile), O_RDONLY | OPEN_BINARY, 0);
311   if (filefd < 0)
312     report_file_error ("Opening process input file", Fcons (infile, Qnil));
313
314   if (INTP (buffer))
315     {
316       fd[1] = open (NULL_DEVICE, O_WRONLY | OPEN_BINARY, 0);
317       fd[0] = -1;
318     }
319   else
320     {
321       pipe (fd);
322 #if 0
323       /* Replaced by close_process_descs */
324       set_exclusive_use (fd[0]);
325 #endif
326     }
327
328   {
329     /* child_setup must clobber environ in systems with true vfork.
330        Protect it from permanent change.  */
331     REGISTER char **save_environ = environ;
332     REGISTER int fd1 = fd[1];
333     int fd_error = fd1;
334     char **env;
335
336     env = environ;
337
338     /* Record that we're about to create a synchronous process.  */
339     synch_process_alive = 1;
340
341     /* These vars record information from process termination.
342        Clear them now before process can possibly terminate,
343        to avoid timing error if process terminates soon.  */
344     synch_process_death = 0;
345     synch_process_retcode = 0;
346
347     if (NILP (error_file))
348       fd_error = open (NULL_DEVICE, O_WRONLY | OPEN_BINARY);
349     else if (STRINGP (error_file))
350       {
351         fd_error = open ((const char *) XSTRING_DATA (error_file),
352 #ifdef WIN32_NATIVE
353                          O_WRONLY | O_TRUNC | O_CREAT | O_TEXT,
354                          S_IREAD | S_IWRITE
355 #else  /* not WIN32_NATIVE */
356                          O_WRONLY | O_TRUNC | O_CREAT | OPEN_BINARY,
357                          CREAT_MODE
358 #endif /* not WIN32_NATIVE */
359                          );
360       }
361
362     if (fd_error < 0)
363       {
364         close (filefd);
365         close (fd[0]);
366         if (fd1 >= 0)
367           close (fd1);
368         report_file_error ("Cannot open", Fcons(error_file, Qnil));
369       }
370
371     fork_error = Qnil;
372 #ifdef WIN32_NATIVE
373     pid = child_setup (filefd, fd1, fd_error, new_argv,
374                        (char *) XSTRING_DATA (current_dir));
375     if (!INTP (buffer))
376       {
377         /* OpenProcess() as soon after child_setup as possible.  It's too
378            late once the process terminated. */
379         pHandle = OpenProcess(PROCESS_ALL_ACCESS, 0, pid);
380 #if 0
381         if (pHandle == NULL)
382           {
383             /* #### seems to cause crash in unbind_to(...) below. APA */
384             warn_when_safe (Qprocess, Qwarning,
385                             "cannot open process to wait for");
386           }
387 #endif
388       }
389     /* Close STDERR into the parent process.  We no longer need it. */
390     if (fd_error >= 0)
391       close (fd_error);
392 #else  /* not WIN32_NATIVE */
393     pid = fork ();
394
395     if (pid == 0)
396       {
397         if (fd[0] >= 0)
398           close (fd[0]);
399         /* This is necessary because some shells may attempt to
400            access the current controlling terminal and will hang
401            if they are run in the background, as will be the case
402            when XEmacs is started in the background.  Martin
403            Buchholz observed this problem running a subprocess
404            that used zsh to call gzip to uncompress an info
405            file. */
406         disconnect_controlling_terminal ();
407         child_setup (filefd, fd1, fd_error, new_argv,
408                      (char *) XSTRING_DATA (current_dir));
409       }
410     if (fd_error >= 0)
411       close (fd_error);
412
413 #endif /* not WIN32_NATIVE */
414
415     environ = save_environ;
416
417     /* Close most of our fd's, but not fd[0]
418        since we will use that to read input from.  */
419     close (filefd);
420     if (fd1 >= 0)
421       close (fd1);
422   }
423
424   if (!NILP (fork_error))
425     signal_error (Qfile_error, fork_error);
426
427 #ifndef WIN32_NATIVE
428   if (pid < 0)
429     {
430       if (fd[0] >= 0)
431         close (fd[0]);
432       report_file_error ("Doing fork", Qnil);
433     }
434 #endif
435
436   if (INTP (buffer))
437     {
438       if (fd[0] >= 0)
439         close (fd[0]);
440 #if defined (NO_SUBPROCESSES)
441       /* If Emacs has been built with asynchronous subprocess support,
442          we don't need to do this, I think because it will then have
443          the facilities for handling SIGCHLD.  */
444       wait_without_blocking ();
445 #endif /* NO_SUBPROCESSES */
446       return Qnil;
447     }
448
449   {
450     int nread;
451     int first = 1;
452     int total_read = 0;
453     Lisp_Object instream;
454     struct gcpro ngcpro1;
455
456     /* Enable sending signal if user quits below.  */
457     call_process_exited = 0;
458
459     record_unwind_protect (call_process_cleanup,
460                            Fcons (make_int (fd[0]), make_int (pid)));
461
462     /* FSFmacs calls Fset_buffer() here.  We don't have to because
463        we can insert into buffers other than the current one. */
464     if (EQ (buffer, Qt))
465       XSETBUFFER (buffer, current_buffer);
466     instream = make_filedesc_input_stream (fd[0], 0, -1, LSTR_ALLOW_QUIT);
467 #ifdef FILE_CODING
468     instream =
469       make_decoding_input_stream
470         (XLSTREAM (instream),
471          Fget_coding_system (Vcoding_system_for_read));
472     Lstream_set_character_mode (XLSTREAM (instream));
473 #endif
474     NGCPRO1 (instream);
475     while (1)
476       {
477         QUIT;
478         /* Repeatedly read until we've filled as much as possible
479            of the buffer size we have.  But don't read
480            less than 1024--save that for the next bufferfull.  */
481
482         nread = 0;
483         while (nread < bufsize - 1024)
484           {
485             ssize_t this_read
486               = Lstream_read (XLSTREAM (instream), bufptr + nread,
487                               bufsize - nread);
488
489             if (this_read < 0)
490               goto give_up;
491
492             if (this_read == 0)
493               goto give_up_1;
494
495             nread += this_read;
496           }
497
498       give_up_1:
499
500         /* Now NREAD is the total amount of data in the buffer.  */
501         if (nread == 0)
502           break;
503
504 #if 0
505 #ifdef WIN32_NATIVE
506        /* Until we pull out of MULE things like
507           make_decoding_input_stream(), we do the following which is
508           less elegant. --marcpa */
509         /* We did. -- kkm */
510        {
511          int lf_count = 0;
512          if (NILP (Vbinary_process_output)) {
513            nread = crlf_to_lf(nread, bufptr, &lf_count);
514          }
515        }
516 #endif
517 #endif
518
519         total_read += nread;
520
521         if (!NILP (buffer))
522           buffer_insert_raw_string (XBUFFER (buffer), (Bufbyte *) bufptr,
523                                     nread);
524
525         /* Make the buffer bigger as we continue to read more data,
526            but not past 64k.  */
527         if (bufsize < 64 * 1024 && total_read > 32 * bufsize)
528           {
529             bufsize *= 2;
530             bufptr = (char *) alloca (bufsize);
531           }
532
533         if (!NILP (display) && INTERACTIVE)
534           {
535             first = 0;
536             redisplay ();
537           }
538       }
539   give_up:
540     Lstream_close (XLSTREAM (instream));
541     NUNGCPRO;
542
543     QUIT;
544     /* Wait for it to terminate, unless it already has.  */
545 #ifdef WIN32_NATIVE
546     wait_for_termination (pHandle);
547 #else
548     wait_for_termination (pid);
549 #endif
550
551     /* Don't kill any children that the subprocess may have left behind
552        when exiting.  */
553     call_process_exited = 1;
554     unbind_to (speccount, Qnil);
555
556     if (synch_process_death)
557       return build_string (synch_process_death);
558     return make_int (synch_process_retcode);
559   }
560 }
561
562 \f
563
564 /* Move the file descriptor FD so that its number is not less than MIN. *
565    The original file descriptor remains open.  */
566 static int
567 relocate_fd (int fd, int min)
568 {
569   if (fd >= min)
570     return fd;
571   else
572     {
573       int newfd = dup (fd);
574       if (newfd == -1)
575         {
576           stderr_out ("Error while setting up child: %s\n",
577                       strerror (errno));
578           _exit (1);
579         }
580       return relocate_fd (newfd, min);
581     }
582 }
583
584 /* This is the last thing run in a newly forked inferior
585    either synchronous or asynchronous.
586    Copy descriptors IN, OUT and ERR
587    as descriptors STDIN_FILENO, STDOUT_FILENO, and STDERR_FILENO.
588    Initialize inferior's priority, pgrp, connected dir and environment.
589    then exec another program based on new_argv.
590
591    This function may change environ for the superior process.
592    Therefore, the superior process must save and restore the value
593    of environ around the fork and the call to this function.
594
595    ENV is the environment for the subprocess.
596
597    XEmacs: We've removed the SET_PGRP argument because it's already
598    done by the callers of child_setup.
599
600    CURRENT_DIR is an elisp string giving the path of the current
601    directory the subprocess should have.  Since we can't really signal
602    a decent error from within the child, this should be verified as an
603    executable directory by the parent.  */
604
605 #ifdef WIN32_NATIVE
606 int
607 #else
608 void
609 #endif
610 child_setup (int in, int out, int err, char **new_argv,
611              const char *current_dir)
612 {
613   char **env;
614   char *pwd;
615 #ifdef WIN32_NATIVE
616   int cpid;
617   HANDLE handles[4];
618 #endif /* WIN32_NATIVE */
619
620 #ifdef SET_EMACS_PRIORITY
621   if (emacs_priority != 0)
622     nice (- emacs_priority);
623 #endif
624
625   /* Under Windows, we are not in a child process at all, so we should
626      not close handles inherited from the parent -- we are the parent
627      and doing so will screw up all manner of things!  Similarly, most
628      of the rest of the cleanup done in this function is not done
629      under Windows.
630
631      #### This entire child_setup() function is an utter and complete
632      piece of shit.  I would rewrite it, at the very least splitting
633      out the Windows and non-Windows stuff into two completely
634      different functions; but instead I'm trying to make it go away
635      entirely, using the Lisp definition in process.el.  What's left
636      is to fix up the routines in event-msw.c (and in event-Xt.c and
637      event-tty.c) to allow for stream devices to be handled correctly.
638      There isn't much to do, in fact, and I'll fix it shortly.  That
639      way, the Lisp definition can be used non-interactively too. */
640 #if !defined (NO_SUBPROCESSES) && !defined (WIN32_NATIVE)
641   /* Close Emacs's descriptors that this process should not have.  */
642   close_process_descs ();
643 #endif /* not NO_SUBPROCESSES */
644 #ifndef WIN32_NATIVE
645   close_load_descs ();
646 #endif
647
648   /* Note that use of alloca is always safe here.  It's obvious for systems
649      that do not have true vfork or that have true (stack) alloca.
650      If using vfork and C_ALLOCA it is safe because that changes
651      the superior's static variables as if the superior had done alloca
652      and will be cleaned up in the usual way.  */
653   {
654     REGISTER int i;
655
656     i = strlen (current_dir);
657     pwd = alloca_array (char, i + 6);
658     memcpy (pwd, "PWD=", 4);
659     memcpy (pwd + 4, current_dir, i);
660     i += 4;
661     if (!IS_DIRECTORY_SEP (pwd[i - 1]))
662       pwd[i++] = DIRECTORY_SEP;
663     pwd[i] = 0;
664
665     /* We can't signal an Elisp error here; we're in a vfork.  Since
666        the callers check the current directory before forking, this
667        should only return an error if the directory's permissions
668        are changed between the check and this chdir, but we should
669        at least check.  */
670     if (chdir (pwd + 4) < 0)
671       {
672         /* Don't report the chdir error, or ange-ftp.el doesn't work. */
673         /* (FSFmacs does _exit (errno) here.) */
674         pwd = 0;
675       }
676     else
677       {
678         /* Strip trailing "/".  Cretinous *[]&@$#^%@#$% Un*x */
679         /* leave "//" (from FSF) */
680         while (i > 6 && IS_DIRECTORY_SEP (pwd[i - 1]))
681           pwd[--i] = 0;
682       }
683   }
684
685   /* Set `env' to a vector of the strings in Vprocess_environment.  */
686   /* + 2 to include PWD and terminating 0.  */
687   env = alloca_array (char *, XINT (Flength (Vprocess_environment)) + 2);
688   {
689     REGISTER Lisp_Object tail;
690     char **new_env = env;
691
692     /* If we have a PWD envvar and we know the real current directory,
693        pass one down, but with corrected value.  */
694     if (pwd && getenv ("PWD"))
695       *new_env++ = pwd;
696
697     /* Copy the Vprocess_environment strings into new_env.  */
698     for (tail = Vprocess_environment;
699          CONSP (tail) && STRINGP (XCAR (tail));
700          tail = XCDR (tail))
701     {
702       char **ep = env;
703       char *envvar_external;
704
705       TO_EXTERNAL_FORMAT (LISP_STRING, XCAR (tail),
706                           C_STRING_ALLOCA, envvar_external,
707                           Qfile_name);
708
709       /* See if envvar_external duplicates any string already in the env.
710          If so, don't put it in.
711          When an env var has multiple definitions,
712          we keep the definition that comes first in process-environment.  */
713       for (; ep != new_env; ep++)
714         {
715           char *p = *ep, *q = envvar_external;
716           while (1)
717             {
718               if (*q == 0)
719                 /* The string is malformed; might as well drop it.  */
720                 goto duplicate;
721               if (*q != *p)
722                 break;
723               if (*q == '=')
724                 goto duplicate;
725               p++, q++;
726             }
727         }
728       if (pwd && !strncmp ("PWD=", envvar_external, 4))
729         {
730           *new_env++ = pwd;
731           pwd = 0;
732         }
733       else
734         *new_env++ = envvar_external;
735
736     duplicate: ;
737     }
738     *new_env = 0;
739   }
740
741 #ifdef WIN32_NATIVE
742   prepare_standard_handles (in, out, err, handles);
743   set_process_dir (current_dir);
744 #else  /* not WIN32_NATIVE */
745   /* Make sure that in, out, and err are not actually already in
746      descriptors zero, one, or two; this could happen if Emacs is
747      started with its standard in, out, or error closed, as might
748      happen under X.  */
749   in  = relocate_fd (in,  3);
750   out = relocate_fd (out, 3);
751   err = relocate_fd (err, 3);
752
753   /* Set the standard input/output channels of the new process.  */
754   close (STDIN_FILENO);
755   close (STDOUT_FILENO);
756   close (STDERR_FILENO);
757
758   dup2 (in,  STDIN_FILENO);
759   dup2 (out, STDOUT_FILENO);
760   dup2 (err, STDERR_FILENO);
761
762   close (in);
763   close (out);
764   close (err);
765
766   /* I can't think of any reason why child processes need any more
767      than the standard 3 file descriptors.  It would be cleaner to
768      close just the ones that need to be, but the following brute
769      force approach is certainly effective, and not too slow. */
770   {
771     int fd;
772     for (fd=3; fd<=64; fd++)
773       close (fd);
774   }
775 #endif /* not WIN32_NATIVE */
776
777 #ifdef vipc
778   something missing here;
779 #endif /* vipc */
780
781 #ifdef WIN32_NATIVE
782   /* Spawn the child.  (See ntproc.c:Spawnve).  */
783   cpid = spawnve (_P_NOWAIT, new_argv[0], (const char* const*)new_argv,
784                   (const char* const*)env);
785   if (cpid == -1)
786     /* An error occurred while trying to spawn the process.  */
787     report_file_error ("Spawning child process", Qnil);
788   reset_standard_handles (in, out, err, handles);
789   return cpid;
790 #else /* not WIN32_NATIVE */
791   /* execvp does not accept an environment arg so the only way
792      to pass this environment is to set environ.  Our caller
793      is responsible for restoring the ambient value of environ.  */
794   environ = env;
795   execvp (new_argv[0], new_argv);
796
797   stdout_out ("Can't exec program %s\n", new_argv[0]);
798   _exit (1);
799 #endif /* not WIN32_NATIVE */
800 }
801
802 static int
803 getenv_internal (const Bufbyte *var,
804                  Bytecount varlen,
805                  Bufbyte **value,
806                  Bytecount *valuelen)
807 {
808   Lisp_Object scan;
809
810   for (scan = Vprocess_environment; CONSP (scan); scan = XCDR (scan))
811     {
812       Lisp_Object entry = XCAR (scan);
813
814       if (STRINGP (entry)
815           && XSTRING_LENGTH (entry) > varlen
816           && XSTRING_BYTE (entry, varlen) == '='
817 #ifdef WIN32_NATIVE
818           /* NT environment variables are case insensitive.  */
819           && ! memicmp (XSTRING_DATA (entry), var, varlen)
820 #else  /* not WIN32_NATIVE */
821           && ! memcmp (XSTRING_DATA (entry), var, varlen)
822 #endif /* not WIN32_NATIVE */
823           )
824         {
825           *value    = XSTRING_DATA   (entry) + (varlen + 1);
826           *valuelen = XSTRING_LENGTH (entry) - (varlen + 1);
827           return 1;
828         }
829     }
830
831   return 0;
832 }
833
834 DEFUN ("getenv", Fgetenv, 1, 2, "sEnvironment variable: \np", /*
835 Return the value of environment variable VAR, as a string.
836 VAR is a string, the name of the variable.
837 When invoked interactively, prints the value in the echo area.
838 */
839        (var, interactivep))
840 {
841   Bufbyte *value;
842   Bytecount valuelen;
843   Lisp_Object v = Qnil;
844   struct gcpro gcpro1;
845
846   CHECK_STRING (var);
847   GCPRO1 (v);
848   if (getenv_internal (XSTRING_DATA (var), XSTRING_LENGTH (var),
849                        &value, &valuelen))
850     v = make_string (value, valuelen);
851   if (!NILP (interactivep))
852     {
853       if (NILP (v))
854         message ("%s not defined in environment", XSTRING_DATA (var));
855       else
856         /* #### Should use Fprin1_to_string or Fprin1 to handle string
857            containing quotes correctly.  */
858         message ("\"%s\"", value);
859     }
860   RETURN_UNGCPRO (v);
861 }
862
863 /* A version of getenv that consults process_environment, easily
864    callable from C.  */
865 char *
866 egetenv (const char *var)
867 {
868   Bufbyte *value;
869   Bytecount valuelen;
870
871   if (getenv_internal ((const Bufbyte *) var, strlen (var), &value, &valuelen))
872     return (char *) value;
873   else
874     return 0;
875 }
876
877 \f
878 void
879 init_callproc (void)
880 {
881   /* This function can GC */
882
883   {
884     /* jwz: always initialize Vprocess_environment, so that egetenv()
885        works in temacs. */
886     char **envp;
887     Vprocess_environment = Qnil;
888     for (envp = environ; envp && *envp; envp++)
889       Vprocess_environment =
890         Fcons (build_ext_string (*envp, Qfile_name), Vprocess_environment);
891   }
892
893   {
894     /* Initialize shell-file-name from environment variables or best guess. */
895 #ifdef WIN32_NATIVE
896     const char *shell = egetenv ("COMSPEC");
897     if (!shell) shell = "\\WINNT\\system32\\cmd.exe";
898 #else /* not WIN32_NATIVE */
899     const char *shell = egetenv ("SHELL");
900     if (!shell) shell = "/bin/sh";
901 #endif
902
903     Vshell_file_name = build_string (shell);
904   }
905 }
906
907 #if 0
908 void
909 set_process_environment (void)
910 {
911   REGISTER char **envp;
912
913   Vprocess_environment = Qnil;
914 #ifndef CANNOT_DUMP
915   if (initialized)
916 #endif
917     for (envp = environ; *envp; envp++)
918       Vprocess_environment = Fcons (build_string (*envp),
919                                     Vprocess_environment);
920 }
921 #endif /* unused */
922
923 void
924 syms_of_callproc (void)
925 {
926   DEFSUBR (Fold_call_process_internal);
927   DEFSUBR (Fgetenv);
928 }
929
930 void
931 vars_of_callproc (void)
932 {
933   /* This function can GC */
934 #ifdef WIN32_NATIVE
935   DEFVAR_LISP ("binary-process-input", &Vbinary_process_input /*
936 *If non-nil then new subprocesses are assumed to take binary input.
937 */ );
938   Vbinary_process_input = Qnil;
939
940   DEFVAR_LISP ("binary-process-output", &Vbinary_process_output /*
941 *If non-nil then new subprocesses are assumed to produce binary output.
942 */ );
943   Vbinary_process_output = Qnil;
944 #endif /* WIN32_NATIVE */
945
946   DEFVAR_LISP ("shell-file-name", &Vshell_file_name /*
947 *File name to load inferior shells from.
948 Initialized from the SHELL environment variable.
949 */ );
950
951   DEFVAR_LISP ("process-environment", &Vprocess_environment /*
952 List of environment variables for subprocesses to inherit.
953 Each element should be a string of the form ENVVARNAME=VALUE.
954 The environment which Emacs inherits is placed in this variable
955 when Emacs starts.
956 */ );
957
958   Vlisp_EXEC_SUFFIXES = build_string (EXEC_SUFFIXES);
959   staticpro (&Vlisp_EXEC_SUFFIXES);
960 }