]> code.delx.au - gnu-emacs/blob - src/callproc.c
* callproc.c (strerror): Remove decl.
[gnu-emacs] / src / callproc.c
1 /* Synchronous subprocess invocation for GNU Emacs.
2 Copyright (C) 1985, 86,87,88,93,94,95, 1999 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21
22 #include <config.h>
23 #include <signal.h>
24 #include <errno.h>
25 #include <stdio.h>
26
27 extern int errno;
28
29 /* Define SIGCHLD as an alias for SIGCLD. */
30
31 #if !defined (SIGCHLD) && defined (SIGCLD)
32 #define SIGCHLD SIGCLD
33 #endif /* SIGCLD */
34
35 #include <sys/types.h>
36
37 #ifdef HAVE_UNISTD_H
38 #include <unistd.h>
39 #endif
40
41 #include <sys/file.h>
42 #ifdef USG5
43 #define INCLUDED_FCNTL
44 #include <fcntl.h>
45 #endif
46
47 #ifdef WINDOWSNT
48 #define NOMINMAX
49 #include <windows.h>
50 #include <stdlib.h> /* for proper declaration of environ */
51 #include <fcntl.h>
52 #include "w32.h"
53 #define _P_NOWAIT 1 /* from process.h */
54 #endif
55
56 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
57 #define INCLUDED_FCNTL
58 #include <fcntl.h>
59 #include <sys/stat.h>
60 #include <sys/param.h>
61 #include <errno.h>
62 #endif /* MSDOS */
63
64 #ifndef O_RDONLY
65 #define O_RDONLY 0
66 #endif
67
68 #ifndef O_WRONLY
69 #define O_WRONLY 1
70 #endif
71
72 #include "lisp.h"
73 #include "commands.h"
74 #include "buffer.h"
75 #include "charset.h"
76 #include "ccl.h"
77 #include "coding.h"
78 #include <epaths.h>
79 #include "process.h"
80 #include "syssignal.h"
81 #include "systty.h"
82
83 #ifdef MSDOS
84 #include "msdos.h"
85 #endif
86
87 #ifdef VMS
88 extern noshare char **environ;
89 #else
90 extern char **environ;
91 #endif
92
93 #define max(a, b) ((a) > (b) ? (a) : (b))
94
95 Lisp_Object Vexec_path, Vexec_directory, Vdata_directory, Vdoc_directory;
96 Lisp_Object Vconfigure_info_directory;
97 Lisp_Object Vtemp_file_name_pattern;
98
99 Lisp_Object Vshell_file_name;
100
101 Lisp_Object Vprocess_environment;
102
103 #ifdef DOS_NT
104 Lisp_Object Qbuffer_file_type;
105 #endif /* DOS_NT */
106
107 /* True iff we are about to fork off a synchronous process or if we
108 are waiting for it. */
109 int synch_process_alive;
110
111 /* Nonzero => this is a string explaining death of synchronous subprocess. */
112 char *synch_process_death;
113
114 /* If synch_process_death is zero,
115 this is exit code of synchronous subprocess. */
116 int synch_process_retcode;
117
118 extern Lisp_Object Vdoc_file_name;
119
120 extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system;
121 \f
122 /* Clean up when exiting Fcall_process.
123 On MSDOS, delete the temporary file on any kind of termination.
124 On Unix, kill the process and any children on termination by signal. */
125
126 /* Nonzero if this is termination due to exit. */
127 static int call_process_exited;
128
129 #ifndef VMS /* VMS version is in vmsproc.c. */
130
131 static Lisp_Object
132 call_process_kill (fdpid)
133 Lisp_Object fdpid;
134 {
135 emacs_close (XFASTINT (Fcar (fdpid)));
136 EMACS_KILLPG (XFASTINT (Fcdr (fdpid)), SIGKILL);
137 synch_process_alive = 0;
138 return Qnil;
139 }
140
141 Lisp_Object
142 call_process_cleanup (fdpid)
143 Lisp_Object fdpid;
144 {
145 #if defined (MSDOS) || defined (macintosh)
146 /* for MSDOS fdpid is really (fd . tempfile) */
147 register Lisp_Object file;
148 file = Fcdr (fdpid);
149 emacs_close (XFASTINT (Fcar (fdpid)));
150 if (strcmp (XSTRING (file)-> data, NULL_DEVICE) != 0)
151 unlink (XSTRING (file)->data);
152 #else /* not MSDOS and not macintosh */
153 register int pid = XFASTINT (Fcdr (fdpid));
154
155 if (call_process_exited)
156 {
157 emacs_close (XFASTINT (Fcar (fdpid)));
158 return Qnil;
159 }
160
161 if (EMACS_KILLPG (pid, SIGINT) == 0)
162 {
163 int count = specpdl_ptr - specpdl;
164 record_unwind_protect (call_process_kill, fdpid);
165 message1 ("Waiting for process to die...(type C-g again to kill it instantly)");
166 immediate_quit = 1;
167 QUIT;
168 wait_for_termination (pid);
169 immediate_quit = 0;
170 specpdl_ptr = specpdl + count; /* Discard the unwind protect. */
171 message1 ("Waiting for process to die...done");
172 }
173 synch_process_alive = 0;
174 emacs_close (XFASTINT (Fcar (fdpid)));
175 #endif /* not MSDOS */
176 return Qnil;
177 }
178
179 DEFUN ("call-process", Fcall_process, Scall_process, 1, MANY, 0,
180 "Call PROGRAM synchronously in separate process.\n\
181 The remaining arguments are optional.\n\
182 The program's input comes from file INFILE (nil means `/dev/null').\n\
183 Insert output in BUFFER before point; t means current buffer;\n\
184 nil for BUFFER means discard it; 0 means discard and don't wait.\n\
185 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,\n\
186 REAL-BUFFER says what to do with standard output, as above,\n\
187 while STDERR-FILE says what to do with standard error in the child.\n\
188 STDERR-FILE may be nil (discard standard error output),\n\
189 t (mix it with ordinary output), or a file name string.\n\
190 \n\
191 Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.\n\
192 Remaining arguments are strings passed as command arguments to PROGRAM.\n\
193 \n\
194 If BUFFER is 0, `call-process' returns immediately with value nil.\n\
195 Otherwise it waits for PROGRAM to terminate\n\
196 and returns a numeric exit status or a signal description string.\n\
197 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
198 (nargs, args)
199 int nargs;
200 register Lisp_Object *args;
201 {
202 Lisp_Object infile, buffer, current_dir, display, path;
203 int fd[2];
204 int filefd;
205 register int pid;
206 char buf[16384];
207 char *bufptr = buf;
208 int bufsize = 16384;
209 int count = specpdl_ptr - specpdl;
210
211 register unsigned char **new_argv
212 = (unsigned char **) alloca ((max (2, nargs - 2)) * sizeof (char *));
213 struct buffer *old = current_buffer;
214 /* File to use for stderr in the child.
215 t means use same as standard output. */
216 Lisp_Object error_file;
217 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
218 char *outf, *tempfile;
219 int outfilefd;
220 #endif
221 #ifdef macintosh
222 char *tempfile;
223 int outfilefd;
224 #endif
225 #if 0
226 int mask;
227 #endif
228 struct coding_system process_coding; /* coding-system of process output */
229 struct coding_system argument_coding; /* coding-system of arguments */
230 /* Set to the return value of Ffind_operation_coding_system. */
231 Lisp_Object coding_systems;
232
233 /* Qt denotes that Ffind_operation_coding_system is not yet called. */
234 coding_systems = Qt;
235
236 CHECK_STRING (args[0], 0);
237
238 error_file = Qt;
239
240 #ifndef subprocesses
241 /* Without asynchronous processes we cannot have BUFFER == 0. */
242 if (nargs >= 3
243 && (INTEGERP (CONSP (args[2]) ? XCAR (args[2]) : args[2])))
244 error ("Operating system cannot handle asynchronous subprocesses");
245 #endif /* subprocesses */
246
247 /* Decide the coding-system for giving arguments. */
248 {
249 Lisp_Object val, *args2;
250 int i;
251
252 /* If arguments are supplied, we may have to encode them. */
253 if (nargs >= 5)
254 {
255 int must_encode = 0;
256
257 for (i = 4; i < nargs; i++)
258 CHECK_STRING (args[i], i);
259
260 for (i = 4; i < nargs; i++)
261 if (STRING_MULTIBYTE (args[i]))
262 must_encode = 1;
263
264 if (!NILP (Vcoding_system_for_write))
265 val = Vcoding_system_for_write;
266 else if (! must_encode)
267 val = Qnil;
268 else
269 {
270 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
271 args2[0] = Qcall_process;
272 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
273 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
274 if (CONSP (coding_systems))
275 val = XCDR (coding_systems);
276 else if (CONSP (Vdefault_process_coding_system))
277 val = XCDR (Vdefault_process_coding_system);
278 else
279 val = Qnil;
280 }
281 setup_coding_system (Fcheck_coding_system (val), &argument_coding);
282 }
283 }
284
285 if (nargs >= 2 && ! NILP (args[1]))
286 {
287 infile = Fexpand_file_name (args[1], current_buffer->directory);
288 CHECK_STRING (infile, 1);
289 }
290 else
291 infile = build_string (NULL_DEVICE);
292
293 if (nargs >= 3)
294 {
295 buffer = args[2];
296
297 /* If BUFFER is a list, its meaning is
298 (BUFFER-FOR-STDOUT FILE-FOR-STDERR). */
299 if (CONSP (buffer))
300 {
301 if (CONSP (XCDR (buffer)))
302 {
303 Lisp_Object stderr_file;
304 stderr_file = XCAR (XCDR (buffer));
305
306 if (NILP (stderr_file) || EQ (Qt, stderr_file))
307 error_file = stderr_file;
308 else
309 error_file = Fexpand_file_name (stderr_file, Qnil);
310 }
311
312 buffer = XCAR (buffer);
313 }
314
315 if (!(EQ (buffer, Qnil)
316 || EQ (buffer, Qt)
317 || INTEGERP (buffer)))
318 {
319 Lisp_Object spec_buffer;
320 spec_buffer = buffer;
321 buffer = Fget_buffer_create (buffer);
322 /* Mention the buffer name for a better error message. */
323 if (NILP (buffer))
324 CHECK_BUFFER (spec_buffer, 2);
325 CHECK_BUFFER (buffer, 2);
326 }
327 }
328 else
329 buffer = Qnil;
330
331 /* Make sure that the child will be able to chdir to the current
332 buffer's current directory, or its unhandled equivalent. We
333 can't just have the child check for an error when it does the
334 chdir, since it's in a vfork.
335
336 We have to GCPRO around this because Fexpand_file_name,
337 Funhandled_file_name_directory, and Ffile_accessible_directory_p
338 might call a file name handling function. The argument list is
339 protected by the caller, so all we really have to worry about is
340 buffer. */
341 {
342 struct gcpro gcpro1, gcpro2, gcpro3;
343
344 current_dir = current_buffer->directory;
345
346 GCPRO3 (infile, buffer, current_dir);
347
348 current_dir
349 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir),
350 Qnil);
351 if (NILP (Ffile_accessible_directory_p (current_dir)))
352 report_file_error ("Setting current directory",
353 Fcons (current_buffer->directory, Qnil));
354
355 UNGCPRO;
356 }
357
358 display = nargs >= 4 ? args[3] : Qnil;
359
360 filefd = emacs_open (XSTRING (infile)->data, O_RDONLY, 0);
361 if (filefd < 0)
362 {
363 report_file_error ("Opening process input file", Fcons (infile, Qnil));
364 }
365 /* Search for program; barf if not found. */
366 {
367 struct gcpro gcpro1;
368
369 GCPRO1 (current_dir);
370 openp (Vexec_path, args[0], EXEC_SUFFIXES, &path, 1);
371 UNGCPRO;
372 }
373 if (NILP (path))
374 {
375 emacs_close (filefd);
376 report_file_error ("Searching for program", Fcons (args[0], Qnil));
377 }
378 new_argv[0] = XSTRING (path)->data;
379 if (nargs > 4)
380 {
381 register int i;
382
383 if (! CODING_REQUIRE_ENCODING (&argument_coding))
384 {
385 for (i = 4; i < nargs; i++)
386 new_argv[i - 3] = XSTRING (args[i])->data;
387 }
388 else
389 {
390 /* We must encode the arguments. */
391 struct gcpro gcpro1, gcpro2, gcpro3;
392
393 GCPRO3 (infile, buffer, current_dir);
394 for (i = 4; i < nargs; i++)
395 {
396 int size = encoding_buffer_size (&argument_coding,
397 STRING_BYTES (XSTRING (args[i])));
398 unsigned char *dummy1 = (unsigned char *) alloca (size);
399
400 /* The Irix 4.0 compiler barfs if we eliminate dummy. */
401 new_argv[i - 3] = dummy1;
402 argument_coding.mode |= CODING_MODE_LAST_BLOCK;
403 encode_coding (&argument_coding,
404 XSTRING (args[i])->data,
405 new_argv[i - 3],
406 STRING_BYTES (XSTRING (args[i])),
407 size);
408 new_argv[i - 3][argument_coding.produced] = 0;
409 /* We have to initialize CCL program status again. */
410 if (argument_coding.type == coding_type_ccl)
411 setup_ccl_program (&(argument_coding.spec.ccl.encoder), Qnil);
412 }
413 UNGCPRO;
414 }
415 new_argv[nargs - 3] = 0;
416 }
417 else
418 new_argv[1] = 0;
419
420 #ifdef MSDOS /* MW, July 1993 */
421 if ((outf = egetenv ("TMPDIR")))
422 strcpy (tempfile = alloca (strlen (outf) + 20), outf);
423 else
424 {
425 tempfile = alloca (20);
426 *tempfile = '\0';
427 }
428 dostounix_filename (tempfile);
429 if (*tempfile == '\0' || tempfile[strlen (tempfile) - 1] != '/')
430 strcat (tempfile, "/");
431 strcat (tempfile, "detmp.XXX");
432 mktemp (tempfile);
433
434 outfilefd = creat (tempfile, S_IREAD | S_IWRITE);
435 if (outfilefd < 0)
436 {
437 emacs_close (filefd);
438 report_file_error ("Opening process output file",
439 Fcons (build_string (tempfile), Qnil));
440 }
441 fd[0] = filefd;
442 fd[1] = outfilefd;
443 #endif /* MSDOS */
444
445 #ifdef macintosh
446 /* Since we don't have pipes on the Mac, create a temporary file to
447 hold the output of the subprocess. */
448 tempfile = (char *) alloca (STRING_BYTES (XSTRING (Vtemp_file_name_pattern)) + 1);
449 bcopy (XSTRING (Vtemp_file_name_pattern)->data, tempfile,
450 STRING_BYTES (XSTRING (Vtemp_file_name_pattern)) + 1);
451
452 mktemp (tempfile);
453
454 outfilefd = creat (tempfile, S_IREAD | S_IWRITE);
455 if (outfilefd < 0)
456 {
457 close (filefd);
458 report_file_error ("Opening process output file",
459 Fcons (build_string (tempfile), Qnil));
460 }
461 fd[0] = filefd;
462 fd[1] = outfilefd;
463 #endif /* macintosh */
464
465 if (INTEGERP (buffer))
466 fd[1] = emacs_open (NULL_DEVICE, O_WRONLY, 0), fd[0] = -1;
467 else
468 {
469 #ifndef MSDOS
470 #ifndef macintosh
471 pipe (fd);
472 #endif
473 #endif
474 #if 0
475 /* Replaced by close_process_descs */
476 set_exclusive_use (fd[0]);
477 #endif
478 }
479
480 {
481 /* child_setup must clobber environ in systems with true vfork.
482 Protect it from permanent change. */
483 register char **save_environ = environ;
484 register int fd1 = fd[1];
485 int fd_error = fd1;
486
487 #if 0 /* Some systems don't have sigblock. */
488 mask = sigblock (sigmask (SIGCHLD));
489 #endif
490
491 /* Record that we're about to create a synchronous process. */
492 synch_process_alive = 1;
493
494 /* These vars record information from process termination.
495 Clear them now before process can possibly terminate,
496 to avoid timing error if process terminates soon. */
497 synch_process_death = 0;
498 synch_process_retcode = 0;
499
500 if (NILP (error_file))
501 fd_error = emacs_open (NULL_DEVICE, O_WRONLY, 0);
502 else if (STRINGP (error_file))
503 {
504 #ifdef DOS_NT
505 fd_error = emacs_open (XSTRING (error_file)->data,
506 O_WRONLY | O_TRUNC | O_CREAT | O_TEXT,
507 S_IREAD | S_IWRITE);
508 #else /* not DOS_NT */
509 fd_error = creat (XSTRING (error_file)->data, 0666);
510 #endif /* not DOS_NT */
511 }
512
513 if (fd_error < 0)
514 {
515 emacs_close (filefd);
516 if (fd[0] != filefd)
517 emacs_close (fd[0]);
518 if (fd1 >= 0)
519 emacs_close (fd1);
520 #ifdef MSDOS
521 unlink (tempfile);
522 #endif
523 report_file_error ("Cannot redirect stderr",
524 Fcons ((NILP (error_file)
525 ? build_string (NULL_DEVICE) : error_file),
526 Qnil));
527 }
528
529 current_dir = ENCODE_FILE (current_dir);
530
531 #ifdef macintosh
532 {
533 /* Call run_mac_command in sysdep.c here directly instead of doing
534 a child_setup as for MSDOS and other platforms. Note that this
535 code does not handle passing the environment to the synchronous
536 Mac subprocess. */
537 char *infn, *outfn, *errfn, *currdn;
538
539 /* close these files so subprocess can write to them */
540 close (outfilefd);
541 if (fd_error != outfilefd)
542 close (fd_error);
543 fd1 = -1; /* No harm in closing that one! */
544
545 infn = XSTRING (infile)->data;
546 outfn = tempfile;
547 if (NILP (error_file))
548 errfn = NULL_DEVICE;
549 else if (EQ (Qt, error_file))
550 errfn = outfn;
551 else
552 errfn = XSTRING (error_file)->data;
553 currdn = XSTRING (current_dir)->data;
554 pid = run_mac_command (new_argv, currdn, infn, outfn, errfn);
555
556 /* Record that the synchronous process exited and note its
557 termination status. */
558 synch_process_alive = 0;
559 synch_process_retcode = pid;
560 if (synch_process_retcode < 0) /* means it couldn't be exec'ed */
561 {
562 synchronize_system_messages_locale ();
563 synch_process_death = strerror (errno);
564 }
565
566 /* Since CRLF is converted to LF within `decode_coding', we can
567 always open a file with binary mode. */
568 fd[0] = open (tempfile, O_BINARY);
569 if (fd[0] < 0)
570 {
571 unlink (tempfile);
572 close (filefd);
573 report_file_error ("Cannot re-open temporary file", Qnil);
574 }
575 }
576 #else /* not macintosh */
577 #ifdef MSDOS /* MW, July 1993 */
578 /* Note that on MSDOS `child_setup' actually returns the child process
579 exit status, not its PID, so we assign it to `synch_process_retcode'
580 below. */
581 pid = child_setup (filefd, outfilefd, fd_error, (char **) new_argv,
582 0, current_dir);
583
584 /* Record that the synchronous process exited and note its
585 termination status. */
586 synch_process_alive = 0;
587 synch_process_retcode = pid;
588 if (synch_process_retcode < 0) /* means it couldn't be exec'ed */
589 {
590 synchronize_system_messages_locale ();
591 synch_process_death = strerror (errno);
592 }
593
594 emacs_close (outfilefd);
595 if (fd_error != outfilefd)
596 emacs_close (fd_error);
597 fd1 = -1; /* No harm in closing that one! */
598 /* Since CRLF is converted to LF within `decode_coding', we can
599 always open a file with binary mode. */
600 fd[0] = emacs_open (tempfile, O_RDONLY | O_BINARY, 0);
601 if (fd[0] < 0)
602 {
603 unlink (tempfile);
604 emacs_close (filefd);
605 report_file_error ("Cannot re-open temporary file", Qnil);
606 }
607 #else /* not MSDOS */
608 #ifdef WINDOWSNT
609 pid = child_setup (filefd, fd1, fd_error, (char **) new_argv,
610 0, current_dir);
611 #else /* not WINDOWSNT */
612 pid = vfork ();
613
614 if (pid == 0)
615 {
616 if (fd[0] >= 0)
617 emacs_close (fd[0]);
618 #ifdef HAVE_SETSID
619 setsid ();
620 #endif
621 #if defined (USG) && !defined (BSD_PGRPS)
622 setpgrp ();
623 #else
624 setpgrp (pid, pid);
625 #endif /* USG */
626 child_setup (filefd, fd1, fd_error, (char **) new_argv,
627 0, current_dir);
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 #endif /* not macintosh */
636
637 environ = save_environ;
638
639 /* Close most of our fd's, but not fd[0]
640 since we will use that to read input from. */
641 emacs_close (filefd);
642 if (fd1 >= 0 && fd1 != fd_error)
643 emacs_close (fd1);
644 }
645
646 if (pid < 0)
647 {
648 if (fd[0] >= 0)
649 emacs_close (fd[0]);
650 report_file_error ("Doing vfork", Qnil);
651 }
652
653 if (INTEGERP (buffer))
654 {
655 if (fd[0] >= 0)
656 emacs_close (fd[0]);
657 #ifndef subprocesses
658 /* If Emacs has been built with asynchronous subprocess support,
659 we don't need to do this, I think because it will then have
660 the facilities for handling SIGCHLD. */
661 wait_without_blocking ();
662 #endif /* subprocesses */
663 return Qnil;
664 }
665
666 /* Enable sending signal if user quits below. */
667 call_process_exited = 0;
668
669 #if defined(MSDOS) || defined(macintosh)
670 /* MSDOS needs different cleanup information. */
671 record_unwind_protect (call_process_cleanup,
672 Fcons (make_number (fd[0]), build_string (tempfile)));
673 #else
674 record_unwind_protect (call_process_cleanup,
675 Fcons (make_number (fd[0]), make_number (pid)));
676 #endif /* not MSDOS and not macintosh */
677
678
679 if (BUFFERP (buffer))
680 Fset_buffer (buffer);
681
682 if (NILP (buffer))
683 {
684 /* If BUFFER is nil, we must read process output once and then
685 discard it, so setup coding system but with nil. */
686 setup_coding_system (Qnil, &process_coding);
687 }
688 else
689 {
690 Lisp_Object val, *args2;
691
692 val = Qnil;
693 if (!NILP (Vcoding_system_for_read))
694 val = Vcoding_system_for_read;
695 else
696 {
697 if (EQ (coding_systems, Qt))
698 {
699 int i;
700
701 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
702 args2[0] = Qcall_process;
703 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
704 coding_systems
705 = Ffind_operation_coding_system (nargs + 1, args2);
706 }
707 if (CONSP (coding_systems))
708 val = XCAR (coding_systems);
709 else if (CONSP (Vdefault_process_coding_system))
710 val = XCAR (Vdefault_process_coding_system);
711 else
712 val = Qnil;
713 }
714 setup_coding_system (Fcheck_coding_system (val), &process_coding);
715 /* In unibyte mode, character code conversion should not take
716 place but EOL conversion should. So, setup raw-text or one
717 of the subsidiary according to the information just setup. */
718 if (NILP (current_buffer->enable_multibyte_characters)
719 && !NILP (val))
720 setup_raw_text_coding_system (&process_coding);
721 }
722
723 immediate_quit = 1;
724 QUIT;
725
726 {
727 register int nread;
728 int first = 1;
729 int total_read = 0;
730 int carryover = 0;
731 int display_on_the_fly = !NILP (display) && INTERACTIVE;
732 struct coding_system saved_coding;
733
734 saved_coding = process_coding;
735
736 while (1)
737 {
738 /* Repeatedly read until we've filled as much as possible
739 of the buffer size we have. But don't read
740 less than 1024--save that for the next bufferful. */
741 nread = carryover;
742 while (nread < bufsize - 1024)
743 {
744 int this_read = emacs_read (fd[0], bufptr + nread,
745 bufsize - nread);
746
747 if (this_read < 0)
748 goto give_up;
749
750 if (this_read == 0)
751 {
752 process_coding.mode |= CODING_MODE_LAST_BLOCK;
753 break;
754 }
755
756 nread += this_read;
757 total_read += this_read;
758
759 if (display_on_the_fly)
760 break;
761 }
762
763 /* Now NREAD is the total amount of data in the buffer. */
764 immediate_quit = 0;
765
766 if (!NILP (buffer))
767 {
768 if (process_coding.type == coding_type_no_conversion)
769 insert (bufptr, nread);
770 else
771 { /* We have to decode the input. */
772 int size = decoding_buffer_size (&process_coding, nread);
773 char *decoding_buf = (char *) xmalloc (size);
774
775 decode_coding (&process_coding, bufptr, decoding_buf,
776 nread, size);
777 if (display_on_the_fly
778 && saved_coding.type == coding_type_undecided
779 && process_coding.type != coding_type_undecided)
780 {
781 /* We have detected some coding system. But,
782 there's a possibility that the detection was
783 done by insufficient data. So, we give up
784 displaying on the fly. */
785 xfree (decoding_buf);
786 display_on_the_fly = 0;
787 process_coding = saved_coding;
788 carryover = nread;
789 continue;
790 }
791 if (process_coding.produced > 0)
792 insert (decoding_buf, process_coding.produced);
793 xfree (decoding_buf);
794 carryover = nread - process_coding.consumed;
795 if (carryover > 0)
796 {
797 /* As CARRYOVER should not be that large, we had
798 better avoid overhead of bcopy. */
799 char *p = bufptr + process_coding.consumed;
800 char *pend = p + carryover;
801 char *dst = bufptr;
802
803 while (p < pend) *dst++ = *p++;
804 }
805 }
806 }
807 if (process_coding.mode & CODING_MODE_LAST_BLOCK)
808 {
809 if (carryover > 0)
810 insert (bufptr, carryover);
811 break;
812 }
813
814 /* Make the buffer bigger as we continue to read more data,
815 but not past 64k. */
816 if (bufsize < 64 * 1024 && total_read > 32 * bufsize)
817 {
818 bufsize *= 2;
819 bufptr = (char *) alloca (bufsize);
820 }
821
822 if (!NILP (display) && INTERACTIVE)
823 {
824 if (first)
825 prepare_menu_bars ();
826 first = 0;
827 redisplay_preserve_echo_area ();
828 }
829 immediate_quit = 1;
830 QUIT;
831 }
832 give_up: ;
833
834 Vlast_coding_system_used = process_coding.symbol;
835
836 /* If the caller required, let the buffer inherit the
837 coding-system used to decode the process output. */
838 if (inherit_process_coding_system)
839 call1 (intern ("after-insert-file-set-buffer-file-coding-system"),
840 make_number (total_read));
841 }
842
843 /* Wait for it to terminate, unless it already has. */
844 wait_for_termination (pid);
845
846 immediate_quit = 0;
847
848 set_buffer_internal (old);
849
850 /* Don't kill any children that the subprocess may have left behind
851 when exiting. */
852 call_process_exited = 1;
853
854 unbind_to (count, Qnil);
855
856 if (synch_process_death)
857 return code_convert_string_norecord (build_string (synch_process_death),
858 Vlocale_coding_system, 0);
859 return make_number (synch_process_retcode);
860 }
861 #endif
862 \f
863 static Lisp_Object
864 delete_temp_file (name)
865 Lisp_Object name;
866 {
867 /* Use Fdelete_file (indirectly) because that runs a file name handler.
868 We did that when writing the file, so we should do so when deleting. */
869 internal_delete_file (name);
870 }
871
872 DEFUN ("call-process-region", Fcall_process_region, Scall_process_region,
873 3, MANY, 0,
874 "Send text from START to END to a synchronous process running PROGRAM.\n\
875 The remaining arguments are optional.\n\
876 Delete the text if fourth arg DELETE is non-nil.\n\
877 \n\
878 Insert output in BUFFER before point; t means current buffer;\n\
879 nil for BUFFER means discard it; 0 means discard and don't wait.\n\
880 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,\n\
881 REAL-BUFFER says what to do with standard output, as above,\n\
882 while STDERR-FILE says what to do with standard error in the child.\n\
883 STDERR-FILE may be nil (discard standard error output),\n\
884 t (mix it with ordinary output), or a file name string.\n\
885 \n\
886 Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted.\n\
887 Remaining args are passed to PROGRAM at startup as command args.\n\
888 \n\
889 If BUFFER is nil, `call-process-region' returns immediately with value nil.\n\
890 Otherwise it waits for PROGRAM to terminate\n\
891 and returns a numeric exit status or a signal description string.\n\
892 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
893 (nargs, args)
894 int nargs;
895 register Lisp_Object *args;
896 {
897 struct gcpro gcpro1;
898 Lisp_Object filename_string;
899 register Lisp_Object start, end;
900 int count = specpdl_ptr - specpdl;
901 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
902 Lisp_Object coding_systems;
903 Lisp_Object val, *args2;
904 int i;
905 #ifdef DOS_NT
906 char *tempfile;
907 char *outf = '\0';
908
909 if ((outf = egetenv ("TMPDIR"))
910 || (outf = egetenv ("TMP"))
911 || (outf = egetenv ("TEMP")))
912 strcpy (tempfile = alloca (strlen (outf) + 20), outf);
913 else
914 {
915 tempfile = alloca (20);
916 *tempfile = '\0';
917 }
918 if (!IS_DIRECTORY_SEP (tempfile[strlen (tempfile) - 1]))
919 strcat (tempfile, "/");
920 if ('/' == DIRECTORY_SEP)
921 dostounix_filename (tempfile);
922 else
923 unixtodos_filename (tempfile);
924 #ifdef WINDOWSNT
925 strcat (tempfile, "emXXXXXX");
926 #else
927 strcat (tempfile, "detmp.XXX");
928 #endif
929 #else /* not DOS_NT */
930 char *tempfile = (char *) alloca (STRING_BYTES (XSTRING (Vtemp_file_name_pattern)) + 1);
931 bcopy (XSTRING (Vtemp_file_name_pattern)->data, tempfile,
932 STRING_BYTES (XSTRING (Vtemp_file_name_pattern)) + 1);
933 #endif /* not DOS_NT */
934
935 coding_systems = Qt;
936
937 mktemp (tempfile);
938
939 filename_string = build_string (tempfile);
940 GCPRO1 (filename_string);
941 start = args[0];
942 end = args[1];
943 /* Decide coding-system of the contents of the temporary file. */
944 if (!NILP (Vcoding_system_for_write))
945 val = Vcoding_system_for_write;
946 else if (NILP (current_buffer->enable_multibyte_characters))
947 val = Qnil;
948 else
949 {
950 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
951 args2[0] = Qcall_process_region;
952 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
953 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
954 if (CONSP (coding_systems))
955 val = XCDR (coding_systems);
956 else if (CONSP (Vdefault_process_coding_system))
957 val = XCDR (Vdefault_process_coding_system);
958 else
959 val = Qnil;
960 }
961
962 {
963 int count1 = specpdl_ptr - specpdl;
964
965 specbind (intern ("coding-system-for-write"), val);
966 Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil, Qnil);
967
968 unbind_to (count1, Qnil);
969 }
970
971 /* Note that Fcall_process takes care of binding
972 coding-system-for-read. */
973
974 record_unwind_protect (delete_temp_file, filename_string);
975
976 if (nargs > 3 && !NILP (args[3]))
977 Fdelete_region (start, end);
978
979 if (nargs > 3)
980 {
981 args += 2;
982 nargs -= 2;
983 }
984 else
985 {
986 args[0] = args[2];
987 nargs = 2;
988 }
989 args[1] = filename_string;
990
991 RETURN_UNGCPRO (unbind_to (count, Fcall_process (nargs, args)));
992 }
993 \f
994 #ifndef VMS /* VMS version is in vmsproc.c. */
995
996 static int relocate_fd ();
997
998 /* This is the last thing run in a newly forked inferior
999 either synchronous or asynchronous.
1000 Copy descriptors IN, OUT and ERR as descriptors 0, 1 and 2.
1001 Initialize inferior's priority, pgrp, connected dir and environment.
1002 then exec another program based on new_argv.
1003
1004 This function may change environ for the superior process.
1005 Therefore, the superior process must save and restore the value
1006 of environ around the vfork and the call to this function.
1007
1008 SET_PGRP is nonzero if we should put the subprocess into a separate
1009 process group.
1010
1011 CURRENT_DIR is an elisp string giving the path of the current
1012 directory the subprocess should have. Since we can't really signal
1013 a decent error from within the child, this should be verified as an
1014 executable directory by the parent. */
1015
1016 int
1017 child_setup (in, out, err, new_argv, set_pgrp, current_dir)
1018 int in, out, err;
1019 register char **new_argv;
1020 int set_pgrp;
1021 Lisp_Object current_dir;
1022 {
1023 char **env;
1024 char *pwd_var;
1025 #ifdef WINDOWSNT
1026 int cpid;
1027 HANDLE handles[3];
1028 #endif /* WINDOWSNT */
1029
1030 int pid = getpid ();
1031
1032 #ifdef SET_EMACS_PRIORITY
1033 {
1034 extern int emacs_priority;
1035
1036 if (emacs_priority < 0)
1037 nice (- emacs_priority);
1038 }
1039 #endif
1040
1041 #ifdef subprocesses
1042 /* Close Emacs's descriptors that this process should not have. */
1043 close_process_descs ();
1044 #endif
1045 /* DOS_NT isn't in a vfork, so if we are in the middle of load-file,
1046 we will lose if we call close_load_descs here. */
1047 #ifndef DOS_NT
1048 close_load_descs ();
1049 #endif
1050
1051 /* Note that use of alloca is always safe here. It's obvious for systems
1052 that do not have true vfork or that have true (stack) alloca.
1053 If using vfork and C_ALLOCA it is safe because that changes
1054 the superior's static variables as if the superior had done alloca
1055 and will be cleaned up in the usual way. */
1056 {
1057 register char *temp;
1058 register int i;
1059
1060 i = STRING_BYTES (XSTRING (current_dir));
1061 pwd_var = (char *) alloca (i + 6);
1062 temp = pwd_var + 4;
1063 bcopy ("PWD=", pwd_var, 4);
1064 bcopy (XSTRING (current_dir)->data, temp, i);
1065 if (!IS_DIRECTORY_SEP (temp[i - 1])) temp[i++] = DIRECTORY_SEP;
1066 temp[i] = 0;
1067
1068 #ifndef DOS_NT
1069 /* We can't signal an Elisp error here; we're in a vfork. Since
1070 the callers check the current directory before forking, this
1071 should only return an error if the directory's permissions
1072 are changed between the check and this chdir, but we should
1073 at least check. */
1074 if (chdir (temp) < 0)
1075 _exit (errno);
1076 #endif
1077
1078 #ifdef DOS_NT
1079 /* Get past the drive letter, so that d:/ is left alone. */
1080 if (i > 2 && IS_DEVICE_SEP (temp[1]) && IS_DIRECTORY_SEP (temp[2]))
1081 {
1082 temp += 2;
1083 i -= 2;
1084 }
1085 #endif
1086
1087 /* Strip trailing slashes for PWD, but leave "/" and "//" alone. */
1088 while (i > 2 && IS_DIRECTORY_SEP (temp[i - 1]))
1089 temp[--i] = 0;
1090 }
1091
1092 /* Set `env' to a vector of the strings in Vprocess_environment. */
1093 {
1094 register Lisp_Object tem;
1095 register char **new_env;
1096 register int new_length;
1097
1098 new_length = 0;
1099 for (tem = Vprocess_environment;
1100 CONSP (tem) && STRINGP (XCAR (tem));
1101 tem = XCDR (tem))
1102 new_length++;
1103
1104 /* new_length + 2 to include PWD and terminating 0. */
1105 env = new_env = (char **) alloca ((new_length + 2) * sizeof (char *));
1106
1107 /* If we have a PWD envvar, pass one down,
1108 but with corrected value. */
1109 if (getenv ("PWD"))
1110 *new_env++ = pwd_var;
1111
1112 /* Copy the Vprocess_environment strings into new_env. */
1113 for (tem = Vprocess_environment;
1114 CONSP (tem) && STRINGP (XCAR (tem));
1115 tem = XCDR (tem))
1116 {
1117 char **ep = env;
1118 char *string = (char *) XSTRING (XCAR (tem))->data;
1119 /* See if this string duplicates any string already in the env.
1120 If so, don't put it in.
1121 When an env var has multiple definitions,
1122 we keep the definition that comes first in process-environment. */
1123 for (; ep != new_env; ep++)
1124 {
1125 char *p = *ep, *q = string;
1126 while (1)
1127 {
1128 if (*q == 0)
1129 /* The string is malformed; might as well drop it. */
1130 goto duplicate;
1131 if (*q != *p)
1132 break;
1133 if (*q == '=')
1134 goto duplicate;
1135 p++, q++;
1136 }
1137 }
1138 *new_env++ = string;
1139 duplicate: ;
1140 }
1141 *new_env = 0;
1142 }
1143 #ifdef WINDOWSNT
1144 prepare_standard_handles (in, out, err, handles);
1145 set_process_dir (XSTRING (current_dir)->data);
1146 #else /* not WINDOWSNT */
1147 /* Make sure that in, out, and err are not actually already in
1148 descriptors zero, one, or two; this could happen if Emacs is
1149 started with its standard in, out, or error closed, as might
1150 happen under X. */
1151 {
1152 int oin = in, oout = out;
1153
1154 /* We have to avoid relocating the same descriptor twice! */
1155
1156 in = relocate_fd (in, 3);
1157
1158 if (out == oin)
1159 out = in;
1160 else
1161 out = relocate_fd (out, 3);
1162
1163 if (err == oin)
1164 err = in;
1165 else if (err == oout)
1166 err = out;
1167 else
1168 err = relocate_fd (err, 3);
1169 }
1170
1171 #ifndef MSDOS
1172 emacs_close (0);
1173 emacs_close (1);
1174 emacs_close (2);
1175
1176 dup2 (in, 0);
1177 dup2 (out, 1);
1178 dup2 (err, 2);
1179 emacs_close (in);
1180 emacs_close (out);
1181 emacs_close (err);
1182 #endif /* not MSDOS */
1183 #endif /* not WINDOWSNT */
1184
1185 #if defined(USG) && !defined(BSD_PGRPS)
1186 #ifndef SETPGRP_RELEASES_CTTY
1187 setpgrp (); /* No arguments but equivalent in this case */
1188 #endif
1189 #else
1190 setpgrp (pid, pid);
1191 #endif /* USG */
1192 /* setpgrp_of_tty is incorrect here; it uses input_fd. */
1193 EMACS_SET_TTY_PGRP (0, &pid);
1194
1195 #ifdef vipc
1196 something missing here;
1197 #endif /* vipc */
1198
1199 #ifdef MSDOS
1200 pid = run_msdos_command (new_argv, pwd_var + 4, in, out, err, env);
1201 if (pid == -1)
1202 /* An error occurred while trying to run the subprocess. */
1203 report_file_error ("Spawning child process", Qnil);
1204 return pid;
1205 #else /* not MSDOS */
1206 #ifdef WINDOWSNT
1207 /* Spawn the child. (See ntproc.c:Spawnve). */
1208 cpid = spawnve (_P_NOWAIT, new_argv[0], new_argv, env);
1209 reset_standard_handles (in, out, err, handles);
1210 if (cpid == -1)
1211 /* An error occurred while trying to spawn the process. */
1212 report_file_error ("Spawning child process", Qnil);
1213 return cpid;
1214 #else /* not WINDOWSNT */
1215 /* execvp does not accept an environment arg so the only way
1216 to pass this environment is to set environ. Our caller
1217 is responsible for restoring the ambient value of environ. */
1218 environ = env;
1219 execvp (new_argv[0], new_argv);
1220
1221 emacs_write (1, "Can't exec program: ", 20);
1222 emacs_write (1, new_argv[0], strlen (new_argv[0]));
1223 emacs_write (1, "\n", 1);
1224 _exit (1);
1225 #endif /* not WINDOWSNT */
1226 #endif /* not MSDOS */
1227 }
1228
1229 /* Move the file descriptor FD so that its number is not less than MINFD.
1230 If the file descriptor is moved at all, the original is freed. */
1231 static int
1232 relocate_fd (fd, minfd)
1233 int fd, minfd;
1234 {
1235 if (fd >= minfd)
1236 return fd;
1237 else
1238 {
1239 int new = dup (fd);
1240 if (new == -1)
1241 {
1242 char *message1 = "Error while setting up child: ";
1243 char *errmessage = strerror (errno);
1244 char *message2 = "\n";
1245 emacs_write (2, message1, strlen (message1));
1246 emacs_write (2, errmessage, strlen (errmessage));
1247 emacs_write (2, message2, strlen (message2));
1248 _exit (1);
1249 }
1250 /* Note that we hold the original FD open while we recurse,
1251 to guarantee we'll get a new FD if we need it. */
1252 new = relocate_fd (new, minfd);
1253 emacs_close (fd);
1254 return new;
1255 }
1256 }
1257
1258 static int
1259 getenv_internal (var, varlen, value, valuelen)
1260 char *var;
1261 int varlen;
1262 char **value;
1263 int *valuelen;
1264 {
1265 Lisp_Object scan;
1266
1267 for (scan = Vprocess_environment; CONSP (scan); scan = XCDR (scan))
1268 {
1269 Lisp_Object entry;
1270
1271 entry = XCAR (scan);
1272 if (STRINGP (entry)
1273 && STRING_BYTES (XSTRING (entry)) > varlen
1274 && XSTRING (entry)->data[varlen] == '='
1275 #ifdef WINDOWSNT
1276 /* NT environment variables are case insensitive. */
1277 && ! strnicmp (XSTRING (entry)->data, var, varlen)
1278 #else /* not WINDOWSNT */
1279 && ! bcmp (XSTRING (entry)->data, var, varlen)
1280 #endif /* not WINDOWSNT */
1281 )
1282 {
1283 *value = (char *) XSTRING (entry)->data + (varlen + 1);
1284 *valuelen = STRING_BYTES (XSTRING (entry)) - (varlen + 1);
1285 return 1;
1286 }
1287 }
1288
1289 return 0;
1290 }
1291
1292 DEFUN ("getenv", Fgetenv, Sgetenv, 1, 1, 0,
1293 "Return the value of environment variable VAR, as a string.\n\
1294 VAR should be a string. Value is nil if VAR is undefined in the environment.\n\
1295 This function consults the variable ``process-environment'' for its value.")
1296 (var)
1297 Lisp_Object var;
1298 {
1299 char *value;
1300 int valuelen;
1301
1302 CHECK_STRING (var, 0);
1303 if (getenv_internal (XSTRING (var)->data, STRING_BYTES (XSTRING (var)),
1304 &value, &valuelen))
1305 return make_string (value, valuelen);
1306 else
1307 return Qnil;
1308 }
1309
1310 /* A version of getenv that consults process_environment, easily
1311 callable from C. */
1312 char *
1313 egetenv (var)
1314 char *var;
1315 {
1316 char *value;
1317 int valuelen;
1318
1319 if (getenv_internal (var, strlen (var), &value, &valuelen))
1320 return value;
1321 else
1322 return 0;
1323 }
1324
1325 #endif /* not VMS */
1326 \f
1327 /* This is run before init_cmdargs. */
1328
1329 void
1330 init_callproc_1 ()
1331 {
1332 char *data_dir = egetenv ("EMACSDATA");
1333 char *doc_dir = egetenv ("EMACSDOC");
1334
1335 Vdata_directory
1336 = Ffile_name_as_directory (build_string (data_dir ? data_dir
1337 : PATH_DATA));
1338 Vdoc_directory
1339 = Ffile_name_as_directory (build_string (doc_dir ? doc_dir
1340 : PATH_DOC));
1341
1342 /* Check the EMACSPATH environment variable, defaulting to the
1343 PATH_EXEC path from epaths.h. */
1344 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC);
1345 Vexec_directory = Ffile_name_as_directory (Fcar (Vexec_path));
1346 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path);
1347 }
1348
1349 /* This is run after init_cmdargs, when Vinstallation_directory is valid. */
1350
1351 void
1352 init_callproc ()
1353 {
1354 char *data_dir = egetenv ("EMACSDATA");
1355
1356 register char * sh;
1357 Lisp_Object tempdir;
1358
1359 if (!NILP (Vinstallation_directory))
1360 {
1361 /* Add to the path the lib-src subdir of the installation dir. */
1362 Lisp_Object tem;
1363 tem = Fexpand_file_name (build_string ("lib-src"),
1364 Vinstallation_directory);
1365 #ifndef DOS_NT
1366 /* MSDOS uses wrapped binaries, so don't do this. */
1367 if (NILP (Fmember (tem, Vexec_path)))
1368 Vexec_path = nconc2 (Vexec_path, Fcons (tem, Qnil));
1369
1370 Vexec_directory = Ffile_name_as_directory (tem);
1371 #endif /* not DOS_NT */
1372
1373 /* Maybe use ../etc as well as ../lib-src. */
1374 if (data_dir == 0)
1375 {
1376 tem = Fexpand_file_name (build_string ("etc"),
1377 Vinstallation_directory);
1378 Vdoc_directory = Ffile_name_as_directory (tem);
1379 }
1380 }
1381
1382 /* Look for the files that should be in etc. We don't use
1383 Vinstallation_directory, because these files are never installed
1384 near the executable, and they are never in the build
1385 directory when that's different from the source directory.
1386
1387 Instead, if these files are not in the nominal place, we try the
1388 source directory. */
1389 if (data_dir == 0)
1390 {
1391 Lisp_Object tem, tem1, newdir;
1392
1393 tem = Fexpand_file_name (build_string ("GNU"), Vdata_directory);
1394 tem1 = Ffile_exists_p (tem);
1395 if (NILP (tem1))
1396 {
1397 newdir = Fexpand_file_name (build_string ("../etc/"),
1398 build_string (PATH_DUMPLOADSEARCH));
1399 tem = Fexpand_file_name (build_string ("GNU"), newdir);
1400 tem1 = Ffile_exists_p (tem);
1401 if (!NILP (tem1))
1402 Vdata_directory = newdir;
1403 }
1404 }
1405
1406 #ifndef CANNOT_DUMP
1407 if (initialized)
1408 #endif
1409 {
1410 tempdir = Fdirectory_file_name (Vexec_directory);
1411 if (access (XSTRING (tempdir)->data, 0) < 0)
1412 dir_warning ("Warning: arch-dependent data dir (%s) does not exist.\n",
1413 Vexec_directory);
1414 }
1415
1416 tempdir = Fdirectory_file_name (Vdata_directory);
1417 if (access (XSTRING (tempdir)->data, 0) < 0)
1418 dir_warning ("Warning: arch-independent data dir (%s) does not exist.\n",
1419 Vdata_directory);
1420
1421 #ifdef VMS
1422 Vshell_file_name = build_string ("*dcl*");
1423 #else
1424 sh = (char *) getenv ("SHELL");
1425 Vshell_file_name = build_string (sh ? sh : "/bin/sh");
1426 #endif
1427
1428 #ifdef VMS
1429 Vtemp_file_name_pattern = build_string ("tmp:emacsXXXXXX.");
1430 #else
1431 if (getenv ("TMPDIR"))
1432 {
1433 char *dir = getenv ("TMPDIR");
1434 Vtemp_file_name_pattern
1435 = Fexpand_file_name (build_string ("emacsXXXXXX"),
1436 build_string (dir));
1437 }
1438 else
1439 Vtemp_file_name_pattern = build_string ("/tmp/emacsXXXXXX");
1440 #endif
1441 }
1442
1443 void
1444 set_process_environment ()
1445 {
1446 register char **envp;
1447
1448 Vprocess_environment = Qnil;
1449 #ifndef CANNOT_DUMP
1450 if (initialized)
1451 #endif
1452 for (envp = environ; *envp; envp++)
1453 Vprocess_environment = Fcons (build_string (*envp),
1454 Vprocess_environment);
1455 }
1456
1457 void
1458 syms_of_callproc ()
1459 {
1460 #ifdef DOS_NT
1461 Qbuffer_file_type = intern ("buffer-file-type");
1462 staticpro (&Qbuffer_file_type);
1463 #endif /* DOS_NT */
1464
1465 DEFVAR_LISP ("shell-file-name", &Vshell_file_name,
1466 "*File name to load inferior shells from.\n\
1467 Initialized from the SHELL environment variable.");
1468
1469 DEFVAR_LISP ("exec-path", &Vexec_path,
1470 "*List of directories to search programs to run in subprocesses.\n\
1471 Each element is a string (directory name) or nil (try default directory).");
1472
1473 DEFVAR_LISP ("exec-directory", &Vexec_directory,
1474 "Directory for executables for Emacs to invoke.\n\
1475 More generally, this includes any architecture-dependent files\n\
1476 that are built and installed from the Emacs distribution.");
1477
1478 DEFVAR_LISP ("data-directory", &Vdata_directory,
1479 "Directory of machine-independent files that come with GNU Emacs.\n\
1480 These are files intended for Emacs to use while it runs.");
1481
1482 DEFVAR_LISP ("doc-directory", &Vdoc_directory,
1483 "Directory containing the DOC file that comes with GNU Emacs.\n\
1484 This is usually the same as data-directory.");
1485
1486 DEFVAR_LISP ("configure-info-directory", &Vconfigure_info_directory,
1487 "For internal use by the build procedure only.\n\
1488 This is the name of the directory in which the build procedure installed\n\
1489 Emacs's info files; the default value for Info-default-directory-list\n\
1490 includes this.");
1491 Vconfigure_info_directory = build_string (PATH_INFO);
1492
1493 DEFVAR_LISP ("temp-file-name-pattern", &Vtemp_file_name_pattern,
1494 "Pattern for making names for temporary files.\n\
1495 This is used by `call-process-region'.");
1496 /* This variable is initialized in init_callproc. */
1497
1498 DEFVAR_LISP ("process-environment", &Vprocess_environment,
1499 "List of environment variables for subprocesses to inherit.\n\
1500 Each element should be a string of the form ENVVARNAME=VALUE.\n\
1501 The environment which Emacs inherits is placed in this variable\n\
1502 when Emacs starts.");
1503
1504 #ifndef VMS
1505 defsubr (&Scall_process);
1506 defsubr (&Sgetenv);
1507 #endif
1508 defsubr (&Scall_process_region);
1509 }