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