home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / uucp / cu / cusub.c < prev    next >
C/C++ Source or Header  |  1995-08-20  |  27KB  |  1,215 lines

  1. /* cusub.c
  2.    System dependent routines for cu.
  3.  
  4.    Copyright (C) 1992, 1993, 1995 Ian Lance Taylor
  5.  
  6.    This file is part of the Taylor UUCP package.
  7.  
  8.    This program is free software; you can redistribute it and/or
  9.    modify it under the terms of the GNU General Public License as
  10.    published by the Free Software Foundation; either version 2 of the
  11.    License, or (at your option) any later version.
  12.  
  13.    This program is distributed in the hope that it will be useful, but
  14.    WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16.    General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with this program; if not, write to the Free Software
  20.    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  21.  
  22.    The author of the program may be contacted at ian@airs.com or
  23.    c/o Cygnus Support, 48 Grove Street, Somerville, MA 02144.
  24.    */
  25.  
  26. #include "uucp.h"
  27.  
  28. #if USE_RCS_ID
  29. const char cusub_rcsid[] = "$Id: cusub.c,v 1.24 1995/06/21 19:18:53 ian Rel $";
  30. #endif
  31.  
  32. #include "uudefs.h"
  33. #include "uuconf.h"
  34. #include "sysdep.h"
  35. #include "system.h"
  36. #include "cu.h"
  37. #include "conn.h"
  38. #include "prot.h"
  39.  
  40. #if HAVE_FCNTL_H
  41. #include <fcntl.h>
  42. #else
  43. #if HAVE_SYS_FILE_H
  44. #include <sys/file.h>
  45. #endif
  46. #endif
  47.  
  48. /* Get definitions for both O_NONBLOCK and O_NDELAY.  */
  49. #ifndef O_NDELAY
  50. #ifdef FNDELAY
  51. #define O_NDELAY FNDELAY
  52. #else /* ! defined (FNDELAY) */
  53. #define O_NDELAY 0
  54. #endif /* ! defined (FNDELAY) */
  55. #endif /* ! defined (O_NDELAY) */
  56.  
  57. #ifndef O_NONBLOCK
  58. #ifdef FNBLOCK
  59. #define O_NONBLOCK FNBLOCK
  60. #else /* ! defined (FNBLOCK) */
  61. #define O_NONBLOCK 0
  62. #endif /* ! defined (FNBLOCK) */
  63. #endif /* ! defined (O_NONBLOCK) */
  64.  
  65. #include <errno.h>
  66.  
  67. /* 4.2 systems don't define SIGUSR2.  This should work for them.  On
  68.    systems which are missing SIGUSR1, or SIGURG, you must find two
  69.    signals which you can safely use.  */
  70. #ifndef SIGUSR2
  71. #define SIGUSR2 SIGURG
  72. #endif
  73.  
  74. /* Get definitions for EAGAIN, EWOULDBLOCK and ENODATA.  */
  75. #ifndef EAGAIN
  76. #ifndef EWOULDBLOCK
  77. #define EAGAIN (-1)
  78. #define EWOULDBLOCK (-1)
  79. #else /* defined (EWOULDBLOCK) */
  80. #define EAGAIN EWOULDBLOCK
  81. #endif /* defined (EWOULDBLOCK) */
  82. #else /* defined (EAGAIN) */
  83. #ifndef EWOULDBLOCK
  84. #define EWOULDBLOCK EAGAIN
  85. #endif /* ! defined (EWOULDBLOCK) */
  86. #endif /* defined (EAGAIN) */
  87.  
  88. #ifndef ENODATA
  89. #define ENODATA EAGAIN
  90. #endif
  91.  
  92. /* Local variables.  */
  93.  
  94. /* The EOF character, as set by fsysdep_terminal_raw.  */
  95. static char bSeof;
  96.  
  97. /* The SUSP character, as set by fsysdep_terminal_raw.  */
  98. static char bStstp;
  99.  
  100. /* Local functions.  */
  101.  
  102. static const char *zsport_line P((const struct uuconf_port *qport));
  103. static void uscu_child P((struct sconnection *qconn, int opipe));
  104. static RETSIGTYPE uscu_child_handler P((int isig));
  105. static RETSIGTYPE uscu_alarm P((int isig));
  106. static int cscu_escape P((char *pbcmd, const char *zlocalname));
  107. static RETSIGTYPE uscu_alarm_kill P((int isig));
  108.  
  109. /* Return the device name for a port, or NULL if none.  */
  110.  
  111. static const char *
  112. zsport_line (qport)
  113.      const struct uuconf_port *qport;
  114. {
  115.   const char *zline;
  116.  
  117.   if (qport == NULL)
  118.     return NULL;
  119.  
  120.   switch (qport->uuconf_ttype)
  121.     {
  122.     default:
  123.     case UUCONF_PORTTYPE_STDIN:
  124.       return NULL;
  125.     case UUCONF_PORTTYPE_MODEM:
  126.       zline = qport->uuconf_u.uuconf_smodem.uuconf_zdevice;
  127.       break;
  128.     case UUCONF_PORTTYPE_DIRECT:
  129.       zline = qport->uuconf_u.uuconf_sdirect.uuconf_zdevice;
  130.       break;
  131.     case UUCONF_PORTTYPE_TCP:
  132.     case UUCONF_PORTTYPE_TLI:
  133.     case UUCONF_PORTTYPE_PIPE:
  134.       return NULL;
  135.     }
  136.  
  137.   if (zline == NULL)
  138.     zline = qport->uuconf_zname;
  139.   return zline;
  140. }
  141.  
  142. /* Check whether the user has legitimate access to a port.  */
  143.  
  144. boolean
  145. fsysdep_port_access (qport)
  146.      struct uuconf_port *qport;
  147. {
  148.   const char *zline;
  149.   char *zfree;
  150.   boolean fret;
  151.  
  152.   zline = zsport_line (qport);
  153.   if (zline == NULL)
  154.     return TRUE;
  155.  
  156.   zfree = NULL;
  157.   if (*zline != '/')
  158.     {
  159.       zfree = zbufalc (sizeof "/dev/" + strlen (zline));
  160.       sprintf (zfree, "/dev/%s", zline);
  161.       zline = zfree;
  162.     }
  163.  
  164.   fret = access (zline, R_OK | W_OK) == 0;
  165.   ubuffree (zfree);
  166.   return fret;
  167. }
  168.  
  169. /* Return whether the given port is named by the given line.  */
  170.  
  171. boolean
  172. fsysdep_port_is_line (qport, zline)
  173.      struct uuconf_port *qport;
  174.      const char *zline;
  175. {
  176.   const char *zpline;
  177.   char *zfree1, *zfree2;
  178.   boolean fret;
  179.  
  180.   zpline = zsport_line (qport);
  181.   if (zpline == NULL)
  182.     return FALSE;
  183.  
  184.   if (strcmp (zline, zpline) == 0)
  185.     return TRUE;
  186.  
  187.   zfree1 = NULL;
  188.   zfree2 = NULL;
  189.   if (*zline != '/')
  190.     {
  191.       zfree1 = zbufalc (sizeof "/dev/" + strlen (zline));
  192.       sprintf (zfree1, "/dev/%s", zline);
  193.       zline = zfree1;
  194.     }
  195.   if (*zpline != '/')
  196.     {
  197.       zfree2 = zbufalc (sizeof "/dev/" + strlen (zpline));
  198.       sprintf (zfree2, "/dev/%s", zpline);
  199.       zpline = zfree2;
  200.     }
  201.  
  202.   fret = strcmp (zline, zpline) == 0;
  203.   ubuffree (zfree1);
  204.   ubuffree (zfree2);
  205.   return fret;
  206. }
  207.  
  208. /* The cu program wants the system dependent layer to handle the
  209.    details of copying data from the communications port to the
  210.    terminal.  This copying need only be done while executing
  211.    fsysdep_cu.  On Unix, however, we set up a subprocess to do it all
  212.    the time.  This subprocess must be controllable via the
  213.    fsysdep_cu_copy function.
  214.  
  215.    We keep a pipe open to the subprocess.  When we want it to stop we
  216.    send it a signal, and then wait for it to write a byte to us over
  217.    the pipe.  */
  218.  
  219. /* The subprocess pid.  */
  220. static volatile pid_t iSchild;
  221.  
  222. /* The pipe from the subprocess.  */
  223. static int oSpipe;
  224.  
  225. /* When we tell the child to stop, it sends this.  */
  226. #define CHILD_STOPPED ('S')
  227.  
  228. /* When we tell the child to start, it sends this.  */
  229. #define CHILD_STARTED ('G')
  230.  
  231. /* Initialize the subprocess, and have it start copying data.  */
  232.  
  233. boolean
  234. fsysdep_cu_init (qconn)
  235.      struct sconnection *qconn;
  236. {
  237.   int ai[2];
  238.  
  239.   /* Write out anything we may have buffered up during the chat
  240.      script.  We do this before forking the child only to make it easy
  241.      to move the child into a separate executable.  */
  242.   while (iPrecend != iPrecstart)
  243.     {
  244.       char *z;
  245.       int c;
  246.  
  247.       z = abPrecbuf + iPrecstart;
  248.       if (iPrecend > iPrecstart)
  249.     c = iPrecend - iPrecstart;
  250.       else
  251.     c = CRECBUFLEN - iPrecstart;
  252.  
  253.       iPrecstart = (iPrecstart + c) % CRECBUFLEN;
  254.  
  255.       while (c > 0)
  256.     {
  257.       int cwrote;
  258.  
  259.       cwrote = write (1, z, c);
  260.       if (cwrote <= 0)
  261.         {
  262.           if (cwrote < 0)
  263.         ulog (LOG_ERROR, "write: %s", strerror (errno));
  264.           else
  265.         ulog (LOG_ERROR, "Line disconnected");
  266.           return FALSE;
  267.         }
  268.       c -= cwrote;
  269.       z += cwrote;
  270.     }
  271.     }
  272.  
  273.   if (pipe (ai) < 0)
  274.     {
  275.       ulog (LOG_ERROR, "pipe: %s", strerror (errno));
  276.       return FALSE;
  277.     }
  278.  
  279.   iSchild = ixsfork ();
  280.   if (iSchild < 0)
  281.     {
  282.       ulog (LOG_ERROR, "fork: %s", strerror (errno));
  283.       return FALSE;
  284.     }
  285.  
  286.   if (iSchild == 0)
  287.     {
  288.       (void) close (ai[0]);
  289.       uscu_child (qconn, ai[1]);
  290.       /*NOTREACHED*/
  291.     }
  292.  
  293.   (void) close (ai[1]);
  294.  
  295.   oSpipe = ai[0];
  296.  
  297.   return TRUE;
  298. }
  299.  
  300. /* Copy all data from the terminal to the communications port.  If we
  301.    see an escape character following a newline character, read the
  302.    next character and return it.  */
  303.  
  304. boolean
  305. fsysdep_cu (qconn, pbcmd, zlocalname)
  306.      struct sconnection *qconn;
  307.      char *pbcmd;
  308.      const char *zlocalname;
  309. {
  310.   boolean fstart;
  311.   char b;
  312.   int c;
  313.  
  314.   fstart = TRUE;
  315.  
  316.   while (TRUE)
  317.     {
  318.       if (fsysdep_catch ())
  319.     usysdep_start_catch ();
  320.       else
  321.     {
  322.       ulog (LOG_ERROR, (const char *) NULL);
  323.       return FALSE;
  324.     }
  325.  
  326.       c = read (0, &b, 1);
  327.  
  328.       usysdep_end_catch ();
  329.  
  330.       if (c <= 0)
  331.     break;
  332.  
  333.       if (fstart && b == *zCuvar_escape && b != '\0')
  334.     {
  335.       c = cscu_escape (pbcmd, zlocalname);
  336.       if (c <= 0)
  337.         break;
  338.       if (*pbcmd != b)
  339.         {
  340.           write (1, pbcmd, 1);
  341.  
  342.           /* For Unix, we let the eof character be the same as
  343.          '.', and we let the suspend character (if any) be the
  344.          same as 'z'.  */
  345.           if (*pbcmd == bSeof)
  346.         *pbcmd = '.';
  347.           if (*pbcmd == bStstp)
  348.         *pbcmd = 'z';
  349.           return TRUE;
  350.         }
  351.     }
  352.       if (! fconn_write (qconn, &b, (size_t) 1))
  353.     return FALSE;
  354.       fstart = strchr (zCuvar_eol, b) != NULL;
  355.     }
  356.  
  357.   if (c < 0)
  358.     {
  359.       if (errno != EINTR)
  360.     ulog (LOG_ERROR, "read: %s", strerror (errno));
  361.       else
  362.     ulog (LOG_ERROR, (const char *) NULL);
  363.       return FALSE;
  364.     }
  365.  
  366.   /* I'm not sure what's best in this case.  */
  367.   ulog (LOG_ERROR, "End of file on terminal");
  368.   return FALSE;
  369. }
  370.  
  371. /* A SIGALRM handler that sets fScu_alarm and optionally longjmps.  */
  372.  
  373. volatile sig_atomic_t fScu_alarm;
  374.  
  375. static RETSIGTYPE
  376. uscu_alarm (isig)
  377.      int isig;
  378. {
  379. #if ! HAVE_SIGACTION && ! HAVE_SIGVEC && ! HAVE_SIGSET
  380.   (void) signal (isig, uscu_alarm);
  381. #endif
  382.  
  383.   fScu_alarm = TRUE;
  384.  
  385. #if HAVE_RESTARTABLE_SYSCALLS
  386.   if (fSjmp)
  387.     longjmp (sSjmp_buf, 1);
  388. #endif
  389. }
  390.  
  391. /* We've just seen an escape character.  We print the host name,
  392.    optionally after a 1 second delay.  We read the next character from
  393.    the terminal and return it.  The 1 second delay on the host name is
  394.    mostly to be fancy; it lets ~~ look smoother.  */
  395.  
  396. static int
  397. cscu_escape (pbcmd, zlocalname)
  398.      char *pbcmd;
  399.      const char *zlocalname;
  400. {
  401.   CATCH_PROTECT int c;
  402.  
  403.   write (1, zCuvar_escape, 1);
  404.  
  405.   fScu_alarm = FALSE;
  406.   usset_signal (SIGALRM, uscu_alarm, TRUE, (boolean *) NULL);
  407.  
  408.   if (fsysdep_catch ())
  409.     {
  410.       usysdep_start_catch ();
  411.       alarm (1);
  412.     }
  413.       
  414.   c = 0;
  415.  
  416.   while (TRUE)
  417.     {
  418.       if (fScu_alarm)
  419.     {
  420.       char b;
  421.  
  422.       fScu_alarm = FALSE;
  423.       b = '[';
  424.       write (1, &b, 1);
  425.       write (1, zlocalname, strlen (zlocalname));
  426.       b = ']';
  427.       write (1, &b, 1);
  428.     }
  429.       
  430.       if (c <= 0)
  431.     c = read (0, pbcmd, 1);
  432.       if (c >= 0 || errno != EINTR)
  433.     {
  434.       usysdep_end_catch ();
  435.       usset_signal (SIGALRM, SIG_IGN, TRUE, (boolean *) NULL);
  436.       alarm (0);
  437.       return c;
  438.     }
  439.     }
  440. }  
  441.  
  442. /* A SIGALRM handler which does nothing but send a signal to the child
  443.    process and schedule another alarm.  POSIX.1 permits kill and alarm
  444.    from a signal handler.  The reference to static data may or may not
  445.    be permissible.  */
  446.  
  447. static volatile sig_atomic_t iSsend_sig;
  448.  
  449. static RETSIGTYPE
  450. uscu_alarm_kill (isig)
  451.      int isig;
  452. {
  453. #if ! HAVE_SIGACTION && ! HAVE_SIGVEC && ! HAVE_SIGSET
  454.   (void) signal (isig, uscu_alarm_kill);
  455. #endif
  456.  
  457.   (void) kill (iSchild, iSsend_sig);
  458.  
  459.   alarm (1);
  460. }
  461.  
  462. /* Start or stop copying data from the communications port to the
  463.    terminal.  We send a signal to the child process to tell it what to
  464.    do.  Unfortunately, there are race conditions in the child, so we
  465.    keep sending it a signal once a second until it responds.  We send
  466.    SIGUSR1 to make it start copying, and SIGUSR2 to make it stop.  */
  467.  
  468. boolean
  469. fsysdep_cu_copy (fcopy)
  470.      boolean fcopy;
  471. {
  472.   int ierr;
  473.   int c;
  474.  
  475.   usset_signal (SIGALRM, uscu_alarm_kill, TRUE, (boolean *) NULL);
  476.   if (fcopy)
  477.     iSsend_sig = SIGUSR1;
  478.   else
  479.     iSsend_sig = SIGUSR2;
  480.  
  481.   uscu_alarm_kill (SIGALRM);
  482.  
  483.   alarm (1);
  484.  
  485.   while (TRUE)
  486.     {
  487.       char b;
  488.  
  489.       c = read (oSpipe, &b, 1);
  490.  
  491. #if DEBUG > 1
  492.       if (c > 0)
  493.     DEBUG_MESSAGE1 (DEBUG_INCOMING,
  494.             "fsysdep_cu_copy: Got '%d'", b);
  495. #endif
  496.  
  497.       if ((c < 0 && errno != EINTR)
  498.       || c == 0
  499.       || (c > 0 && b == (fcopy ? CHILD_STARTED : CHILD_STOPPED)))
  500.     break;
  501.  
  502.       /* If none of the above conditions were true, then we either got
  503.      an EINTR error, in which case we probably timed out and the
  504.      SIGALRM handler resent the signal, or we read the wrong
  505.      character, in which case we will just read again from the
  506.      pipe.  */
  507.     }
  508.  
  509.   ierr = errno;
  510.  
  511.   usset_signal (SIGALRM, SIG_IGN, TRUE, (boolean *) NULL);
  512.   alarm (0);
  513.  
  514.   if (c > 0)
  515.     return TRUE;
  516.  
  517.   if (c == 0)
  518.     ulog (LOG_ERROR, "EOF on child pipe");
  519.   else
  520.     ulog (LOG_ERROR, "read: %s", strerror (ierr));
  521.  
  522.   return FALSE;
  523. }
  524.  
  525. /* Shut down cu by killing the child process.  */
  526.  
  527. boolean
  528. fsysdep_cu_finish ()
  529. {
  530.   (void) close (oSpipe);
  531.  
  532.   /* We hit the child with SIGTERM, give it two seconds to die, and
  533.      then send a SIGKILL.  */
  534.   if (kill (iSchild, SIGTERM) < 0)
  535.     {
  536.       /* Don't give an error if the child has already died.  */
  537.       if (errno != ESRCH)
  538.     ulog (LOG_ERROR, "kill: %s", strerror (errno));
  539.     }
  540.  
  541.   usset_signal (SIGALRM, uscu_alarm_kill, TRUE, (boolean *) NULL);
  542.   iSsend_sig = SIGKILL;
  543.   alarm (2);
  544.  
  545.   (void) ixswait ((unsigned long) iSchild, "child");
  546.  
  547.   usset_signal (SIGALRM, SIG_IGN, TRUE, (boolean *) NULL);
  548.   alarm (0);
  549.  
  550.   return TRUE;
  551. }
  552.  
  553. /* Code for the child process.  */
  554.  
  555. /* This signal handler just records the signal.  In this case we only
  556.    care about which signal we received most recently.  */
  557.  
  558. static volatile sig_atomic_t iSchild_sig;
  559.  
  560. static RETSIGTYPE
  561. uscu_child_handler (isig)
  562.      int isig;
  563. {
  564. #if ! HAVE_SIGACTION && ! HAVE_SIGVEC && ! HAVE_SIGSET
  565.   (void) signal (isig, uscu_child_handler);
  566. #endif
  567.  
  568.   iSchild_sig = isig;
  569.  
  570. #if HAVE_RESTARTABLE_SYSCALLS
  571.   if (fSjmp)
  572.     longjmp (sSjmp_buf, 1);
  573. #endif /* HAVE_RESTARTABLE_SYSCALLS */
  574. }
  575.  
  576. /* The child process.  This copies the port to the terminal, except
  577.    when it is stopped by a signal.  It would be reasonable to write a
  578.    separate program for this, probably passing it the port on stdin.
  579.    This would reduce the memory requirements, since we wouldn't need a
  580.    second process holding all the configuration stuff, and also let it
  581.    work reasonably on 680x0 versions of MINIX.  */
  582.  
  583. static void
  584. uscu_child (qconn, opipe)
  585.      struct sconnection *qconn;
  586.      int opipe;
  587. {
  588.   CATCH_PROTECT int oport;
  589.   CATCH_PROTECT boolean fstopped, fgot;
  590.   CATCH_PROTECT int cwrite;
  591.   CATCH_PROTECT char abbuf[1024];
  592.  
  593.   fgot = FALSE;
  594.  
  595.   /* It would be nice if we could just use fsysdep_conn_read, but that
  596.      will log signals that we don't want logged.  There should be a
  597.      generic way to extract the file descriptor from the port.  */
  598.   if (qconn->qport == NULL)
  599.     oport = 0;
  600.   else
  601.     {
  602.       switch (qconn->qport->uuconf_ttype)
  603.     {
  604. #if DEBUG > 0
  605.     default:
  606.       ulog (LOG_FATAL, "uscu_child: Can't happen");
  607.       oport = -1;
  608.       break;
  609. #endif
  610.     case UUCONF_PORTTYPE_PIPE:
  611.       /* A read of 0 on a pipe always means EOF (see below).  */
  612.       fgot = TRUE;
  613.       /* Fall through.  */
  614.     case UUCONF_PORTTYPE_STDIN:
  615.       oport = ((struct ssysdep_conn *) qconn->psysdep)->ord;
  616.       break;
  617.     case UUCONF_PORTTYPE_MODEM:
  618.     case UUCONF_PORTTYPE_DIRECT:
  619.     case UUCONF_PORTTYPE_TCP:
  620.     case UUCONF_PORTTYPE_TLI:
  621.       oport = ((struct ssysdep_conn *) qconn->psysdep)->o;
  622.       break;
  623.     }
  624.     }
  625.  
  626.   /* Force the descriptor into blocking mode.  */
  627.   (void) fcntl (oport, F_SETFL,
  628.         fcntl (oport, F_GETFL, 0) &~ (O_NDELAY | O_NONBLOCK));
  629.  
  630.   usset_signal (SIGUSR1, uscu_child_handler, TRUE, (boolean *) NULL);
  631.   usset_signal (SIGUSR2, uscu_child_handler, TRUE, (boolean *) NULL);
  632.   usset_signal (SIGINT, SIG_IGN, TRUE, (boolean *) NULL);
  633.   usset_signal (SIGQUIT, SIG_IGN, TRUE, (boolean *) NULL);
  634.   usset_signal (SIGPIPE, SIG_DFL, TRUE, (boolean *) NULL);
  635.   usset_signal (SIGTERM, uscu_child_handler, TRUE, (boolean *) NULL);
  636.  
  637.   fstopped = FALSE;
  638.   iSchild_sig = 0;
  639.   cwrite = 0;
  640.  
  641.   if (fsysdep_catch ())
  642.     usysdep_start_catch ();
  643.  
  644.   while (TRUE)
  645.     {
  646.       int isig;
  647.       int c;
  648.  
  649.       /* There is a race condition here between checking the signal
  650.      and receiving a new and possibly different one.  This is
  651.      solved by having the parent resend the signal until it gets a
  652.      response.  */
  653.       isig = iSchild_sig;
  654.       iSchild_sig = 0;
  655.       if (isig != 0)
  656.     {
  657.       char b;
  658.  
  659.       if (isig == SIGTERM)
  660.         exit (EXIT_SUCCESS);
  661.  
  662.       if (isig == SIGUSR1)
  663.         {
  664.           fstopped = FALSE;
  665.           b = CHILD_STARTED;
  666.         }
  667.       else
  668.         {
  669.           fstopped = TRUE;
  670.           b = CHILD_STOPPED;
  671.           cwrite = 0;
  672.         }
  673.  
  674.       c = write (opipe, &b, 1);
  675.  
  676.       /* Apparently on some systems we can get EAGAIN here.  */
  677.       if (c < 0 &&
  678.           (errno == EAGAIN || errno == EWOULDBLOCK || errno == ENODATA))
  679.         c = 0;
  680.  
  681.       if (c <= 0)
  682.         {
  683.           /* Should we give an error message here?  */
  684.           (void) kill (getppid (), SIGHUP);
  685.           exit (EXIT_FAILURE);
  686.         }
  687.     }
  688.  
  689.       if (fstopped)
  690.     pause ();
  691.       else if (cwrite > 0)
  692.     {
  693.       char *zbuf;
  694.  
  695.       zbuf = abbuf;
  696.       while (cwrite > 0)
  697.         {
  698.           c = write (1, zbuf, cwrite);
  699.  
  700.           /* Apparently on some systems we can get EAGAIN here.  */
  701.           if (c < 0 &&
  702.           (errno == EAGAIN
  703.            || errno == EWOULDBLOCK
  704.            || errno == ENODATA))
  705.         c = 0;
  706.  
  707.           if (c < 0 && errno == EINTR)
  708.         break;
  709.           if (c <= 0)
  710.         {
  711.           /* Should we give an error message here?  */
  712.           (void) kill (getppid (), SIGHUP);
  713.           exit (EXIT_FAILURE);
  714.         }
  715.           cwrite -= c;
  716.           zbuf += c;
  717.         }
  718.     }        
  719.       else
  720.     {
  721.       /* On some systems apparently read will return 0 until
  722.          something has been written to the port.  We therefore
  723.          accept a 0 return until after we have managed to read
  724.          something.  Setting errno to 0 apparently avoids a
  725.          problem on Coherent.  */
  726.       errno = 0;
  727.       c = read (oport, abbuf, sizeof abbuf);
  728.  
  729.       /* Apparently on some systems we can get EAGAIN here.  */
  730.       if (c < 0 &&
  731.           (errno == EAGAIN || errno == EWOULDBLOCK || errno == ENODATA))
  732.         c = 0;
  733.  
  734.       if ((c == 0 && fgot)
  735.           || (c < 0 && errno != EINTR))
  736.         {
  737.           /* This can be a normal way to exit, depending on just
  738.          how the connection is dropped.  */
  739.           (void) kill (getppid (), SIGHUP);
  740.           exit (EXIT_SUCCESS);
  741.         }
  742.       if (c > 0)
  743.         {
  744.           fgot = TRUE;
  745.           cwrite = c;
  746.         }
  747.     }
  748.     }
  749. }
  750.  
  751. /* Terminal control routines.  */
  752.  
  753. /* Whether file descriptor 0 is attached to a terminal or not.  */
  754. static boolean fSterm;
  755.  
  756. /* Whether we are doing local echoing.  */
  757. static boolean fSlocalecho;
  758.  
  759. /* The original state of the terminal.  */
  760. static sterminal sSterm_orig;
  761.  
  762. /* The new state of the terminal.  */
  763. static sterminal sSterm_new;
  764.  
  765. #if ! HAVE_BSD_TTY
  766. #ifdef SIGTSTP
  767. /* Whether SIGTSTP is being ignored.  */
  768. static boolean fStstp_ignored;
  769. #endif
  770. #endif
  771.  
  772. /* Set the terminal into raw mode.  */
  773.  
  774. boolean
  775. fsysdep_terminal_raw (flocalecho)
  776.      boolean flocalecho;
  777. {
  778.   fSlocalecho = flocalecho;
  779.  
  780.   /* This defaults may be overriden below.  */
  781.   bSeof = '\004';
  782.   bStstp = '\032';
  783.  
  784.   if (! fgetterminfo (0, &sSterm_orig))
  785.     {
  786.       fSterm = FALSE;
  787.       return TRUE;
  788.     }
  789.  
  790.   fSterm = TRUE;
  791.   
  792.   sSterm_new = sSterm_orig;
  793.  
  794. #if HAVE_BSD_TTY
  795.  
  796.   /* We use CBREAK mode rather than RAW mode, because RAW mode turns
  797.      off all output processing, which we don't want to do.  This means
  798.      that we have to disable the interrupt characters, which we do by
  799.      setting them to -1.  */
  800.   bSeof = sSterm_orig.stchars.t_eofc;
  801.  
  802.   sSterm_new.stchars.t_intrc = -1;
  803.   sSterm_new.stchars.t_quitc = -1;
  804.   sSterm_new.stchars.t_startc = -1;
  805.   sSterm_new.stchars.t_stopc = -1;
  806.   sSterm_new.stchars.t_eofc = -1;
  807.   sSterm_new.stchars.t_brkc = -1;
  808.  
  809.   bStstp = sSterm_orig.sltchars.t_suspc;
  810.  
  811.   sSterm_new.sltchars.t_suspc = -1;
  812.   sSterm_new.sltchars.t_dsuspc = -1;
  813.   sSterm_new.sltchars.t_rprntc = -1;
  814.   sSterm_new.sltchars.t_flushc = -1;
  815.   sSterm_new.sltchars.t_werasc = -1;
  816.   sSterm_new.sltchars.t_lnextc = -1;
  817.  
  818.   if (! flocalecho)
  819.     {
  820.       sSterm_new.stty.sg_flags |= (CBREAK | ANYP);
  821.       sSterm_new.stty.sg_flags &=~ (ECHO | CRMOD | TANDEM);
  822.     }
  823.   else
  824.     {
  825.       sSterm_new.stty.sg_flags |= (CBREAK | ANYP | ECHO);
  826.       sSterm_new.stty.sg_flags &=~ (CRMOD | TANDEM);
  827.     }
  828.  
  829. #endif /* HAVE_BSD_TTY */
  830.  
  831. #if HAVE_SYSV_TERMIO
  832.  
  833.   bSeof = sSterm_new.c_cc[VEOF];
  834.   if (! flocalecho)
  835.     sSterm_new.c_lflag &=~ (ICANON | ISIG | ECHO | ECHOE | ECHOK | ECHONL);
  836.   else
  837.     sSterm_new.c_lflag &=~ (ICANON | ISIG);
  838.   sSterm_new.c_iflag &=~ (INLCR | IGNCR | ICRNL | IXON | IXOFF | IXANY);
  839.   sSterm_new.c_oflag &=~ (OPOST);
  840.   sSterm_new.c_cc[VMIN] = 1;
  841.   sSterm_new.c_cc[VTIME] = 0;
  842.  
  843. #endif /* HAVE_SYSV_TERMIO */
  844.  
  845. #if HAVE_POSIX_TERMIOS
  846.  
  847.   bSeof = sSterm_new.c_cc[VEOF];
  848.   bStstp = sSterm_new.c_cc[VSUSP];
  849.   if (! flocalecho)
  850.     sSterm_new.c_lflag &=~
  851.       (ICANON | IEXTEN | ISIG | ECHO | ECHOE | ECHOK | ECHONL);
  852.   else
  853.     sSterm_new.c_lflag &=~ (ICANON | IEXTEN | ISIG);
  854.   sSterm_new.c_iflag &=~ (INLCR | IGNCR | ICRNL | IXON | IXOFF);
  855.   sSterm_new.c_oflag &=~ (OPOST);
  856.   sSterm_new.c_cc[VMIN] = 1;
  857.   sSterm_new.c_cc[VTIME] = 0;
  858.  
  859. #endif /* HAVE_POSIX_TERMIOS */
  860.  
  861.   if (! fsetterminfo (0, &sSterm_new))
  862.     {
  863.       ulog (LOG_ERROR, "Can't set terminal settings: %s", strerror (errno));
  864.       return FALSE;
  865.     }
  866.  
  867.   return TRUE;
  868. }
  869.  
  870. /* Restore the terminal to its original setting.  */
  871.  
  872. boolean
  873. fsysdep_terminal_restore ()
  874. {
  875.   if (! fSterm)
  876.     return TRUE;
  877.  
  878.   if (! fsetterminfo (0, &sSterm_orig))
  879.     {
  880.       ulog (LOG_ERROR, "Can't restore terminal: %s", strerror (errno));
  881.       return FALSE;
  882.     }
  883.   return TRUE;
  884. }
  885.  
  886. /* Read a line from the terminal.  This will be called after
  887.    fsysdep_terminal_raw has been called.  */
  888.  
  889. char *
  890. zsysdep_terminal_line (zprompt)
  891.      const char *zprompt;
  892. {
  893.   CATCH_PROTECT size_t cbuf = 0;
  894.   CATCH_PROTECT char *zbuf = NULL;
  895.   CATCH_PROTECT size_t cgot = 0;
  896.  
  897.   if (zprompt != NULL && *zprompt != '\0')
  898.     (void) write (1, zprompt, strlen (zprompt));
  899.  
  900.   /* Forgot about any previous SIGINT or SIGQUIT signals we may have
  901.      received.  We don't worry about the race condition here, since we
  902.      can't get these signals from the terminal at the moment and it's
  903.      not too likely that somebody else will be sending them to us.  */
  904.   afSignal[INDEXSIG_SIGINT] = 0;
  905.   afSignal[INDEXSIG_SIGQUIT] = 0;
  906.  
  907.   if (! fsysdep_terminal_restore ())
  908.     return NULL;
  909.  
  910.   if (fsysdep_catch ())
  911.     {
  912.       usysdep_start_catch ();
  913.       cbuf = 0;
  914.       zbuf = NULL;
  915.       cgot = 0;
  916.     }
  917.  
  918.   while (TRUE)
  919.     {
  920.       char b;
  921.       int c;
  922.  
  923.       if (afSignal[INDEXSIG_SIGINT]
  924.       || afSignal[INDEXSIG_SIGQUIT])
  925.     {
  926.       usysdep_end_catch ();
  927.       /* Make sure the signal is logged.  */
  928.       ulog (LOG_ERROR, (const char *) NULL);
  929.       /* Return an empty string.  */
  930.       cgot = 0;
  931.       break;
  932.     }
  933.  
  934.       /* There's a race here between checking the signals and calling
  935.      read.  It just means that the user will have to hit ^C more
  936.      than once.  */
  937.  
  938.       c = read (0, &b, 1);
  939.       if (c < 0)
  940.     {
  941.       if (errno == EINTR)
  942.         continue;
  943.       usysdep_end_catch ();
  944.       ulog (LOG_ERROR, "read: %s", strerror (errno));
  945.       (void) fsysdep_terminal_raw (fSlocalecho);
  946.       return NULL;
  947.     }
  948.       if (c == 0)
  949.     {
  950.       /* I'm not quite sure what to do here.  */
  951.       usysdep_end_catch ();
  952.       ulog (LOG_ERROR, "EOF on terminal");
  953.       (void) fsysdep_terminal_raw (fSlocalecho);
  954.       return NULL;
  955.     }
  956.  
  957.       if (cgot >= cbuf)
  958.     {
  959.       char *znew;
  960.  
  961.       cbuf += 64;
  962.       znew = zbufalc (cbuf);
  963.       if (zbuf != NULL)
  964.         {
  965.           memcpy (znew, zbuf, cgot);
  966.           ubuffree (zbuf);
  967.         }
  968.       zbuf = znew;
  969.     }
  970.  
  971.       zbuf[cgot] = b;
  972.  
  973.       ++cgot;
  974.  
  975.       if (b == '\n')
  976.     {
  977.       usysdep_end_catch ();
  978.       break;
  979.     }
  980.     }
  981.  
  982.   if (cgot >= cbuf)
  983.     {
  984.       char *znew;
  985.  
  986.       ++cbuf;
  987.       znew = zbufalc (cbuf);
  988.       if (zbuf != NULL)
  989.     {
  990.       memcpy (znew, zbuf, cgot);
  991.       ubuffree (zbuf);
  992.     }
  993.       zbuf = znew;
  994.     }
  995.  
  996.   zbuf[cgot] = '\0';
  997.  
  998.   if (! fsysdep_terminal_raw (fSlocalecho))
  999.     return NULL;
  1000.  
  1001.   return zbuf;
  1002. }
  1003.  
  1004. /* Write a line to the terminal with a trailing newline.  */
  1005.  
  1006. boolean
  1007. fsysdep_terminal_puts (zline)
  1008.      const char *zline;
  1009. {
  1010.   char *zalc, *zprint;
  1011.   size_t clen;
  1012.  
  1013.   if (zline == NULL)
  1014.     {
  1015.       zalc = zbufalc (2);
  1016.       clen = 0;
  1017.     }
  1018.   else
  1019.     {
  1020.       clen = strlen (zline);
  1021.       zalc = zbufalc (clen + 2);
  1022.       memcpy (zalc, zline, clen);
  1023.     }
  1024.  
  1025.   if (fSterm)
  1026.     {
  1027.       zalc[clen] = '\r';
  1028.       ++clen;
  1029.     }
  1030.   zalc[clen] = '\n';
  1031.   ++clen;
  1032.  
  1033.   zprint = zalc;
  1034.   while (clen > 0)
  1035.     {
  1036.       int c;
  1037.  
  1038.       c = write (1, zprint, clen);
  1039.       if (c <= 0)
  1040.     {
  1041.       ubuffree (zalc);
  1042.       ulog (LOG_ERROR, "write: %s", strerror (errno));
  1043.       return FALSE;
  1044.     }
  1045.       clen -= c;
  1046.       zprint += c;
  1047.     }
  1048.  
  1049.   ubuffree (zalc);
  1050.  
  1051.   return TRUE;
  1052. }
  1053.  
  1054. /* Allow or disallow signals from the terminal.  */
  1055.  
  1056. boolean
  1057. fsysdep_terminal_signals (faccept)
  1058.      boolean faccept;
  1059. {
  1060. #if HAVE_BSD_TTY
  1061.  
  1062.   if (faccept)
  1063.     {
  1064.       sSterm_new.stchars.t_intrc = sSterm_orig.stchars.t_intrc;
  1065.       sSterm_new.stchars.t_quitc = sSterm_orig.stchars.t_quitc;
  1066.     }
  1067.   else
  1068.     {
  1069.       sSterm_new.stchars.t_intrc = -1;
  1070.       sSterm_new.stchars.t_quitc = -1;
  1071.     }
  1072.  
  1073. #else /* ! HAVE_BSD_TTY */
  1074.  
  1075.   if (faccept)
  1076.     sSterm_new.c_lflag |= ISIG;
  1077.   else
  1078.     sSterm_new.c_lflag &=~ ISIG;
  1079.  
  1080. #ifdef SIGTSTP
  1081.   /* We only want to get SIGINT and SIGQUIT, not SIGTSTP.  This
  1082.      function will be called with faccept TRUE before it is called
  1083.      with faccept FALSE, so fStstp_ignored will be correctly
  1084.      initialized.  */
  1085.   if (faccept)
  1086.     usset_signal (SIGTSTP, SIG_IGN, FALSE, &fStstp_ignored);
  1087.   else if (! fStstp_ignored)
  1088.     usset_signal (SIGTSTP, SIG_DFL, TRUE, (boolean *) NULL);
  1089. #endif
  1090.  
  1091. #endif /* ! HAVE_BSD_TTY */
  1092.  
  1093.   if (! fsetterminfo (0, &sSterm_new))
  1094.     {
  1095.       ulog (LOG_ERROR, "Can't set terminal: %s", strerror (errno));
  1096.       return FALSE;
  1097.     }
  1098.  
  1099.   return TRUE;
  1100. }
  1101.  
  1102. /* Start up a command, or possibly just a shell.  Optionally attach
  1103.    stdin or stdout to the port.  We attach directly to the port,
  1104.    rather than copying the data ourselves.  */
  1105.  
  1106. boolean
  1107. fsysdep_shell (qconn, zcmd, tcmd)
  1108.      struct sconnection *qconn;
  1109.      const char *zcmd;
  1110.      enum tshell_cmd tcmd;
  1111. {
  1112.   const char *azargs[4];
  1113.   int oread, owrite;
  1114.   int aidescs[3];
  1115.   pid_t ipid;
  1116.  
  1117.   if (tcmd != SHELL_NORMAL)
  1118.     azargs[0] = "/bin/sh";
  1119.   else
  1120.     {
  1121.       azargs[0] = getenv ("SHELL");
  1122.       if (azargs[0] == NULL)
  1123.     azargs[0] = "/bin/sh";
  1124.     }
  1125.   if (zcmd == NULL || *zcmd == '\0')
  1126.     azargs[1] = NULL;
  1127.   else
  1128.     {
  1129.       azargs[1] = "-c";
  1130.       azargs[2] = zcmd;
  1131.       azargs[3] = NULL;
  1132.     }
  1133.  
  1134.   if (qconn->qport == NULL)
  1135.     {
  1136.       oread = 0;
  1137.       owrite = 1;
  1138.     }
  1139.   else
  1140.     {
  1141.       switch (qconn->qport->uuconf_ttype)
  1142.     {
  1143.     default:
  1144.       oread = owrite = -1;
  1145.       break;
  1146.     case UUCONF_PORTTYPE_STDIN:
  1147.     case UUCONF_PORTTYPE_PIPE:
  1148.       oread = ((struct ssysdep_conn *) qconn->psysdep)->ord;
  1149.       owrite = ((struct ssysdep_conn *) qconn->psysdep)->owr;
  1150.       break;
  1151.     case UUCONF_PORTTYPE_MODEM:
  1152.     case UUCONF_PORTTYPE_DIRECT:
  1153.     case UUCONF_PORTTYPE_TCP:
  1154.     case UUCONF_PORTTYPE_TLI:
  1155.       oread = owrite = ((struct ssysdep_conn *) qconn->psysdep)->o;
  1156.       break;
  1157.     }
  1158.     }
  1159.  
  1160.   aidescs[0] = 0;
  1161.   aidescs[1] = 1;
  1162.   aidescs[2] = 2;
  1163.  
  1164.   if (tcmd == SHELL_STDIN_FROM_PORT || tcmd == SHELL_STDIO_ON_PORT)
  1165.     aidescs[0] = oread;
  1166.   if (tcmd == SHELL_STDOUT_TO_PORT || tcmd == SHELL_STDIO_ON_PORT)
  1167.     aidescs[1] = owrite;
  1168.     
  1169.   ipid = ixsspawn (azargs, aidescs, FALSE, TRUE, (const char *) NULL,
  1170.            FALSE, FALSE, (const char *) NULL,
  1171.            (const char *) NULL, (const char *) NULL);
  1172.   if (ipid < 0)
  1173.     {
  1174.       ulog (LOG_ERROR, "ixsspawn (/bin/sh): %s", strerror (errno));
  1175.       return FALSE;
  1176.     }
  1177.  
  1178.   return ixswait ((unsigned long) ipid, "shell") == 0;
  1179. }
  1180.  
  1181. /* Change directories.  */
  1182.  
  1183. boolean
  1184. fsysdep_chdir (zdir)
  1185.      const char *zdir;
  1186. {
  1187.   if (zdir == NULL || *zdir == '\0')
  1188.     {
  1189.       zdir = getenv ("HOME");
  1190.       if (zdir == NULL)
  1191.     {
  1192.       ulog (LOG_ERROR, "HOME not defined");
  1193.       return FALSE;
  1194.     }
  1195.     }
  1196.   if (chdir (zdir) < 0)
  1197.     {
  1198.       ulog (LOG_ERROR, "chdir (%s): %s", zdir, strerror (errno));
  1199.       return FALSE;
  1200.     }
  1201.   return TRUE;
  1202. }
  1203.  
  1204. /* Suspend the current process.  */
  1205.  
  1206. boolean
  1207. fsysdep_suspend ()
  1208. {
  1209. #ifndef SIGTSTP
  1210.   return fsysdep_terminal_puts ("[process suspension not supported]");
  1211. #else
  1212.   return kill (getpid (), SIGTSTP) == 0;
  1213. #endif
  1214. }
  1215.