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