home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / src / callproc.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  29KB  |  1,047 lines

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