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