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