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