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