ckucon.c
上传用户:dufan58
上传日期:2007-01-05
资源大小:3407k
文件大小:80k
源码类别:

通讯/手机编程

开发平台:

Windows_Unix

  1. #include "ckcsym.h"
  2. #ifdef NOLOCAL
  3. char *connv = "";
  4. #else
  5. char *connv = "CONNECT Command for UNIX:fork(), 7.0.104, 14 Nov 1999";
  6. /*  C K U C O N  --  Terminal connection to remote system, for UNIX  */
  7. /*
  8.   Author: Frank da Cruz <fdc@columbia.edu>,
  9.   Columbia University Academic Information Systems, New York City.
  10.   Copyright (C) 1985, 2000,
  11.     Trustees of Columbia University in the City of New York.
  12.     All rights reserved.  See the C-Kermit COPYING.TXT file or the
  13.     copyright text in the ckcmai.c module for disclaimer and permissions.
  14.   NOTE: This module has been superseded on most platforms by ckucns.c, which
  15.   uses select() rather than fork() for multiplexing its i/o.  This module
  16.   is still needed for platforms that do not support select(), and also for
  17.   its X.25 support.  Although the two modules share large amounts of code,
  18.   their structure is radically different and therefore attempts at merging
  19.   them have so far been unsuccessful.  (November 1998.)
  20.   Special thanks to Eduard Vopicka, Prague University of Economics,
  21.   Czech Republic, for valuable contributions to this module in July 1994,
  22.   and to Neal P. Murphy of the Motorola Cellular Infrastructure Group in 1996
  23.   for rearranging the code to allow operation on the BeBox, yet still work
  24.   in regular UNIX.
  25. */
  26. #include "ckcdeb.h" /* Common things first */
  27. #ifdef BEOSORBEBOX
  28. static double time_started = 0.0;
  29. #include <kernel/OS.h>
  30. _PROTOTYP( static long concld, (void *) );
  31. #else
  32. _PROTOTYP( static VOID concld, (void) );
  33. #endif /* BEOSORBEBOX */
  34. #ifdef NEXT
  35. #undef NSIG
  36. #include <sys/wait.h> /* For wait() */
  37. #endif /* NEXT */
  38. #include <signal.h> /* Signals */
  39. #include <errno.h> /* Error numbers */
  40. #ifdef ZILOG /* Longjumps */
  41. #include <setret.h>
  42. #else
  43. #include <setjmp.h>
  44. #endif /* ZILOG */
  45. #include "ckcsig.h"
  46. /* Kermit-specific includes */
  47. #include "ckcasc.h" /* ASCII characters */
  48. #include "ckcker.h" /* Kermit things */
  49. #include "ckucmd.h" /* For xxesc() prototype */
  50. #include "ckcnet.h" /* Network symbols */
  51. #ifndef NOCSETS
  52. #include "ckcxla.h" /* Character set translation */
  53. #endif /* NOCSETS */
  54. /* Internal function prototypes */
  55. _PROTOTYP( VOID ttflux, (void) );
  56. _PROTOTYP( VOID doesc, (char) );
  57. _PROTOTYP( VOID logchar, (char) );
  58. _PROTOTYP( int hconne, (void) );
  59. #ifndef NOSHOW
  60. _PROTOTYP( VOID shomdm, (void) );
  61. #endif /* NOSHOW */
  62. _PROTOTYP( static int kbget, (void) );
  63. _PROTOTYP( static int pipemsg, (int) );
  64. _PROTOTYP( static int ckcputf, (void) );
  65. _PROTOTYP( static VOID ck_sndmsg, (void) );
  66. /*
  67.   For inter-fork signaling.  Normally we use SIGUSR1, except on SCO, where
  68.   we use SIGUSR2 because SIGUSR1 is used by the system.  You can define
  69.   CK_FORK_SIG to be whatever other signal you might want to use at compile
  70.   time.  We don't use SIGUSR2 everywhere because in some systems, like
  71.   UnixWare, the default action for SIGUSR2 is to kill the process that gets it.
  72. */
  73. #ifndef CK_FORK_SIG
  74. #ifndef SIGUSR1 /* User-defined signals */
  75. #define SIGUSR1 30
  76. #endif /* SIGUSR1 */
  77. #ifndef SIGUSR2
  78. #define SIGUSR2 31
  79. #endif /* SIGUSR2 */
  80. #ifdef M_UNIX
  81. #define CK_FORK_SIG SIGUSR2 /* SCO - use SIGUSR2 */
  82. #else
  83. #define CK_FORK_SIG SIGUSR1 /* Others - use SIGUSR1 */
  84. #endif /* M_UNIX */
  85. #endif /* CK_FORK_SIG */
  86. /* External variables */
  87. extern struct ck_p ptab[];
  88. extern int local, escape, duplex, parity, flow, seslog, sessft, debses,
  89.  mdmtyp, ttnproto, cmask, cmdmsk, network, nettype, deblog, sosi, tnlm,
  90.  xitsta, what, ttyfd, ttpipe, quiet, backgrd, pflag, tt_crd, tn_nlm, ttfdflg,
  91.  tt_escape, justone, carrier;
  92. extern long speed;
  93. extern char ttname[], sesfil[], myhost[], *ccntab[];
  94. #ifdef TNCODE
  95. extern int tn_b_nlm, tn_rem_echo;
  96. #endif /* TNCODE */
  97. #ifdef CK_TRIGGER
  98. extern char * tt_trigger[], * triggerval;
  99. #endif /* CK_TRIGGER */
  100. extern int nopush;
  101. #ifdef CK_APC
  102. extern int apcactive; /* Application Program Command (APC) */
  103. extern int apcstatus; /* items ... */
  104. static int apclength = 0;
  105. #ifdef DCMDBUF
  106. extern char *apcbuf;
  107. #else
  108. extern char apcbuf[];
  109. #endif /* DCMDBUF */
  110. static int apcbuflen = APCBUFLEN - 2;
  111. extern int protocol; /* Auto download */
  112. #endif /* CK_APC */
  113. extern int autodl;
  114. #ifdef CK_AUTODL
  115. extern CHAR ksbuf[];
  116. #endif /* CK_AUTODL */
  117. #ifdef CK_XYZ
  118. #ifdef XYZ_INTERNAL
  119. static int zmdlok = 1; /* Zmodem autodownloads available */
  120. #else
  121. static int zmdlok = 0; /* Depends on external protocol def */
  122. #endif /* XYZ_INTERNAL */
  123. #else
  124. static int zmdlok = 0; /* Not available at all */
  125. #endif /* CK_XYZ */
  126. #ifndef NOSETKEY /* Keyboard mapping */
  127. extern KEY *keymap; /* Single-character key map */
  128. extern MACRO *macrotab; /* Key macro pointer table */
  129. static MACRO kmptr = NULL; /* Pointer to current key macro */
  130. #endif /* NOSETKEY */
  131. /* Global variables local to this module */
  132. static int
  133.   quitnow = 0, /* <esc-char>Q was typed */
  134.   jbset = 0, /* Flag whether jmp buf is set. */
  135.   dohangup = 0, /* <esc-char>H was typed */
  136.   sjval, /* Setjump return value */
  137.   goterr = 0, /* Fork/pipe creation error flag */
  138.   inshift = 0, /* SO/SI shift states */
  139.   outshift = 0;
  140. int active = 0; /* Lower fork active flag */
  141. static PID_T parent_id = (PID_T)0; /* Process ID of keyboard fork */
  142. static char ecbuf[10], *ecbp; /* Escape char buffer & pointer */
  143. #ifdef CK_SMALL
  144. #define IBUFL 1536 /* Input buffer length */
  145. #else
  146. #define IBUFL 4096
  147. #endif /* CK_SMALL */
  148. static int obc = 0; /* Output buffer count */
  149. #ifndef OXOS
  150. #define OBUFL 1024 /* Output buffer length */
  151. #else
  152. #define OBUFL IBUFL
  153. #endif /* OXOS */
  154. #ifdef BIGBUFOK
  155. #define TMPLEN 4096 /* Temporary message buffer length */
  156. #else
  157. #define TMPLEN 200
  158. #endif /* BIGBUFOK */
  159. #ifdef DYNAMIC
  160. static char *ibuf = NULL, *obuf = NULL, *temp = NULL; /* Buffers */
  161. #else
  162. static char ibuf[IBUFL], obuf[OBUFL], temp[TMPLEN];
  163. #endif /* DYNAMIC */
  164. #ifdef DYNAMIC
  165. static char *ibp; /* Input buffer pointer */
  166. #else
  167. static char *ibp = ibuf; /* Input buffer pointer */
  168. #endif /*DYNAMIC */
  169. static int ibc = 0; /* Input buffer count */
  170. #ifdef DYNAMIC
  171. static char *obp; /* Output buffer pointer */
  172. #else
  173. static char *obp = obuf; /* Output buffer pointer */
  174. #endif /* DYNAMIC */
  175. /* X.25 items */
  176. #ifdef ANYX25
  177. static char *p; /* General purpose pointer */
  178. char x25ibuf[MAXIX25]; /* Input buffer */
  179. char x25obuf[MAXOX25]; /* Output buffer */
  180. int ibufl; /* Length of input buffer */
  181. int obufl; /* Length of output buffer */
  182. unsigned char tosend = 0;
  183. int linkid, lcn;
  184. static int dox25clr = 0;
  185. #ifndef IBMX25
  186. extern CHAR padparms[];
  187. #endif /* IBMX25 */
  188. #endif /* ANYX25 */
  189. static int xpipe[2] = {-1, -1}; /* Pipe descriptor for child-parent messages */
  190. static PID_T pid = (PID_T) 0; /* Process ID of child */
  191. /* Character-set items */
  192. static int unicode = 0;
  193. static int
  194.   escseq = 0, /* 1 = Recognizer is active */
  195.   inesc = 0, /* State of sequence recognizer */
  196.   oldesc = -1; /* Previous state of recognizer */
  197. #define OUTXBUFSIZ 15
  198. static CHAR inxbuf[OUTXBUFSIZ+1]; /* Host-to-screen expansion buffer */
  199. static int inxcount = 0; /* and count */
  200. static CHAR outxbuf[OUTXBUFSIZ+1]; /* Keyboard-to-host expansion buf */
  201. static int outxcount = 0; /* and count */
  202. #ifndef NOCSETS
  203. #ifdef CK_ANSIC /* ANSI C prototypes... */
  204. extern CHAR (*xls[MAXTCSETS+1][MAXFCSETS+1])(CHAR); /* Character set */
  205. extern CHAR (*xlr[MAXTCSETS+1][MAXFCSETS+1])(CHAR); /* translation functions */
  206. static CHAR (*sxo)(CHAR); /* Local translation functions */
  207. static CHAR (*rxo)(CHAR); /* for output (sending) terminal chars */
  208. static CHAR (*sxi)(CHAR); /* and for input (receiving) terminal chars. */
  209. static CHAR (*rxi)(CHAR);
  210. #else /* Not ANSI C... */
  211. extern CHAR (*xls[MAXTCSETS+1][MAXFCSETS+1])(); /* Character set */
  212. extern CHAR (*xlr[MAXTCSETS+1][MAXFCSETS+1])(); /* translation functions. */
  213. static CHAR (*sxo)(); /* Local translation functions */
  214. static CHAR (*rxo)(); /* for output (sending) terminal chars */
  215. static CHAR (*sxi)(); /* and for input (receiving) terminal chars. */
  216. static CHAR (*rxi)();
  217. #endif /* CK_ANSIC */
  218. extern int language; /* Current language. */
  219. static int langsv; /* For remembering language setting. */
  220. extern struct csinfo fcsinfo[]; /* File character set info. */
  221. extern int tcsr, tcsl; /* Terminal character sets, remote & local. */
  222. static int tcs; /* Intermediate ("transfer") character set. */
  223. static int tcssize = 0; /* Size of tcs */
  224. #ifdef UNICODE /* UTF-8 support */
  225. #ifdef CK_ANSIC
  226. extern int (*xl_ufc[MAXFCSETS+1])(USHORT);  /* Unicode to FCS */
  227. extern USHORT (*xl_fcu[MAXFCSETS+1])(CHAR); /* FCS to Unicode */
  228. extern int (*xuf)(USHORT); /* Translation function UCS to FCS */
  229. extern USHORT (*xfu)(CHAR); /* Translation function FCS to UCS */
  230. #else
  231. extern int (*xl_ufc[MAXFCSETS+1])();
  232. extern USHORT (*xl_fcu[MAXFCSETS+1])();
  233. extern int (*xuf)();
  234. extern USHORT (*xfu)();
  235. #endif /* CK_ANSIC */
  236. #endif /* UNICODE */
  237. #endif /* NOCSETS */
  238. /*
  239.   We do not need to parse and recognize escape sequences if we are being built
  240.   without character-set support AND without APC support.
  241. */
  242. #ifdef NOCSETS /* No character sets */
  243. #ifndef CK_APC /* No APC */
  244. #ifndef NOESCSEQ
  245. #define NOESCSEQ /* So no escape sequence recognizer */
  246. #endif /* NOESCSEQ */
  247. #endif /* CK_APC */
  248. #endif /* NOCSETS */
  249. /* Child process events and messages */
  250. #define CEV_NO  0 /* No event */
  251. #define CEV_HUP 1 /* Communications hangup */
  252. #define CEV_PAD 2 /* X.25 - change PAD parameters */
  253. #define CEV_DUP 3 /* Toggle duplex */
  254. #define CEV_APC 4 /* Execute APC */
  255. #ifdef TNCODE
  256. #define CEV_MEBIN 5 /* Change of me_binary */
  257. #define CEV_UBIN 6 /* Change of u_binary */
  258. #endif /* TNCODE */
  259. #define CEV_ADL 7 /* Autodownload */
  260. #define CEV_AUL 8 /* Autoupload */
  261. #define CEV_TRI 9 /* Trigger string */
  262. #ifdef NOESCSEQ
  263. #define chkaes(x) 0
  264. #else
  265. /*
  266.   As of edit 178, the CONNECT command skips past ANSI escape sequences to
  267.   avoid translating the characters within them.  This allows the CONNECT
  268.   command to work correctly with a host that uses a 7-bit ISO 646 national
  269.   character set, in which characters like '[' would normally be translated
  270.   into accented characters, ruining the terminal's interpretation (and
  271.   generation) of escape sequences.
  272.   As of edit 190, the CONNECT command responds to APC escape sequences
  273.   (ESC _ text ESC ) if the user SETs TERMINAL APC ON or UNCHECKED, and the
  274.   program was built with CK_APC defined.
  275.   Non-ANSI/ISO-compliant escape sequences are not handled.
  276. */
  277. /* States for the escape-sequence recognizer. */
  278. #define ES_NORMAL 0 /* Normal, not in an escape sequence */
  279. #define ES_GOTESC 1 /* Current character is ESC */
  280. #define ES_ESCSEQ 2 /* Inside an escape sequence */
  281. #define ES_GOTCSI 3 /* Inside a control sequence */
  282. #define ES_STRING 4 /* Inside DCS,OSC,PM, or APC string */
  283. #define ES_TERMIN 5 /* 1st char of string terminator */
  284. /*
  285.   ANSI escape sequence handling.  Only the 7-bit form is treated, because
  286.   translation is not a problem in the 8-bit environment, in which all GL
  287.   characters are ASCII and no translation takes place.  So we don't check
  288.   for the 8-bit single-character versions of CSI, DCS, OSC, APC, or ST.
  289.   Here is the ANSI sequence recognizer state table, followed by the code
  290.   that implements it.
  291.   Definitions:
  292.     CAN = Cancel                       01/08         Ctrl-X
  293.     SUB = Substitute                   01/10         Ctrl-Z
  294.     DCS = Device Control Sequence      01/11 05/00   ESC P
  295.     CSI = Control Sequence Introducer  01/11 05/11   ESC [
  296.     ST  = String Terminator            01/11 05/12   ESC 
  297.     OSC = Operating System Command     01/11 05/13   ESC ]
  298.     PM  = Privacy Message              01/11 05/14   ESC ^
  299.     APC = Application Program Command  01/11 05/15   ESC _
  300.   ANSI escape sequence recognizer:
  301.     State    Input  New State  ; Commentary
  302.     NORMAL   (start)           ; Start in NORMAL state
  303.     (any)    CAN    NORMAL     ; ^X cancels
  304.     (any)    SUB    NORMAL     ; ^Z cancels
  305.     NORMAL   ESC    GOTESC     ; Begin escape sequence
  306.     NORMAL   other             ; NORMAL control or graphic character
  307.     GOTESC   ESC               ; Start again
  308.     GOTESC   [      GOTCSI     ; CSI
  309.     GOTESC   P      STRING     ; DCS introducer, consume through ST
  310.     GOTESC   ]      STRING     ; OSC introducer, consume through ST
  311.     GOTESC   ^      STRING     ; PM  introducer, consume through ST
  312.     GOTESC   _      STRING     ; APC introducer, consume through ST
  313.     GOTESC   0..~   NORMAL     ; 03/00 through 17/14 = Final character
  314.     GOTESC   other  ESCSEQ     ; Intermediate or ignored control character
  315.     ESCSEQ   ESC    GOTESC     ; Start again
  316.     ESCSEQ   0..~   NORMAL     ; 03/00 through 17/14 = Final character
  317.     ESCSEQ   other             ; Intermediate or ignored control character
  318.     GOTCSI   ESC    GOTESC     ; Start again
  319.     GOTCSI   @..~   NORMAL     ; 04/00 through 17/14 = Final character
  320.     GOTCSI   other             ; Intermediate char or ignored control char
  321.     STRING   ESC    TERMIN     ; Maybe have ST
  322.     STRING   other             ; Consume all else
  323.     TERMIN         NORMAL     ; End of string
  324.     TERMIN   other  STRING     ; Still in string
  325. */
  326. /*
  327.   chkaes() -- Check ANSI Escape Sequence.
  328.   Call with EACH character in input stream.
  329.   Sets global inesc variable according to escape sequence state.
  330.   Returns 0 normally, 1 if an APC sequence is to be executed.
  331. */
  332. int
  333. #ifdef CK_ANSIC
  334. chkaes(char c)
  335. #else
  336. chkaes(c) char c;
  337. #endif /* CK_ANSIC */
  338. /* chkaes */ {
  339.     oldesc = inesc; /* Remember previous state */
  340.     if (c == CAN || c == SUB) /* CAN and SUB cancel any sequence */
  341.       inesc = ES_NORMAL;
  342.     else /* Otherwise */
  343.       switch (inesc) { /* enter state switcher */
  344. case ES_NORMAL: /* NORMAL state */
  345.   if (c == ESC) /* Got an ESC */
  346.     inesc = ES_GOTESC; /* Change state to GOTESC */
  347.   break; /* Otherwise stay in NORMAL state */
  348. case ES_GOTESC: /* GOTESC state */
  349.   if (c == '[') /* Left bracket after ESC is CSI */
  350.     inesc = ES_GOTCSI; /* Change to GOTCSI state */
  351.   else if (c == 'P' || (c > 0134 && c < 0140)) { /* P, [, ^, or _ */
  352.       inesc = ES_STRING; /* Switch to STRING-absorption state */
  353. #ifdef CK_APC
  354.       if (c == '_' && pid == 0 && /* APC handled in child only */
  355.   apcstatus != APC_OFF) { /* and only if not disabled. */
  356.   debug(F100,"CONNECT APC begin","",0);
  357.   apcactive = APC_REMOTE; /* Set APC-Active flag */
  358.   apclength = 0; /* and reset APC buffer pointer */
  359.       }
  360. #endif /* CK_APC */
  361.   } else if (c > 057 && c < 0177) /* Final character '0' thru '~' */
  362.     inesc = ES_NORMAL; /* Back to normal */
  363.   else if (c != ESC) /* ESC in an escape sequence... */
  364.     inesc = ES_ESCSEQ; /* starts a new escape sequence */
  365.   break; /* Intermediate or ignored ctrl char */
  366. case ES_ESCSEQ: /* ESCSEQ -- in an escape sequence */
  367.   if (c > 057 && c < 0177) /* Final character '0' thru '~' */
  368.     inesc = ES_NORMAL; /* Return to NORMAL state. */
  369.   else if (c == ESC) /* ESC ... */
  370.     inesc = ES_GOTESC; /* starts a new escape sequence */
  371.   break; /* Intermediate or ignored ctrl char */
  372. case ES_GOTCSI: /* GOTCSI -- In a control sequence */
  373.   if (c > 077 && c < 0177) /* Final character '@' thru '~' */
  374.     inesc = ES_NORMAL; /* Return to NORMAL. */
  375.   else if (c == ESC) /* ESC ... */
  376.     inesc = ES_GOTESC; /* starts over. */
  377.   break; /* Intermediate or ignored ctrl char */
  378. case ES_STRING: /* Inside a string */
  379.   if (c == ESC) /* ESC may be 1st char of terminator */
  380.     inesc = ES_TERMIN; /* Go see. */
  381. #ifdef CK_APC
  382.   else if (apcactive && (apclength < apcbuflen)) /* If in APC, */
  383.     apcbuf[apclength++] = c; /* deposit this character. */
  384.   else { /* Buffer overrun */
  385.       apcactive = 0; /* Discard what we got */
  386.       apclength = 0; /* and go back to normal */
  387.       apcbuf[0] = 0; /* Not pretty, but what else */
  388.       inesc = ES_NORMAL; /* can we do?  (ST might not come) */
  389.   }
  390. #endif /* CK_APC */
  391.   break; /* Absorb all other characters. */
  392. case ES_TERMIN: /* May have a string terminator */
  393.   if (c == '\') { /* which must be backslash */
  394.       inesc = ES_NORMAL; /* If so, back to NORMAL */
  395. #ifdef CK_APC
  396.       if (apcactive) { /* If it was an APC string, */
  397.   debug(F101,"CONNECT APC terminated","",c);
  398.   apcbuf[apclength] = NUL; /* terminate it and then ... */
  399.   return(1);
  400.       }
  401. #endif /* CK_APC */
  402.   } else { /* Otherwise */
  403.       inesc = ES_STRING; /* Back to string absorption. */
  404. #ifdef CK_APC
  405.       if (apcactive && (apclength+1 < apcbuflen)) { /* In APC string */
  406.   apcbuf[apclength++] = ESC; /* deposit the Esc character */
  407.   apcbuf[apclength++] = c;   /* and this character too */
  408.       }
  409. #endif /* CK_APC */
  410.   }
  411.       }
  412.     return(0);
  413. }
  414. #endif /* NOESCSEQ */
  415. /* Connect state parent/child communication signal handlers */
  416. /* Routines used by the child process */
  417. static int
  418. pipemsg(n) int n; { /* Send message ID to parent */
  419.     int code = n & 255;
  420.     return(write(xpipe[1], &code, sizeof(code)));
  421. }
  422. /* Environment pointer for CK_FORK_SIG signal handling in child... */
  423. #ifdef CK_POSIX_SIG
  424. static sigjmp_buf sig_env;
  425. #else
  426. static jmp_buf sig_env;
  427. #endif /* CK_POSIX_SIG */
  428. static SIGTYP /* CK_FORK_SIG handling in child ... */
  429. forkint(foo) int foo; {
  430.     /* It is important to disable CK_FORK_SIG before longjmp */
  431.     signal(CK_FORK_SIG, SIG_IGN); /* Set to ignore CK_FORK_SIG */
  432.     debug(F100,"CONNECT forkint - CK_FORK_SIG", "", 0);
  433.     /* Force return from ck_sndmsg() */
  434.     cklongjmp(sig_env, 1);
  435.     /* NOTREACHED */
  436. }
  437. static VOID
  438. ck_sndmsg() { /* Executed by child only ... */
  439.     debug(F100,"CONNECT ck_sndmsg, active", "", active);
  440.     if (
  441. #ifdef CK_POSIX_SIG
  442. sigsetjmp(sig_env,1)
  443. #else
  444. setjmp(sig_env)
  445. #endif /* CK_POSIX_SIG */
  446. == 0) {
  447. debug(F100,"CONNECT ck_sndmsg signaling parent","",0);
  448.         signal(CK_FORK_SIG, forkint); /* Set up signal handler */
  449.         kill(parent_id, CK_FORK_SIG); /* Kick the parent */
  450. debug(F100,"ck_sndmsg pausing","",0);
  451.         for (;;) pause(); /* Wait for CK_FORK_SIG or SIGKILL */
  452. /* NOTREACHED */
  453.     }
  454.     /* We come here from forkint() via [sig]cklongjmp(sig_env,1) */
  455.     debug(F100,"CONNECT ck_sndmsg is parent - returning", "", 0);
  456. }
  457. /* Routines used by the parent process */
  458. #ifdef CK_POSIX_SIG  /* Environment pointer for CONNECT errors */
  459. static sigjmp_buf con_env;
  460. #else
  461. static jmp_buf con_env;
  462. #endif /* CK_POSIX_SIG */
  463. /*
  464.   pipeint() handles CK_FORK_SIG signals from the lower (port) fork.
  465.   It reads a function code from the pipe that connects the two forks,
  466.   then reads additional data from the pipe, then handles it.
  467. */
  468. static SIGTYP
  469. pipeint(arg) int arg; { /* Dummy argument */
  470.     int code, cx, x, i, n;
  471. #ifndef NOCCTRAP
  472.     extern ckjmpbuf cmjbuf;
  473. #endif /* NOCCTRAP */
  474.     /*
  475.       IMPORTANT: At this point, the child fork is waiting for CK_FORK_SIG
  476.       (eventually for SIGKILL) inside of ck_sndmsg().  So we can't get any
  477.       subsequent CK_FORK_SIG from child before we send it CK_FORK_SIG.
  478.     */
  479.     signal(CK_FORK_SIG, SIG_IGN); /* Ignore CK_FORK_SIG now */
  480.     debug(F101,"CONNECT pipeint arg","",arg);
  481.     read(xpipe[0], &code, sizeof(code)); /* Get function code from pipe */
  482.     debug(F101,"CONNECT pipeint code","",code);
  483.     cx = code & 255; /* 8-bit version of function code */
  484. #ifndef NOCCTRAP
  485. #ifndef NOICP
  486. #define USECCJMPBUF
  487. #endif /* NOICP */
  488. #endif /* NOCCTRAP */
  489. /*
  490.   Read info passed back up to us by the lower fork, depending on the function
  491.   requested.  The same number of items must be read from the pipe in the same
  492.   order as the lower fork put them there.  Trying to read something that's not
  493.   there makes the program hang uninterruptibly.  Pay close attention -- notice
  494.   how we fall through some of the cases rather than break; that's deliberate.
  495. */
  496.     switch (cx) {
  497. #ifdef CK_TRIGGER
  498.       case CEV_TRI: /* Trigger string */
  499. debug(F100,"CONNECT trigger","",0);
  500. read(xpipe[0], (char *)&i, sizeof(i)); /* Trigger index */
  501. debug(F101,"CONNECT trigger index","",i);
  502. makestr(&triggerval,tt_trigger[i]); /* Make a copy of the trigger */
  503. debug(F110,"CONNECT triggerval",triggerval,0);
  504. read(xpipe[0], (char *)&ibc, sizeof(ibc)); /* Copy child's */
  505. debug(F101,"CONNECT trigger ibc (upper)","",ibc); /* input buffer. */
  506. if (ibc > 0) {
  507.     read(xpipe[0], (char *)&ibp, sizeof(ibp));
  508.     read(xpipe[0], ibp, ibc);
  509. }
  510. /* Fall thru... */
  511. #endif /* CK_TRIGGER */
  512.       case CEV_HUP:
  513. /*
  514.   The CEV_HUP case is executed when the other side has hung up on us.
  515.   In some cases, this happens before we have had a chance to execute the
  516.   setjmp(con_env,1) call, and in that case we'd better not take the longjmp!
  517.   A good example is when you TELNET to port 13 on the local host; it prints
  518.   its asctime() string (26 chars) and then closes the connection.
  519. */
  520. #ifdef CK_TRIGGER
  521. if (cx == CEV_TRI)
  522.   sjval = CEV_TRI; /* Set global variable. */
  523. else
  524. #endif /* CK_TRIGGER */
  525.   sjval = CEV_HUP;
  526. if (jbset) { /* jmp_buf is initialized */
  527.     cklongjmp(con_env,sjval); /* so do the right thing. */
  528. } else {
  529.     int x = 0;
  530. #ifdef USECCJMPBUF
  531.     /* jmp_buf not init'd yet a close approximation... */
  532. #ifdef CK_TRIGGER
  533.     if (cx == CEV_HUP)
  534. #endif /* CK_TRIGGER */
  535.       ttclos(0); /* Close our end of the connection */
  536.     if (pid) {
  537. debug(F101,"CONNECT trigger killing pid","",pid);
  538. #ifdef BEOSORBEBOX
  539. {
  540.     long ret_val;
  541.     x = kill(pid,SIGKILLTHR); /* Kill lower fork */
  542.     wait_for_thread (pid, &ret_val);
  543. }
  544. #else
  545. #ifdef Plan9
  546. x = kill(pid, SIGKILL); /* (should always use this really) */
  547. #else
  548. x = kill(pid,9); /* Kill lower fork (history) */
  549. #endif /* Plan9 */
  550. wait((WAIT_T *)0); /* Wait till gone. */
  551. if (x < 0) {
  552.     printf("ERROR: Failure to kill pid %d: %s, errno=%dn",
  553.    (int) pid, ck_errstr(), errno);
  554.     debug(F111,"CONNECT error killing stale pid",
  555.   ck_errstr(),errno);
  556. }
  557. pid = (PID_T) 0;
  558. #endif /* BEOSORBEBOX */
  559.     }
  560.     conres(); /* Reset the console. */
  561.     if (!quiet) {
  562. printf("rn(Back at %s)rn",
  563.        *myhost ? myhost :
  564. #ifdef UNIX
  565.        "local UNIX system"
  566. #else
  567.        "local system"
  568. #endif /* UNIX */
  569.        );
  570.     }
  571.     what = W_NOTHING; /* So console modes are set right. */
  572.     printf("rn"); /* prevent prompt-stomping */
  573.     cklongjmp(cmjbuf,0); /* Do what the Ctrl-C handler does */
  574. #else
  575.     printf("rnLongjump failure - fatalrn");
  576.     doexit(GOOD_EXIT,-1); /* Better than dumping core... */
  577. #endif /* USECCJMPBUF */
  578. }
  579. #ifdef USECCJMPBUF
  580. #undef USECCJMPBUF
  581. #endif /* USECCJMPBUF */
  582.       case CEV_DUP: /* Child sends duplex change */
  583. read(xpipe[0], (char *)&duplex, sizeof(duplex));
  584. debug(F101,"CONNECT pipeint duplex","",duplex);
  585. break;
  586. #ifdef TNCODE
  587.       case CEV_MEBIN: /* Child sends me_binary change */
  588. read(xpipe[0],
  589.      (char *)&TELOPT_ME(TELOPT_BINARY),
  590.      sizeof(TELOPT_ME(TELOPT_BINARY))
  591.      );
  592. debug(F101,"CONNECT pipeint me_binary","",TELOPT_ME(TELOPT_BINARY));
  593. break;
  594.       case CEV_UBIN: /* Child sends u_binary change */
  595. read(xpipe[0],
  596.      (char *)&TELOPT_U(TELOPT_BINARY),
  597.      sizeof(TELOPT_U(TELOPT_BINARY))
  598.      );
  599. debug(F101,"CONNECT pipeint u_binary","",TELOPT_U(TELOPT_BINARY));
  600. break;
  601. #endif /* TNCODE */
  602. #ifdef CK_APC
  603.       case CEV_AUL: /* Autoupload */
  604. justone = 1;
  605. debug(F100,"CONNECT autoupload at parent","",0);
  606. #ifdef CK_AUTODL
  607.       case CEV_ADL: /* Autodownload */
  608. apcstatus = APC_LOCAL;
  609. if (!justone) debug(F100,"CONNECT autodownload at parent","",0);
  610. /* Copy child's Kermit packet if any */
  611. read(xpipe[0], (char *)&x, sizeof(x));
  612. debug(F101,"CONNECT trigger ibc (upper)","",ibc);
  613. if (x > 0)
  614.   read(xpipe[0], (char *)ksbuf, x+1);
  615. #endif /* CK_AUTODL */
  616.       case CEV_APC: /* Application Program Command */
  617. read(xpipe[0], (char *)&apclength, sizeof(apclength));
  618. read(xpipe[0], apcbuf, apclength+1); /* Include trailing zero byte */
  619. debug(F111,"CONNECT APC at parent",apcbuf,apclength);
  620. read(xpipe[0], (char *)&ibc, sizeof(ibc)); /* Copy child's */
  621. if (ibc > 0) {    /* input buffer. */
  622.     read(xpipe[0], (char *)&ibp, sizeof(ibp));
  623.     read(xpipe[0], ibp, ibc);
  624. }
  625. obc = 0; obp = obuf; *obuf = NUL; /* Because port fork flushed */
  626. sjval = CEV_APC;
  627. cklongjmp(con_env,sjval);
  628. /* NOTREACHED */
  629. #endif /* CK_APC */
  630. #ifdef SUNX25
  631.       case CEV_PAD: /* X.25 PAD parameter change */
  632. debug(F100,"CONNECT pipeint PAD change","",0);
  633. read(xpipe[0],padparms,MAXPADPARMS);
  634. sjval = CEV_PAD; /* Set global variable. */
  635. #ifdef COMMENT /* We might not need to do this... */
  636. cklongjmp(con_env,sjval);
  637. /* NOTREACHED */
  638. #else  /* COMMENT */
  639. break;
  640. #endif /* COMMENT */
  641. #endif /* SUNX25 */
  642.     }
  643.     signal(CK_FORK_SIG, pipeint); /* Set up signal handler */
  644.     kill(pid, CK_FORK_SIG); /* Signal the port fork ... */
  645. }
  646. /*  C K C P U T C  --  C-Kermit CONNECT Put Character to Screen  */
  647. /*
  648.   Output is buffered to avoid slow screen writes on fast connections.
  649.   NOTE: These could (easily?) become macros ...
  650. */
  651. static int
  652. ckcputf() { /* Dump the output buffer */
  653.     int x = 0;
  654.     if (obc > 0) /* If we have any characters, */
  655.       x = conxo(obc,obuf); /* dump them, */
  656.     obp = obuf; /* reset the pointer */
  657.     obc = 0; /* and the counter. */
  658.     return(x); /* Return conxo's return code */
  659. }
  660. int
  661. ckcputc(c) int c; {
  662.     int x;
  663.     *obp++ = c & 0xff; /* Deposit the character */
  664.     obc++; /* Count it */
  665.     if (ibc == 0 || /* If input buffer about empty */
  666. obc == OBUFL) { /* or output buffer full */
  667. debug(F101,"CONNECT CKCPUTC obc","",obc);
  668. x = conxo(obc,obuf); /* dump the buffer, */
  669. obp = obuf; /* reset the pointer */
  670. obc = 0; /* and the counter. */
  671. return(x); /* Return conxo's return code */
  672.     } else return(0);
  673. }
  674. /*  C K C G E T C  --  C-Kermit CONNECT Get Character  */
  675. /*
  676.   Buffered read from communication device.
  677.   Returns the next character, refilling the buffer if necessary.
  678.   On error, returns ttinc's return code (see ttinc() description).
  679.   Dummy argument for compatible calling conventions with ttinc().
  680.   NOTE: We don't have a macro for this because we have to pass
  681.   a pointer to this function as an argument to tn_doop().
  682. */
  683. int
  684. ckcgetc(dummy) int dummy; {
  685.     int c, n;
  686. #ifdef COMMENT
  687. /* too much */
  688.     debug(F101,"CONNECT CKCGETC 1 ibc","",ibc); /* Log */
  689. #endif /* COMMENT */
  690.     if (ibc < 1) { /* Need to refill buffer? */
  691. ibc = 0; /* Yes, reset count */
  692. ibp = ibuf; /* and buffer pointer */
  693. /* debug(F100,"CONNECT CKCGETC 1 calling ttinc(0)","",0); */
  694. #ifdef COMMENT
  695. /*
  696.   This check is not worth the overhead.  Scenario: ttchk() returns 0, so we
  697.   fall through to the blocking ttinc().  While in ttinc(), the connection is
  698.   lost.  But the read() that ttinc() calls does not notice, and never returns.
  699.   This happens at least in HP-UX, and can be seen when we turn off the modem.
  700. */
  701. if (!network && (carrier != CAR_OFF))
  702.   if ((n = ttchk()) < 0) /* Make sure connection is not lost */
  703.     return(n);
  704. #endif /* COMMENT */
  705. c = ttinc(0); /* Read one character, blocking */
  706. /* debug(F101,"CONNECT CKCGETC 1 ttinc(0)","",c); */
  707. if (c < 0) { /* If error, return error code */
  708.     return(c);
  709. } else { /* Otherwise, got one character */
  710.     *ibp++ = c; /* Advance buffer pointer */
  711.     ibc++; /* and count. */
  712. }
  713. if ((n = ttchk()) > 0) { /* Any more waiting? */
  714.     if (n > (IBUFL - ibc)) /* Get them all at once. */
  715.       n = IBUFL - ibc; /* Don't overflow buffer */
  716.     if ((n = ttxin(n,(CHAR *)ibp)) > 0) {
  717. #ifdef CK_ENCRYPTION
  718. if (TELOPT_U(TELOPT_ENCRYPTION))
  719.   ck_tn_decrypt(ibp,n);
  720. #endif /* CK_ENCRYPTION */
  721. ibc += n; /* Advance counter */
  722.     }
  723. } else if (n < 0) { /* Error? */
  724.     return(n); /* Return the error code */
  725. }
  726. debug(F101,"CONNECT CKCGETC 2 ibc","",ibc); /* Log how many */
  727. ibp = ibuf; /* Point to beginning of buffer */
  728.     }
  729.     c = *ibp++ & 0xff; /* Get next character from buffer */
  730.     ibc--; /* Reduce buffer count */
  731.     return(c); /* Return the character */
  732. }
  733. /*
  734.    Keyboard handling, buffered for speed, which is needed when C-Kermit is
  735.    in CONNECT mode between two other computers that are transferring data.
  736. */
  737. static char *kbp; /* Keyboard input buffer pointer */
  738. static int kbc; /* Keyboard input buffer count */
  739. #ifdef CK_SMALL /* Keyboard input buffer length */
  740. #define KBUFL 32 /* Small for PDP-11 UNIX */
  741. #else
  742. #define KBUFL 257 /* Regular kernel size for others */
  743. #endif /* CK_SMALL */
  744. #ifdef DYNAMIC
  745. static char *kbuf = NULL;
  746. #else
  747. static char kbuf[KBUFL];
  748. #endif /* DYNAMIC */
  749. /* Macro for reading keystrokes. */
  750. #define CONGKS() (((--kbc)>=0) ? ((int)(*kbp++) & 0377) : kbget())
  751. /*
  752.   Note that we call read() directly here, normally a no-no, but in this case
  753.   we know it's UNIX and we're only doing what coninc(0) would have done,
  754.   except we're reading a block of characters rather than just one.  There is,
  755.   at present, no conxin() analog to ttxin() for chunk reads, and instituting
  756.   one would only add function-call overhead as it would only be a wrapper for
  757.   a read() call anyway.
  758. */
  759. /*
  760.   Another note: We stick in this read() till the user types something.
  761.   But the other (lower) fork is running too, and on TELNET connections,
  762.   it will signal us to indicate echo-change negotiations, and this can
  763.   interrupt the read().  Some UNIXes automatically restart the interrupted
  764.   system call, others return from it with errno == EINTR.
  765. */
  766. static int /* Keyboard buffer filler */
  767. kbget() {
  768. #ifdef EINTR
  769.     int tries = 10; /* If read() is interrupted, */
  770.     int ok = 0;
  771.     while (tries-- > 0) { /* try a few times... */
  772. #endif /* EINTR */
  773. if ((kbc = conchk()) < 1) /* How many chars waiting? */
  774.   kbc = 1; /* If none or dunno, wait for one. */
  775. else if (kbc > KBUFL) /* If too many, */
  776.   kbc = KBUFL; /* only read this many. */
  777. if ((kbc = read(0, kbuf, kbc)) < 1) { /* Now read it/them. */
  778.     debug(F101,"CONNECT kbget errno","",errno); /* Got an error. */
  779. #ifdef EINTR
  780.     if (errno == EINTR) /* Interrupted system call. */
  781.       continue; /* Try again, up to limit. */
  782.     else /* Something else. */
  783. #endif /* EINTR */
  784.       return(-1); /* Pass along read() error. */
  785. }
  786. #ifdef EINTR
  787. else { ok = 1; break; }
  788.     }
  789.     if (!ok) return(-1);
  790. #endif /* EINTR */
  791.     kbp = kbuf; /* Adjust buffer pointer, */
  792.     kbc--; /* count, */
  793.     return((int)(*kbp++) & 0377); /* and return first character. */
  794. }
  795. /*  C O N C L D --  Interactive terminal connection child function */
  796. static
  797. #ifdef BEOSORBEBOX
  798. long
  799. #else
  800. VOID
  801. #endif /* BEOSORBEBOX */
  802. concld (
  803. #ifdef BEOSORBEBOX
  804.        void *bevoid
  805. #endif /* BEOSORBEBOX */
  806.        ) {
  807.     int n; /* General purpose counter */
  808.     int i; /* For loops... */
  809.     int c; /* c is a character, but must be signed
  810.    integer to pass thru -1, which is the
  811.    modem disconnection signal, and is
  812.    different from the character 0377 */
  813.     int c2; /* A copy of c */
  814.     int csave; /* Another copy of c */
  815.     int tx; /* tn_doop() return code */
  816. #ifdef CK_TRIGGER
  817.     int ix; /* Trigger index */
  818. #endif /* CK_TRIGGER */
  819. #ifndef NOESCSEQ
  820.     int apcrc;
  821. #endif /* NOESCSEQ */
  822.     int conret = 0; /* Return value from conect() */
  823.     /* jbchksum = -1L; */
  824.     jbset = 0; /* jmp_buf not set yet, don't use it */
  825.     debug(F101,"CONNECT concld entry","",CK_FORK_SIG);
  826.   /* *** */ /* Inferior reads, prints port input */
  827.     if (priv_can()) { /* Cancel all privs */
  828. printf("?setuid error - fataln");
  829. doexit(BAD_EXIT,-1);
  830.     }
  831.     signal(SIGINT, SIG_IGN); /* In case these haven't been */
  832.     signal(SIGQUIT, SIG_IGN); /* inherited from above... */
  833.     signal(CK_FORK_SIG, SIG_IGN); /* CK_FORK_SIG not expected yet */
  834.     inshift = outshift = 0; /* Initial SO/SI shift state. */
  835.     { /* Wait for parent's setup */
  836. int i;
  837. while ((i = read(xpipe[0], &c, 1)) <= 0) {
  838.     if (i < 0) {
  839. debug(F101,"CONNECT concld setup error","",i);
  840. debug(F111,"CONNECT concld setup error",ck_errstr(),errno);
  841. pipemsg(CEV_HUP); /* Read error - hangup */
  842. ck_sndmsg(); /* Send and wait to be killed */
  843. /* NOTREACHED */
  844.     } /* Restart interrupted read() */
  845. }
  846.     }
  847.     close(xpipe[0]); xpipe[0] = -1; /* Child - prevent future reads */
  848. #ifdef DEBUG
  849.     if (deblog) {
  850. debug(F100,"CONNECT starting port fork","",0);
  851. debug(F101,"CONNECT port fork ibc","",ibc);
  852. debug(F101,"CONNECT port fork obc","",obc);
  853.     }
  854. #endif /* DEBUG */
  855.     what = W_CONNECT;
  856.     while (1) { /* Fresh read, wait for a character. */
  857. #ifdef ANYX25
  858. if (network && (nettype == NET_SX25)) {
  859.     bzero(x25ibuf,sizeof(x25ibuf)) ;
  860.     if ((ibufl = ttxin(MAXIX25,(CHAR *)x25ibuf)) < 0) {
  861. #ifndef IBMX25
  862. if (ibufl == -2) {  /* PAD parms changes */
  863.     pipemsg(CEV_PAD);
  864.     write(xpipe[1],padparms,MAXPADPARMS);
  865.     ck_sndmsg();
  866. } else {
  867. #endif /* IBMX25 */
  868.     if (!quiet)
  869.       printf("rnCommunications disconnect ");
  870.     pipemsg(CEV_HUP);
  871.     ck_sndmsg(); /* Wait to be killed */
  872.     /* NOTREACHED */
  873. #ifndef IBMX25
  874.    }
  875. #endif /* IBMX25 */
  876. /* pause(); <--- SHOULD BE OBSOLETE NOW! */
  877. /* BECAUSE pause() is done inside of ck_sndmsg() */
  878.     }
  879.     if (debses) { /* Debugging output */
  880. p = x25ibuf ;
  881. while (ibufl--) { c = *p++; conol(dbchr(c)); }
  882.     } else {
  883. if (seslog && sessft) /* Binary session log */
  884.   logchar((char)c); /* Log char before translation */
  885. if (sosi
  886. #ifndef NOCSETS
  887.     || tcsl != tcsr
  888. #endif /* NOCSETS */
  889.     ) { /* Character at a time */
  890.     for (i = 1; i < ibufl; i++) {
  891. c = x25ibuf[i] & cmask;
  892. if (sosi) { /* Handle SI/SO */
  893.     if (c == SO) {
  894. inshift = 1;
  895. continue;
  896.     } else if (c == SI) {
  897. inshift = 0;
  898. continue;
  899.     }
  900.     if (inshift)
  901.       c |= 0200;
  902. }
  903. #ifndef NOCSETS
  904. if (inesc == ES_NORMAL) {
  905. #ifdef UNICODE
  906.     int x;
  907.     if (unicode == 1) { /* Remote is UTF-8 */
  908. x = u_to_b((CHAR)c);
  909. debug(F101,"XXX conect u_to_b","",x);
  910.         if (x == -1)
  911.   continue;
  912. else if (x == -2) { /* LS or PS */
  913.     inxbuf[0] = CR;
  914.     inxbuf[1] = LF;
  915.     inxcount = 2;
  916. } else {
  917.     inxbuf[0] = (unsigned)(x & 0xff);
  918. }
  919. c = inxbuf[0];
  920.     } else if (unicode == 2) { /* Local is UTF-8 */
  921. inxcount =
  922.   b_to_u((CHAR)c,inxbuf,OUTXBUFSIZ,tcssize);
  923. c = inxbuf[0];
  924.     } else {
  925. #endif /* UNICODE */
  926. if (sxi) c = (*sxi)((CHAR)c);
  927. if (rxi) c = (*rxi)((CHAR)c);
  928. inxbuf[0] = c;
  929. #ifdef UNICODE
  930.     }
  931. #endif /* UNICODE */
  932. }
  933. #endif /* NOCSETS */
  934. c &= cmdmsk; /* Apply command mask. */
  935. conoc(c);    /* Output to screen */
  936. if (seslog && !sessft) /* and session log */
  937.   logchar(c);
  938.     }
  939. } else { /* All at once */
  940.     for (i = 1; i < ibufl; i++)
  941.       x25ibuf[i] &= (cmask & cmdmsk);
  942.     conxo(ibufl,x25ibuf);
  943.     if (seslog) zsoutx(ZSFILE,x25ibuf,ibufl);
  944. }
  945.     }
  946.     continue;
  947. } else { /* Not X.25... */
  948. #endif /* ANYX25 */
  949. /*
  950.   Get the next communication line character from our internal buffer.
  951.   If the buffer is empty, refill it.
  952. */
  953.     c = ckcgetc(0); /* Get next character */
  954.     /* debug(F101,"CONNECT c","",c); */
  955.     if (c < 0) { /* Failed... */
  956. debug(F101,"CONNECT disconnect ibc","",ibc);
  957. debug(F101,"CONNECT disconnect obc","",obc);
  958. ckcputf(); /* Flush CONNECT output buffer */
  959. if (!quiet) {
  960.     printf("rnCommunications disconnect ");
  961. #ifdef COMMENT
  962.     if ( c == -3
  963. #ifdef ultrix
  964. /* This happens on Ultrix if there's no carrier */
  965. && errno != EIO
  966. #endif /* ultrix */
  967. #ifdef UTEK
  968. /* This happens on UTEK if there's no carrier */
  969. && errno != EWOULDBLOCK
  970. #endif /* UTEK */
  971. )
  972.       perror("rnCan't read character");
  973. #endif /* COMMENT */
  974. }
  975. #ifdef NOSETBUF
  976. fflush(stdout);
  977. #endif /* NOSETBUF */
  978. tthang(); /* Hang up the connection */
  979. debug(F111,"CONNECT concld i/o error",ck_errstr(),errno);
  980. pipemsg(CEV_HUP);
  981. ck_sndmsg(); /* Wait to be killed */
  982.     }
  983. #ifdef COMMENT
  984. /* too much... */
  985.     debug(F101,"CONNECT ** PORT","",c); /* Got character c OK. */
  986. #endif /* COMMENT */
  987. #ifdef TNCODE
  988.     /* Handle TELNET negotiations... */
  989.     if ((c == IAC) && network && (ttnproto == NP_TELNET)) {
  990. int me_bin = TELOPT_ME(TELOPT_BINARY);
  991. int u_bin = TELOPT_U(TELOPT_BINARY);
  992. debug(F100,"CONNECT got IAC","",0);
  993. ckcputf(); /* Dump screen-output buffer */
  994. if ((tx = tn_doop((CHAR)(c & 0xff),duplex,ckcgetc)) == 0) {
  995.     if (me_bin != TELOPT_ME(TELOPT_BINARY)) {
  996. debug(F101,
  997.       "CONNECT TELNET me_bin",
  998.       "",
  999.       TELOPT_ME(TELOPT_BINARY)
  1000.       );
  1001. pipemsg(CEV_MEBIN); /* Tell parent */
  1002. write(xpipe[1],
  1003.       &TELOPT_ME(TELOPT_BINARY),
  1004.       sizeof(TELOPT_ME(TELOPT_BINARY))
  1005.       );
  1006. ck_sndmsg(); /* Tell the parent fork */
  1007.     } else if (u_bin != TELOPT_U(TELOPT_BINARY)) {
  1008. debug(F101,
  1009.       "CONNECT TELNET u_bin",
  1010.       "",
  1011.       TELOPT_U(TELOPT_BINARY)
  1012.       );
  1013. pipemsg(CEV_UBIN); /* Tell parent */
  1014. write(xpipe[1],
  1015.       &TELOPT_U(TELOPT_BINARY),
  1016.       sizeof(TELOPT_U(TELOPT_BINARY))
  1017.       );
  1018. ck_sndmsg(); /* Tell the parent fork */
  1019.     }
  1020.     continue;
  1021. } else if (tx == -1) { /* I/O error */
  1022.     if (!quiet)
  1023.       printf("rnCommunications disconnect ");
  1024. #ifdef NOSETBUF
  1025.     fflush(stdout);
  1026. #endif /* NOSETBUF */
  1027.     debug(F111,"CONNECT concld i/o error 2",ck_errstr(),errno);
  1028.     pipemsg(CEV_HUP);
  1029.     ck_sndmsg(); /* Wait to be killed */
  1030.     /* NOTREACHED */
  1031. } else if (tx == -3) { /* I/O error */
  1032.     if (!quiet)
  1033.       printf("rnConnection closed due to telnet policy ");
  1034. #ifdef NOSETBUF
  1035.     fflush(stdout);
  1036. #endif /* NOSETBUF */
  1037.     debug(F111,"CONNECT concld i/o error 2",ck_errstr(),errno);
  1038.     pipemsg(CEV_HUP);
  1039.     ck_sndmsg(); /* Wait to be killed */
  1040.     /* NOTREACHED */
  1041. } else if (tx == -2) { /* I/O error */
  1042.     if (!quiet)
  1043.       printf("rnConnection closed by peer ");
  1044. #ifdef NOSETBUF
  1045.     fflush(stdout);
  1046. #endif /* NOSETBUF */
  1047.     debug(F111,"CONNECT concld i/o error 2",ck_errstr(),errno);
  1048.     pipemsg(CEV_HUP);
  1049.     ck_sndmsg(); /* Wait to be killed */
  1050.     /* NOTREACHED */
  1051. } else if ((tx == 1) && (!duplex)) { /* ECHO change */
  1052.     duplex = 1; /* Turn on local echo */
  1053.     debug(F101,"CONNECT TELNET duplex change","",duplex);
  1054.     pipemsg(CEV_DUP); /* Tell parent */
  1055.     write(xpipe[1], &duplex, sizeof(duplex));
  1056.     ck_sndmsg(); /* Tell the parent fork */
  1057.     continue;
  1058. } else if ((tx == 2) && (duplex)) { /* ECHO change */
  1059.     duplex = 0;
  1060.     debug(F101,"CONNECT TELNET duplex change","",duplex);
  1061.     pipemsg(CEV_DUP);
  1062.     write(xpipe[1], &duplex, sizeof(duplex));
  1063.     ck_sndmsg();
  1064.     continue;
  1065. } else if (tx == 3) { /* Quoted IAC */
  1066.     c = parity ? 127 : 255;
  1067. }
  1068. #ifdef IKS_OPTION
  1069.                 else if (tx == 4) {   /* IKS State Change */
  1070.                     if (TELOPT_SB(TELOPT_KERMIT).kermit.u_start &&
  1071. !tcp_incoming
  1072. ) {
  1073.                         /* here we need to print a msg that the other */
  1074.                         /* side is in SERVER mode and that REMOTE     */
  1075.                         /* commands should be used.  And CONNECT mode */
  1076.                         /* should be ended.                           */
  1077. active = 0;
  1078.     }
  1079. }
  1080. #endif /* IKS_OPTION */
  1081.                 else if (tx == 6) {
  1082.                     /* DO LOGOUT received */
  1083.     if (!quiet)
  1084.       printf("rnRemote Logout ");
  1085. #ifdef NOSETBUF
  1086.     fflush(stdout);
  1087. #endif /* NOSETBUF */
  1088.     debug(F100,"CONNECT Remote Logout","",0);
  1089.     pipemsg(CEV_HUP);
  1090.     ck_sndmsg(); /* Wait to be killed */
  1091.     /* NOTREACHED */
  1092.                 } else
  1093.   continue; /* Negotiation OK, get next char. */
  1094.     } else if (parity)
  1095.       c &= 0x7f;
  1096.             if (TELOPT_ME(TELOPT_ECHO) && tn_rem_echo)
  1097.                 ttoc(c);                /* I'm echoing for the remote */
  1098. #endif /* TNCODE */
  1099.     if (debses) { /* Output character to screen */
  1100. char *s; /* Debugging display... */
  1101. s = dbchr(c);
  1102. while (*s)
  1103.   ckcputc(*s++);
  1104.     } else { /* Regular display ... */
  1105. c &= cmask; /* Apply Kermit-to-remote mask */
  1106. #ifdef CK_AUTODL
  1107. /*
  1108.   Autodownload.  Check for Kermit S packet prior to translation, since that
  1109.   can change the packet and make it unrecognizable (as when the terminal
  1110.   character set is an ISO 646 one)...  Ditto for Zmodem start packet.
  1111. */
  1112. if (autodl /* Autodownload enabled? */
  1113. #ifdef IKS_OPTION
  1114.     || TELOPT_SB(TELOPT_KERMIT).kermit.me_start
  1115. #endif /* IKS_OPTION */
  1116.     ) {
  1117.     int k;
  1118.     k = kstart((CHAR)c); /* Kermit S or I packet? */
  1119. #ifdef CK_XYZ
  1120.     if (!k && zmdlok) /* Or an "sz" start? */
  1121.       k = zstart((CHAR)c);
  1122. #endif /* CK_XYZ */
  1123.     if (k) {
  1124. int ksign = 0;
  1125. debug(F101,"CONNECT autodownload k","",k);
  1126. if (k < 0) { /* Minus-Protocol? */
  1127. #ifdef NOSERVER
  1128.     goto noserver; /* Need server mode for this */
  1129. #else
  1130.     ksign = 1; /* Remember */
  1131.     k = 0 - k; /* Convert to actual protocol */
  1132.     justone = 1; /* Flag for protocol module */
  1133. #endif /* NOSERVER */
  1134. } else
  1135.   justone = 0;
  1136. k--; /* Adjust [kz]start's return value */
  1137. if (k == PROTO_K
  1138. #ifdef CK_XYZ
  1139.     || k == PROTO_Z
  1140. #endif /* CK_XYZ */
  1141.     ) {
  1142.                             /* Now damage the packet so that it does not   */
  1143.                             /* trigger autodownload detection on subsquent */
  1144.                             /* links.                                      */
  1145.                             if (k == PROTO_K) {
  1146.                                 int i, len = strlen((char*)ksbuf);
  1147.                                 for (i = 0; i < len; i++)
  1148.   ckcputc(BS);
  1149.                             }
  1150. #ifdef CK_XYZ
  1151.                             else {
  1152.                                 int i;
  1153.                                 for (i = 0; i < 3; i++)
  1154.   ckcputc(CAN);
  1155.                             }
  1156. #endif /* CK_XYZ */
  1157.     /* Notify parent */
  1158.     pipemsg(justone ? CEV_AUL : CEV_ADL);
  1159. /*
  1160.   Send our memory back up to the top fork thru the pipe.
  1161.   CAREFUL -- Write this stuff in the same order it is to be read!
  1162. */
  1163.     /* Copy our Kermit packet to the parent fork */
  1164.     n = (int) strlen((char *)ksbuf);
  1165.     write(xpipe[1], (char *)&n, sizeof(n));
  1166.     if (n > 0)
  1167.       write(xpipe[1], (char *)ksbuf, n+1);
  1168.     debug(F111,"CONNECT autodownload ksbuf",ksbuf,n);
  1169.     debug(F101,"CONNECT autodownload justone","",
  1170.   justone);
  1171.     /* Construct the APC command */
  1172.     sprintf(apcbuf,
  1173.     "set proto %s, %s, set proto %s",
  1174.     ptab[k].p_name,
  1175.     ksign ? "server" : "receive",
  1176.     ptab[protocol].p_name
  1177.     );
  1178.     apclength = strlen(apcbuf);
  1179.     debug(F111,"CONNECT ksbuf",ksbuf,k);
  1180.     debug(F110,"CONNECT autodownload",apcbuf,0);
  1181.     apcactive = APC_LOCAL;
  1182.     ckcputf(); /* Force screen update */
  1183.     /* Write buffer including trailing NUL byte */
  1184.     debug(F101,"CONNECT write xpipe apclength","",
  1185.   apclength);
  1186.     write(xpipe[1],
  1187.   (char *)&apclength,
  1188.   sizeof(apclength)
  1189.   );
  1190.     debug(F110,"CONNECT write xpipe apcbuf",apcbuf,0);
  1191.     write(xpipe[1], apcbuf, apclength+1);
  1192.     /* Copy our input buffer to the parent fork */
  1193.     debug(F101,"CONNECT autodownload complete ibc",
  1194.   "",ibc);
  1195.     debug(F101,"CONNECT autodownload complete obc",
  1196.   "",obc);
  1197.     write(xpipe[1], (char *)&ibc, sizeof(ibc));
  1198.     if (ibc > 0) {
  1199. write(xpipe[1], (char *)&ibp, sizeof(ibp));
  1200. write(xpipe[1], ibp, ibc);
  1201.     }
  1202.     ck_sndmsg(); /* Wait to be killed */
  1203.     /* NOTREACHED */
  1204. }
  1205.     }
  1206. }
  1207. #ifdef NOSERVER
  1208.       noserver:
  1209. #endif /* NOSERVER */
  1210. #endif /* CK_AUTODL */
  1211. if (sosi) { /* Handle SI/SO */
  1212.     if (c == SO) { /* Shift Out */
  1213. inshift = 1;
  1214. continue;
  1215.     } else if (c == SI) { /* Shift In */
  1216. inshift = 0;
  1217. continue;
  1218.     }
  1219.     if (inshift) c |= 0200;
  1220. }
  1221. inxbuf[0] = c; /* In case there is no translation */
  1222. inxcount = 1; /* ... */
  1223. #ifndef NOCSETS
  1224. if (inesc == ES_NORMAL) { /* If not in an escape sequence */
  1225. #ifdef UNICODE
  1226.     int x; /* Translate character sets */
  1227.     CHAR ch;
  1228.     ch = c;
  1229.     if (unicode == 1) { /* Remote is UTF-8 */
  1230. x = u_to_b(ch);
  1231. if (x < 0)
  1232.   continue;
  1233. inxbuf[0] = (unsigned)(x & 0xff);
  1234. c = inxbuf[0];
  1235.     } else if (unicode == 2) { /* Local is UTF-8 */
  1236. inxcount = b_to_u(ch,inxbuf,OUTXBUFSIZ,tcssize);
  1237. c = inxbuf[0];
  1238.     } else {
  1239. #endif /* UNICODE */
  1240. if (sxi) c = (*sxi)((CHAR)c);
  1241. if (rxi) c = (*rxi)((CHAR)c);
  1242. inxbuf[0] = c;
  1243. #ifdef UNICODE
  1244.     }
  1245. #endif /* UNICODE */
  1246. }
  1247. #endif /* NOCSETS */
  1248. #ifndef NOESCSEQ
  1249. if (escseq) /* If handling escape sequences */
  1250.   apcrc = chkaes((char)c); /* update our state */
  1251. #ifdef CK_APC
  1252. /*
  1253.   If we are handling APCs, we have several possibilities at this point:
  1254.    1. Ordinary character to be written to the screen.
  1255.    2. An Esc; we can't write it because it might be the beginning of an APC.
  1256.    3. The character following an Esc, in which case we write Esc, then char,
  1257.       but only if we have not just entered an APC sequence.
  1258. */
  1259. if (escseq && apcstatus != APC_OFF) {
  1260.     if (inesc == ES_GOTESC) /* Don't write ESC yet */
  1261.       continue;
  1262.     else if (oldesc == ES_GOTESC && !apcactive) {
  1263. ckcputc(ESC); /* Write saved ESC */
  1264. if (seslog && !sessft)
  1265.   logchar((char)ESC);
  1266.     } else if (apcrc) { /* We have an APC */
  1267. debug(F111,"CONNECT APC complete",apcbuf,apclength);
  1268. ckcputf(); /* Force screen update */
  1269. pipemsg(CEV_APC); /* Notify parent */
  1270. write(xpipe[1],
  1271.       (char *)&apclength,
  1272.       sizeof(apclength)
  1273.       );
  1274. /* Write buffer including trailing NUL byte */
  1275. write(xpipe[1], apcbuf, apclength+1);
  1276. /* Copy our input buffer to the parent fork */
  1277. debug(F101,"CONNECT APC complete ibc","",ibc);
  1278. debug(F101,"CONNECT APC complete obc","",obc);
  1279. write(xpipe[1], (char *)&ibc, sizeof(ibc));
  1280. if (ibc > 0) {
  1281.     write(xpipe[1], (char *)&ibp, sizeof(ibp));
  1282.     write(xpipe[1], ibp, ibc);
  1283. }
  1284. ck_sndmsg(); /* Wait to be killed */
  1285. /* NOTREACHED */
  1286.     }
  1287. }
  1288. #endif /* CK_APC */
  1289. #endif /* NOESCSEQ */
  1290. for (i = 0; i < inxcount; i++) { /* Loop thru */
  1291.     c = inxbuf[i]; /* input expansion buffer... */
  1292.     if (
  1293. #ifdef CK_APC
  1294. !apcactive /* Ignore APC sequences */
  1295. #else
  1296. 1
  1297. #endif /* CK_APC */
  1298. ) {
  1299. c &= cmdmsk; /* Apply command mask. */
  1300. if (c == CR && tt_crd) { /* SET TERM CR-DISPLA CRLF? */
  1301.     ckcputc(c); /* Yes, output CR */
  1302.     if (seslog && !sessft)
  1303.       logchar((char)c);
  1304.     c = LF; /* and insert a linefeed */
  1305. }
  1306. ckcputc(c); /* Write character to screen */
  1307.     }
  1308.     if (seslog && !sessft) /* Handle session log */
  1309.       logchar((char)c);
  1310. #ifdef CK_TRIGGER
  1311.     /* Check for trigger string */
  1312.     if (tt_trigger[0]) if ((ix = autoexitchk((CHAR)c)) > -1) {
  1313. ckcputf(); /* Force screen update */
  1314. #ifdef NOSETBUF
  1315. fflush(stdout); /* I mean really force it */
  1316. #endif /* NOSETBUF */
  1317. pipemsg(CEV_TRI); /* Send up trigger indication */
  1318. write(xpipe[1], (char *)&ix, sizeof(ix)); /* index */
  1319. write(xpipe[1], (char *)&ibc, sizeof(ibc));
  1320. if (ibc > 0) {
  1321.     write(xpipe[1], (char *)&ibp, sizeof(ibp));
  1322.     write(xpipe[1], ibp, ibc);
  1323. }
  1324. debug(F100,"CONNECT concld trigger","",0);
  1325. ck_sndmsg(); /* Wait to be killed */
  1326. active = 0; /* Shouldn't be necessary... */
  1327. break;
  1328.     }
  1329.     /* NOTREACHED */
  1330. #endif /* CK_TRIGGER */
  1331. }
  1332.     }
  1333. #ifdef ANYX25
  1334. }
  1335. #endif /* ANYX25 */
  1336.     }
  1337. }
  1338. /*  C O N E C T  --  Interactive terminal connection  */
  1339. int
  1340. conect() {
  1341.     int n; /* General purpose counter */
  1342.     int i; /* For loops... */
  1343.     int c; /* c is a character, but must be signed
  1344.    integer to pass thru -1, which is the
  1345.    modem disconnection signal, and is
  1346.    different from the character 0377 */
  1347.     int c2; /* A copy of c */
  1348.     int csave; /* Another copy of c */
  1349. #ifndef NOESCSEQ
  1350.     int apcrc;
  1351. #endif /* NOESCSEQ */
  1352.     int conret = 0; /* Return value from conect() */
  1353.     int msgflg = 0;
  1354.     /* jbchksum = -1L; */
  1355.     jbset = 0; /* jmp_buf not set yet, don't use it */
  1356.     debug(F101,"CONNECT fork signal","",CK_FORK_SIG);
  1357.     debug(F101,"CONNECT entry pid","",pid);
  1358.     msgflg = !quiet
  1359. #ifdef CK_APC
  1360.       && !apcactive
  1361. #endif /* CK_APC */
  1362. ;
  1363. /*
  1364.   The following is to handle a fork left behind if we exit CONNECT mode
  1365.   without killing it, and then return to CONNECT mode.  This happened in
  1366.   HP-UX, where the Reset key would raise SIGINT even though SIGINT was set to
  1367.   SIG_IGN.  The code below fixes the symptom; the real fix is in the main
  1368.   SIGINT handler (if SIGINT shows up during CONNECT, just return rather than
  1369.   taking the longjmp).
  1370. */
  1371.     if (pid) { /* This should be 0 */
  1372. int x = 0;
  1373. debug(F101,"CONNECT entry killing stale pid","",pid);
  1374. printf("WARNING: Old CONNECT fork seems to be active.n");
  1375. printf("Attempting to remove it...");
  1376. #ifdef BEOSORBEBOX
  1377. {
  1378.     long ret_val;
  1379.     x = kill(pid,SIGKILLTHR); /* Kill lower fork */
  1380.     wait_for_thread (pid, &ret_val);
  1381. }
  1382. #else
  1383. #ifdef Plan9
  1384. x = kill(pid,SIGKILL); /* Kill lower fork */
  1385. #else
  1386. x = kill(pid,9);
  1387. #endif /* Plan9 */
  1388. #endif /* BEOSORBEBOX */
  1389. wait((WAIT_T *)0); /* Wait till gone. */
  1390. if (x < 0) {
  1391.     printf("ERROR: Failure to kill pid %d: %s, errno=%dn",
  1392.    (int) pid, ck_errstr(), errno);
  1393.     debug(F111,"CONNECT error killing stale pid",ck_errstr(),pid);
  1394. }
  1395. pid = (PID_T) 0;
  1396. printf("n");
  1397.     }
  1398.     signal(CK_FORK_SIG, SIG_IGN); /* Initial CK_FORK_SIG handling, */
  1399. /*
  1400.   The following ttimoff() call should not be necessary, but evidently there
  1401.   are cases where a timer is left active and then goes off, taking a longjmp
  1402.   to nowhere after the program's stack has changed.  In any case, this is
  1403.   safe because the CONNECT module uses no timer of any kind, and no other timer
  1404.   should be armed while Kermit is in CONNECT mode.
  1405. */
  1406.     ttimoff(); /* Turn off any timer interrupts */
  1407. #ifdef CK_TRIGGER
  1408.     makestr(&triggerval,NULL); /* Reset trigger */
  1409. #endif /* CK_TRIGGER */
  1410.     if (!local) {
  1411. #ifdef NETCONN
  1412. printf("Sorry, you must SET LINE or SET HOST firstn");
  1413. #else
  1414. printf("Sorry, you must SET LINE firstn");
  1415. #endif /* NETCONN */
  1416. goto conret0;
  1417.     }
  1418.     if (speed < 0L && network == 0 && ttfdflg == 0) {
  1419. printf("Sorry, you must SET SPEED firstn");
  1420. goto conret0;
  1421.     }
  1422. #ifdef TCPSOCKET
  1423.     if (network && (nettype != NET_TCPB)
  1424. #ifdef SUNX25
  1425.         && (nettype != NET_SX25)
  1426. #endif /* SUNX25 */
  1427. #ifdef IBMX25
  1428. && (nettype != NET_IX25)
  1429. #endif /* IBMX25 */
  1430. #ifdef NETCMD
  1431.         && (nettype != NET_CMD)
  1432. #endif /* NETCMD */
  1433. #ifdef NETPTY
  1434.        && (nettype != NET_PTY)
  1435. #endif /* NETPTY */
  1436.     ) {
  1437. printf("Sorry, network type not supportedn");
  1438. goto conret0;
  1439.     }
  1440. #endif /* TCPSOCKET */
  1441. #ifdef DYNAMIC
  1442.     if (!ibuf) {
  1443. if (!(ibuf = malloc(IBUFL+1))) { /* Allocate input line buffer */
  1444.     printf("Sorry, CONNECT input buffer can't be allocatedn");
  1445.     goto conret0;
  1446. } else {
  1447.     ibp = ibuf;
  1448.     ibc = 0;
  1449. }
  1450.     }
  1451.     if (!obuf) {
  1452. if (!(obuf = malloc(OBUFL+1))) {    /* Allocate output line buffer */
  1453.     printf("Sorry, CONNECT output buffer can't be allocatedn");
  1454.     goto conret0;
  1455. } else {
  1456.     obp = obuf;
  1457.     obc = 0;
  1458. }
  1459.     }
  1460.     if (!kbuf) {
  1461. if (!(kbuf = malloc(KBUFL+1))) { /* Allocate keyboard input buffer */
  1462.     printf("Sorry, CONNECT keyboard buffer can't be allocatedn");
  1463.     goto conret0;
  1464. }
  1465.     }
  1466.     if (!temp) {
  1467. if (!(temp = malloc(TMPLEN+1))) { /* Allocate temporary buffer */
  1468.     printf("Sorry, CONNECT temporary buffer can't be allocatedn");
  1469.     goto conret0;
  1470. }
  1471.     }
  1472. #else
  1473. #ifdef COMMENT
  1474.     ibp = ibuf;
  1475.     ibc = 0;
  1476. #endif /* COMMENT */
  1477.     obp = obuf;
  1478.     obc = 0;
  1479. #endif /* DYNAMIC */
  1480.     kbp = kbuf; /* Always clear these. */
  1481.     *kbp = NUL; /* No need to preserve them between */
  1482.     kbc = 0; /* CONNECT sessions. */
  1483. #ifdef DEBUG
  1484.     if (deblog) {
  1485. debug(F101,"CONNECT conect entry ttyfd","",ttyfd);
  1486. debug(F101,"CONNECT conect entry ibc","",ibc);
  1487. debug(F101,"CONNECT conect entry obc","",obc);
  1488. debug(F101,"CONNECT conect entry kbc","",kbc);
  1489. #ifdef CK_TRIGGER
  1490. debug(F110,"CONNECT conect trigger",tt_trigger[0],0);
  1491. #endif /* CK_TRIGGER */
  1492. if (ttyfd > -1) {
  1493.     n = ttchk();
  1494.     debug(F101,"CONNECT conect entry ttchk","",n);
  1495. }
  1496.     }
  1497. #endif /* DEBUG */
  1498.     if (ttyfd < 0) { /* If communication device not open */
  1499. debug(F101,"CONNECT ttnproto","",ttnproto);
  1500. debug(F111,"CONNECT opening",ttname,0); /* Open it now */
  1501. if (ttopen(ttname,
  1502.    &local,
  1503.    network ? -nettype : mdmtyp,
  1504.    0
  1505.    ) < 0) {
  1506.     sprintf(temp,"Sorry, can't open %s",ttname);
  1507.     perror(temp);
  1508.     debug(F110,"CONNECT open failure",ttname,0);
  1509.     goto conret0;
  1510. }
  1511. #ifdef IKS_OPTION
  1512. /* If peer is in Kermit server mode, return now. */
  1513. if (TELOPT_SB(TELOPT_KERMIT).kermit.u_start)
  1514.   return(0);
  1515. #endif /* IKS_OPTION */
  1516.     }
  1517.     dohangup = 0; /* Hangup not requested yet */
  1518. #ifdef ANYX25
  1519.     dox25clr = 0; /* X.25 clear not requested yet */
  1520. #endif /* ANYX25 */
  1521.     if (msgflg) {
  1522. #ifdef NETCONN
  1523. if (network) {
  1524.     if (ttpipe)
  1525.       printf("Connecting via command "%s"",ttname);
  1526.     else
  1527.       printf("Connecting to host %s",ttname);
  1528. #ifdef ANYX25
  1529.     if (nettype == NET_SX25 || nettype == NET_IX25)
  1530.       printf(", Link ID %d, LCN %d",linkid,lcn);
  1531. #endif /* ANYX25 */
  1532. } else {
  1533. #endif /* NETCONN */
  1534.     printf("Connecting to %s",ttname);
  1535.     if (speed > -1L) printf(", speed %ld",speed);
  1536. #ifdef NETCONN
  1537. }
  1538. #endif /* NETCONN */
  1539. if (tt_escape) {
  1540.     printf(".rnThe escape character is Ctrl-%c (ASCII %d, %s)rn",
  1541.    ctl(escape), escape,
  1542.    (escape == 127 ? "DEL" : ccntab[escape]));
  1543.     printf("Type the escape character followed by C to get back,rn");
  1544.     printf("or followed by ? to see other options.rn");
  1545. } else {
  1546.     printf(".rnnESCAPE CHARACTER IS DISABLEDrnn");
  1547. }
  1548. if (seslog) {
  1549.     printf("(Session logged to %s, ",sesfil);
  1550.     printf("%s)rn", sessft ? "binary" : "text");
  1551. }
  1552. if (debses) printf("Debugging Display...)rn");
  1553.         printf("----------------------------------------------------rn");
  1554. fflush(stdout);
  1555.     }
  1556. /* Condition console terminal and communication line */
  1557.     if (conbin((char)escape) < 0) {
  1558. printf("Sorry, can't condition console terminaln");
  1559. goto conret0;
  1560.     }
  1561.     debug(F101,"CONNECT cmask","",cmask);
  1562.     debug(F101,"CONNECT cmdmsk","",cmdmsk);
  1563.     debug(F101,"CONNECT speed before ttvt","",speed);
  1564.     if ((n = ttvt(speed,flow)) < 0) { /* Enter "virtual terminal" mode */
  1565. if (!network) {
  1566.     debug(F101,"CONNECT ttvt","",n);
  1567.     tthang(); /* Hang up and close the device. */
  1568.     ttclos(0);
  1569.     if (ttopen(ttname, /* Open it again... */
  1570.        &local,
  1571.        network ? -nettype : mdmtyp,
  1572.        0
  1573.        ) < 0) {
  1574. sprintf(temp,"Sorry, can't reopen %s",ttname);
  1575. perror(temp);
  1576. goto conret0;
  1577.     }
  1578. #ifdef IKS_OPTION
  1579.     if (TELOPT_SB(TELOPT_KERMIT).kermit.u_start)
  1580.       return(0);
  1581. #endif /* IKS_OPTION */
  1582.     if (ttvt(speed,flow) < 0) { /* Try virtual terminal mode again. */
  1583. conres(); /* Failure this time is fatal. */
  1584. printf("Sorry, Can't condition communication linen");
  1585. goto conret0;
  1586.     }
  1587. }
  1588.     }
  1589.     debug(F101,"CONNECT ttvt ok, escape","",escape);
  1590.     debug(F101,"CONNECT carrier-watch","",carrier);
  1591.     if (!network && (carrier != CAR_OFF)) {
  1592. int x;
  1593. x = ttgmdm();
  1594. debug(F100,"CONNECT ttgmdm","",x);
  1595. if ((x > -1) && !(x & BM_DCD)) {
  1596. #ifndef NOICP
  1597.     extern int hints;
  1598. #endif /* NOICP */
  1599.     debug(F100,"CONNECT ttgmdm CD test fails","",x);
  1600.     conres();
  1601.     printf("?Carrier required but not detected.n");
  1602. #ifndef NOICP
  1603.     if (!hints)
  1604.       return(0);
  1605.     printf("***********************************n");
  1606.     printf(" Hint: To CONNECT to a serial device thatn");
  1607.     printf(" is not presenting the Carrier Detect signal,n");
  1608.     printf(" first tell C-Kermit to:nn");
  1609.     printf("   SET CARRIER-WATCH OFFnn");
  1610.     printf("***********************************nn");
  1611. #endif /* NOICP */
  1612.     goto conret0;
  1613. }
  1614. debug(F100,"CONNECT ttgmdm ok","",0);
  1615.     }
  1616. #ifndef NOCSETS
  1617. /* Set up character set translations */
  1618.     unicode = 0; /* Assume Unicode won't be involved */
  1619.     tcs = 0; /* "Transfer" or "Other" charset */
  1620.     sxo = rxo = NULL; /* Initialize byte-to-byte functions */
  1621.     sxi = rxi = NULL;
  1622.     if (tcsr != tcsl) { /* Remote and local sets differ... */
  1623. #ifdef UNICODE
  1624. if (tcsr == FC_UTF8 || /* Remote charset is UTF-8 */
  1625.     tcsl == FC_UTF8) { /* or local one is. */
  1626.     xuf = xl_ufc[tcsl]; /* Incoming Unicode to local */
  1627.     if (xuf) {
  1628. tcs = (tcsr == FC_UTF8) ? tcsl : tcsr; /* The "other" set */
  1629. xfu = xl_fcu[tcs]; /* Local byte to remote Unicode */
  1630. if (xfu)
  1631.   unicode = (tcsr == FC_UTF8) ? 1 : 2;
  1632.     }
  1633.     tcssize = fcsinfo[tcs].size; /* Size of other character set. */
  1634. } else {
  1635. #endif /* UNICODE */
  1636.     tcs = gettcs(tcsr,tcsl); /* Get intermediate set. */
  1637.     sxo = xls[tcs][tcsl]; /* translation function */
  1638.     rxo = xlr[tcs][tcsr]; /* pointers for output functions */
  1639.     sxi = xls[tcs][tcsr]; /* and for input functions. */
  1640.     rxi = xlr[tcs][tcsl];
  1641. #ifdef UNICODE
  1642. }
  1643. #endif /* UNICODE */
  1644.     }
  1645. /*
  1646.   This is to prevent use of zmstuff() and zdstuff() by translation functions.
  1647.   They only work with disk i/o, not with communication i/o.  Luckily Russian
  1648.   translation functions don't do any stuffing...
  1649. */
  1650.     langsv = language;
  1651. #ifndef NOCYRIL
  1652.     if (language != L_RUSSIAN)
  1653. #endif /* NOCYRIL */
  1654.       language = L_USASCII;
  1655. #ifdef COMMENT
  1656. #ifdef DEBUG
  1657.     if (deblog) {
  1658. debug(F101,"CONNECT tcs","",tcs);
  1659. debug(F101,"CONNECT tcsl","",tcsl);
  1660. debug(F101,"CONNECT tcsr","",tcsr);
  1661. debug(F101,"CONNECT fcsinfo[tcsl].size","",fcsinfo[tcsl].size);
  1662. debug(F101,"CONNECT fcsinfo[tcsr].size","",fcsinfo[tcsr].size);
  1663. debug(F101,"CONNECT unicode","",unicode);
  1664.     }
  1665. #endif /* DEBUG */
  1666. #endif /* COMMENT */
  1667. #ifdef CK_XYZ
  1668. #ifndef XYZ_INTERNAL
  1669.     {
  1670. extern int binary; /* See about ZMODEM autodownloads */
  1671. char * s;
  1672. s = binary ? ptab[PROTO_Z].p_b_rcmd : ptab[PROTO_Z].p_t_rcmd;
  1673. if (!s) s = "";
  1674. zmdlok = (*s != NUL); /* OK if we have external commands */
  1675.     }
  1676. #endif /* XYZ_INTERNAL */
  1677. #endif /* CK_XYZ */
  1678. #ifndef NOESCSEQ
  1679. /*
  1680.   We need to activate the escape-sequence recognition feature when:
  1681.    (a) translation is elected, AND
  1682.    (b) the local and/or remote set is a 7-bit set other than US ASCII.
  1683.   Or:
  1684.    SET TERMINAL APC is not OFF (handled in the next statement).
  1685. */
  1686.     escseq = (tcs != TC_TRANSP) && /* Not transparent */
  1687.       (fcsinfo[tcsl].size == 128 || fcsinfo[tcsr].size == 128) && /* 7 bits */
  1688. (fcsinfo[tcsl].code != FC_USASCII); /* But not ASCII */
  1689. #endif /* NOESCSEQ */
  1690. #endif /* NOCSETS */
  1691. #ifndef NOESCSEQ
  1692. #ifdef CK_APC
  1693.     escseq = escseq || (apcstatus != APC_OFF);
  1694.     apcactive = 0; /* An APC command is not active */
  1695.     apclength = 0; /* ... */
  1696. #endif /* CK_APC */
  1697.     inesc = ES_NORMAL; /* Initial state of recognizer */
  1698.     debug(F101,"CONNECT escseq","",escseq);
  1699. #endif /* NOESCSEQ */
  1700.     parent_id = getpid(); /* Get parent's pid for signalling */
  1701.     debug(F101,"CONNECT parent pid","",parent_id);
  1702.     if (xpipe[0] > -1) /* If old pipe hanging around, close */
  1703.       close(xpipe[0]);
  1704.     xpipe[0] = -1;
  1705.     if (xpipe[1] > -1)
  1706.       close(xpipe[1]);
  1707.     xpipe[1] = -1;
  1708.     goterr = 0; /* Error flag for pipe & fork */
  1709.     if (pipe(xpipe) != 0) { /* Create new pipe to pass info */
  1710. perror("Can't make pipe"); /* between forks. */
  1711. debug(F101,"CONNECT pipe error","",errno);
  1712. goterr = 1;
  1713.     } else
  1714. #ifdef BEOSORBEBOX
  1715.     {
  1716.         pid = spawn_thread(concld, "Lower Fork", B_NORMAL_PRIORITY, NULL);
  1717.         resume_thread(pid);
  1718.     }
  1719. #else
  1720.     if ((pid = fork()) == (PID_T) -1) { /* Pipe OK, make port fork. */
  1721. perror("Can't make port fork");
  1722. debug(F101,"CONNECT fork error","",errno);
  1723. goterr = 1;
  1724.     }
  1725. #endif /* BEOSORBEBOX */
  1726.     debug(F101,"CONNECT created fork, pid","",pid);
  1727.     if (goterr) { /* Failed to make pipe or fork */
  1728. conres(); /* Reset the console. */
  1729. if (msgflg) {
  1730.     printf("rnCommunications disconnect (Back at %s)rn",
  1731.    *myhost ?
  1732.    myhost :
  1733. #ifdef UNIX
  1734.    "local UNIX system"
  1735. #else
  1736.    "local system"
  1737. #endif /* UNIX */
  1738.    );
  1739. }
  1740. printf("n");
  1741. what = W_NOTHING; /* So console modes are set right. */
  1742. #ifndef NOCSETS
  1743. language = langsv; /* Restore language */
  1744. #endif /* NOCSETS */
  1745. parent_id = (PID_T) 0; /* Clean up */
  1746. goto conret1;
  1747.     }
  1748.     debug(F101,"CONNECT fork pid","",pid);
  1749. /* Upper fork (KEYB fork) reads keystrokes and sends them out. */
  1750.     if (pid) { /* pid != 0, so I am the upper fork. */
  1751. /*
  1752.   Before doing anything significant, the child fork must wait for a go-ahead
  1753.   character from xpipe[0].  Before starting to wait, we have enough time to
  1754.   clear buffers and set up the signal handler.  When done with this, we will
  1755.   allow the child to continue by satisfying its pending read.
  1756.   Remember the child and parent have separate address space.  The child has
  1757.   its own copy of input buffers, so we must clear the input buffers in the
  1758.   parent.  Otherwise strange effects may occur, like chunks of characters
  1759.   repeatedly echoed on terminal screen.  The child process is designed to
  1760.   empty its input buffers by reading all available characters and either
  1761.   echoing them on the terminal screen or saving them for future use in the
  1762.   parent.  The latter case happens during APC processing - see the code around
  1763.   CEV_APC occurrences to see how the child passes its ibuf etc to parent via
  1764.   xpipe, for preservation until the next entry to this module, to ensure that
  1765.   no characters are lost between CONNECT sessions.
  1766. */
  1767. /*
  1768.   This one needs a bit of extra explanation...  In addition to the CONNECT
  1769.   module's own buffers, which are communicated and synchronized via xpipe,
  1770.   the low-level UNIX communication routines (ttinc, ttxin, etc) are also
  1771.   buffered, statically, in the ckutio.c module.  But when the two CONNECT
  1772.   forks split off, the lower fork is updating this buffer's pointers and
  1773.   counts, but the upper fork never finds out about it and still has the old
  1774.   ones.  The following UNIX-specific call to the ckutio.c module takes care
  1775.   of this...  Without it, we get dual echoing of incoming characters.
  1776. */
  1777. ttflux();
  1778. /*
  1779.   At this point, perhaps you are wondering why we use forks at all.  It is
  1780.   simply because there is no other method portable among all UNIX variations.
  1781.   Not threads, not select(), ...  (Yes, select() is more common now; it might
  1782.   actually be worth writing a variation of this module that works like BSD
  1783.   Telnet, one fork, driven by select()).
  1784. */
  1785. ibp = ibuf; /* Clear ibuf[]. */
  1786. ibc = 0; /* Child now has its own copy */
  1787. signal(CK_FORK_SIG, pipeint); /* Handler for messages from child. */
  1788. write(xpipe[1], ibuf, 1); /* Allow child to proceed */
  1789. close(xpipe[1]); xpipe[1] = -1; /* Parent - prevent future writes */
  1790. what = W_CONNECT; /* Keep track of what we're doing */
  1791. active = 1;
  1792. debug(F101,"CONNECT keyboard fork duplex","",duplex);
  1793. /*
  1794.   Catch communication errors or mode changes in lower fork.
  1795.   Note: Some C compilers (e.g. Cray UNICOS) interpret the ANSI C standard
  1796.   about setjmp() in a way that disallows constructions like:
  1797.         if ((var = [sig]setjmp(env)) == 0) ...
  1798.   which prevents the value returned by cklongjmp() from being used at all.
  1799.   So the signal handlers set a global variable, sjval, instead.
  1800. */
  1801. if (
  1802. #ifdef CK_POSIX_SIG
  1803.     sigsetjmp(con_env,1)
  1804. #else
  1805.     setjmp(con_env)
  1806. #endif /* CK_POSIX_SIG */
  1807.     == 0) { /* Normal entry... */
  1808.     jbset = 1; /* Now we have a longjmp buffer */
  1809.     sjval = CEV_NO; /* Initialize setjmp return code. */
  1810.     debug(F101,"CONNECT setjmp normal entry","",sjval);
  1811. #ifdef ANYX25
  1812.     if (network && (nettype == NET_SX25 || nettype == NET_IX25)) {
  1813. obufl = 0;
  1814. bzero (x25obuf,sizeof(x25obuf));
  1815.     }
  1816. #endif /* ANYX25 */
  1817. /*
  1818.   Here is the big loop that gets characters from the keyboard and sends them
  1819.   out the communication device.  There are two components to the communication
  1820.   path: the connection from the keyboard to C-Kermit, and from C-Kermit to
  1821.   the remote computer.  The treatment of the 8th bit of keyboard characters
  1822.   is governed by SET COMMAND BYTESIZE (cmdmsk).  The treatment of the 8th bit
  1823.   of characters sent to the remote is governed by SET TERMINAL BYTESIZE
  1824.   (cmask).   This distinction was introduced in edit 5A(164).
  1825. */
  1826.     while (active) {
  1827. #ifndef NOSETKEY
  1828. if (kmptr) { /* Have current macro? */
  1829.     debug(F100,"CONNECT kmptr non NULL","",0);
  1830.     if ((c = (CHAR) *kmptr++) == NUL) { /* Get char from it */
  1831. kmptr = NULL; /* If no more chars,  */
  1832. debug(F100,"CONNECT macro empty, continuing","",0);
  1833. continue; /* reset pointer and continue */
  1834.     }
  1835.     debug(F000,"CONNECT char from macro","",c);
  1836. } else /* No macro... */
  1837. #endif /* NOSETKEY */
  1838.   c = CONGKS(); /* Read from keyboard */
  1839. #ifdef COMMENT
  1840. /* too much... */
  1841. debug(F101,"CONNECT ** KEYB","",c);
  1842. #endif /* COMMENT */
  1843.                 if (c == -1) { /* If read() got an error... */
  1844.     debug(F101,"CONNECT keyboard read errno","",errno);
  1845. #ifdef COMMENT
  1846. /*
  1847.  This seems to cause problems.  If read() returns -1, the signal has already
  1848.  been delivered, and nothing will wake up the pause().
  1849. */
  1850.     pause(); /* Wait for transmitter to finish. */
  1851. #else
  1852. #ifdef A986
  1853. /*
  1854.   On Altos machines with Xenix 3.0, pressing DEL in connect mode brings us
  1855.   here (reason unknown).  The console line discipline at this point has
  1856.   intr = ^C.  The communications tty has intr = DEL but we get here after
  1857.   pressing DEL on the keyboard, even when the remote system has been set not
  1858.   to echo.  With A986 defined, we stay in the read loop and beep only if the
  1859.   offending character is not DEL.
  1860. */
  1861.     if ((c & 127) != 127) conoc(BEL);
  1862. #else
  1863. #ifdef EINTR
  1864. /*
  1865.    This can be caused by the other fork signalling this one about
  1866.    an echoing change during TELNET negotiations.
  1867. */
  1868.     if (errno == EINTR)
  1869.       continue;
  1870. #endif /* EINTR */
  1871.     conoc(BEL); /* Otherwise, beep */
  1872.     active = 0; /* and terminate the read loop */
  1873.     continue;
  1874. #endif /* A986 */
  1875. #endif /* COMMENT */
  1876. }
  1877. c &= cmdmsk; /* Do any requested masking */
  1878. #ifndef NOSETKEY
  1879. /*
  1880.   Note: kmptr is NULL if we got character c from the keyboard, and it is
  1881.   not NULL if it came from a macro.  In the latter case, we must avoid
  1882.   expanding it again.
  1883. */
  1884. if (!kmptr && macrotab[c]) { /* Macro definition for c? */
  1885.     kmptr = macrotab[c];     /* Yes, set up macro pointer */
  1886.     continue;      /* and restart the loop, */
  1887. } else c = keymap[c];      /* else use single-char keymap */
  1888. #endif /* NOSETKEY */
  1889. if (
  1890. #ifndef NOSETKEY
  1891.     !kmptr &&
  1892. #endif /* NOSETKEY */
  1893.     (tt_escape && (c & 0x7f) == escape)) { /* Escape char? */
  1894.     debug(F000,"CONNECT got escape","",c);
  1895.     c = CONGKS() & 0177; /* Got esc, get its arg */
  1896.     /* No key mapping here */
  1897.     doesc((char) c); /* Now process it */
  1898. } else { /* It's not the escape character */
  1899.     csave = c; /* Save it before translation */
  1900. /* for local echoing. */
  1901. #ifndef NOCSETS
  1902.     if (inesc == ES_NORMAL) { /* If not inside escape seq.. */
  1903. /* Translate character sets */
  1904. #ifdef UNICODE
  1905. int x;
  1906. CHAR ch;
  1907. ch = c;
  1908. if (unicode == 1) { /* Remote is UTF-8 */
  1909.     outxcount = b_to_u(ch,outxbuf,OUTXBUFSIZ,tcssize);
  1910.     outxbuf[outxcount] = NUL;
  1911. } else if (unicode == 2) { /* Local is UTF-8 */
  1912.     x = u_to_b(ch); /* So translate to remote byte */
  1913.     if (x < 0)
  1914.       continue;
  1915.     outxbuf[0] = (unsigned)(x & 0xff);
  1916.     outxcount = 1;
  1917.     outxbuf[outxcount] = NUL;
  1918. } else {
  1919. #endif /* UNICODE */
  1920.     /* Local-to-intermediate */
  1921.     if (sxo) c = (*sxo)((char)c);
  1922.     /* Intermediate-to-remote */
  1923.     if (rxo) c = (*rxo)((char)c);
  1924.     outxbuf[0] = c;
  1925.     outxcount = 1;
  1926.     outxbuf[outxcount] = NUL;
  1927. #ifdef UNICODE
  1928. }
  1929. #endif /* UNICODE */
  1930.     }
  1931.     if (escseq)
  1932.       apcrc = chkaes((char)c);
  1933. #else
  1934.     outxbuf[0] = c;
  1935.     outxcount = 1;
  1936.     outxbuf[outxcount] = NUL;
  1937. #endif /* NOCSETS */
  1938.     for (i = 0; i < outxcount; i++) {
  1939. c = outxbuf[i];
  1940. /*
  1941.  If Shift-In/Shift-Out is selected and we have a 7-bit connection,
  1942.  handle shifting here.
  1943. */
  1944. if (sosi) { /* Shift-In/Out selected? */
  1945.     if (cmask == 0177) { /* In 7-bit environment? */
  1946. if (c & 0200) { /* 8-bit character? */
  1947.     if (outshift == 0) { /* If not shifted, */
  1948. ttoc(dopar(SO)); /* shift. */
  1949. outshift = 1;
  1950.     }
  1951. } else {
  1952.     if (outshift == 1) { /* 7-bit character */
  1953. ttoc(dopar(SI)); /* If shifted, */
  1954. outshift = 0;    /* unshift. */
  1955.     }
  1956. }
  1957.     }
  1958.     if (c == SO) outshift = 1;   /* User typed SO */
  1959.     if (c == SI) outshift = 0;   /* User typed SI */
  1960. }
  1961. c &= cmask; /* Apply Kermit-to-host mask now. */
  1962. #ifdef SUNX25
  1963. if (network && nettype == NET_SX25) {
  1964.     if (padparms[PAD_ECHO]) {
  1965. if (debses)
  1966.   conol(dbchr(c)) ;
  1967. else
  1968.   if ((c != padparms[PAD_CHAR_DELETE_CHAR]) &&
  1969.     (c != padparms[PAD_BUFFER_DELETE_CHAR]) &&
  1970.     (c != padparms[PAD_BUFFER_DISPLAY_CHAR]))
  1971.     conoc(c) ;
  1972. if (seslog && !sessft)
  1973.   logchar(c);
  1974.     }
  1975.     if (c == CR && (padparms[PAD_LF_AFTER_CR] == 4 ||
  1976.     padparms[PAD_LF_AFTER_CR] == 5)) {
  1977. if (debses)
  1978.   conol(dbchr(LF)) ;
  1979. else
  1980.   conoc(LF) ;
  1981. if (seslog && !sessft)
  1982.   logchar(LF);
  1983.     }
  1984.     if (c == padparms[PAD_BREAK_CHARACTER]) {
  1985. breakact();
  1986.     } else if (padparms[PAD_DATA_FORWARD_TIMEOUT]) {
  1987. tosend = 1;
  1988. x25obuf [obufl++] = c;
  1989.     } else if (((c == padparms[PAD_CHAR_DELETE_CHAR])||
  1990.      (c == padparms[PAD_BUFFER_DELETE_CHAR]) ||
  1991.      (c == padparms[PAD_BUFFER_DISPLAY_CHAR]))
  1992.        && (padparms[PAD_EDITING])) {
  1993. if (c == padparms[PAD_CHAR_DELETE_CHAR]) {
  1994.     if (obufl > 0) {
  1995. conol("b b"); obufl--;
  1996.     } else {}
  1997. } else if
  1998.   (c == padparms[PAD_BUFFER_DELETE_CHAR]) {
  1999.       conol ("rnPAD Buffer Deletedrn");
  2000.       obufl = 0;
  2001. } else if
  2002.   (c==padparms[PAD_BUFFER_DISPLAY_CHAR]) {
  2003.       conol("rn");
  2004.       conol(x25obuf);
  2005.       conol("rn");
  2006. } else {}
  2007.     } else {
  2008. x25obuf [obufl++] = c;
  2009. if (obufl == MAXOX25) tosend = 1;
  2010. else if (c == CR) tosend = 1;
  2011.     }
  2012.     if (tosend) {
  2013. if (ttol((CHAR *)x25obuf,obufl) < 0) {
  2014.     perror ("rnCan't send characters");
  2015.     active = 0;
  2016. } else {
  2017.     bzero (x25obuf,sizeof(x25obuf));
  2018.     obufl = 0;
  2019.     tosend = 0;
  2020. }
  2021.     } else {};
  2022. } else {
  2023. #endif /* SUNX25 */
  2024.     if (c == '15') { /* Carriage Return */
  2025. int stuff = -1;
  2026. if (tnlm) { /* TERMINAL NEWLINE ON */
  2027.     stuff = LF; /* Stuff LF */
  2028. #ifdef TNCODE
  2029. } else if (network && /* TELNET NEWLINE */
  2030.    (ttnproto == NP_TELNET)) {
  2031.     switch (!TELOPT_ME(TELOPT_BINARY) ?
  2032.     tn_nlm :
  2033.     tn_b_nlm
  2034.     ) {
  2035.       case TNL_CRLF:
  2036. stuff = LF;
  2037. break;
  2038.       case TNL_CRNUL:
  2039. stuff = NUL;
  2040. break;
  2041.     }
  2042. #endif /* TNCODE */
  2043. }
  2044. if (stuff > -1) {
  2045.     ttoc(dopar('15')); /* Send CR */
  2046.     if (duplex) conoc('15'); /* Echo CR */
  2047.     c = stuff; /* Char to stuff */
  2048.     csave = c;
  2049. }
  2050.     }
  2051. #ifdef TNCODE
  2052. /* If user types the 0xff character (TELNET IAC), it must be doubled. */
  2053.     else /* Not CR */
  2054.       if ((dopar((CHAR) c) == IAC) && /* IAC (0xff) */
  2055.   network && (ttnproto == NP_TELNET)) {
  2056.   /* Send one copy now */
  2057.   /* and the other one just below. */
  2058.   ttoc((char)IAC);
  2059.       }
  2060. #endif /* TNCODE */
  2061.     /* Send the character */
  2062.     if (ttoc((char)dopar((CHAR) c)) > -1) {
  2063. if (duplex) { /* If half duplex, must echo */
  2064.     if (debses)
  2065.       conol(dbchr(csave)); /* original char */
  2066.     else /* not the translated one */
  2067.       conoc((char)csave);
  2068.     if (seslog) { /* And maybe log it too */
  2069. c2 = csave;
  2070. if (sessft == 0 && csave == 'r')
  2071.   c2 = 'n';
  2072. logchar((char)c2);
  2073.     }
  2074. }
  2075.     } else {
  2076. perror("rnCan't send character");
  2077. active = 0;
  2078.     }
  2079. #ifdef SUNX25
  2080. }
  2081. #endif /* SUNX25 */
  2082.     } /* for... */
  2083. }
  2084.     }
  2085.     /* now active == 0 */
  2086.             signal(CK_FORK_SIG, SIG_IGN); /* Turn off CK_FORK_SIG */
  2087.     sjval = CEV_NO; /* Set to hangup */
  2088. } /* Come here on termination of child */
  2089. /* cklongjmp() executed in pipeint() (parent only!) comes here */
  2090. /*
  2091.   Now the child fork is gone or is waiting for CK_FORK_SIG in ck_sndmsg().
  2092.   So we can't get (in the parent) any subsequent CK_FORK_SIG signals until
  2093.   we signal the child with CK_FORK_SIG.
  2094. */
  2095. debug(F100,"CONNECT signaling port fork","",0);
  2096. signal(CK_FORK_SIG, SIG_IGN); /* Turn this off */
  2097. debug(F101,"CONNECT killing port fork","",pid);
  2098. if (pid) {
  2099.     int x = 0;
  2100. #ifdef BEOSORBEBOX
  2101.     {
  2102. long ret_val;
  2103. x = kill(pid,SIGKILLTHR); /* Kill lower fork */
  2104. wait_for_thread(pid, &ret_val);
  2105.     }
  2106. #else
  2107. #ifdef Plan9
  2108.     x = kill(pid,SIGKILL); /* Kill lower fork */
  2109. #else
  2110.     x = kill(pid,9);
  2111. #endif /* Plan9 */
  2112. #endif /* BEOSORBEBOX */
  2113.     wait((WAIT_T *)0); /* Wait till gone. */
  2114.     if (x < 0) {
  2115. printf("WARNING: Failure to kill fork, pid %d: %s, errno=%dn",
  2116.        (int) pid, ck_errstr(), errno);
  2117. debug(F111,"CONNECT error killing pid",ck_errstr(),errno);
  2118.     }
  2119.     debug(F101,"CONNECT killed port fork","",pid);
  2120.     pid = (PID_T) 0;
  2121. }
  2122. if (sjval == CEV_HUP) { /* Read error on comm device */
  2123.     dohangup = 1; /* so we want to hang up our side */
  2124. #ifdef NETCONN
  2125.     if (network) { /* and/or close network connection */
  2126. ttclos(0);
  2127. #ifdef SUNX25
  2128. if (nettype == NET_SX25) /* If X.25, restore the PAD params */
  2129.   initpad();
  2130. #endif /* SUNX25 */
  2131.     }
  2132. #endif /* NETCONN */
  2133. }
  2134. #ifdef CK_APC
  2135. if (sjval == CEV_APC) { /* Application Program Command rec'd */
  2136.     apcactive = APC_REMOTE; /* Flag APC as active */
  2137.     active = 0; /* Flag CONNECT as inactive */
  2138. }
  2139. #endif /* CK_APC */
  2140. conres(); /* Reset the console. */
  2141. if (dohangup > 0) { /* If hangup requested, do that. */
  2142. #ifndef NODIAL
  2143.     if (dohangup > 1) /* User asked for it */
  2144.       if (mdmhup() < 1) /* Maybe hang up via modem */
  2145. #endif /* NODIAL */
  2146. tthang(); /* And make sure we don't hang up */
  2147.     dohangup = 0; /* again unless requested again. */
  2148. }
  2149. #ifdef COMMENT
  2150. #ifdef NETCONN
  2151. #ifdef SIGPIPE
  2152. if (network && sigpiph) /* Restore previous SIGPIPE handler */
  2153.   (VOID) signal(SIGPIPE, sigpiph);
  2154. #endif /* SIGPIPE */
  2155. #endif /* NETCONN */
  2156. #endif /* COMMENT */
  2157. #ifdef ANYX25
  2158. if (dox25clr) { /* If X.25 Clear requested */
  2159.     x25clear(); /* do that. */
  2160. #ifndef IBMX25
  2161.     initpad();
  2162. #endif /* IBMX25 */
  2163.     dox25clr = 0; /* But only once. */
  2164. }
  2165. #endif /* ANYX25 */
  2166. if (quitnow) doexit(GOOD_EXIT,xitsta); /* Exit now if requested. */
  2167.    if (msgflg)
  2168.   printf("(Back at %s)", *myhost ? myhost : "local UNIX system");
  2169. #ifdef CK_APC
  2170.         if (!apcactive)
  2171. #endif /* CK_APC */
  2172.   printf("n");
  2173. what = W_NOTHING; /* So console modes set right. */
  2174. #ifndef NOCSETS
  2175. language = langsv; /* Restore language */
  2176. #endif /* NOCSETS */
  2177. parent_id = (PID_T) 0;
  2178. goto conret1;
  2179.     }
  2180. #ifndef BEOSORBEBOX
  2181.     else { /* *** */ /* Inferior reads, prints port input */
  2182.         concld(/* (void *)&pid */);
  2183.     }
  2184. #endif /* BEOSORBEBOX */
  2185. conret1:
  2186.     conret = 1;
  2187. conret0:
  2188.     signal(CK_FORK_SIG, SIG_IGN); /* In case this wasn't done already */
  2189.     debug(F101,"CONNECT conect exit ibc","",ibc);
  2190.     debug(F101,"CONNECT conect exit obc","",obc);
  2191.     close(xpipe[0]); xpipe[0] = -1; /* Close the pipe */
  2192.     close(xpipe[1]); xpipe[1] = -1;
  2193.     if (msgflg) {
  2194. #ifdef CK_APC
  2195. if (apcactive == APC_LOCAL)
  2196.   printf("n");
  2197. #endif /* CK_APC */
  2198. printf("----------------------------------------------------rn");
  2199.     }
  2200.     fflush(stdout);
  2201.     return(conret);
  2202. }
  2203. /*  H C O N N E  --  Give help message for connect.  */
  2204. int
  2205. hconne() {
  2206.     int c;
  2207.     static char *hlpmsg[] = {
  2208. "rn  ? for this message",
  2209. "rn  0 (zero) to send a null",
  2210. "rn  B to send a BREAK",
  2211. #ifdef CK_LBRK
  2212. "rn  L to send a Long BREAK",
  2213. #endif /* CK_LBRK */
  2214. #ifdef NETCONN
  2215. "rn  I to send a network interrupt packet",
  2216. #ifdef TCPSOCKET
  2217. "rn  A to send Are You There?",
  2218. #endif /* TCPSOCKET */
  2219. #ifdef ANYX25
  2220. "rn  R to reset X.25 virtual circuit",
  2221. #endif /* ANYX25 */
  2222. #endif /* NETCONN */
  2223. "rn  U to hangup and close the connection",
  2224. "rn  Q to hangup and quit Kermit",
  2225. "rn  S for status",
  2226. #ifdef NOPUSH
  2227. "rn  ! to push to local shell (disabled)",
  2228. "rn  Z to suspend (disabled)",
  2229. #else
  2230. "rn  ! to push to local shell",
  2231. #ifdef NOJC
  2232. "rn  Z to suspend (disabled)",
  2233. #else
  2234. "rn  Z to suspend",
  2235. #endif /* NOJC */
  2236. #endif /* NOPUSH */
  2237. "rn  \ backslash code:",
  2238. "rn    \nnn  decimal character code",
  2239. "rn    \Onnn octal character code",
  2240. "rn    \Xhh  hexadecimal character code",
  2241. "rn    terminate with carriage return.",
  2242. "rn Type the escape character again to send the escape character, or",
  2243. "rn press the space-bar to resume the CONNECT command.rn",
  2244. "" };
  2245.     conol("rn----------------------------------------------------");
  2246.     conol("rnPress C to return to ");
  2247.     conol(*myhost ? myhost : "the C-Kermit prompt");
  2248.     conol(", or:");
  2249.     conola(hlpmsg); /* Print the help message. */
  2250.     conol("Command>"); /* Prompt for command. */
  2251.     c = CONGKS() & 0177; /* Get character, strip any parity. */
  2252.     /* No key mapping or translation here */
  2253.     if (c != CMDQ)
  2254.       conoll("");
  2255.     conoll("----------------------------------------------------");
  2256.    return(c); /* Return it. */
  2257. }
  2258. /*  D O E S C  --  Process an escape character argument  */
  2259. VOID
  2260. #ifdef CK_ANSIC
  2261. doesc(char c)
  2262. #else
  2263. doesc(c) char c;
  2264. #endif /* CK_ANSIC */
  2265. /* doesc */ {
  2266.     CHAR d;
  2267.     debug(F101,"CONNECT doesc","",c);
  2268.     while (1) {
  2269. if (c == escape) { /* Send escape character */
  2270.     d = dopar((CHAR) c); ttoc((char) d); return;
  2271.      } else /* Or else look it up below. */
  2272.     if (isupper(c)) c = tolower(c);
  2273. switch(c) {
  2274. case 'c': /* Escape back to prompt */
  2275. case '3':
  2276.     active = 0; conol("rn"); return;
  2277. case 'b': /* Send a BREAK signal */
  2278. case '2':
  2279.     ttsndb(); return;
  2280. #ifdef NETCONN
  2281. case 'i': /* Send Interrupt */
  2282. case '11':
  2283. #ifdef TCPSOCKET
  2284. #ifndef IP
  2285. #define IP 244
  2286. #endif /* IP */
  2287.     if (network && ttnproto == NP_TELNET) { /* TELNET */
  2288. temp[0] = (CHAR) IAC; /* I Am a Command */
  2289. temp[1] = (CHAR) IP; /* Interrupt Process */
  2290. temp[2] = NUL;
  2291. ttol((CHAR *)temp,2);
  2292.     } else
  2293. #endif /* TCPSOCKET */
  2294. #ifdef SUNX25
  2295.     if (network && (nettype == NET_SX25)) {
  2296. (VOID) x25intr(0);             /* X.25 interrupt packet */
  2297. conol("rn");
  2298.     } else
  2299. #endif /* SUNX25 */
  2300.       conoc(BEL);
  2301.     return;
  2302. #ifdef TCPSOCKET
  2303. case 'a': /* "Are You There?" */
  2304. case '1':
  2305. #ifndef AYT
  2306. #define AYT 246
  2307. #endif /* AYT */
  2308.     if (network && ttnproto == NP_TELNET) {
  2309. temp[0] = (CHAR) IAC; /* I Am a Command */
  2310. temp[1] = (CHAR) AYT; /* Are You There? */
  2311. temp[2] = NUL;
  2312. ttol((CHAR *)temp,2);
  2313.     } else conoc(BEL);
  2314.     return;
  2315. #endif /* TCPSOCKET */
  2316. #endif /* NETCONN */
  2317. #ifdef CK_LBRK
  2318. case 'l': /* Send a Long BREAK signal */
  2319.     ttsndlb(); return;
  2320. #endif /* CK_LBRK */
  2321. case 'u': /* Hangup */
  2322.      /* case '10': */ /* No, too dangerous */
  2323. #ifdef ANYX25
  2324.             if (network && (nettype == NET_SX25 || nettype == NET_IX25))
  2325.       dox25clr = 1;
  2326.             else
  2327. #endif /* ANYX25 */
  2328.     dohangup = 2; active = 0; conol("rnHanging up "); return;
  2329. #ifdef ANYX25
  2330.         case 'r':                       /* Reset the X.25 virtual circuit */
  2331.         case '22':
  2332.             if (network && (nettype == NET_SX25 || nettype == NET_IX25))
  2333. (VOID) x25reset(0,0);
  2334.             conol("rn");
  2335.     return;
  2336. #endif /* ANYX25 */
  2337. case 'q': /* Quit */
  2338.     dohangup = 2; quitnow = 1; active = 0; conol("rn"); return;
  2339. case 's': /* Status */
  2340.     conoll("");
  2341.     conoll("----------------------------------------------------");
  2342. #ifdef NETCMD
  2343.     if (ttpipe)
  2344.       sprintf(temp, " Pipe: "%s"", ttname);
  2345.     else
  2346. #endif /* NETCMD */
  2347.       sprintf(temp, " %s: %s", (network ? "Host" : "Device"), ttname);
  2348.     conoll(temp);
  2349.     if (!network && speed >= 0L) {
  2350. sprintf(temp,"Speed %ld", speed);
  2351. conoll(temp);
  2352.     }
  2353.     sprintf(temp," Terminal echo: %s", duplex ? "local" : "remote");
  2354.     conoll(temp);
  2355.     sprintf(temp," Terminal bytesize: %d", (cmask  == 0177) ? 7 : 8);
  2356.     conoll(temp);
  2357.     sprintf(temp," Command bytesize: %d", (cmdmsk == 0177) ? 7 : 8 );
  2358.     conoll(temp);
  2359.     sprintf(temp," Parity: %s", parnam(parity));
  2360.     conoll(temp);
  2361.     sprintf(temp," Autodownload: %s", autodl ? "on" : "off");
  2362.     conoll(temp);
  2363.     sprintf(temp," Session log: %s", *sesfil ? sesfil : "(none)");
  2364.     conoll(temp);
  2365. #ifndef NOSHOW
  2366.     if (!network) shomdm();
  2367. #endif /* NOSHOW */
  2368. #ifdef CKLOGDIAL
  2369.     {
  2370. long z;
  2371. z = dologshow(0);
  2372. if (z > -1L) {
  2373.     sprintf(temp," Elapsed time: %s",hhmmss(z));
  2374.     conoll(temp);
  2375. }
  2376.     }
  2377. #endif /* CKLOGDIAL */
  2378.     conoll("----------------------------------------------------");
  2379.     return;
  2380. case 'h': /* Help */
  2381. case '?': /* Help */
  2382.     c = hconne(); continue;
  2383. case '0': /* Send a null */
  2384.     c = ''; d = dopar((CHAR) c); ttoc((char) d); return;
  2385. case 'z': case '32': /* Suspend */
  2386. #ifndef NOPUSH
  2387.     if (!nopush)
  2388.       stptrap(0);
  2389.     else
  2390.       conoc(BEL);
  2391. #else
  2392.     conoc(BEL);
  2393. #endif /* NOPUSH */
  2394.     return;
  2395. case '@': /* Start inferior command processor */
  2396. case '!':
  2397. #ifndef NOPUSH
  2398.     if (!nopush) {
  2399. conres();       /* Put console back to normal */
  2400. zshcmd("");       /* Fork a shell. */
  2401. if (conbin((char)escape) < 0) {
  2402.     printf("Error resuming CONNECT sessionn");
  2403.     active = 0;
  2404. }
  2405.     } else conoc(BEL);
  2406. #else
  2407.     conoc(BEL);
  2408. #endif /* NOPUSH */
  2409.     return;
  2410. case SP: /* Space, ignore */
  2411.     return;
  2412. default: /* Other */
  2413.     if (c == CMDQ) { /* Backslash escape */
  2414. int x;
  2415. ecbp = ecbuf;
  2416. *ecbp++ = c;
  2417. while (((c = (CONGKS() & cmdmsk)) != 'r') && (c != 'n'))
  2418.   *ecbp++ = c;
  2419. *ecbp = NUL; ecbp = ecbuf;
  2420. x = xxesc(&ecbp); /* Interpret it */
  2421. if (x >= 0) { /* No key mapping here */
  2422.     c = dopar((CHAR) x);
  2423.     ttoc((char) c);
  2424.     return;
  2425. } else { /* Invalid backslash code. */
  2426.     conoc(BEL);
  2427.     return;
  2428. }
  2429.     }
  2430.     conoc(BEL); return;  /* Invalid esc arg, beep */
  2431.      }
  2432.     }
  2433. }
  2434. #endif /* NOLOCAL */