* alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
[bpt/emacs.git] / src / callproc.c
CommitLineData
80856e74 1/* Synchronous subprocess invocation for GNU Emacs.
73b0cd50 2 Copyright (C) 1985-1988, 1993-1995, 1999-2011
19ed11ba 3 Free Software Foundation, Inc.
80856e74
JB
4
5This file is part of GNU Emacs.
6
9ec0b715 7GNU Emacs is free software: you can redistribute it and/or modify
80856e74 8it under the terms of the GNU General Public License as published by
9ec0b715
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
80856e74
JB
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
9ec0b715 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
80856e74
JB
19
20
68c45bf0 21#include <config.h>
80856e74 22#include <signal.h>
e576cab4 23#include <errno.h>
565620a5 24#include <stdio.h>
d7306fe6 25#include <setjmp.h>
80856e74 26#include <sys/types.h>
3cbd6585 27#include <unistd.h>
3cbd6585 28
80856e74 29#include <sys/file.h>
80856e74 30#include <fcntl.h>
80856e74 31
0898ca10
JB
32#include "lisp.h"
33
bad95d8f
RS
34#ifdef WINDOWSNT
35#define NOMINMAX
36#include <windows.h>
489f9371 37#include "w32.h"
bad95d8f
RS
38#define _P_NOWAIT 1 /* from process.h */
39#endif
40
7e6c2178 41#ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
7e6c2178
RS
42#include <sys/stat.h>
43#include <sys/param.h>
7e6c2178
RS
44#endif /* MSDOS */
45
80856e74
JB
46#include "commands.h"
47#include "buffer.h"
91183bfd 48#include "character.h"
edf496dd 49#include "ccl.h"
32d08644 50#include "coding.h"
f0b950cf 51#include "composite.h"
57bda87a 52#include <epaths.h>
80856e74 53#include "process.h"
d177f194 54#include "syssignal.h"
a129418f 55#include "systty.h"
aba637ec 56#include "blockinput.h"
f105f403
KL
57#include "frame.h"
58#include "termhooks.h"
80856e74 59
5f027cea
EZ
60#ifdef MSDOS
61#include "msdos.h"
62#endif
63
03695ace 64#ifndef USE_CRT_DLL
80856e74
JB
65extern char **environ;
66#endif
67
f95c3f91 68#ifdef HAVE_SETPGID
58eb6cf0 69#if !defined (USG)
320695d8 70#undef setpgrp
f95c3f91
GM
71#define setpgrp setpgid
72#endif
2b7e8799 73#endif
f95c3f91 74
f92d51d8
CY
75/* Pattern used by call-process-region to make temp files. */
76static Lisp_Object Vtemp_file_name_pattern;
77
e0f24100 78/* True if we are about to fork off a synchronous process or if we
80856e74
JB
79 are waiting for it. */
80int synch_process_alive;
81
82/* Nonzero => this is a string explaining death of synchronous subprocess. */
42ca4633 83const char *synch_process_death;
80856e74 84
6b61353c
KH
85/* Nonzero => this is the signal number that terminated the subprocess. */
86int synch_process_termsig;
87
80856e74
JB
88/* If synch_process_death is zero,
89 this is exit code of synchronous subprocess. */
90int synch_process_retcode;
f105f403 91
80856e74 92\f
37d54121
RS
93/* Clean up when exiting Fcall_process.
94 On MSDOS, delete the temporary file on any kind of termination.
95 On Unix, kill the process and any children on termination by signal. */
96
97/* Nonzero if this is termination due to exit. */
98static int call_process_exited;
99
cd64ea1d 100static Lisp_Object Fgetenv_internal (Lisp_Object, Lisp_Object);
d2bb6598 101
d177f194 102static Lisp_Object
971de7fb 103call_process_kill (Lisp_Object fdpid)
d177f194 104{
d311d28c
PE
105 int fd;
106 pid_t pid;
107 CONS_TO_INTEGER (Fcar (fdpid), int, fd);
108 CONS_TO_INTEGER (Fcdr (fdpid), pid_t, pid);
109 emacs_close (fd);
110 EMACS_KILLPG (pid, SIGKILL);
d177f194
JB
111 synch_process_alive = 0;
112 return Qnil;
113}
114
7710357c 115static Lisp_Object
971de7fb 116call_process_cleanup (Lisp_Object arg)
80856e74 117{
ad3aaf33 118 Lisp_Object fdpid = Fcdr (arg);
d311d28c 119 int fd;
ad3aaf33
AS
120#if defined (MSDOS)
121 Lisp_Object file;
122#else
d311d28c 123 pid_t pid;
ad3aaf33
AS
124#endif
125
126 Fset_buffer (Fcar (arg));
d311d28c 127 CONS_TO_INTEGER (Fcar (fdpid), int, fd);
ad3aaf33 128
e39a993c 129#if defined (MSDOS)
7e6c2178 130 /* for MSDOS fdpid is really (fd . tempfile) */
c1350752 131 file = Fcdr (fdpid);
888c9e86
EZ
132 /* FD is -1 and FILE is "" when we didn't actually create a
133 temporary file in call-process. */
134 if (fd >= 0)
135 emacs_close (fd);
136 if (!(strcmp (SDATA (file), NULL_DEVICE) == 0 || SREF (file, 0) == '\0'))
d5db4077 137 unlink (SDATA (file));
e39a993c 138#else /* not MSDOS */
d311d28c 139 CONS_TO_INTEGER (Fcdr (fdpid), pid_t, pid);
d177f194 140
37d54121 141 if (call_process_exited)
6b6e798b 142 {
d311d28c 143 emacs_close (fd);
6b6e798b
RS
144 return Qnil;
145 }
37d54121 146
d177f194
JB
147 if (EMACS_KILLPG (pid, SIGINT) == 0)
148 {
d311d28c 149 ptrdiff_t count = SPECPDL_INDEX ();
d177f194
JB
150 record_unwind_protect (call_process_kill, fdpid);
151 message1 ("Waiting for process to die...(type C-g again to kill it instantly)");
152 immediate_quit = 1;
153 QUIT;
154 wait_for_termination (pid);
155 immediate_quit = 0;
156 specpdl_ptr = specpdl + count; /* Discard the unwind protect. */
157 message1 ("Waiting for process to die...done");
158 }
80856e74 159 synch_process_alive = 0;
d311d28c 160 emacs_close (fd);
7e6c2178 161#endif /* not MSDOS */
80856e74
JB
162 return Qnil;
163}
164
a7ca3326 165DEFUN ("call-process", Fcall_process, Scall_process, 1, MANY, 0,
fdb82f93
PJ
166 doc: /* Call PROGRAM synchronously in separate process.
167The remaining arguments are optional.
168The program's input comes from file INFILE (nil means `/dev/null').
1ef14cb4
LMI
169Insert output in BUFFER before point; t means current buffer; nil for BUFFER
170 means discard it; 0 means discard and don't wait; and `(:file FILE)', where
171 FILE is a file name string, means that it should be written to that file.
fdb82f93
PJ
172BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
173REAL-BUFFER says what to do with standard output, as above,
174while STDERR-FILE says what to do with standard error in the child.
175STDERR-FILE may be nil (discard standard error output),
176t (mix it with ordinary output), or a file name string.
177
178Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
179Remaining arguments are strings passed as command arguments to PROGRAM.
180
a4feb144
RS
181If executable PROGRAM can't be found as an executable, `call-process'
182signals a Lisp error. `call-process' reports errors in execution of
183the program only through its return and output.
184
fdb82f93
PJ
185If BUFFER is 0, `call-process' returns immediately with value nil.
186Otherwise it waits for PROGRAM to terminate
187and returns a numeric exit status or a signal description string.
d98b59b5
MB
188If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
189
190usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
f66c7cf8 191 (ptrdiff_t nargs, Lisp_Object *args)
80856e74 192{
d311d28c
PE
193 Lisp_Object infile, buffer, current_dir, path, cleanup_info_tail;
194 int display_p;
80856e74
JB
195 int fd[2];
196 int filefd;
4da256b1
KS
197#define CALLPROC_BUFFER_SIZE_MIN (16 * 1024)
198#define CALLPROC_BUFFER_SIZE_MAX (4 * CALLPROC_BUFFER_SIZE_MIN)
199 char buf[CALLPROC_BUFFER_SIZE_MAX];
200 int bufsize = CALLPROC_BUFFER_SIZE_MIN;
d311d28c
PE
201 ptrdiff_t count = SPECPDL_INDEX ();
202 USE_SAFE_ALLOCA;
2d607244 203
1aa83b22 204 register const unsigned char **new_argv;
39eaa782
RS
205 /* File to use for stderr in the child.
206 t means use same as standard output. */
207 Lisp_Object error_file;
1ef14cb4 208 Lisp_Object output_file = Qnil;
7e6c2178 209#ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
888c9e86 210 char *outf, *tempfile = NULL;
7e6c2178 211 int outfilefd;
d311d28c
PE
212 int pid;
213#else
214 pid_t pid;
80856e74 215#endif
1ef14cb4 216 int fd_output = -1;
32d08644
KH
217 struct coding_system process_coding; /* coding-system of process output */
218 struct coding_system argument_coding; /* coding-system of arguments */
09494912
RS
219 /* Set to the return value of Ffind_operation_coding_system. */
220 Lisp_Object coding_systems;
1ef14cb4 221 int output_to_buffer = 1;
09494912
RS
222
223 /* Qt denotes that Ffind_operation_coding_system is not yet called. */
224 coding_systems = Qt;
32d08644 225
b7826503 226 CHECK_STRING (args[0]);
80856e74 227
39eaa782
RS
228 error_file = Qt;
229
7e6c2178
RS
230#ifndef subprocesses
231 /* Without asynchronous processes we cannot have BUFFER == 0. */
177c0ea7 232 if (nargs >= 3
09ffb8b5 233 && (INTEGERP (CONSP (args[2]) ? XCAR (args[2]) : args[2])))
7e6c2178
RS
234 error ("Operating system cannot handle asynchronous subprocesses");
235#endif /* subprocesses */
236
09494912 237 /* Decide the coding-system for giving arguments. */
32d08644
KH
238 {
239 Lisp_Object val, *args2;
f66c7cf8 240 ptrdiff_t i;
32d08644
KH
241
242 /* If arguments are supplied, we may have to encode them. */
243 if (nargs >= 5)
244 {
30d57b8e 245 int must_encode = 0;
6e50da0a 246 Lisp_Object coding_attrs;
30d57b8e 247
e7c1c20e 248 for (i = 4; i < nargs; i++)
b7826503 249 CHECK_STRING (args[i]);
e7c1c20e 250
a2286b5c 251 for (i = 4; i < nargs; i++)
30d57b8e
RS
252 if (STRING_MULTIBYTE (args[i]))
253 must_encode = 1;
254
beacaab3
KH
255 if (!NILP (Vcoding_system_for_write))
256 val = Vcoding_system_for_write;
30d57b8e 257 else if (! must_encode)
fcaf8878 258 val = Qraw_text;
beacaab3 259 else
32d08644 260 {
0065d054 261 SAFE_NALLOCA (args2, 1, nargs + 1);
32d08644
KH
262 args2[0] = Qcall_process;
263 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
08ee4e87 264 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
fcaf8878 265 val = CONSP (coding_systems) ? XCDR (coding_systems) : Qnil;
32d08644 266 }
fcaf8878 267 val = complement_process_encoding_system (val);
32d08644 268 setup_coding_system (Fcheck_coding_system (val), &argument_coding);
6e50da0a
KH
269 coding_attrs = CODING_ID_ATTRS (argument_coding.id);
270 if (NILP (CODING_ATTR_ASCII_COMPAT (coding_attrs)))
271 {
272 /* We should not use an ASCII incompatible coding system. */
273 val = raw_text_coding_system (val);
274 setup_coding_system (val, &argument_coding);
275 }
32d08644 276 }
32d08644
KH
277 }
278
e576cab4
JB
279 if (nargs >= 2 && ! NILP (args[1]))
280 {
4b4deea2 281 infile = Fexpand_file_name (args[1], BVAR (current_buffer, directory));
b7826503 282 CHECK_STRING (infile);
e576cab4 283 }
80856e74 284 else
5437e9f9 285 infile = build_string (NULL_DEVICE);
80856e74 286
e576cab4
JB
287 if (nargs >= 3)
288 {
39eaa782
RS
289 buffer = args[2];
290
1ef14cb4
LMI
291 /* If BUFFER is a list, its meaning is (BUFFER-FOR-STDOUT
292 FILE-FOR-STDERR), unless the first element is :file, in which case see
293 the next paragraph. */
19ed11ba
AS
294 if (CONSP (buffer)
295 && (! SYMBOLP (XCAR (buffer))
296 || strcmp (SSDATA (SYMBOL_NAME (XCAR (buffer))), ":file")))
39eaa782 297 {
70949dac 298 if (CONSP (XCDR (buffer)))
45be8a1e 299 {
a9d4f28a 300 Lisp_Object stderr_file;
70949dac 301 stderr_file = XCAR (XCDR (buffer));
45be8a1e
RS
302
303 if (NILP (stderr_file) || EQ (Qt, stderr_file))
304 error_file = stderr_file;
305 else
306 error_file = Fexpand_file_name (stderr_file, Qnil);
307 }
308
70949dac 309 buffer = XCAR (buffer);
39eaa782 310 }
044512ed 311
1ef14cb4 312 /* If the buffer is (still) a list, it might be a (:file "file") spec. */
19ed11ba
AS
313 if (CONSP (buffer)
314 && SYMBOLP (XCAR (buffer))
315 && ! strcmp (SSDATA (SYMBOL_NAME (XCAR (buffer))), ":file"))
1ef14cb4
LMI
316 {
317 output_file = Fexpand_file_name (XCAR (XCDR (buffer)),
318 BVAR (current_buffer, directory));
319 CHECK_STRING (output_file);
320 buffer = Qnil;
321 }
322
39eaa782
RS
323 if (!(EQ (buffer, Qnil)
324 || EQ (buffer, Qt)
3ffde7d6 325 || INTEGERP (buffer)))
e576cab4 326 {
39eaa782
RS
327 Lisp_Object spec_buffer;
328 spec_buffer = buffer;
50fe359b 329 buffer = Fget_buffer_create (buffer);
39eaa782
RS
330 /* Mention the buffer name for a better error message. */
331 if (NILP (buffer))
b7826503
PJ
332 CHECK_BUFFER (spec_buffer);
333 CHECK_BUFFER (buffer);
e576cab4
JB
334 }
335 }
177c0ea7 336 else
e576cab4 337 buffer = Qnil;
80856e74 338
58616e67
JB
339 /* Make sure that the child will be able to chdir to the current
340 buffer's current directory, or its unhandled equivalent. We
341 can't just have the child check for an error when it does the
342 chdir, since it's in a vfork.
343
344 We have to GCPRO around this because Fexpand_file_name,
345 Funhandled_file_name_directory, and Ffile_accessible_directory_p
346 might call a file name handling function. The argument list is
347 protected by the caller, so all we really have to worry about is
348 buffer. */
349 {
1ef14cb4 350 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
58616e67 351
4b4deea2 352 current_dir = BVAR (current_buffer, directory);
58616e67 353
1ef14cb4 354 GCPRO5 (infile, buffer, current_dir, error_file, output_file);
58616e67 355
ca319910
SM
356 current_dir = Funhandled_file_name_directory (current_dir);
357 if (NILP (current_dir))
358 /* If the file name handler says that current_dir is unreachable, use
359 a sensible default. */
360 current_dir = build_string ("~/");
361 current_dir = expand_and_dir_to_file (current_dir, Qnil);
db8454b0
CY
362 current_dir = Ffile_name_as_directory (current_dir);
363
58616e67
JB
364 if (NILP (Ffile_accessible_directory_p (current_dir)))
365 report_file_error ("Setting current directory",
4b4deea2 366 Fcons (BVAR (current_buffer, directory), Qnil));
58616e67 367
34b87689
KH
368 if (STRING_MULTIBYTE (infile))
369 infile = ENCODE_FILE (infile);
370 if (STRING_MULTIBYTE (current_dir))
371 current_dir = ENCODE_FILE (current_dir);
372 if (STRINGP (error_file) && STRING_MULTIBYTE (error_file))
373 error_file = ENCODE_FILE (error_file);
1ef14cb4
LMI
374 if (STRINGP (output_file) && STRING_MULTIBYTE (output_file))
375 output_file = ENCODE_FILE (output_file);
58616e67
JB
376 UNGCPRO;
377 }
378
d311d28c 379 display_p = INTERACTIVE && nargs >= 4 && !NILP (args[3]);
80856e74 380
42a5b22f 381 filefd = emacs_open (SSDATA (infile), O_RDONLY, 0);
80856e74
JB
382 if (filefd < 0)
383 {
34b87689 384 infile = DECODE_FILE (infile);
e576cab4 385 report_file_error ("Opening process input file", Fcons (infile, Qnil));
80856e74 386 }
1ef14cb4
LMI
387
388 if (STRINGP (output_file))
389 {
390#ifdef DOS_NT
391 fd_output = emacs_open (SSDATA (output_file),
392 O_WRONLY | O_TRUNC | O_CREAT | O_TEXT,
393 S_IREAD | S_IWRITE);
394#else /* not DOS_NT */
395 fd_output = creat (SSDATA (output_file), 0666);
396#endif /* not DOS_NT */
397 if (fd_output < 0)
398 {
399 output_file = DECODE_FILE (output_file);
400 report_file_error ("Opening process output file",
401 Fcons (output_file, Qnil));
19ed11ba 402 }
1ef14cb4 403 if (STRINGP (error_file) || NILP (error_file))
19ed11ba 404 output_to_buffer = 0;
1ef14cb4
LMI
405 }
406
80856e74 407 /* Search for program; barf if not found. */
c52b0b34 408 {
ad3aaf33 409 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
c52b0b34 410
ad3aaf33 411 GCPRO4 (infile, buffer, current_dir, error_file);
5c150961 412 openp (Vexec_path, args[0], Vexec_suffixes, &path, make_number (X_OK));
c52b0b34
KH
413 UNGCPRO;
414 }
012c6fcb 415 if (NILP (path))
80856e74 416 {
68c45bf0 417 emacs_close (filefd);
80856e74
JB
418 report_file_error ("Searching for program", Fcons (args[0], Qnil));
419 }
8ee8f447
RS
420
421 /* If program file name starts with /: for quoting a magic name,
422 discard that. */
423 if (SBYTES (path) > 2 && SREF (path, 0) == '/'
424 && SREF (path, 1) == ':')
425 path = Fsubstring (path, make_number (2), Qnil);
426
3c59b4c9
PE
427 SAFE_ALLOCA (new_argv, const unsigned char **,
428 (nargs > 4 ? nargs - 2 : 2) * sizeof *new_argv);
c364e618
KH
429 if (nargs > 4)
430 {
f66c7cf8 431 ptrdiff_t i;
ad3aaf33 432 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
c364e618 433
ad3aaf33 434 GCPRO5 (infile, buffer, current_dir, path, error_file);
c5bfa12b
KH
435 argument_coding.dst_multibyte = 0;
436 for (i = 4; i < nargs; i++)
c364e618 437 {
c5bfa12b
KH
438 argument_coding.src_multibyte = STRING_MULTIBYTE (args[i]);
439 if (CODING_REQUIRE_ENCODING (&argument_coding))
91183bfd
KH
440 /* We must encode this argument. */
441 args[i] = encode_coding_string (&argument_coding, args[i], 1);
c364e618 442 }
c5bfa12b 443 UNGCPRO;
1aa83b22
AS
444 for (i = 4; i < nargs; i++)
445 new_argv[i - 3] = SDATA (args[i]);
446 new_argv[i - 3] = 0;
c364e618 447 }
db54baaa
KH
448 else
449 new_argv[1] = 0;
1aa83b22 450 new_argv[0] = SDATA (path);
80856e74 451
7e6c2178 452#ifdef MSDOS /* MW, July 1993 */
7e6c2178 453
888c9e86
EZ
454 /* If we're redirecting STDOUT to a file, that file is already open
455 on fd_output. */
1ef14cb4 456 if (fd_output < 0)
7e6c2178 457 {
888c9e86
EZ
458 if ((outf = egetenv ("TMPDIR")))
459 strcpy (tempfile = alloca (strlen (outf) + 20), outf);
460 else
461 {
462 tempfile = alloca (20);
463 *tempfile = '\0';
464 }
465 dostounix_filename (tempfile);
466 if (*tempfile == '\0' || tempfile[strlen (tempfile) - 1] != '/')
467 strcat (tempfile, "/");
468 strcat (tempfile, "detmp.XXX");
469 mktemp (tempfile);
1ef14cb4
LMI
470 outfilefd = creat (tempfile, S_IREAD | S_IWRITE);
471 if (outfilefd < 0) {
472 emacs_close (filefd);
473 report_file_error ("Opening process output file",
474 Fcons (build_string (tempfile), Qnil));
475 }
7e6c2178 476 }
1ef14cb4
LMI
477 else
478 outfilefd = fd_output;
6f89d28a 479 fd[0] = filefd;
2610078a 480 fd[1] = outfilefd;
6f89d28a 481#endif /* MSDOS */
7e6c2178 482
d50d3dc8 483 if (INTEGERP (buffer))
68c45bf0 484 fd[1] = emacs_open (NULL_DEVICE, O_WRONLY, 0), fd[0] = -1;
80856e74
JB
485 else
486 {
7e6c2178 487#ifndef MSDOS
db92b288
GM
488 errno = 0;
489 if (pipe (fd) == -1)
490 {
491 emacs_close (filefd);
492 report_file_error ("Creating process pipe", Qnil);
493 }
80856e74
JB
494#endif
495 }
496
497 {
498 /* child_setup must clobber environ in systems with true vfork.
499 Protect it from permanent change. */
500 register char **save_environ = environ;
501 register int fd1 = fd[1];
39eaa782 502 int fd_error = fd1;
c0ad4ea5
AS
503#ifdef HAVE_WORKING_VFORK
504 sigset_t procmask;
505 sigset_t blocked;
506 struct sigaction sigpipe_action;
507#endif
80856e74 508
1ef14cb4
LMI
509 if (fd_output >= 0)
510 fd1 = fd_output;
80856e74 511#if 0 /* Some systems don't have sigblock. */
e065a56e 512 mask = sigblock (sigmask (SIGCHLD));
80856e74
JB
513#endif
514
515 /* Record that we're about to create a synchronous process. */
516 synch_process_alive = 1;
517
5c03767e
RS
518 /* These vars record information from process termination.
519 Clear them now before process can possibly terminate,
520 to avoid timing error if process terminates soon. */
521 synch_process_death = 0;
522 synch_process_retcode = 0;
6b61353c 523 synch_process_termsig = 0;
5c03767e 524
39eaa782 525 if (NILP (error_file))
68c45bf0 526 fd_error = emacs_open (NULL_DEVICE, O_WRONLY, 0);
39eaa782
RS
527 else if (STRINGP (error_file))
528 {
529#ifdef DOS_NT
42a5b22f 530 fd_error = emacs_open (SSDATA (error_file),
68c45bf0
PE
531 O_WRONLY | O_TRUNC | O_CREAT | O_TEXT,
532 S_IREAD | S_IWRITE);
39eaa782 533#else /* not DOS_NT */
42a5b22f 534 fd_error = creat (SSDATA (error_file), 0666);
39eaa782
RS
535#endif /* not DOS_NT */
536 }
537
538 if (fd_error < 0)
539 {
68c45bf0 540 emacs_close (filefd);
6f89d28a 541 if (fd[0] != filefd)
68c45bf0 542 emacs_close (fd[0]);
39eaa782 543 if (fd1 >= 0)
68c45bf0 544 emacs_close (fd1);
6f89d28a
MB
545#ifdef MSDOS
546 unlink (tempfile);
547#endif
34b87689
KH
548 if (NILP (error_file))
549 error_file = build_string (NULL_DEVICE);
550 else if (STRINGP (error_file))
551 error_file = DECODE_FILE (error_file);
552 report_file_error ("Cannot redirect stderr", Fcons (error_file, Qnil));
39eaa782 553 }
89e1ec1d 554
2610078a 555#ifdef MSDOS /* MW, July 1993 */
c17c4250 556 /* Note that on MSDOS `child_setup' actually returns the child process
2610078a
KH
557 exit status, not its PID, so we assign it to `synch_process_retcode'
558 below. */
c17c4250
EZ
559 pid = child_setup (filefd, outfilefd, fd_error, (char **) new_argv,
560 0, current_dir);
39eaa782 561
2610078a
KH
562 /* Record that the synchronous process exited and note its
563 termination status. */
564 synch_process_alive = 0;
565 synch_process_retcode = pid;
566 if (synch_process_retcode < 0) /* means it couldn't be exec'ed */
68c45bf0 567 {
ca9c0567 568 synchronize_system_messages_locale ();
68c45bf0
PE
569 synch_process_death = strerror (errno);
570 }
2610078a 571
68c45bf0 572 emacs_close (outfilefd);
2610078a 573 if (fd_error != outfilefd)
68c45bf0 574 emacs_close (fd_error);
2610078a 575 fd1 = -1; /* No harm in closing that one! */
888c9e86 576 if (tempfile)
2610078a 577 {
888c9e86
EZ
578 /* Since CRLF is converted to LF within `decode_coding', we
579 can always open a file with binary mode. */
580 fd[0] = emacs_open (tempfile, O_RDONLY | O_BINARY, 0);
581 if (fd[0] < 0)
582 {
583 unlink (tempfile);
584 emacs_close (filefd);
585 report_file_error ("Cannot re-open temporary file",
7285dc67 586 Fcons (build_string (tempfile), Qnil));
888c9e86 587 }
2610078a 588 }
888c9e86
EZ
589 else
590 fd[0] = -1; /* We are not going to read from tempfile. */
2610078a 591#else /* not MSDOS */
bad95d8f 592#ifdef WINDOWSNT
2d607244
RS
593 pid = child_setup (filefd, fd1, fd_error, (char **) new_argv,
594 0, current_dir);
bad95d8f 595#else /* not WINDOWSNT */
c0ad4ea5
AS
596
597#ifdef HAVE_WORKING_VFORK
598 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
599 this sets the parent's signal handlers as well as the child's.
600 So delay all interrupts whose handlers the child might munge,
601 and record the current handlers so they can be restored later. */
602 sigemptyset (&blocked);
603 sigaddset (&blocked, SIGPIPE);
604 sigaction (SIGPIPE, 0, &sigpipe_action);
123403e4 605 pthread_sigmask (SIG_BLOCK, &blocked, &procmask);
c0ad4ea5
AS
606#endif
607
aba637ec
KS
608 BLOCK_INPUT;
609
db6c0e74 610 /* vfork, and prevent local vars from being clobbered by the vfork. */
b08a63cc 611 {
c74e9d86
PE
612 Lisp_Object volatile buffer_volatile = buffer;
613 Lisp_Object volatile coding_systems_volatile = coding_systems;
614 Lisp_Object volatile current_dir_volatile = current_dir;
d311d28c 615 int volatile display_p_volatile = display_p;
5266b4bb 616 int volatile fd1_volatile = fd1;
db6c0e74
PE
617 int volatile fd_error_volatile = fd_error;
618 int volatile fd_output_volatile = fd_output;
619 int volatile output_to_buffer_volatile = output_to_buffer;
d311d28c
PE
620 int volatile sa_must_free_volatile = sa_must_free;
621 ptrdiff_t volatile sa_count_volatile = sa_count;
db6c0e74 622 unsigned char const **volatile new_argv_volatile = new_argv;
80856e74 623
db6c0e74 624 pid = vfork ();
80856e74 625
c74e9d86
PE
626 buffer = buffer_volatile;
627 coding_systems = coding_systems_volatile;
628 current_dir = current_dir_volatile;
d311d28c 629 display_p = display_p_volatile;
5266b4bb 630 fd1 = fd1_volatile;
db6c0e74
PE
631 fd_error = fd_error_volatile;
632 fd_output = fd_output_volatile;
633 output_to_buffer = output_to_buffer_volatile;
d311d28c
PE
634 sa_must_free_volatile = sa_must_free;
635 sa_count = sa_count_volatile;
db6c0e74
PE
636 new_argv = new_argv_volatile;
637 }
b9c7f648 638
80856e74
JB
639 if (pid == 0)
640 {
641 if (fd[0] >= 0)
68c45bf0 642 emacs_close (fd[0]);
1e7963c7 643#ifdef HAVE_SETSID
19ed11ba 644 setsid ();
1e7963c7 645#endif
58eb6cf0 646#if defined (USG)
19ed11ba 647 setpgrp ();
80856e74 648#else
19ed11ba 649 setpgrp (pid, pid);
80856e74 650#endif /* USG */
c0ad4ea5 651
2f9a22e2 652 /* GConf causes us to ignore SIGPIPE, make sure it is restored
c0ad4ea5 653 in the child. */
2f9a22e2 654 //signal (SIGPIPE, SIG_DFL);
c0ad4ea5 655#ifdef HAVE_WORKING_VFORK
123403e4 656 pthread_sigmask (SIG_SETMASK, &procmask, 0);
c0ad4ea5
AS
657#endif
658
2d607244
RS
659 child_setup (filefd, fd1, fd_error, (char **) new_argv,
660 0, current_dir);
80856e74 661 }
aba637ec
KS
662
663 UNBLOCK_INPUT;
c0ad4ea5
AS
664
665#ifdef HAVE_WORKING_VFORK
666 /* Restore the signal state. */
667 sigaction (SIGPIPE, &sigpipe_action, 0);
123403e4 668 pthread_sigmask (SIG_SETMASK, &procmask, 0);
c0ad4ea5
AS
669#endif
670
bad95d8f 671#endif /* not WINDOWSNT */
cd5f8f60
RS
672
673 /* The MSDOS case did this already. */
674 if (fd_error >= 0)
68c45bf0 675 emacs_close (fd_error);
2610078a 676#endif /* not MSDOS */
80856e74 677
80856e74
JB
678 environ = save_environ;
679
6b6e798b
RS
680 /* Close most of our fd's, but not fd[0]
681 since we will use that to read input from. */
68c45bf0 682 emacs_close (filefd);
1ef14cb4
LMI
683 if (fd_output >= 0)
684 emacs_close (fd_output);
799abb26 685 if (fd1 >= 0 && fd1 != fd_error)
68c45bf0 686 emacs_close (fd1);
80856e74
JB
687 }
688
689 if (pid < 0)
690 {
6b6e798b 691 if (fd[0] >= 0)
68c45bf0 692 emacs_close (fd[0]);
80856e74
JB
693 report_file_error ("Doing vfork", Qnil);
694 }
695
d50d3dc8 696 if (INTEGERP (buffer))
80856e74 697 {
6b6e798b 698 if (fd[0] >= 0)
68c45bf0 699 emacs_close (fd[0]);
80856e74
JB
700 return Qnil;
701 }
702
6b6e798b 703 /* Enable sending signal if user quits below. */
37d54121
RS
704 call_process_exited = 0;
705
5e617bc2 706#if defined (MSDOS)
7e6c2178 707 /* MSDOS needs different cleanup information. */
d311d28c 708 cleanup_info_tail = build_string (tempfile ? tempfile : "");
7e6c2178 709#else
d311d28c
PE
710 cleanup_info_tail = INTEGER_TO_CONS (pid);
711#endif /* not MSDOS */
80856e74 712 record_unwind_protect (call_process_cleanup,
ad3aaf33 713 Fcons (Fcurrent_buffer (),
d311d28c
PE
714 Fcons (INTEGER_TO_CONS (fd[0]),
715 cleanup_info_tail)));
80856e74 716
d50d3dc8 717 if (BUFFERP (buffer))
80856e74
JB
718 Fset_buffer (buffer);
719
09494912
RS
720 if (NILP (buffer))
721 {
722 /* If BUFFER is nil, we must read process output once and then
723 discard it, so setup coding system but with nil. */
724 setup_coding_system (Qnil, &process_coding);
725 }
726 else
727 {
728 Lisp_Object val, *args2;
729
730 val = Qnil;
731 if (!NILP (Vcoding_system_for_read))
732 val = Vcoding_system_for_read;
733 else
734 {
735 if (EQ (coding_systems, Qt))
736 {
f66c7cf8 737 ptrdiff_t i;
09494912 738
0065d054 739 SAFE_NALLOCA (args2, 1, nargs + 1);
09494912
RS
740 args2[0] = Qcall_process;
741 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
742 coding_systems
743 = Ffind_operation_coding_system (nargs + 1, args2);
744 }
745 if (CONSP (coding_systems))
70949dac 746 val = XCAR (coding_systems);
09494912 747 else if (CONSP (Vdefault_process_coding_system))
70949dac 748 val = XCAR (Vdefault_process_coding_system);
09494912
RS
749 else
750 val = Qnil;
751 }
91183bfd 752 Fcheck_coding_system (val);
09494912
RS
753 /* In unibyte mode, character code conversion should not take
754 place but EOL conversion should. So, setup raw-text or one
755 of the subsidiary according to the information just setup. */
4b4deea2 756 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
09494912 757 && !NILP (val))
91183bfd
KH
758 val = raw_text_coding_system (val);
759 setup_coding_system (val, &process_coding);
09494912
RS
760 }
761
80856e74
JB
762 immediate_quit = 1;
763 QUIT;
764
1ef14cb4 765 if (output_to_buffer)
19ed11ba 766 {
d311d28c 767 register int nread;
19ed11ba
AS
768 int first = 1;
769 EMACS_INT total_read = 0;
770 int carryover = 0;
19ed11ba
AS
771 int display_on_the_fly = display_p;
772 struct coding_system saved_coding;
773
774 saved_coding = process_coding;
775 while (1)
776 {
777 /* Repeatedly read until we've filled as much as possible
778 of the buffer size we have. But don't read
779 less than 1024--save that for the next bufferful. */
780 nread = carryover;
781 while (nread < bufsize - 1024)
782 {
783 int this_read = emacs_read (fd[0], buf + nread,
784 bufsize - nread);
60558b19 785
19ed11ba
AS
786 if (this_read < 0)
787 goto give_up;
60558b19 788
19ed11ba
AS
789 if (this_read == 0)
790 {
791 process_coding.mode |= CODING_MODE_LAST_BLOCK;
792 break;
793 }
60558b19 794
19ed11ba
AS
795 nread += this_read;
796 total_read += this_read;
60558b19 797
19ed11ba
AS
798 if (display_on_the_fly)
799 break;
800 }
60558b19 801
19ed11ba
AS
802 /* Now NREAD is the total amount of data in the buffer. */
803 immediate_quit = 0;
177c0ea7 804
19ed11ba
AS
805 if (!NILP (buffer))
806 {
807 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
808 && ! CODING_MAY_REQUIRE_DECODING (&process_coding))
809 insert_1_both (buf, nread, nread, 0, 1, 0);
810 else
811 { /* We have to decode the input. */
812 Lisp_Object curbuf;
d311d28c 813 ptrdiff_t count1 = SPECPDL_INDEX ();
19ed11ba
AS
814
815 XSETBUFFER (curbuf, current_buffer);
816 /* We cannot allow after-change-functions be run
817 during decoding, because that might modify the
818 buffer, while we rely on process_coding.produced to
819 faithfully reflect inserted text until we
820 TEMP_SET_PT_BOTH below. */
821 specbind (Qinhibit_modification_hooks, Qt);
822 decode_coding_c_string (&process_coding,
823 (unsigned char *) buf, nread, curbuf);
824 unbind_to (count1, Qnil);
825 if (display_on_the_fly
826 && CODING_REQUIRE_DETECTION (&saved_coding)
827 && ! CODING_REQUIRE_DETECTION (&process_coding))
828 {
829 /* We have detected some coding system. But,
830 there's a possibility that the detection was
831 done by insufficient data. So, we give up
832 displaying on the fly. */
833 if (process_coding.produced > 0)
834 del_range_2 (process_coding.dst_pos,
835 process_coding.dst_pos_byte,
836 process_coding.dst_pos
837 + process_coding.produced_char,
838 process_coding.dst_pos_byte
839 + process_coding.produced, 0);
840 display_on_the_fly = 0;
841 process_coding = saved_coding;
842 carryover = nread;
843 /* This is to make the above condition always
844 fails in the future. */
845 saved_coding.common_flags
846 &= ~CODING_REQUIRE_DETECTION_MASK;
847 continue;
848 }
849
850 TEMP_SET_PT_BOTH (PT + process_coding.produced_char,
851 PT_BYTE + process_coding.produced);
852 carryover = process_coding.carryover_bytes;
853 if (carryover > 0)
854 memcpy (buf, process_coding.carryover,
855 process_coding.carryover_bytes);
856 }
857 }
c5bfa12b 858
19ed11ba
AS
859 if (process_coding.mode & CODING_MODE_LAST_BLOCK)
860 break;
6e3bfbb2 861
19ed11ba
AS
862 /* Make the buffer bigger as we continue to read more data,
863 but not past CALLPROC_BUFFER_SIZE_MAX. */
864 if (bufsize < CALLPROC_BUFFER_SIZE_MAX && total_read > 32 * bufsize)
865 if ((bufsize *= 2) > CALLPROC_BUFFER_SIZE_MAX)
866 bufsize = CALLPROC_BUFFER_SIZE_MAX;
6e3bfbb2 867
19ed11ba
AS
868 if (display_p)
869 {
870 if (first)
871 prepare_menu_bars ();
872 first = 0;
873 redisplay_preserve_echo_area (1);
874 /* This variable might have been set to 0 for code
875 detection. In that case, we set it back to 1 because
876 we should have already detected a coding system. */
877 display_on_the_fly = 1;
878 }
879 immediate_quit = 1;
880 QUIT;
881 }
882 give_up: ;
883
884 Vlast_coding_system_used = CODING_ID_NAME (process_coding.id);
885 /* If the caller required, let the buffer inherit the
886 coding-system used to decode the process output. */
887 if (inherit_process_coding_system)
888 call1 (intern ("after-insert-file-set-buffer-file-coding-system"),
889 make_number (total_read));
890 }
3b440bb5 891
77defa9a 892#ifndef MSDOS
80856e74 893 /* Wait for it to terminate, unless it already has. */
1ef14cb4
LMI
894 if (output_to_buffer)
895 wait_for_termination (pid);
896 else
897 interruptible_wait_for_termination (pid);
77defa9a 898#endif
80856e74
JB
899
900 immediate_quit = 0;
901
37d54121
RS
902 /* Don't kill any children that the subprocess may have left behind
903 when exiting. */
904 call_process_exited = 1;
905
3c59b4c9 906 SAFE_FREE ();
80856e74
JB
907 unbind_to (count, Qnil);
908
6b61353c
KH
909 if (synch_process_termsig)
910 {
42ca4633 911 const char *signame;
6b61353c
KH
912
913 synchronize_system_messages_locale ();
914 signame = strsignal (synch_process_termsig);
915
916 if (signame == 0)
19ed11ba 917 signame = "unknown";
6b61353c
KH
918
919 synch_process_death = signame;
920 }
921
80856e74 922 if (synch_process_death)
68c45bf0
PE
923 return code_convert_string_norecord (build_string (synch_process_death),
924 Vlocale_coding_system, 0);
80856e74
JB
925 return make_number (synch_process_retcode);
926}
80856e74 927\f
9fefd2ba 928static Lisp_Object
971de7fb 929delete_temp_file (Lisp_Object name)
80856e74 930{
1a271e14 931 /* Suppress jka-compr handling, etc. */
d311d28c 932 ptrdiff_t count = SPECPDL_INDEX ();
1a271e14 933 specbind (intern ("file-name-handler-alist"), Qnil);
f1a5d776 934 internal_delete_file (name);
1a271e14 935 unbind_to (count, Qnil);
320695d8 936 return Qnil;
80856e74
JB
937}
938
939DEFUN ("call-process-region", Fcall_process_region, Scall_process_region,
fdb82f93
PJ
940 3, MANY, 0,
941 doc: /* Send text from START to END to a synchronous process running PROGRAM.
942The remaining arguments are optional.
943Delete the text if fourth arg DELETE is non-nil.
944
1ef14cb4
LMI
945Insert output in BUFFER before point; t means current buffer; nil for
946 BUFFER means discard it; 0 means discard and don't wait; and `(:file
947 FILE)', where FILE is a file name string, means that it should be
948 written to that file.
fdb82f93
PJ
949BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
950REAL-BUFFER says what to do with standard output, as above,
951while STDERR-FILE says what to do with standard error in the child.
952STDERR-FILE may be nil (discard standard error output),
953t (mix it with ordinary output), or a file name string.
954
955Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted.
956Remaining args are passed to PROGRAM at startup as command args.
957
ba9a5174 958If BUFFER is 0, `call-process-region' returns immediately with value nil.
fdb82f93
PJ
959Otherwise it waits for PROGRAM to terminate
960and returns a numeric exit status or a signal description string.
d98b59b5
MB
961If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
962
963usage: (call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &rest ARGS) */)
f66c7cf8 964 (ptrdiff_t nargs, Lisp_Object *args)
80856e74 965{
39323a7e
KH
966 struct gcpro gcpro1;
967 Lisp_Object filename_string;
968 register Lisp_Object start, end;
d311d28c 969 ptrdiff_t count = SPECPDL_INDEX ();
08ee4e87 970 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
09494912 971 Lisp_Object coding_systems;
32d08644 972 Lisp_Object val, *args2;
f66c7cf8 973 ptrdiff_t i;
7e6c2178 974 char *tempfile;
f92d51d8 975 Lisp_Object tmpdir, pattern;
7e6c2178 976
f92d51d8
CY
977 if (STRINGP (Vtemporary_file_directory))
978 tmpdir = Vtemporary_file_directory;
7e6c2178
RS
979 else
980 {
f92d51d8
CY
981#ifndef DOS_NT
982 if (getenv ("TMPDIR"))
983 tmpdir = build_string (getenv ("TMPDIR"));
984 else
985 tmpdir = build_string ("/tmp/");
986#else /* DOS_NT */
987 char *outf;
988 if ((outf = egetenv ("TMPDIR"))
989 || (outf = egetenv ("TMP"))
990 || (outf = egetenv ("TEMP")))
991 tmpdir = build_string (outf);
992 else
993 tmpdir = Ffile_name_as_directory (build_string ("c:/temp"));
0774fcf8 994#endif
f92d51d8 995 }
7e6c2178 996
3c59b4c9
PE
997 {
998 USE_SAFE_ALLOCA;
999 pattern = Fexpand_file_name (Vtemp_file_name_pattern, tmpdir);
1000 SAFE_ALLOCA (tempfile, char *, SBYTES (pattern) + 1);
1001 memcpy (tempfile, SDATA (pattern), SBYTES (pattern) + 1);
1002 coding_systems = Qt;
09494912 1003
1ddc85a4 1004#ifdef HAVE_MKSTEMP
3c59b4c9
PE
1005 {
1006 int fd;
1007
1008 BLOCK_INPUT;
1009 fd = mkstemp (tempfile);
1010 UNBLOCK_INPUT;
1011 if (fd == -1)
1012 report_file_error ("Failed to open temporary file",
1013 Fcons (Vtemp_file_name_pattern, Qnil));
1014 else
1015 close (fd);
1016 }
1ddc85a4 1017#else
3c59b4c9 1018 mktemp (tempfile);
1ddc85a4 1019#endif
80856e74 1020
3c59b4c9
PE
1021 filename_string = build_string (tempfile);
1022 GCPRO1 (filename_string);
1023 SAFE_FREE ();
1024 }
1025
80856e74
JB
1026 start = args[0];
1027 end = args[1];
32d08644 1028 /* Decide coding-system of the contents of the temporary file. */
91489411
RS
1029 if (!NILP (Vcoding_system_for_write))
1030 val = Vcoding_system_for_write;
4b4deea2 1031 else if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
fcaf8878 1032 val = Qraw_text;
32d08644 1033 else
beacaab3 1034 {
3c59b4c9 1035 USE_SAFE_ALLOCA;
0065d054 1036 SAFE_NALLOCA (args2, 1, nargs + 1);
91489411
RS
1037 args2[0] = Qcall_process_region;
1038 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1039 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
fcaf8878 1040 val = CONSP (coding_systems) ? XCDR (coding_systems) : Qnil;
3c59b4c9 1041 SAFE_FREE ();
beacaab3 1042 }
fcaf8878 1043 val = complement_process_encoding_system (val);
32d08644 1044
168afdaa 1045 {
d311d28c 1046 ptrdiff_t count1 = SPECPDL_INDEX ();
168afdaa
RS
1047
1048 specbind (intern ("coding-system-for-write"), val);
bb951f0e
KR
1049 /* POSIX lets mk[s]temp use "."; don't invoke jka-compr if we
1050 happen to get a ".Z" suffix. */
1051 specbind (intern ("file-name-handler-alist"), Qnil);
168afdaa
RS
1052 Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil, Qnil);
1053
1054 unbind_to (count1, Qnil);
1055 }
91489411 1056
177c0ea7 1057 /* Note that Fcall_process takes care of binding
91489411 1058 coding-system-for-read. */
093650fe 1059
80856e74
JB
1060 record_unwind_protect (delete_temp_file, filename_string);
1061
edf496dd 1062 if (nargs > 3 && !NILP (args[3]))
80856e74
JB
1063 Fdelete_region (start, end);
1064
edf496dd
KH
1065 if (nargs > 3)
1066 {
1067 args += 2;
1068 nargs -= 2;
1069 }
1070 else
1071 {
1072 args[0] = args[2];
1073 nargs = 2;
1074 }
1075 args[1] = filename_string;
80856e74 1076
edf496dd 1077 RETURN_UNGCPRO (unbind_to (count, Fcall_process (nargs, args)));
80856e74
JB
1078}
1079\f
361358ea 1080#ifndef WINDOWSNT
971de7fb 1081static int relocate_fd (int fd, int minfd);
361358ea 1082#endif
dfcf069d 1083
5990851d
KL
1084static char **
1085add_env (char **env, char **new_env, char *string)
1086{
1087 char **ep;
1088 int ok = 1;
1089 if (string == NULL)
1090 return new_env;
1091
1092 /* See if this string duplicates any string already in the env.
1093 If so, don't put it in.
1094 When an env var has multiple definitions,
1095 we keep the definition that comes first in process-environment. */
1096 for (ep = env; ok && ep != new_env; ep++)
1097 {
1098 char *p = *ep, *q = string;
1099 while (ok)
19ed11ba
AS
1100 {
1101 if (*q != *p)
1102 break;
1103 if (*q == 0)
1104 /* The string is a lone variable name; keep it for now, we
1105 will remove it later. It is a placeholder for a
1106 variable that is not to be included in the environment. */
1107 break;
1108 if (*q == '=')
1109 ok = 0;
1110 p++, q++;
1111 }
5990851d
KL
1112 }
1113 if (ok)
1114 *new_env++ = string;
1115 return new_env;
1116}
1117
80856e74
JB
1118/* This is the last thing run in a newly forked inferior
1119 either synchronous or asynchronous.
1120 Copy descriptors IN, OUT and ERR as descriptors 0, 1 and 2.
1121 Initialize inferior's priority, pgrp, connected dir and environment.
1122 then exec another program based on new_argv.
1123
1124 This function may change environ for the superior process.
1125 Therefore, the superior process must save and restore the value
1126 of environ around the vfork and the call to this function.
1127
80856e74 1128 SET_PGRP is nonzero if we should put the subprocess into a separate
177c0ea7 1129 process group.
e576cab4
JB
1130
1131 CURRENT_DIR is an elisp string giving the path of the current
1132 directory the subprocess should have. Since we can't really signal
1133 a decent error from within the child, this should be verified as an
1134 executable directory by the parent. */
80856e74 1135
dfcf069d 1136int
971de7fb 1137child_setup (int in, int out, int err, register char **new_argv, int set_pgrp, Lisp_Object current_dir)
80856e74 1138{
e576cab4 1139 char **env;
7fcf7f05 1140 char *pwd_var;
bad95d8f
RS
1141#ifdef WINDOWSNT
1142 int cpid;
4252a4bd 1143 HANDLE handles[3];
bad95d8f 1144#endif /* WINDOWSNT */
e576cab4 1145
d311d28c 1146 pid_t pid = getpid ();
80856e74 1147
80856e74
JB
1148 /* Close Emacs's descriptors that this process should not have. */
1149 close_process_descs ();
ded80a25 1150
c17c4250
EZ
1151 /* DOS_NT isn't in a vfork, so if we are in the middle of load-file,
1152 we will lose if we call close_load_descs here. */
1153#ifndef DOS_NT
4458cebe 1154 close_load_descs ();
c17c4250 1155#endif
80856e74
JB
1156
1157 /* Note that use of alloca is always safe here. It's obvious for systems
1158 that do not have true vfork or that have true (stack) alloca.
caa01fe0
GM
1159 If using vfork and C_ALLOCA (when Emacs used to include
1160 src/alloca.c) it is safe because that changes the superior's
1161 static variables as if the superior had done alloca and will be
1162 cleaned up in the usual way. */
e576cab4 1163 {
7fcf7f05 1164 register char *temp;
0065d054 1165 size_t i; /* size_t, because ptrdiff_t might overflow here! */
77d78be1 1166
d5db4077 1167 i = SBYTES (current_dir);
16425c4a
EZ
1168#ifdef MSDOS
1169 /* MSDOS must have all environment variables malloc'ed, because
1170 low-level libc functions that launch subsidiary processes rely
1171 on that. */
1172 pwd_var = (char *) xmalloc (i + 6);
1173#else
7fcf7f05 1174 pwd_var = (char *) alloca (i + 6);
16425c4a 1175#endif
7fcf7f05 1176 temp = pwd_var + 4;
72af86bd
AS
1177 memcpy (pwd_var, "PWD=", 4);
1178 memcpy (temp, SDATA (current_dir), i);
bad95d8f 1179 if (!IS_DIRECTORY_SEP (temp[i - 1])) temp[i++] = DIRECTORY_SEP;
e576cab4
JB
1180 temp[i] = 0;
1181
c17c4250 1182#ifndef DOS_NT
e576cab4
JB
1183 /* We can't signal an Elisp error here; we're in a vfork. Since
1184 the callers check the current directory before forking, this
1185 should only return an error if the directory's permissions
1186 are changed between the check and this chdir, but we should
1187 at least check. */
1188 if (chdir (temp) < 0)
20b25e46 1189 _exit (errno);
f8d23104 1190#else /* DOS_NT */
c17c4250
EZ
1191 /* Get past the drive letter, so that d:/ is left alone. */
1192 if (i > 2 && IS_DEVICE_SEP (temp[1]) && IS_DIRECTORY_SEP (temp[2]))
1193 {
1194 temp += 2;
1195 i -= 2;
1196 }
f8d23104 1197#endif /* DOS_NT */
c17c4250 1198
7fcf7f05 1199 /* Strip trailing slashes for PWD, but leave "/" and "//" alone. */
bad95d8f 1200 while (i > 2 && IS_DIRECTORY_SEP (temp[i - 1]))
7fcf7f05 1201 temp[--i] = 0;
e576cab4 1202 }
80856e74 1203
5990851d 1204 /* Set `env' to a vector of the strings in the environment. */
80856e74
JB
1205 {
1206 register Lisp_Object tem;
1207 register char **new_env;
5990851d 1208 char **p, **q;
80856e74 1209 register int new_length;
d2bb6598 1210 Lisp_Object display = Qnil;
361358ea 1211
80856e74 1212 new_length = 0;
f105f403 1213
80856e74 1214 for (tem = Vprocess_environment;
19ed11ba
AS
1215 CONSP (tem) && STRINGP (XCAR (tem));
1216 tem = XCDR (tem))
d2bb6598 1217 {
42a5b22f 1218 if (strncmp (SSDATA (XCAR (tem)), "DISPLAY", 7) == 0
d2bb6598
SM
1219 && (SDATA (XCAR (tem)) [7] == '\0'
1220 || SDATA (XCAR (tem)) [7] == '='))
1221 /* DISPLAY is specified in process-environment. */
1222 display = Qt;
1223 new_length++;
1224 }
de87fb59 1225
d2bb6598
SM
1226 /* If not provided yet, use the frame's DISPLAY. */
1227 if (NILP (display))
1228 {
1229 Lisp_Object tmp = Fframe_parameter (selected_frame, Qdisplay);
1230 if (!STRINGP (tmp) && CONSP (Vinitial_environment))
1231 /* If still not found, Look for DISPLAY in Vinitial_environment. */
1232 tmp = Fgetenv_internal (build_string ("DISPLAY"),
1233 Vinitial_environment);
1234 if (STRINGP (tmp))
1235 {
1236 display = tmp;
1237 new_length++;
1238 }
1239 }
80856e74 1240
7fcf7f05
RS
1241 /* new_length + 2 to include PWD and terminating 0. */
1242 env = new_env = (char **) alloca ((new_length + 2) * sizeof (char *));
7fcf7f05
RS
1243 /* If we have a PWD envvar, pass one down,
1244 but with corrected value. */
a13f8f50 1245 if (egetenv ("PWD"))
7fcf7f05 1246 *new_env++ = pwd_var;
361358ea 1247
6b8e474c 1248 if (STRINGP (display))
de87fb59 1249 {
35016e9a 1250 char *vdata = (char *) alloca (sizeof "DISPLAY=" + SBYTES (display));
de87fb59 1251 strcpy (vdata, "DISPLAY=");
42a5b22f 1252 strcat (vdata, SSDATA (display));
de87fb59
DN
1253 new_env = add_env (env, new_env, vdata);
1254 }
80856e74 1255
5990851d 1256 /* Overrides. */
80856e74 1257 for (tem = Vprocess_environment;
70949dac
KR
1258 CONSP (tem) && STRINGP (XCAR (tem));
1259 tem = XCDR (tem))
42a5b22f 1260 new_env = add_env (env, new_env, SSDATA (XCAR (tem)));
d2bb6598 1261
5990851d
KL
1262 *new_env = 0;
1263
1264 /* Remove variable names without values. */
1265 p = q = env;
1266 while (*p != 0)
cd9565ba 1267 {
19ed11ba
AS
1268 while (*q != 0 && strchr (*q, '=') == NULL)
1269 q++;
1270 *p = *q++;
1271 if (*p != 0)
1272 p++;
cd9565ba 1273 }
80856e74 1274 }
de87fb59 1275
361358ea 1276
bad95d8f
RS
1277#ifdef WINDOWSNT
1278 prepare_standard_handles (in, out, err, handles);
d5db4077 1279 set_process_dir (SDATA (current_dir));
67802943
DN
1280 /* Spawn the child. (See ntproc.c:Spawnve). */
1281 cpid = spawnve (_P_NOWAIT, new_argv[0], new_argv, env);
1282 reset_standard_handles (in, out, err, handles);
1283 if (cpid == -1)
1284 /* An error occurred while trying to spawn the process. */
1285 report_file_error ("Spawning child process", Qnil);
1286 return cpid;
1287
bad95d8f 1288#else /* not WINDOWSNT */
426b37ae
JB
1289 /* Make sure that in, out, and err are not actually already in
1290 descriptors zero, one, or two; this could happen if Emacs is
7e6c2178 1291 started with its standard in, out, or error closed, as might
426b37ae 1292 happen under X. */
f29f9e4a
RS
1293 {
1294 int oin = in, oout = out;
1295
1296 /* We have to avoid relocating the same descriptor twice! */
1297
1298 in = relocate_fd (in, 3);
1299
1300 if (out == oin)
1301 out = in;
1302 else
3e9367e7 1303 out = relocate_fd (out, 3);
f29f9e4a
RS
1304
1305 if (err == oin)
1306 err = in;
1307 else if (err == oout)
1308 err = out;
1309 else
3e9367e7 1310 err = relocate_fd (err, 3);
f29f9e4a 1311 }
426b37ae 1312
c17c4250 1313#ifndef MSDOS
68c45bf0
PE
1314 emacs_close (0);
1315 emacs_close (1);
1316 emacs_close (2);
80856e74
JB
1317
1318 dup2 (in, 0);
1319 dup2 (out, 1);
1320 dup2 (err, 2);
68c45bf0 1321 emacs_close (in);
ce8f5a9a
AS
1322 if (out != in)
1323 emacs_close (out);
1324 if (err != in && err != out)
1325 emacs_close (err);
80856e74 1326
5e617bc2 1327#if defined (USG)
fdba8590 1328#ifndef SETPGRP_RELEASES_CTTY
e576cab4 1329 setpgrp (); /* No arguments but equivalent in this case */
fdba8590 1330#endif
67802943 1331#else /* not USG */
e576cab4 1332 setpgrp (pid, pid);
67802943 1333#endif /* not USG */
80856e74 1334
a7ebc409 1335 /* setpgrp_of_tty is incorrect here; it uses input_fd. */
12e610e8 1336 tcsetpgrp (0, pid);
a7ebc409 1337
80856e74
JB
1338 /* execvp does not accept an environment arg so the only way
1339 to pass this environment is to set environ. Our caller
1340 is responsible for restoring the ambient value of environ. */
1341 environ = env;
1342 execvp (new_argv[0], new_argv);
1343
68c45bf0
PE
1344 emacs_write (1, "Can't exec program: ", 20);
1345 emacs_write (1, new_argv[0], strlen (new_argv[0]));
1346 emacs_write (1, "\n", 1);
80856e74 1347 _exit (1);
67802943
DN
1348
1349#else /* MSDOS */
1350 pid = run_msdos_command (new_argv, pwd_var + 4, in, out, err, env);
1351 xfree (pwd_var);
1352 if (pid == -1)
1353 /* An error occurred while trying to run the subprocess. */
1354 report_file_error ("Spawning child process", Qnil);
1355 return pid;
1356#endif /* MSDOS */
ae76d9e1 1357#endif /* not WINDOWSNT */
80856e74
JB
1358}
1359
361358ea 1360#ifndef WINDOWSNT
a3833dfe 1361/* Move the file descriptor FD so that its number is not less than MINFD.
426b37ae 1362 If the file descriptor is moved at all, the original is freed. */
dfcf069d 1363static int
971de7fb 1364relocate_fd (int fd, int minfd)
426b37ae 1365{
a3833dfe 1366 if (fd >= minfd)
426b37ae
JB
1367 return fd;
1368 else
1369 {
cf237e27
AS
1370 int new;
1371#ifdef F_DUPFD
1372 new = fcntl (fd, F_DUPFD, minfd);
1373#else
1374 new = dup (fd);
1375 if (new != -1)
1376 /* Note that we hold the original FD open while we recurse,
1377 to guarantee we'll get a new FD if we need it. */
1378 new = relocate_fd (new, minfd);
1379#endif
426b37ae
JB
1380 if (new == -1)
1381 {
cb1d0ef7 1382 const char *message_1 = "Error while setting up child: ";
a8fe7202 1383 const char *errmessage = strerror (errno);
cb1d0ef7
PE
1384 const char *message_2 = "\n";
1385 emacs_write (2, message_1, strlen (message_1));
68c45bf0 1386 emacs_write (2, errmessage, strlen (errmessage));
cb1d0ef7 1387 emacs_write (2, message_2, strlen (message_2));
426b37ae
JB
1388 _exit (1);
1389 }
68c45bf0 1390 emacs_close (fd);
426b37ae
JB
1391 return new;
1392 }
1393}
361358ea 1394#endif /* not WINDOWSNT */
426b37ae 1395
012c6fcb 1396static int
989f33ba
PE
1397getenv_internal_1 (const char *var, ptrdiff_t varlen, char **value,
1398 ptrdiff_t *valuelen, Lisp_Object env)
012c6fcb 1399{
db699fc6 1400 for (; CONSP (env); env = XCDR (env))
012c6fcb 1401 {
db699fc6 1402 Lisp_Object entry = XCAR (env);
d50d3dc8 1403 if (STRINGP (entry)
db699fc6 1404 && SBYTES (entry) >= varlen
bad95d8f
RS
1405#ifdef WINDOWSNT
1406 /* NT environment variables are case insensitive. */
d5db4077 1407 && ! strnicmp (SDATA (entry), var, varlen)
bad95d8f 1408#else /* not WINDOWSNT */
72af86bd 1409 && ! memcmp (SDATA (entry), var, varlen)
bad95d8f 1410#endif /* not WINDOWSNT */
a9971c6d 1411 )
012c6fcb 1412 {
db699fc6
SM
1413 if (SBYTES (entry) > varlen && SREF (entry, varlen) == '=')
1414 {
51b59d79 1415 *value = SSDATA (entry) + (varlen + 1);
db699fc6
SM
1416 *valuelen = SBYTES (entry) - (varlen + 1);
1417 return 1;
1418 }
1419 else if (SBYTES (entry) == varlen)
1420 {
1421 /* Lone variable names in Vprocess_environment mean that
1422 variable should be removed from the environment. */
1423 *value = NULL;
1424 return 1;
1425 }
1426 }
1427 }
1428 return 0;
1429}
1430
012c6fcb 1431static int
989f33ba
PE
1432getenv_internal (const char *var, ptrdiff_t varlen, char **value,
1433 ptrdiff_t *valuelen, Lisp_Object frame)
012c6fcb 1434{
d2bb6598
SM
1435 /* Try to find VAR in Vprocess_environment first. */
1436 if (getenv_internal_1 (var, varlen, value, valuelen,
1437 Vprocess_environment))
1438 return *value ? 1 : 0;
f105f403 1439
d2bb6598 1440 /* For DISPLAY try to get the values from the frame or the initial env. */
de87fb59 1441 if (strcmp (var, "DISPLAY") == 0)
d2bb6598
SM
1442 {
1443 Lisp_Object display
1444 = Fframe_parameter (NILP (frame) ? selected_frame : frame, Qdisplay);
1445 if (STRINGP (display))
1446 {
51b59d79 1447 *value = SSDATA (display);
de87fb59 1448 *valuelen = SBYTES (display);
012c6fcb
JA
1449 return 1;
1450 }
d2bb6598
SM
1451 /* If still not found, Look for DISPLAY in Vinitial_environment. */
1452 if (getenv_internal_1 (var, varlen, value, valuelen,
1453 Vinitial_environment))
1454 return *value ? 1 : 0;
012c6fcb
JA
1455 }
1456
1457 return 0;
1458}
1459
f105f403 1460DEFUN ("getenv-internal", Fgetenv_internal, Sgetenv_internal, 1, 2, 0,
5990851d
KL
1461 doc: /* Get the value of environment variable VARIABLE.
1462VARIABLE should be a string. Value is nil if VARIABLE is undefined in
1463the environment. Otherwise, value is a string.
f105f403 1464
acf20901 1465This function searches `process-environment' for VARIABLE.
5990851d 1466
db699fc6 1467If optional parameter ENV is a list, then search this list instead of
acf20901
JB
1468`process-environment', and return t when encountering a negative entry
1469\(an entry for a variable with no value). */)
5842a27b 1470 (Lisp_Object variable, Lisp_Object env)
012c6fcb
JA
1471{
1472 char *value;
989f33ba 1473 ptrdiff_t valuelen;
012c6fcb 1474
5990851d 1475 CHECK_STRING (variable);
db699fc6
SM
1476 if (CONSP (env))
1477 {
42a5b22f 1478 if (getenv_internal_1 (SSDATA (variable), SBYTES (variable),
db699fc6
SM
1479 &value, &valuelen, env))
1480 return value ? make_string (value, valuelen) : Qt;
1481 else
1482 return Qnil;
1483 }
42a5b22f 1484 else if (getenv_internal (SSDATA (variable), SBYTES (variable),
d2bb6598 1485 &value, &valuelen, env))
012c6fcb
JA
1486 return make_string (value, valuelen);
1487 else
1488 return Qnil;
1489}
1490
5990851d
KL
1491/* A version of getenv that consults the Lisp environment lists,
1492 easily callable from C. */
012c6fcb 1493char *
a8fe7202 1494egetenv (const char *var)
012c6fcb
JA
1495{
1496 char *value;
25c7e41f 1497 ptrdiff_t valuelen;
012c6fcb 1498
f105f403 1499 if (getenv_internal (var, strlen (var), &value, &valuelen, Qnil))
012c6fcb
JA
1500 return value;
1501 else
1502 return 0;
1503}
1504
80856e74 1505\f
8de15d69 1506/* This is run before init_cmdargs. */
177c0ea7 1507
dfcf069d 1508void
971de7fb 1509init_callproc_1 (void)
8de15d69
RS
1510{
1511 char *data_dir = egetenv ("EMACSDATA");
35a2f4b8
KH
1512 char *doc_dir = egetenv ("EMACSDOC");
1513
8de15d69 1514 Vdata_directory
177c0ea7 1515 = Ffile_name_as_directory (build_string (data_dir ? data_dir
8de15d69 1516 : PATH_DATA));
35a2f4b8
KH
1517 Vdoc_directory
1518 = Ffile_name_as_directory (build_string (doc_dir ? doc_dir
1519 : PATH_DOC));
9453ea7b 1520
e576cab4 1521 /* Check the EMACSPATH environment variable, defaulting to the
57bda87a 1522 PATH_EXEC path from epaths.h. */
e576cab4 1523 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC);
80856e74
JB
1524 Vexec_directory = Ffile_name_as_directory (Fcar (Vexec_path));
1525 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path);
8de15d69
RS
1526}
1527
e17f7533 1528/* This is run after init_cmdargs, when Vinstallation_directory is valid. */
8de15d69 1529
dfcf069d 1530void
971de7fb 1531init_callproc (void)
8de15d69
RS
1532{
1533 char *data_dir = egetenv ("EMACSDATA");
177c0ea7 1534
8de15d69
RS
1535 register char * sh;
1536 Lisp_Object tempdir;
1537
9cc4fad5 1538 if (!NILP (Vinstallation_directory))
8de15d69 1539 {
05630743
RS
1540 /* Add to the path the lib-src subdir of the installation dir. */
1541 Lisp_Object tem;
1542 tem = Fexpand_file_name (build_string ("lib-src"),
1543 Vinstallation_directory);
bad95d8f 1544#ifndef DOS_NT
1a6640ec 1545 /* MSDOS uses wrapped binaries, so don't do this. */
0fa248bc 1546 if (NILP (Fmember (tem, Vexec_path)))
70ec1377
RS
1547 {
1548 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC);
1549 Vexec_path = Fcons (tem, Vexec_path);
1550 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path);
1551 }
177c0ea7 1552
0fa248bc 1553 Vexec_directory = Ffile_name_as_directory (tem);
bad95d8f 1554#endif /* not DOS_NT */
8de15d69 1555
e17f7533
RS
1556 /* Maybe use ../etc as well as ../lib-src. */
1557 if (data_dir == 0)
1558 {
1559 tem = Fexpand_file_name (build_string ("etc"),
1560 Vinstallation_directory);
1561 Vdoc_directory = Ffile_name_as_directory (tem);
8de15d69
RS
1562 }
1563 }
7e933683
RS
1564
1565 /* Look for the files that should be in etc. We don't use
1566 Vinstallation_directory, because these files are never installed
e17f7533 1567 near the executable, and they are never in the build
7e933683
RS
1568 directory when that's different from the source directory.
1569
1570 Instead, if these files are not in the nominal place, we try the
1571 source directory. */
1572 if (data_dir == 0)
1573 {
70ec1377 1574 Lisp_Object tem, tem1, srcdir;
7e933683 1575
70ec1377
RS
1576 srcdir = Fexpand_file_name (build_string ("../src/"),
1577 build_string (PATH_DUMPLOADSEARCH));
7e933683
RS
1578 tem = Fexpand_file_name (build_string ("GNU"), Vdata_directory);
1579 tem1 = Ffile_exists_p (tem);
70ec1377 1580 if (!NILP (Fequal (srcdir, Vinvocation_directory)) || NILP (tem1))
7e933683 1581 {
70ec1377 1582 Lisp_Object newdir;
7e933683
RS
1583 newdir = Fexpand_file_name (build_string ("../etc/"),
1584 build_string (PATH_DUMPLOADSEARCH));
1585 tem = Fexpand_file_name (build_string ("GNU"), newdir);
1586 tem1 = Ffile_exists_p (tem);
1587 if (!NILP (tem1))
1588 Vdata_directory = newdir;
1589 }
1590 }
80856e74 1591
d883eb62
RS
1592#ifndef CANNOT_DUMP
1593 if (initialized)
1594#endif
1595 {
1596 tempdir = Fdirectory_file_name (Vexec_directory);
42a5b22f 1597 if (access (SSDATA (tempdir), 0) < 0)
d883eb62
RS
1598 dir_warning ("Warning: arch-dependent data dir (%s) does not exist.\n",
1599 Vexec_directory);
1600 }
80856e74 1601
e576cab4 1602 tempdir = Fdirectory_file_name (Vdata_directory);
42a5b22f 1603 if (access (SSDATA (tempdir), 0) < 0)
76d5c6cf
RS
1604 dir_warning ("Warning: arch-independent data dir (%s) does not exist.\n",
1605 Vdata_directory);
e576cab4 1606
e576cab4 1607 sh = (char *) getenv ("SHELL");
80856e74 1608 Vshell_file_name = build_string (sh ? sh : "/bin/sh");
8abd035b 1609
40b49d4b
JB
1610#ifdef DOS_NT
1611 Vshared_game_score_directory = Qnil;
1612#else
63789758
RS
1613 Vshared_game_score_directory = build_string (PATH_GAME);
1614 if (NILP (Ffile_directory_p (Vshared_game_score_directory)))
1615 Vshared_game_score_directory = Qnil;
40b49d4b 1616#endif
9fefd2ba
JB
1617}
1618
dfcf069d 1619void
971de7fb 1620set_initial_environment (void)
9fefd2ba 1621{
738db178
DN
1622 char **envp;
1623 for (envp = environ; *envp; envp++)
1624 Vprocess_environment = Fcons (build_string (*envp),
1625 Vprocess_environment);
1626 /* Ideally, the `copy' shouldn't be necessary, but it seems it's frequent
1627 to use `delete' and friends on process-environment. */
1628 Vinitial_environment = Fcopy_sequence (Vprocess_environment);
80856e74
JB
1629}
1630
dfcf069d 1631void
971de7fb 1632syms_of_callproc (void)
80856e74 1633{
f92d51d8
CY
1634#ifndef DOS_NT
1635 Vtemp_file_name_pattern = build_string ("emacsXXXXXX");
1636#elif defined (WINDOWSNT)
1637 Vtemp_file_name_pattern = build_string ("emXXXXXX");
1638#else
1639 Vtemp_file_name_pattern = build_string ("detmp.XXX");
1640#endif
1641 staticpro (&Vtemp_file_name_pattern);
1642
29208e82 1643 DEFVAR_LISP ("shell-file-name", Vshell_file_name,
fdb82f93 1644 doc: /* *File name to load inferior shells from.
b20b29be
EZ
1645Initialized from the SHELL environment variable, or to a system-dependent
1646default if SHELL is not set. */);
80856e74 1647
29208e82 1648 DEFVAR_LISP ("exec-path", Vexec_path,
fdb82f93
PJ
1649 doc: /* *List of directories to search programs to run in subprocesses.
1650Each element is a string (directory name) or nil (try default directory). */);
80856e74 1651
29208e82 1652 DEFVAR_LISP ("exec-suffixes", Vexec_suffixes,
fdb82f93
PJ
1653 doc: /* *List of suffixes to try to find executable file names.
1654Each element is a string. */);
33d5af99 1655 Vexec_suffixes = Qnil;
b81a1b72 1656
29208e82 1657 DEFVAR_LISP ("exec-directory", Vexec_directory,
fdb82f93
PJ
1658 doc: /* Directory for executables for Emacs to invoke.
1659More generally, this includes any architecture-dependent files
1660that are built and installed from the Emacs distribution. */);
e576cab4 1661
29208e82 1662 DEFVAR_LISP ("data-directory", Vdata_directory,
fdb82f93
PJ
1663 doc: /* Directory of machine-independent files that come with GNU Emacs.
1664These are files intended for Emacs to use while it runs. */);
80856e74 1665
29208e82 1666 DEFVAR_LISP ("doc-directory", Vdoc_directory,
fdb82f93 1667 doc: /* Directory containing the DOC file that comes with GNU Emacs.
ebf24b59 1668This is usually the same as `data-directory'. */);
35a2f4b8 1669
29208e82 1670 DEFVAR_LISP ("configure-info-directory", Vconfigure_info_directory,
fdb82f93
PJ
1671 doc: /* For internal use by the build procedure only.
1672This is the name of the directory in which the build procedure installed
ebf24b59 1673Emacs's info files; the default value for `Info-default-directory-list'
fdb82f93 1674includes this. */);
ed61592a
JB
1675 Vconfigure_info_directory = build_string (PATH_INFO);
1676
29208e82 1677 DEFVAR_LISP ("shared-game-score-directory", Vshared_game_score_directory,
b065672a
CW
1678 doc: /* Directory of score files for games which come with GNU Emacs.
1679If this variable is nil, then Emacs is unable to use a shared directory. */);
40b49d4b
JB
1680#ifdef DOS_NT
1681 Vshared_game_score_directory = Qnil;
1682#else
63789758 1683 Vshared_game_score_directory = build_string (PATH_GAME);
40b49d4b 1684#endif
b065672a 1685
29208e82 1686 DEFVAR_LISP ("initial-environment", Vinitial_environment,
6b8e474c
SM
1687 doc: /* List of environment variables inherited from the parent process.
1688Each element should be a string of the form ENVVARNAME=VALUE.
1689The elements must normally be decoded (using `locale-coding-system') for use. */);
1690 Vinitial_environment = Qnil;
1691
29208e82 1692 DEFVAR_LISP ("process-environment", Vprocess_environment,
5990851d 1693 doc: /* List of overridden environment variables for subprocesses to inherit.
fdb82f93 1694Each element should be a string of the form ENVVARNAME=VALUE.
5990851d 1695
a13f8f50
KL
1696Entries in this list take precedence to those in the frame-local
1697environments. Therefore, let-binding `process-environment' is an easy
1698way to temporarily change the value of an environment variable,
1699irrespective of where it comes from. To use `process-environment' to
1700remove an environment variable, include only its name in the list,
1701without "=VALUE".
5990851d
KL
1702
1703This variable is set to nil when Emacs starts.
1704
fdb82f93
PJ
1705If multiple entries define the same variable, the first one always
1706takes precedence.
5990851d 1707
776a24a1 1708Non-ASCII characters are encoded according to the initial value of
5990851d
KL
1709`locale-coding-system', i.e. the elements must normally be decoded for
1710use.
1711
776a24a1 1712See `setenv' and `getenv'. */);
86f5ca04 1713 Vprocess_environment = Qnil;
80856e74 1714
80856e74 1715 defsubr (&Scall_process);
83fa009c 1716 defsubr (&Sgetenv_internal);
e576cab4 1717 defsubr (&Scall_process_region);
80856e74 1718}