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