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

通讯/手机编程

开发平台:

Windows_Unix

  1. #include "ckcsym.h"
  2. #ifdef NOLOCAL
  3. char *connv = "";
  4. #else
  5. char *connv = "CONNECT Command for UNIX:select(), 7.0.110, 30 Dec 1999";
  6. /*  C K U C N S  --  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. */
  15. /*
  16.   This version of the UNIX CONNECT module uses select(), which is required for
  17.   Kerberos encryption.  Thus it can be used only on UNIX systems that support
  18.   select() on both TCP/IP and serial connections.  A separate module that uses
  19.   a completely portable fork() structure can be used on systems where select()
  20.   is not available or does not work as required.
  21. */
  22. #include "ckcdeb.h" /* Common things first */
  23. #ifdef OSF13
  24. #ifdef CK_ANSIC
  25. #ifdef _NO_PROTO
  26. #undef _NO_PROTO
  27. #endif /* _NO_PROTO */
  28. #endif /* CK_ANSIC */
  29. #endif /* OSF13 */
  30. #include <errno.h> /* Error numbers */
  31. #ifdef __linux__
  32. #include <sys/time.h> /* For FD_blah */
  33. #endif /* __linux__ */
  34. /* Kermit-specific includes */
  35. #include "ckcasc.h" /* ASCII characters */
  36. #include "ckcker.h" /* Kermit things */
  37. #include "ckucmd.h" /* For xxesc() prototype */
  38. #include "ckcnet.h" /* Network symbols */
  39. #ifndef NOCSETS
  40. #include "ckcxla.h" /* Character set translation */
  41. #endif /* NOCSETS */
  42. #ifdef BEBOX
  43. #include <kernel/OS.h>
  44. #include <socket.h>
  45. #include <stdio.h>
  46. #endif /* BEBOX */
  47. #include <signal.h>
  48. #ifndef SCO_OSR504
  49. #ifdef SELECT_H
  50. #include <sys/select.h>
  51. #endif /* SELECT_H */
  52. #endif /* SCO_OSR504 */
  53. /* Internal function prototypes */
  54. _PROTOTYP( VOID ttflux, (void) );
  55. _PROTOTYP( VOID doesc, (char) );
  56. _PROTOTYP( int hconne, (void) );
  57. #ifndef NOSHOW
  58. _PROTOTYP( VOID shomdm, (void) );
  59. #endif /* NOSHOW */
  60. _PROTOTYP( static int kbget, (void) );
  61. _PROTOTYP( static int ckcputf, (void) );
  62. /* External variables */
  63. extern struct ck_p ptab[];
  64. extern int local, escape, duplex, parity, flow, seslog, sessft, debses,
  65.  mdmtyp, ttnproto, cmask, cmdmsk, network, nettype, sosi, tnlm,
  66.  xitsta, what, ttyfd, ttpipe, quiet, backgrd, pflag, tt_crd, tn_nlm, ttfdflg,
  67.  tt_escape, justone, carrier, ttpty;
  68. extern long speed;
  69. extern char ttname[], sesfil[], myhost[], *ccntab[];
  70. #ifdef TNCODE
  71. extern int tn_b_nlm, tn_rem_echo;
  72. #endif /* TNCODE */
  73. #ifdef CK_TRIGGER
  74. extern char * tt_trigger[], * triggerval;
  75. #endif /* CK_TRIGGER */
  76. extern int nopush;
  77. #ifdef CK_APC
  78. extern int apcactive; /* Application Program Command (APC) */
  79. extern int apcstatus; /* items ... */
  80. static int apclength = 0;
  81. #ifdef DCMDBUF
  82. extern char *apcbuf;
  83. #else
  84. extern char apcbuf[];
  85. #endif /* DCMDBUF */
  86. static int apcbuflen = APCBUFLEN - 2;
  87. extern int protocol;
  88. #endif /* CK_APC */
  89. #ifndef NOXFER
  90. extern int autodl; /* Auto download */
  91. #endif /* NOXFER */
  92. #ifdef CK_AUTODL
  93. extern CHAR ksbuf[];
  94. #endif /* CK_AUTODL */
  95. #ifdef CK_ENCRYPTION
  96. extern int me_auth;
  97. #endif /* CK_ENCRYPTION */
  98. #ifdef CK_XYZ
  99. #ifdef XYZ_INTERNAL
  100. static int zmdlok = 1; /* Zmodem autodownloads available */
  101. #else
  102. static int zmdlok = 0; /* Depends on external protocol def */
  103. #endif /* XYZ_INTERNAL */
  104. #else
  105. static int zmdlok = 0; /* Not available at all */
  106. #endif /* CK_XYZ */
  107. #ifndef NOSETKEY /* Keyboard mapping */
  108. extern KEY *keymap; /* Single-character key map */
  109. extern MACRO *macrotab; /* Key macro pointer table */
  110. static MACRO kmptr = NULL; /* Pointer to current key macro */
  111. #endif /* NOSETKEY */
  112. /* Global variables local to this module */
  113. static int
  114.   active = 0,
  115.   quitnow = 0, /* <esc-char>Q was typed */
  116.   dohangup = 0, /* <esc-char>H was typed */
  117.   inshift = 0, /* SO/SI shift states */
  118.   outshift = 0;
  119. static char ecbuf[10], *ecbp; /* Escape char buffer & pointer */
  120. #ifdef CK_SMALL
  121. #define IBUFL 1536 /* Input buffer length */
  122. #else
  123. #define IBUFL 4096
  124. #endif /* CK_SMALL */
  125. static int obc = 0; /* Output buffer count */
  126. #ifndef OXOS
  127. #define OBUFL 1024 /* Output buffer length */
  128. #else
  129. #define OBUFL IBUFL
  130. #endif /* OXOS */
  131. #ifdef BIGBUFOK
  132. #define TMPLEN 4096 /* Temporary message buffer length */
  133. #else
  134. #define TMPLEN 200
  135. #endif /* BIGBUFOK */
  136. #ifdef DYNAMIC
  137. static char *ibuf = NULL, *obuf = NULL, *temp = NULL; /* Buffers */
  138. #else
  139. static char ibuf[IBUFL], obuf[OBUFL], temp[TMPLEN];
  140. #endif /* DYNAMIC */
  141. #ifdef DYNAMIC
  142. static char *ibp; /* Input buffer pointer */
  143. #else
  144. static char *ibp = ibuf; /* Input buffer pointer */
  145. #endif /*DYNAMIC */
  146. static int ibc = 0; /* Input buffer count */
  147. #ifdef DYNAMIC
  148. static char *obp; /* Output buffer pointer */
  149. #else
  150. static char *obp = obuf; /* Output buffer pointer */
  151. #endif /* DYNAMIC */
  152. /* Character-set items */
  153. static int unicode = 0;
  154. #ifndef NOCSETS
  155. #ifdef CK_ANSIC /* ANSI C prototypes... */
  156. extern CHAR (*xls[MAXTCSETS+1][MAXFCSETS+1])(CHAR); /* Character set */
  157. extern CHAR (*xlr[MAXTCSETS+1][MAXFCSETS+1])(CHAR); /* translation functions */
  158. static CHAR (*sxo)(CHAR); /* Local translation functions */
  159. static CHAR (*rxo)(CHAR); /* for output (sending) terminal chars */
  160. static CHAR (*sxi)(CHAR); /* and for input (receiving) terminal chars. */
  161. static CHAR (*rxi)(CHAR);
  162. #else /* Not ANSI C... */
  163. extern CHAR (*xls[MAXTCSETS+1][MAXFCSETS+1])(); /* Character set */
  164. extern CHAR (*xlr[MAXTCSETS+1][MAXFCSETS+1])(); /* translation functions. */
  165. static CHAR (*sxo)(); /* Local translation functions */
  166. static CHAR (*rxo)(); /* for output (sending) terminal chars */
  167. static CHAR (*sxi)(); /* and for input (receiving) terminal chars. */
  168. static CHAR (*rxi)();
  169. #endif /* CK_ANSIC */
  170. extern int language; /* Current language. */
  171. static int langsv; /* For remembering language setting. */
  172. extern struct csinfo fcsinfo[]; /* File character set info. */
  173. extern int tcsr, tcsl; /* Terminal character sets, remote & local. */
  174. static int tcs; /* Intermediate ("transfer") character set. */
  175. static int tcssize = 0; /* Size of tcs */
  176. #ifdef UNICODE /* UTF-8 support */
  177. #ifdef CK_ANSIC
  178. extern int (*xl_ufc[MAXFCSETS+1])(USHORT);  /* Unicode to FCS */
  179. extern USHORT (*xl_fcu[MAXFCSETS+1])(CHAR); /* FCS to Unicode */
  180. extern int (*xuf)(USHORT); /* Translation function UCS to FCS */
  181. extern USHORT (*xfu)(CHAR); /* Translation function FCS to UCS */
  182. #else
  183. extern int (*xl_ufc[MAXFCSETS+1])();
  184. extern USHORT (*xl_fcu[MAXFCSETS+1])();
  185. extern int (*xuf)();
  186. extern USHORT (*xfu)();
  187. #endif /* CK_ANSIC */
  188. #endif /* UNICODE */
  189. #endif /* NOCSETS */
  190. static int printing = 0;
  191. /*
  192.   We do not need to parse and recognize escape sequences if we are being built
  193.   without character-set support AND without APC support.
  194. */
  195. #ifdef NOESCSEQ
  196. #ifdef XPRINT
  197. #undef XPRINT
  198. #endif /* XPRINT */
  199. #else  /* NOESCSEQ not defined from outside */
  200. #ifdef NOCSETS /* No character sets */
  201. #ifndef CK_APC /* No APC */
  202. #ifndef XPRINT /* No transparent printing */
  203. #define NOESCSEQ /* So no escape sequence recognizer */
  204. #endif /* XPRINT */
  205. #endif /* CK_APC */
  206. #endif /* NOCSETS */
  207. #endif /* NOESCSEQ */
  208. static int escseq = 0; /* 1 = Recognizer is active */
  209. static int inesc[2] = { 0, 0 }; /* State of sequence recognizer */
  210. static int oldesc[2] = { -1, -1 }; /* Previous state of recognizer */
  211. #ifdef NOESCSEQ
  212. #define chkaes(x,y) 0
  213. #else
  214. /*
  215.   As of edit 178, the CONNECT command skips past ANSI escape sequences to
  216.   avoid translating the characters within them.  This allows the CONNECT
  217.   command to work correctly with a host that uses a 7-bit ISO 646 national
  218.   character set, in which characters like '[' would normally be translated
  219.   into accented characters, ruining the terminal's interpretation (and
  220.   generation) of escape sequences.
  221.   As of edit 190, the CONNECT command responds to APC escape sequences
  222.   (ESC _ text ESC ) if the user SETs TERMINAL APC ON or UNCHECKED, and the
  223.   program was built with CK_APC defined.
  224.   Non-ANSI/ISO-compliant escape sequences are not handled.
  225. */
  226. /* States for the escape-sequence recognizer. */
  227. #define ES_NORMAL 0 /* Normal, not in an escape sequence */
  228. #define ES_GOTESC 1 /* Current character is ESC */
  229. #define ES_ESCSEQ 2 /* Inside an escape sequence */
  230. #define ES_GOTCSI 3 /* Inside a control sequence */
  231. #define ES_STRING 4 /* Inside DCS,OSC,PM, or APC string */
  232. #define ES_TERMIN 5 /* 1st char of string terminator */
  233. /*
  234.   ANSI escape sequence handling.  Only the 7-bit form is treated, because
  235.   translation is not a problem in the 8-bit environment, in which all GL
  236.   characters are ASCII and no translation takes place.  So we don't check
  237.   for the 8-bit single-character versions of CSI, DCS, OSC, APC, or ST.
  238.   Here is the ANSI sequence recognizer state table, followed by the code
  239.   that implements it.
  240.   Definitions:
  241.     CAN = Cancel                       01/08         Ctrl-X
  242.     SUB = Substitute                   01/10         Ctrl-Z
  243.     DCS = Device Control Sequence      01/11 05/00   ESC P
  244.     CSI = Control Sequence Introducer  01/11 05/11   ESC [
  245.     ST  = String Terminator            01/11 05/12   ESC 
  246.     OSC = Operating System Command     01/11 05/13   ESC ]
  247.     PM  = Privacy Message              01/11 05/14   ESC ^
  248.     APC = Application Program Command  01/11 05/15   ESC _
  249.   ANSI escape sequence recognizer:
  250.     State    Input  New State  ; Commentary
  251.     NORMAL   (start)           ; Start in NORMAL state
  252.     (any)    CAN    NORMAL     ; ^X cancels
  253.     (any)    SUB    NORMAL     ; ^Z cancels
  254.     NORMAL   ESC    GOTESC     ; Begin escape sequence
  255.     NORMAL   other             ; NORMAL control or graphic character
  256.     GOTESC   ESC               ; Start again
  257.     GOTESC   [      GOTCSI     ; CSI
  258.     GOTESC   P      STRING     ; DCS introducer, consume through ST
  259.     GOTESC   ]      STRING     ; OSC introducer, consume through ST
  260.     GOTESC   ^      STRING     ; PM  introducer, consume through ST
  261.     GOTESC   _      STRING     ; APC introducer, consume through ST
  262.     GOTESC   0..~   NORMAL     ; 03/00 through 17/14 = Final character
  263.     GOTESC   other  ESCSEQ     ; Intermediate or ignored control character
  264.     ESCSEQ   ESC    GOTESC     ; Start again
  265.     ESCSEQ   0..~   NORMAL     ; 03/00 through 17/14 = Final character
  266.     ESCSEQ   other             ; Intermediate or ignored control character
  267.     GOTCSI   ESC    GOTESC     ; Start again
  268.     GOTCSI   @..~   NORMAL     ; 04/00 through 17/14 = Final character
  269.     GOTCSI   other             ; Intermediate char or ignored control char
  270.     STRING   ESC    TERMIN     ; Maybe have ST
  271.     STRING   other             ; Consume all else
  272.     TERMIN         NORMAL     ; End of string
  273.     TERMIN   other  STRING     ; Still in string
  274. */
  275. #ifdef XPRINT /* Transparent print support */
  276. /*
  277.   We can't just print each byte as it comes in because then the printer-off
  278.   sequence would be sent to the printer.  Thus we have to buffer up escape
  279.   sequences and print them only when they are complete AND we know they are
  280.   not the printer-off sequence.  All printing is done via zsoutx(ZMFILE,s,n).
  281.   This allows for strings that contain NULs.  Don't mix calls to zsoutx() with
  282.   calls to zchout(), or the output will be scrambled.  Also note that when
  283.   printing a saved-up escape sequence, we never print its final character
  284.   because that will be printed in the mainline code, upon return from
  285.   chkaes().  Note that the printer-on sequence is passed to the screen; this
  286.   is unavoidable, since we don't know what it is until after we get to the
  287.   end, and for screen display purposes we can't buffer up escape sequences
  288.   for numerous reasons.  Therefore we also must output the printer-off
  289.   sequence, otherwise a real terminal or emulator will be stuck in print mode.
  290. */
  291. extern int tt_print;
  292. #define ESCBUFLEN 63
  293. static char escbuf[ESCBUFLEN+1] = { NUL, NUL };
  294. static int escbufc = 0;
  295. VOID
  296. printon() { /* Turn printing on */
  297.     int x, pp;
  298.     char * p;
  299.     extern int printpipe, noprinter;
  300.     extern char * printername;
  301.     if (noprinter) {
  302. debug(F110,"PRINTER ON NOPRINTER","",0);
  303. return;
  304.     }
  305.     p = printername;
  306.     pp = printpipe;
  307.     if (!p) p = "";
  308.     if (!*p) {
  309. #ifdef ANYBSD
  310. p = "lpr";
  311. #else
  312. p = "lp";
  313. #endif /* ANYBSD */
  314. pp = 1;
  315. debug(F110,"PRINTER DEFAULT",p,0);
  316.     }
  317.     debug(F111,"PRINTER ON",p,pp);
  318.     if (pp) { /* Printing to pipe */
  319. x = zxcmd(ZMFILE,p);
  320.     } else { /* Append to file */
  321. struct filinfo xx;
  322. xx.bs = 0; xx.cs = 0; xx.rl = 0; xx.org = 0; xx.cc = 0;
  323. xx.typ = 0; xx.dsp = XYFZ_A; xx.os_specific = NUL;
  324. xx.lblopts = 0;
  325. x = zopeno(ZMFILE,p,NULL,&xx);
  326.     }
  327.     debug(F101,"PRINTER OPEN","",x);
  328.     printing = 1;
  329. }
  330. VOID
  331. printoff() { /* Turn printing off */
  332.     int x;
  333.     extern int noprinter;
  334.     printing = 0;
  335.     if (noprinter) {
  336. debug(F110,"PRINTER OFF NOPRINTER","",0);
  337. return;
  338.     }
  339.     debug(F100,"PRINTER OFF","",0);
  340.     if (printing) {
  341. x = zclose(ZMFILE);
  342. debug(F101,"PRINTER CLOSE","",x);
  343.     }
  344. }
  345. #endif /* XPRINT */
  346. /*
  347.   C H K A E S  --  Check ANSI Escape Sequence.
  348.   Call with EACH character in input stream.
  349.   src = 0 means c is incoming from remote; 1 = char from keyboard.
  350.   Sets global inesc[src] variable according to escape sequence state.
  351.   Returns 0 normally, 1 if an APC sequence is to be executed.
  352.   Handles transparent printing internally.
  353. */
  354. int
  355. #ifdef CK_ANSIC
  356. chkaes(char c, int src)
  357. #else
  358. chkaes(c,src) char c; int src;
  359. #endif /* CK_ANSIC */
  360. /* chkaes */ {
  361.     debug(F111,"chkaes entry inesc",ckitoa(src),inesc[src]);
  362.     debug(F101,"chkaes c","",c);
  363.     if (src < 0 || src > 1) /* Don't allow bad args. */
  364.       return(0);
  365.     oldesc[src] = inesc[src]; /* Remember previous state */
  366. #ifdef XPRINT
  367.     if (inesc[src] && !src) { /* Save up escape seq for printing  */
  368. if (!c) return(0); /* Ignore NULs */
  369. if (escbufc < ESCBUFLEN) {
  370.     escbuf[escbufc++] = c;
  371.     escbuf[escbufc] = NUL;
  372.     debug(F111,"ESCBUF 1",escbuf,escbufc);
  373. } else { /* Buffer overrun */
  374.     if (printing && escbufc) /* Print what's there so far */
  375.       zsoutx(ZMFILE,escbuf,escbufc);
  376.     escbufc = 1; /* clear it out */
  377.     escbuf[0] = c; /* and start off fresh buffer */
  378.     escbuf[1] = NUL; /* with this character. */
  379. }
  380.     }
  381. #endif /* XPRINT */
  382.     if (c == CAN || c == SUB) { /* CAN and SUB cancel any sequence */
  383. #ifdef XPRINT
  384. if (!src) {
  385.     if (printing && escbufc > 1)
  386.       zsoutx(ZMFILE,escbuf,escbufc-1);
  387.     escbufc = 0; /* Clear buffer */
  388.     escbuf[0] = NUL;
  389. }
  390. #endif /* XPRINT */
  391. inesc[src] = ES_NORMAL;
  392.     } else /* Otherwise */
  393.       switch (inesc[src]) { /* enter state switcher */
  394. case ES_NORMAL: /* NORMAL state */
  395.   if (c == ESC) { /* Got an ESC */
  396.       inesc[src] = ES_GOTESC; /* Change state to GOTESC */
  397. #ifdef XPRINT
  398.       if (!src) {
  399.   escbufc = 1; /* Clear escape sequence buffer */
  400.   escbuf[0] = c; /* and deposit the ESC */
  401.   escbuf[1] = NUL;
  402.   debug(F111,"ESCBUF 2",escbuf,escbufc);
  403.       }
  404. #endif /* XPRINT */
  405.   }
  406.   break; /* Otherwise stay in NORMAL state */
  407. case ES_GOTESC: /* GOTESC state - prev char was ESC*/
  408.   if (c == '[') { /* Left bracket after ESC is CSI */
  409.       inesc[src] = ES_GOTCSI; /* Change to GOTCSI state */
  410.   } else if (c == 'P' || (c > 0134 && c < 0140)) { /* P, ], ^, or _ */
  411.       inesc[src] = ES_STRING; /* Switch to STRING-absorption state */
  412. #ifdef XPRINT
  413.       debug(F111,"ESCBUF STRING",escbuf,escbufc);
  414. #endif /* XPRINT */
  415. #ifdef CK_APC
  416.       /* If APC not disabled */
  417.       if (!src && c == '_' && apcstatus != APC_OFF) {
  418.   debug(F100,"CONNECT APC begin","",0);
  419.   apcactive = APC_REMOTE; /* Set APC-Active flag */
  420.   apclength = 0; /* and reset APC buffer pointer */
  421.       }
  422. #endif /* CK_APC */
  423.   } else if (c > 057 && c < 0177) { /* Final character '0' thru '~' */
  424.       inesc[src] = ES_NORMAL; /* Back to normal */
  425. #ifdef XPRINT
  426.       if (!src) {
  427.   if (printing & escbufc > 1) {
  428.       /* Dump esc seq buf to printer */
  429.       zsoutx(ZMFILE,escbuf,escbufc-1);
  430.       debug(F111,"ESCBUF PRINT 1",escbuf,escbufc);
  431.   }
  432.   escbufc = 0; /* Clear parameter buffer */
  433.   escbuf[0] = NUL;
  434.       }
  435. #endif /* XPRINT */
  436.   } else if (c != ESC) { /* ESC in an escape sequence... */
  437.       inesc[src] = ES_ESCSEQ; /* starts a new escape sequence */
  438.   }
  439.   break; /* Intermediate or ignored ctrl char */
  440. case ES_ESCSEQ: /* ESCSEQ -- in an escape sequence */
  441.   if (c > 057 && c < 0177) { /* Final character '0' thru '~' */
  442.       inesc[src] = ES_NORMAL; /* Return to NORMAL state. */
  443. #ifdef XPRINT
  444.       if (!src) {
  445.   if (printing && escbufc > 1) {
  446.       zsoutx(ZMFILE,escbuf,escbufc-1);
  447.       debug(F111,"ESCBUF PRINT 2",escbuf,escbufc);
  448.   }
  449.   escbufc = 0; /* Clear escseq buffer */
  450.   escbuf[0] = NUL;
  451.       }
  452. #endif /* XPRINT */
  453.   } else if (c == ESC) { /* ESC ... */
  454.       inesc[src] = ES_GOTESC; /* starts a new escape sequence */
  455.   }
  456.   break; /* Intermediate or ignored ctrl char */
  457. case ES_GOTCSI: /* GOTCSI -- In a control sequence */
  458.   if (c > 077 && c < 0177) { /* Final character '@' thru '~' */
  459. #ifdef XPRINT
  460.       if (!src && tt_print) { /* Printer enabled? */
  461.   if (c == 'i') { /* Final char is "i"? */
  462.       char * p = (char *) (escbuf + escbufc - 4);
  463.       if (!strncmp(p, "33[5i", 4)) /* Yes, turn printer on */
  464. printon();
  465.       else if (!strncmp(p, "33[4i", 4)) { /* Or off... */
  466.   printoff(); /* Turn off printer. */
  467.   conxo(escbufc,escbuf); /* Display this sequence. */
  468.       } else if (printing && escbufc > 1) {
  469.   zsoutx(ZMFILE,escbuf,escbufc-1);
  470.   debug(F111,"ESCBUF PRINT 3",escbuf,escbufc);
  471.       }
  472.   } else if (printing && escbufc > 1) {
  473.       zsoutx(ZMFILE,escbuf,escbufc-1);
  474.       debug(F111,"ESCBUF PRINT 4",escbuf,escbufc);
  475.   }
  476.       }
  477.       if (!src) {
  478.   escbufc = 0; /* Clear esc sequence buffer */
  479.   escbuf[0] = NUL;
  480.       }
  481. #endif /* XPRINT */
  482.       inesc[src] = ES_NORMAL; /* Return to NORMAL. */
  483.   } else if (c == ESC) { /* ESC ... */
  484.       inesc[src] = ES_GOTESC; /* starts over. */
  485.   }
  486.   break;
  487. case ES_STRING: /* Inside a string */
  488.   if (c == ESC) /* ESC may be 1st char of terminator */
  489.     inesc[src] = ES_TERMIN; /* Go see. */
  490. #ifdef CK_APC
  491.   else if (apcactive) { /* If in APC */
  492.       if (apclength < apcbuflen) { /* and there is room... */
  493.   apcbuf[apclength++] = c; /* deposit this character. */
  494.       } else { /* Buffer overrun */
  495.   apcactive = 0; /* Discard what we got */
  496.   apclength = 0; /* and go back to normal */
  497.   apcbuf[0] = 0; /* Not pretty, but what else */
  498.   inesc[src] = ES_NORMAL; /* can we do?  (ST might not come) */
  499.       }
  500.   }
  501. #endif /* CK_APC */
  502.   break; /* Absorb all other characters. */
  503. case ES_TERMIN: /* Maybe a string terminator */
  504.   if (c == '\') { /* which must be backslash */
  505.       inesc[src] = ES_NORMAL; /* If so, back to NORMAL */
  506. #ifdef XPRINT
  507.       if (!src) {
  508.   if (printing && escbufc > 1) { /* If printing... */
  509.       /* Print esc seq buffer */
  510.       zsoutx(ZMFILE,escbuf,escbufc-1);
  511.       debug(F111,"ESCBUF PRINT 5",escbuf,escbufc);
  512.   }
  513.   escbufc = 0; /* Clear escseq buffer */
  514.   escbuf[0] = NUL;
  515.       }
  516. #endif /* XPRINT */
  517. #ifdef CK_APC
  518.       if (!src && apcactive) { /* If it was an APC string, */
  519.   debug(F101,"CONNECT APC terminated","",c);
  520.   apcbuf[apclength] = NUL; /* terminate it and then ... */
  521.   return(1);
  522.       }
  523. #endif /* CK_APC */
  524.   } else { /* It's not a backslash so... */
  525.       inesc[src] = ES_STRING; /* back to string absorption. */
  526. #ifdef CK_APC
  527.       if (apcactive) { /* In APC string */
  528.   if (apclength+1 < apcbuflen) { /* If enough room */
  529.       apcbuf[apclength++] = ESC; /* deposit the Esc */
  530.       apcbuf[apclength++] = c;   /* and this character too. */
  531.   } else { /* Buffer overrun */
  532.       apcactive = 0;
  533.       apclength = 0;
  534.       apcbuf[0] = 0;
  535.       inesc[src] = ES_NORMAL;
  536.   }
  537.       }
  538. #endif /* CK_APC */
  539.   }
  540.       } /* switch() */
  541.     debug(F111,"chkaes exit inesc",ckitoa(src),inesc[src]);
  542.     return(0);
  543. }
  544. #endif /* NOESCSEQ */
  545. /*  C K C P U T C  --  C-Kermit CONNECT Put Character to Screen  */
  546. /*
  547.   Output is buffered to avoid slow screen writes on fast connections.
  548. */
  549. static int
  550. ckcputf() { /* Dump the output buffer */
  551.     int x = 0;
  552.     if (obc > 0) /* If we have any characters, */
  553.       x = conxo(obc,obuf); /* dump them, */
  554.     obp = obuf; /* reset the pointer */
  555.     obc = 0; /* and the counter. */
  556.     return(x); /* Return conxo's return code */
  557. }
  558. /*
  559.   NOTE: This is probably the right place for character-set translation,
  560.   rather than down below in the mainline code.  ckcputc() would act like
  561.   xpnbyte() in ckcfns.c, and ckcgetc() would act like xgnbyte().  This
  562.   would shield the rest of the code from all the complexities of many-to-one
  563.   and one-to-many conversions, and would allow handling of Kanji and other
  564.   CJK sets along with UTF-8 and the rest.
  565. */
  566. int
  567. ckcputc(c) int c; {
  568.     int x;
  569.     *obp++ = c & 0xff; /* Deposit the character */
  570.     obc++; /* Count it */
  571.     if (ibc == 0 || /* If input buffer about empty */
  572. obc == OBUFL) { /* or output buffer full */
  573. debug(F101,"CONNECT CKCPUTC obc","",obc);
  574. x = conxo(obc,obuf); /* dump the buffer, */
  575. obp = obuf; /* reset the pointer */
  576. obc = 0; /* and the counter. */
  577. return(x); /* Return conxo's return code */
  578.     } else return(0);
  579. }
  580. /*  C K C G E T C  --  C-Kermit CONNECT Get Character  */
  581. /*
  582.   Buffered read from communication device.
  583.   Returns the next character, refilling the buffer if necessary.
  584.   On error, returns ttinc's return code (see ttinc() description).
  585.   Dummy argument for compatible calling conventions with ttinc()
  586.   so a pointer to this function can be passed to tn_doop().
  587. */
  588. int
  589. ckcgetc(dummy) int dummy; {
  590.     int c, n;
  591. #ifdef CK_SSL
  592.     extern int ssl_active_flag, tls_active_flag;
  593. #endif /* CK_SSL */
  594. #ifdef CK_ENCRYPTION
  595.     /* No buffering for possibly encrypted connections */
  596.     if (network && ttnproto == NP_TELNET && TELOPT_ME(TELOPT_AUTHENTICATION))
  597.       return(ttinc(0));
  598. #endif /* CK_ENCRYPTION */
  599. #ifdef CK_SSL
  600.     if (ssl_active_flag || tls_active_flag)
  601.         return(ttinc(0));
  602. #endif /* CK_SSL */
  603.     if (ibc < 1) { /* Need to refill buffer? */
  604. ibc = 0; /* Yes, reset count */
  605. ibp = ibuf; /* and buffer pointer */
  606. c = ttinc(0); /* Read one character, blocking */
  607. if (c < 0) { /* If error, return error code */
  608.     return(c);
  609. } else { /* Otherwise, got one character */
  610.     *ibp++ = c; /* Advance buffer pointer */
  611.     ibc++; /* and count. */
  612. }
  613. if ((n = ttchk()) > 0) { /* Any more waiting? */
  614.     if (n > (IBUFL - ibc)) /* Get them all at once. */
  615.       n = IBUFL - ibc; /* Don't overflow buffer */
  616.       if ((n = ttxin(n,(CHAR *)ibp)) > 0) {
  617. #ifdef CK_ENCRYPTION
  618.   if (TELOPT_U(TELOPT_ENCRYPTION))
  619.                     ck_tn_decrypt(ibp,n);
  620. #endif /* CK_ENCRYPTION */
  621.   ibc += n; /* Advance counter */
  622.               }
  623. } else if (n < 0) { /* Error? */
  624.     return(n); /* Return the error code */
  625. }
  626. ibp = ibuf; /* Point to beginning of buffer */
  627.     }
  628.     c = *ibp++ & 0xff; /* Get next character from buffer */
  629.     ibc--; /* Reduce buffer count */
  630.     /* debug(F000,"CKCGETC","",c); */
  631.     return(c); /* Return the character */
  632. }
  633. /*
  634.    Keyboard handling, buffered for speed, which is needed when C-Kermit is
  635.    in CONNECT mode between two other computers that are transferring data.
  636. */
  637. static char *kbp; /* Keyboard input buffer pointer */
  638. static int kbc; /* Keyboard input buffer count */
  639. #ifdef CK_SMALL /* Keyboard input buffer length */
  640. #define KBUFL 32 /* Small for PDP-11 UNIX */
  641. #else
  642. #define KBUFL 257 /* Regular kernel size for others */
  643. #endif /* CK_SMALL */
  644. #ifdef DYNAMIC
  645. static char *kbuf = NULL;
  646. #else
  647. static char kbuf[KBUFL];
  648. #endif /* DYNAMIC */
  649. /* Macro for reading keystrokes. */
  650. #define CONGKS() (((--kbc)>=0) ? ((int)(*kbp++) & 0377) : kbget())
  651. /*
  652.   Note that we call read() directly here, normally a no-no, but in this case
  653.   we know it's UNIX and we're only doing what coninc(0) would have done,
  654.   except we're reading a block of characters rather than just one.  There is,
  655.   at present, no conxin() analog to ttxin() for chunk reads, and instituting
  656.   one would only add function-call overhead as it would only be a wrapper for
  657.   a read() call anyway.
  658.   Another note: We stick in this read() till the user types something.
  659.   But we know they already did, since select() said so.  Therefore something
  660.   would need to be mighty wrong before we get in trouble here.
  661. */
  662. static int /* Keyboard buffer filler */
  663. kbget() {
  664. #ifdef EINTR
  665.     int tries = 10; /* If read() is interrupted, */
  666.     int ok = 0;
  667.     while (tries-- > 0) { /* try a few times... */
  668. #endif /* EINTR */
  669. kbc = conchk(); /* How many chars waiting? */
  670. debug(F101,"kbget kbc","",kbc);
  671. if (kbc < 1)
  672.   kbc = 1; /* If none or dunno, wait for one. */
  673. else if (kbc > KBUFL) /* If too many, */
  674.   kbc = KBUFL; /* only read this many. */
  675. if ((kbc = read(0, kbuf, kbc)) < 1) { /* Now read it/them. */
  676.     debug(F101,"CONNECT kbget errno","",errno); /* Got an error. */
  677. #ifdef EINTR
  678.     if (errno == EINTR) /* Interrupted system call. */
  679.       continue; /* Try again, up to limit. */
  680.     else /* Something else. */
  681. #endif /* EINTR */
  682.       return(-1); /* Pass along read() error. */
  683. }
  684. #ifdef EINTR
  685. else { ok = 1; break; }
  686.     }
  687.     if (!ok) return(-1);
  688. #endif /* EINTR */
  689.     kbp = kbuf; /* Adjust buffer pointer, */
  690.     kbc--; /* count, */
  691.     return((int)(*kbp++) & 0377); /* and return first character. */
  692. }
  693. #ifdef BEBOX
  694. /*
  695.  * CreateSocketPair --
  696.  *
  697.  * This procedure creates a connected socket pair
  698.  *
  699.  * Results:
  700.  * 0 if OK, the error if not OK.
  701.  *
  702.  * Side effects:
  703.  * None
  704.  */
  705. int
  706. socketpair(int *pair) {
  707.     int servsock;
  708.     int val;
  709.     struct sockaddr_in serv_addr, cli_addr;
  710.     extern char myipaddr[];
  711.     debug(F110,"socketpair",myipaddr,0);
  712.     if (myipaddr[0] == 0)
  713.       getlocalipaddr();
  714.     servsock = socket(AF_INET, SOCK_STREAM, 0);
  715.     if (servsock == 0) {
  716. return h_errno;
  717.     }
  718.     debug(F111,"socketpair","socket",servsock);
  719.     memset(&serv_addr, 0, sizeof(serv_addr));
  720.     serv_addr.sin_family = AF_INET;
  721.     serv_addr.sin_addr.s_addr = htonl(INADDR_ANY);
  722.     serv_addr.sin_port = htons(0);
  723.     val = sizeof(serv_addr);
  724.     if (bind(servsock, (struct sockaddr *) &serv_addr, val) < 0) {
  725. closesocket(servsock);
  726. return h_errno;
  727.     }
  728.     debug(F111,"socketpair","bind",0);
  729.     listen(servsock, 1);
  730.     debug(F111,"socketpair","listen",0);
  731.     if (getsockname(servsock, (struct sockaddr *) &serv_addr, &val) < 0) {
  732. closesocket(servsock);
  733. return h_errno;
  734.     }
  735.     debug(F111,"socketpair","getsockname",0);
  736.     pair[0] = socket(AF_INET, SOCK_STREAM, 0);
  737.     if (pair[0] == 0) {
  738. closesocket(servsock);
  739. return h_errno;
  740.     }
  741.     debug(F111,"socketpair","socket",pair[0]);
  742.     memset(&cli_addr, 0, sizeof(cli_addr));
  743.     cli_addr.sin_family = AF_INET;
  744.     cli_addr.sin_addr.s_addr = inet_addr(myipaddr[0]?myipaddr:"127.0.0.1");
  745.     cli_addr.sin_port = serv_addr.sin_port;
  746.     if (connect(pair[0],(struct sockaddr *) &cli_addr, sizeof(cli_addr)) < 0) {
  747. closesocket(pair[0]);
  748. closesocket(servsock);
  749. return h_errno;
  750.     }
  751.     debug(F111,"socketpair","connect",0);
  752.     pair[1] = accept(servsock, (struct sockaddr *) &serv_addr, &val);
  753.     if (pair[1] == 0) {
  754. closesocket(pair[0]);
  755. closesocket(servsock);
  756. return h_errno;
  757.     }
  758.     debug(F111,"socketpair","accept",pair[1]);
  759.     closesocket(servsock);
  760.     debug(F111,"socketpair","closesocket",0);
  761.     return 0;
  762. }
  763. long
  764. kbdread(void * param) {
  765.     int sock = (int) param;
  766.     char ch;
  767.     int rc = 0;
  768.     debug(F111,"kbdread","sock",sock);
  769.     while (rc >= 0) {
  770. rc = read(fileno(stdin), &ch, 1); /* Read a character. */
  771. if (rc > 0) {
  772.     rc = send(sock,&ch,1,0);
  773.     /* debug(F000,"kbdread","send()",ch); */
  774.     printf("rngot: %c rc = %drn",ch,rc);
  775. } else
  776.   msleep(100);
  777.     }
  778.     debug(F110,"kbdread","terminating",0);
  779.     return(rc);
  780. }
  781. #endif /* BEBOX */
  782. static int printbar = 0;
  783. #define OUTXBUFSIZ 15
  784. static CHAR inxbuf[OUTXBUFSIZ+1]; /* Host-to-screen expansion buffer */
  785. static int inxcount = 0; /* and count */
  786. static CHAR outxbuf[OUTXBUFSIZ+1]; /* Keyboard-to-host expansion buf */
  787. static int outxcount = 0; /* and count */
  788. int
  789. conect() {
  790.     int rc = 0; /* Return code: 0 = fail, 1 = OK */
  791.     int i, x = 0;
  792.     register int c, c2, csave; /* Characters */
  793. #ifdef TNCODE
  794.     int tx; /* For Telnet negotiations */
  795. #endif /* TNCODE */
  796.     int apcrc = 0; /* For APC and transparent print */
  797.     int n, kbin, scrnout; /* select() items... */
  798.     fd_set in, out, err; /* File descriptor sets */
  799.     int gotnet = 0; /* Flag for net ready to read */
  800.     int gotkbd = 0; /* Flag for keyboard ready to read */
  801.     int oldprt = 0; /* Used with printing */
  802.     int msgflg = 0;
  803.     char cbuf[2]; /* Ditto */
  804. #ifdef BEBOX
  805.     int tid = 0; /* Thread ID */
  806.     int pair[2]; /* Socket Pair */
  807.     CHAR ch;
  808.     CHAR buf[64];
  809. #endif /* BEBOX */
  810. #ifdef BEBOX
  811.     {
  812. /* Create a socket pair to be used for the keyboard input */
  813. if (socketpair(pair)) {
  814.     debug(F110,"conect","unable to create socket pair",0);
  815.     return(-1);
  816. }
  817. debug(F111,"connect","socket pair[0]",pair[0]);
  818. debug(F111,"connect","socket pair[1]",pair[1]);
  819. /* Assign one end of the socket to kbin */
  820. kbin = pair[0];
  821.         tid = spawn_thread(kbdread,
  822.    "Kbd to Socket Pair",
  823.     B_NORMAL_PRIORITY,
  824.    (void *)pair[1]
  825.    );
  826.         resume_thread(tid);
  827. debug(F110,"connect","tid",tid);
  828.     }
  829. #else /* BEBOX */
  830.     kbin = fileno(stdin); /* stdin file descriptor */
  831. #endif /* BEBOX */
  832.     scrnout = fileno(stdout); /* stdout file descriptor */
  833. #ifdef CK_TRIGGER
  834.     makestr(&triggerval,NULL); /* Reset trigger */
  835. #endif /* CK_TRIGGER */
  836. #ifdef XPRINT
  837.     escbufc = 0; /* Reset esc-sequence buffer */
  838.     escbuf[0] = NUL;
  839. #endif /* XPRINT */
  840.     cbuf[1] = NUL;
  841.     ttimoff(); /* Turn off any timer interrupts */
  842.     if (!local) { /* Be sure we're not in remote mode */
  843. #ifdef NETCONN
  844. printf("Sorry, you must SET LINE or SET HOST firstn");
  845. #else
  846. printf("Sorry, you must SET LINE firstn");
  847. #endif /* NETCONN */
  848. return(0);
  849.     }
  850.     if (speed < 0L && network == 0 && ttfdflg == 0) {
  851. printf("Sorry, you must SET SPEED firstn");
  852. return(0);
  853.     }
  854. #ifdef TCPSOCKET
  855.     if (network && !ttpipe && (nettype != NET_TCPB && nettype != NET_PTY)) {
  856. printf("Sorry, network type not supportedn");
  857. return(0);
  858.     }
  859. #endif /* TCPSOCKET */
  860. #ifdef DYNAMIC
  861.     if (!ibuf) {
  862. if (!(ibuf = malloc(IBUFL+1))) { /* Allocate input line buffer */
  863.     printf("Sorry, CONNECT input buffer can't be allocatedn");
  864.     return(0);
  865. } else {
  866.     ibp = ibuf;
  867.     ibc = 0;
  868. }
  869.     }
  870.     if (!obuf) {
  871. if (!(obuf = malloc(OBUFL+1))) { /* Allocate output line buffer */
  872.     printf("Sorry, CONNECT output buffer can't be allocatedn");
  873.     return(0);
  874. } else {
  875.     obp = obuf;
  876.     obc = 0;
  877. }
  878.     }
  879.     if (!kbuf) {
  880. if (!(kbuf = malloc(KBUFL+1))) { /* Allocate keyboard input buffer */
  881.     printf("Sorry, CONNECT keyboard buffer can't be allocatedn");
  882.     return(0);
  883. }
  884.     }
  885.     if (!temp) {
  886. if (!(temp = malloc(TMPLEN+1))) { /* Allocate temporary buffer */
  887.     printf("Sorry, CONNECT temporary buffer can't be allocatedn");
  888.     return(0);
  889. }
  890.     }
  891. #else
  892.     obp = obuf;
  893.     obc = 0;
  894. #endif /* DYNAMIC */
  895.     kbp = kbuf; /* Always clear these. */
  896.     *kbp = NUL; /* No need to preserve them between */
  897.     kbc = 0; /* CONNECT sessions. */
  898. #ifdef DEBUG
  899.     if (deblog) {
  900. debug(F101,"CONNECT conect entry ttyfd","",ttyfd);
  901. debug(F101,"CONNECT conect entry ibc","",ibc);
  902. debug(F101,"CONNECT conect entry obc","",obc);
  903. debug(F101,"CONNECT conect entry kbc","",kbc);
  904. #ifdef CK_TRIGGER
  905. debug(F110,"CONNECT conect trigger",tt_trigger[0],0);
  906. #endif /* CK_TRIGGER */
  907. if (ttyfd > -1) {
  908.     n = ttchk();
  909.     debug(F101,"CONNECT conect entry ttchk","",n);
  910. }
  911.     }
  912. #endif /* DEBUG */
  913.     if (ttyfd < 0) { /* If communication device not open */
  914. #ifdef TTLEBUF
  915.         int n = le_inbuf();
  916.         debug(F111,"CONNECT le_inbuf()","ttyfd < 0",n);
  917.         if (n > 0) {
  918.             while (n--) {
  919.                 CHAR ch;
  920.                 le_getchar(&ch);
  921.                 conoc(ch);
  922.             }
  923.             return(0);
  924.         }
  925. #endif /* TTLEBUF */
  926. debug(F101,"CONNECT ttnproto","",ttnproto);
  927. debug(F111,"CONNECT opening",ttname,0); /* Open it now */
  928. if (ttopen(ttname,
  929.    &local,
  930.    network ? -nettype : mdmtyp,
  931.    0
  932.    ) < 0) {
  933.     sprintf(temp,"Sorry, can't open %s",ttname);
  934.     perror(temp);
  935.     debug(F110,"CONNECT open failure",ttname,0);
  936.     return(0);
  937. }
  938. #ifdef IKS_OPTION
  939. /* If peer is in Kermit server mode, return now. */
  940. if (TELOPT_SB(TELOPT_KERMIT).kermit.u_start)
  941.   return(0);
  942. #endif /* IKS_OPTION */
  943.     }
  944.     dohangup = 0; /* Hangup not requested yet */
  945.     msgflg = !quiet
  946. #ifdef CK_APC
  947.       && !apcactive
  948. #endif /* CK_APC */
  949. ;
  950.     if (msgflg) {
  951. #ifdef NETCONN
  952. if (network) {
  953. #ifdef CK_ENCRYPTION
  954.     extern int me_encrypt, u_encrypt;
  955.     if (ck_tn_encrypting() && ck_tn_decrypting())
  956.       printf("SECURE connection to host %s",ttname);
  957.     else
  958. #endif /* CK_ENCRYPTION */
  959.       if (ttpipe || ttpty)
  960. printf("Connecting via command "%s"",ttname);
  961.       else
  962. printf("Connecting to host %s",ttname);
  963. } else {
  964. #endif /* NETCONN */
  965.     printf("Connecting to %s",ttname);
  966.     if (speed > -1L) printf(", speed %ld",speed);
  967. #ifdef NETCONN
  968. }
  969. #endif /* NETCONN */
  970. if (tt_escape) {
  971.     printf(".rnThe escape character is Ctrl-%c (ASCII %d, %s)rn",
  972.    ctl(escape), escape,
  973.    (escape == 127 ? "DEL" : ccntab[escape]));
  974.     printf("Type the escape character followed by C to get back,rn");
  975.     printf("or followed by ? to see other options.rn");
  976. } else {
  977.     printf(".rnnESCAPE CHARACTER IS DISABLEDrnn");
  978. }
  979. if (seslog) {
  980.     printf("(Session logged to %s, ",sesfil);
  981.     printf("%s)rn", sessft ? "binary" : "text");
  982. }
  983. if (debses) printf("Debugging Display...)rn");
  984.     }
  985. /* Condition console terminal and communication line */
  986.     if (conbin((char)escape) < 0) {
  987. printf("Sorry, can't condition console terminaln");
  988. fflush(stdout);
  989. return(0);
  990.     }
  991.     debug(F101,"CONNECT cmask","",cmask);
  992.     debug(F101,"CONNECT cmdmsk","",cmdmsk);
  993.     debug(F101,"CONNECT speed before ttvt","",speed);
  994.     if ((n = ttvt(speed,flow)) < 0) { /* Enter "virtual terminal" mode */
  995. if (!network) {
  996.     debug(F101,"CONNECT ttvt","",n);
  997.     tthang(); /* Hang up and close the device. */
  998.     ttclos(0);
  999.     if (ttopen(ttname, /* Open it again... */
  1000.        &local,
  1001.        network ? -nettype : mdmtyp,
  1002.        0
  1003.        ) < 0) {
  1004. sprintf(temp,"Sorry, can't reopen %s",ttname);
  1005. perror(temp);
  1006. return(0);
  1007.     }
  1008. #ifdef IKS_OPTION
  1009.     if (TELOPT_SB(TELOPT_KERMIT).kermit.u_start)
  1010.       return(0);
  1011. #endif /* IKS_OPTION */
  1012.     if (ttvt(speed,flow) < 0) { /* Try virtual terminal mode again. */
  1013. conres(); /* Failure this time is fatal. */
  1014. printf("Sorry, Can't condition communication linen");
  1015. return(0);
  1016.     }
  1017. }
  1018.     }
  1019.     debug(F101,"CONNECT ttvt ok, escape","",escape);
  1020.     /* Despite ttvt() this is still needed in HP-UX */
  1021.     /* because of the HP-9000 <RESET> key.*/
  1022.     signal(SIGINT, SIG_IGN);
  1023.     signal(SIGQUIT, SIG_IGN);
  1024.     debug(F101,"CONNECT carrier-watch","",carrier);
  1025.     if (!network && (carrier != CAR_OFF)) {
  1026. int x;
  1027. x = ttgmdm();
  1028. debug(F100,"CONNECT ttgmdm","",x);
  1029. if ((x > -1) && !(x & BM_DCD)) {
  1030. #ifndef NOICP
  1031.     extern int hints;
  1032. #endif /* NOICP */
  1033.     debug(F100,"CONNECT ttgmdm CD test fails","",x);
  1034.     conres();
  1035.     printf("?Carrier required but not detected.n");
  1036. #ifndef NOICP
  1037.     if (!hints)
  1038.       return(0);
  1039.     printf("***********************************n");
  1040.     printf(" Hint: To CONNECT to a serial device thatn");
  1041.     printf(" is not presenting the Carrier Detect signal,n");
  1042.     printf(" first tell C-Kermit to:nn");
  1043.     printf("   SET CARRIER-WATCH OFFnn");
  1044.     printf("***********************************nn");
  1045. #endif /* NOICP */
  1046.     return(0);
  1047. }
  1048. debug(F100,"CONNECT ttgmdm ok","",0);
  1049.     }
  1050.     /* Now we are connected. */
  1051.     if (msgflg || printbar)
  1052.       printf("----------------------------------------------------rn");
  1053.     fflush(stdout);
  1054. #ifndef NOCSETS
  1055. /* Set up character set translations */
  1056.     unicode = 0; /* Assume Unicode won't be involved */
  1057.     tcs = 0; /* "Transfer" or "Other" charset */
  1058.     sxo = rxo = NULL; /* Initialize byte-to-byte functions */
  1059.     sxi = rxi = NULL;
  1060.     if (tcsr != tcsl) { /* Remote and local sets differ... */
  1061. #ifdef UNICODE
  1062. if (tcsr == FC_UTF8 || /* Remote charset is UTF-8 */
  1063.     tcsl == FC_UTF8) { /* or local one is. */
  1064.     xuf = xl_ufc[tcsl]; /* Incoming Unicode to local */
  1065.     if (xuf) {
  1066. tcs = (tcsr == FC_UTF8) ? tcsl : tcsr; /* The "other" set */
  1067. xfu = xl_fcu[tcs]; /* Local byte to remote Unicode */
  1068. if (xfu)
  1069.   unicode = (tcsr == FC_UTF8) ? 1 : 2;
  1070.     }
  1071.     tcssize = fcsinfo[tcs].size; /* Size of other character set. */
  1072. } else {
  1073. #endif /* UNICODE */
  1074.     tcs = gettcs(tcsr,tcsl); /* Get intermediate set. */
  1075.     sxo = xls[tcs][tcsl]; /* translation function */
  1076.     rxo = xlr[tcs][tcsr]; /* pointers for output functions */
  1077.     sxi = xls[tcs][tcsr]; /* and for input functions. */
  1078.     rxi = xlr[tcs][tcsl];
  1079. #ifdef UNICODE
  1080. }
  1081. #endif /* UNICODE */
  1082.     }
  1083. /*
  1084.   This is to prevent use of zmstuff() and zdstuff() by translation functions.
  1085.   They only work with disk i/o, not with communication i/o.  Luckily Russian
  1086.   translation functions don't do any stuffing...
  1087. */
  1088.     langsv = language;
  1089. #ifndef NOCYRIL
  1090.     if (language != L_RUSSIAN)
  1091. #endif /* NOCYRIL */
  1092.       language = L_USASCII;
  1093. #ifdef COMMENT
  1094. #ifdef DEBUG
  1095.     if (deblog) {
  1096. debug(F101,"CONNECT tcs","",tcs);
  1097. debug(F101,"CONNECT tcsl","",tcsl);
  1098. debug(F101,"CONNECT tcsr","",tcsr);
  1099. debug(F101,"CONNECT fcsinfo[tcsl].size","",fcsinfo[tcsl].size);
  1100. debug(F101,"CONNECT fcsinfo[tcsr].size","",fcsinfo[tcsr].size);
  1101. debug(F101,"CONNECT unicode","",unicode);
  1102.     }
  1103. #endif /* DEBUG */
  1104. #endif /* COMMENT */
  1105. #ifdef CK_XYZ
  1106. #ifndef XYZ_INTERNAL
  1107.     {
  1108. extern int binary; /* See about ZMODEM autodownloads */
  1109. char * s;
  1110. s = binary ? ptab[PROTO_Z].p_b_rcmd : ptab[PROTO_Z].p_t_rcmd;
  1111. if (!s) s = "";
  1112. zmdlok = (*s != NUL); /* OK if we have external commands */
  1113.     }
  1114. #endif /* XYZ_INTERNAL */
  1115. #endif /* CK_XYZ */
  1116. #ifndef NOESCSEQ
  1117. /*
  1118.   We need to activate the escape-sequence recognition feature when:
  1119.    (a) translation is elected, AND
  1120.    (b) the local and/or remote set is a 7-bit set other than US ASCII.
  1121.   Or:
  1122.    SET TERMINAL APC is not OFF (handled in the next statement).
  1123. */
  1124.     escseq = (tcs != TC_TRANSP) && /* Not transparent */
  1125.       (fcsinfo[tcsl].size == 128 || fcsinfo[tcsr].size == 128) && /* 7 bits */
  1126. (fcsinfo[tcsl].code != FC_USASCII); /* But not ASCII */
  1127. #endif /* NOESCSEQ */
  1128. #endif /* NOCSETS */
  1129. #ifndef NOESCSEQ
  1130. #ifdef CK_APC
  1131.     escseq = escseq || (apcstatus != APC_OFF);
  1132.     apcactive = 0; /* An APC command is not active */
  1133.     apclength = 0; /* ... */
  1134. #endif /* CK_APC */
  1135. #ifdef XPRINT
  1136.     escseq |= tt_print;
  1137. #endif /* XPRINT */
  1138.     inesc[0] = ES_NORMAL; /* Initial state of recognizer */
  1139.     inesc[1] = ES_NORMAL;
  1140.     debug(F101,"CONNECT escseq","",escseq);
  1141. #endif /* NOESCSEQ */
  1142.     if (ttyfd > -1) { /* (just in case...) */
  1143. what = W_CONNECT; /* Keep track of what we're doing */
  1144. FD_ZERO(&in); /* Clear select() structs */
  1145. FD_ZERO(&out);
  1146. FD_ZERO(&err);
  1147. active = 1;
  1148.     }
  1149.     while (active) { /* Big loop... */
  1150. debug(F100,"CONNECT top of loop","",0);
  1151. gotkbd = 0;
  1152. gotnet = ttpeek(); /* Something sitting in ckutio buf */
  1153. debug(F101,"CONNECT ttpeek","",gotnet);
  1154. if (
  1155. #ifndef NOSETKEY
  1156.     !kmptr /* Check for key macro active */
  1157. #else
  1158.     1
  1159. #endif /* NOSETKEY */
  1160.     ) {
  1161.     if (obc) { /* No key macro - set up for select */
  1162. FD_SET(ttyfd, &out); /* Have stuff to send to net */
  1163.     } else {
  1164. FD_SET(kbin, &in); /* Need to read stuff from keyboard */
  1165.     }
  1166. #ifdef BEBOX
  1167.     if (!(ibc || gotnet > 0))
  1168. FD_SET(ttyfd, &in); /* Need to read stuff from net */
  1169. #else /* BEBOX */
  1170.     if (ibc || gotnet > 0) {
  1171. FD_SET(scrnout, &out); /* Have stuff to put on screen */
  1172.     } else {
  1173. FD_SET(ttyfd, &in); /* Need to read stuff from net */
  1174.     }
  1175. #endif /* BEBOX */
  1176.             FD_SET(ttyfd, &err);
  1177. #ifdef CK_FORWARD_X
  1178.             fwdx_init_fd_set(&in);
  1179. #endif /* CK_FORWARD_X */
  1180.     /* Wait till the first one of the above is ready for i/o */
  1181.     /* NOTE: here we could implement idle timeouts */
  1182.     debug(F100,"CONNECT select() waiting...","",0);
  1183.     c = select(16, &in, &out, &err, 0);
  1184.     debug(F101,"CONNECT select()","",c);
  1185.     if (c < 1) {
  1186. #ifdef EINTR
  1187. if (c == -1) {
  1188.     if (errno == EINTR) {
  1189. continue;
  1190.     }
  1191. }
  1192. #endif /* EINTR */
  1193. sleep(1);
  1194. continue;
  1195.     }
  1196. #ifndef BEBOX
  1197.     if (FD_ISSET(scrnout, &out)) {
  1198. debug(F100,"CONNECT SELECT scrnout","",0);
  1199.     }
  1200. #endif /* BEBOX */
  1201. #ifdef CK_FORWARD_X
  1202.             fwdx_check_sockets(&in);
  1203. #endif /* CK_FORWARD_X */
  1204.     if (FD_ISSET(ttyfd, &in)) { /* Read from net? */
  1205. debug(F110,"CONNECT SELECT ttyfd","in",0);
  1206. FD_CLR(ttyfd, &in);
  1207. gotnet = 1; /* Net is ready */
  1208.     }
  1209.     if (FD_ISSET(kbin, &in)) { /* Read from keyboard? */
  1210. debug(F100,"CONNECT SELECT kbin","",0);
  1211. FD_CLR(kbin, &in);
  1212. gotkbd = 1; /* Keyboard is ready */
  1213.     }
  1214.             if (FD_ISSET(ttyfd, &err)) {
  1215. debug(F110,"CONNECT SELECT ttyfd","err",0);
  1216. FD_CLR(ttyfd, &err);
  1217. #ifdef NETPTY
  1218. #ifdef HAVE_PTYTRAP
  1219. /* Special handling for HP-UX pty i/o */
  1220.                 if (ttpty) {
  1221.                     if (pty_trap_handler(ttyfd) > 0) {
  1222.                         ttclos(0);
  1223.                         goto conret1;
  1224.                     }
  1225.                     continue;
  1226.                 }
  1227. #endif /* HAVE_PTYTRAP */
  1228. #endif /* NETPTY */
  1229. gotnet = 1; /* Net is ready (don't set if pty) */
  1230.             }
  1231. }
  1232. debug(F101,"CONNECT gotkbd","",gotkbd);
  1233. debug(F101,"CONNECT kbc","",kbc);
  1234. #ifndef NOSETKEY
  1235. debug(F101,"CONNECT kmptr","",kmptr);
  1236. #endif /* NOSETKEY */
  1237. while (gotkbd || kbc > 0 /* If we have keyboard chars */
  1238. #ifndef NOSETKEY
  1239.        || kmptr
  1240. #endif /* NOSETKEY */
  1241.        ) {
  1242. #ifndef NOSETKEY
  1243.     if (kmptr) { /* Have current macro? */
  1244. debug(F100,"CONNECT kmptr non NULL","",0);
  1245. if ((c = (CHAR) *kmptr++) == NUL) { /* Get char from it */
  1246.     kmptr = NULL; /* If no more chars,  */
  1247.     debug(F100,"CONNECT macro empty, continuing","",0);
  1248.     continue; /* reset pointer and continue */
  1249. }
  1250. debug(F000,"CONNECT char from macro","",c);
  1251.     } else { /* No macro... */
  1252. #endif /* NOSETKEY */
  1253. #ifdef BEBOX
  1254. {
  1255.     int rc = 0;
  1256.     if ((rc = recv(kbin,buf,1,0)) > 0)
  1257.       c = buf[0];
  1258.     else
  1259.       c = -1;
  1260.     debug(F111,"recv","rc",rc);
  1261.     printf("rnrecv: %c rc=%drn",buf[0],rc);
  1262. }
  1263. #else /* BEBOX */
  1264. c = CONGKS(); /* Yes, read from keyboard */
  1265. #endif /* BEBOX */
  1266. gotkbd = 0; /* Turn off select() result flag */
  1267. #ifndef NOSETKEY
  1268.     }
  1269. #endif /* NOSETKEY */
  1270.     if (c == -1) {
  1271. #ifdef EINTR
  1272. if (errno == EINTR)
  1273.   continue;
  1274. #endif /* EINTR */
  1275. conoc(BEL);
  1276. goto conret0;
  1277.     }
  1278.     c &= cmdmsk; /* Do any requested masking */
  1279. #ifndef NOSETKEY
  1280. /*
  1281.   Note: kmptr is NULL if we got character c from the keyboard, and it is
  1282.   not NULL if it came from a macro.  In the latter case, we must avoid
  1283.   expanding it again.
  1284. */
  1285.     if (!kmptr && macrotab[c]) { /* Macro definition for c? */
  1286. debug(F000,"CONNECT macro key",macrotab[c],c);
  1287. kmptr = macrotab[c]; /* Yes, set up macro pointer */
  1288. continue; /* and restart the loop, */
  1289.     } else c = keymap[c]; /* else use single-char keymap */
  1290. #endif /* NOSETKEY */
  1291.     if (
  1292. #ifndef NOSETKEY
  1293. !kmptr &&
  1294. #endif /* NOSETKEY */
  1295. (tt_escape && (c & 0x7f) == escape)) { /* Escape char? */
  1296. debug(F000,"CONNECT got escape","",c);
  1297. #ifdef BEBOX
  1298. if (recv(kbin,buf,1,0)>=0)
  1299.   c = buf[0];
  1300. else
  1301.   c = -1;
  1302. #else /* BEBOX */
  1303. c = CONGKS() & 0177; /* Read argument */
  1304. #endif /* BEBOX */
  1305. doesc((char) c); /* Handle it */
  1306. continue; /* Back to loop */
  1307.     }
  1308.     csave = c; /* Save it before translation */
  1309. /* for local echoing. */
  1310. #ifndef NOCSETS
  1311.     if (inesc[1] == ES_NORMAL) { /* If not inside escape seq.. */
  1312. /* Translate character sets */
  1313. #ifdef UNICODE
  1314. int x;
  1315. if (unicode == 1) { /* Remote is UTF-8 */
  1316.     outxcount = b_to_u((CHAR)c,outxbuf,OUTXBUFSIZ,tcssize);
  1317.     outxbuf[outxcount] = NUL;
  1318. } else if (unicode == 2) { /* Local is UTF-8 */
  1319.     x = u_to_b((CHAR)c);
  1320.     if (x < 0)
  1321.       continue;
  1322.     outxbuf[0] = (unsigned)(x & 0xff);
  1323.     outxcount = 1;
  1324.     outxbuf[outxcount] = NUL;
  1325. } else {
  1326. #endif /* UNICODE */
  1327.     if (sxo) c = (*sxo)((char)c); /* Local-intermediate */
  1328.     if (rxo) c = (*rxo)((char)c); /* Intermediate-remote */
  1329.     outxbuf[0] = c;
  1330.     outxcount = 1;
  1331.     outxbuf[outxcount] = NUL;
  1332. #ifdef UNICODE
  1333. }
  1334. #endif /* UNICODE */
  1335.     } else {
  1336. outxbuf[0] = c;
  1337. outxcount = 1;
  1338. outxbuf[outxcount] = NUL;
  1339.     }
  1340.     if (escseq)
  1341.       apcrc = chkaes((char)c,1);
  1342. #else
  1343.     outxbuf[0] = c;
  1344.     outxcount = 1;
  1345.     outxbuf[outxcount] = NUL;
  1346. #endif /* NOCSETS */
  1347.     debug(F111,"OUTXBUF",outxbuf,outxcount);
  1348.     for (i = 0; i < outxcount; i++) {
  1349. c = outxbuf[i];
  1350. /*
  1351.  If Shift-In/Shift-Out is selected and we have a 7-bit connection,
  1352.  handle shifting here.
  1353. */
  1354. if (sosi) {  /* Shift-In/Out selected? */
  1355.     if (cmask == 0177) {  /* In 7-bit environment? */
  1356. if (c & 0200) {  /* 8-bit character? */
  1357.     if (outshift == 0) { /* If not shifted, */
  1358. ttoc(dopar(SO)); /* shift. */
  1359. outshift = 1;
  1360.     }
  1361. } else {
  1362.     if (outshift == 1) { /* 7-bit character */
  1363. ttoc(dopar(SI)); /* If shifted, */
  1364. outshift = 0;    /* unshift. */
  1365.     }
  1366. }
  1367.     }
  1368.     if (c == SO) outshift = 1; /* User typed SO */
  1369.     if (c == SI) outshift = 0; /* User typed SI */
  1370. }
  1371. c &= cmask; /* Apply Kermit-to-host mask now. */
  1372. if (c == '15') { /* Carriage Return */
  1373.     int stuff = -1;
  1374.     if (tnlm) { /* TERMINAL NEWLINE ON */
  1375. stuff = LF;  /* Stuff LF */
  1376. #ifdef TNCODE
  1377.     } else if (network && /* TELNET NEWLINE ON/OFF/RAW */
  1378.        (ttnproto == NP_TELNET)) {
  1379. switch (!TELOPT_ME(TELOPT_BINARY) ? tn_nlm : tn_b_nlm){
  1380.   case TNL_CRLF:
  1381.     stuff = LF;
  1382.     break;
  1383.   case TNL_CRNUL:
  1384.     stuff = NUL;
  1385.     break;
  1386. }
  1387. #endif /* TNCODE */
  1388.     }
  1389.     if (stuff > -1) {
  1390. ttoc(dopar('15')); /* Send CR */
  1391. if (duplex) conoc('15'); /* Maybe echo CR */
  1392. c = stuff; /* Char to stuff */
  1393. csave = c;
  1394.     }
  1395. }
  1396. #ifdef TNCODE
  1397. /* If user types the 0xff character (TELNET IAC), it must be doubled. */
  1398. else /* Not CR */
  1399.   if ((dopar((CHAR) c) == IAC) && /* IAC (0xff) */
  1400.       network && (ttnproto == NP_TELNET)) { /* Send one now */
  1401.       ttoc((char)IAC); /* and the other one just below. */
  1402.   }
  1403. #endif /* TNCODE */
  1404. /* Send the character */
  1405. x = ttoc((char)dopar((CHAR) c));
  1406. if (x > -1) {
  1407.     if (duplex) { /* If half duplex, must echo */
  1408. if (debses)
  1409.   conol(dbchr(csave)); /* the original char */
  1410. else /* not the translated one */
  1411.   conoc((char)csave);
  1412. if (seslog) { /* And maybe log it too */
  1413.     c2 = csave;
  1414.     if (sessft == 0 && csave == 'r')
  1415.       c2 = 'n';
  1416.     logchar((char)c2);
  1417. }
  1418.     }
  1419. } else {
  1420.     perror("rnCan't send character");
  1421.     active = 0;
  1422.     break;
  1423. }
  1424.     }
  1425. }
  1426. if (FD_ISSET(ttyfd, &out)) {
  1427.     FD_CLR(ttyfd, &out);
  1428. }
  1429. while (gotnet > 0 || ibc > 0) {
  1430.     gotnet = 0;
  1431.     c = ckcgetc(0); /* Get next character */
  1432.     /* debug(F101,"CONNECT c","",c); */
  1433.     if (c < 0) { /* Failed... */
  1434. ckcputf(); /* Flush CONNECT output buffer */
  1435. if (msgflg) {
  1436.     printf("rnCommunications disconnect ");
  1437. #ifdef COMMENT
  1438.     if ( c == -3
  1439. #ifdef ultrix
  1440. /* This happens on Ultrix if there's no carrier */
  1441. && errno != EIO
  1442. #endif /* ultrix */
  1443. #ifdef UTEK
  1444. /* This happens on UTEK if there's no carrier */
  1445. && errno != EWOULDBLOCK
  1446. #endif /* UTEK */
  1447. )
  1448.       perror("rnCan't read character");
  1449. #endif /* COMMENT */
  1450. }
  1451. #ifdef NOSETBUF
  1452. fflush(stdout);
  1453. #endif /* NOSETBUF */
  1454. tthang(); /* Hang up the connection */
  1455. debug(F111,"CONNECT i/o error 1",ck_errstr(),errno);
  1456. goto conret0;
  1457.     }
  1458. #ifdef TNCODE
  1459.     tx = 0;
  1460.     if ((c == IAC) && network && (ttnproto == NP_TELNET)) {
  1461. #ifdef CK_ENCRYPTION
  1462. int x_auth = TELOPT_ME(TELOPT_AUTHENTICATION);
  1463. #else
  1464. int x_auth = 0;
  1465. #endif /* CK_ENCRYPTION */
  1466. int me_bin = TELOPT_ME(TELOPT_BINARY);
  1467. int u_bin = TELOPT_U(TELOPT_BINARY);
  1468. debug(F100,"CONNECT got IAC","",0);
  1469. ckcputf(); /* Dump screen-output buffer */
  1470. if ((tx = tn_doop((CHAR)(c & 0xff),duplex,ckcgetc)) == 0) {
  1471.     if (me_bin != TELOPT_ME(TELOPT_BINARY)) {
  1472. me_bin = TELOPT_ME(TELOPT_BINARY);
  1473.     } else if (u_bin != TELOPT_U(TELOPT_BINARY)) {
  1474. u_bin = TELOPT_U(TELOPT_BINARY);
  1475. #ifdef CK_ENCRYPTION
  1476. /*
  1477.   Here we have to push back any bytes we have read using block reads, so we
  1478.   can read them again using single-character reads, so they can be decrypted
  1479.   in case there was a switch to encryption in the block.  Note that we can't
  1480.   handle switches in the encryption state itself this way -- which would be
  1481.   nice, since it would eliminate the need for single-character reads.  Why?
  1482.   Because if a series of characters has already been decrypted that shouldn't
  1483.   have been, then (a) it's ruined, and (b) so is the state of the decryption
  1484.   machine.  Too bad.
  1485. */
  1486.     } else if (TELOPT_ME(TELOPT_AUTHENTICATION) != 0 &&
  1487.        TELOPT_ME(TELOPT_AUTHENTICATION) != x_auth
  1488.        ) {
  1489. if (ttpushback((CHAR *)ibp,ibc) > -1) {
  1490.     ibc = 0;
  1491.     ibp = ibuf;
  1492. }
  1493. #endif /* CK_ENCRYPTION */
  1494.     }
  1495.     continue;
  1496. } else if (tx == -1) { /* I/O error */
  1497.     if (msgflg)
  1498.       printf("rnCommunications disconnect ");
  1499. #ifdef NOSETBUF
  1500.     fflush(stdout);
  1501. #endif /* NOSETBUF */
  1502.     debug(F111,"CONNECT i/o error 2",ck_errstr(),errno);
  1503.     goto conret0;
  1504. } else if (tx == -2) { /* I/O error */
  1505.     if (msgflg)
  1506.       printf("rnConnection closed by peer");
  1507. #ifdef NOSETBUF
  1508.     fflush(stdout);
  1509. #endif /* NOSETBUF */
  1510.     debug(F111,"CONNECT i/o error 3",ck_errstr(),errno);
  1511.     goto conret0;
  1512. } else if (tx == -3) { /* I/O error */
  1513.     if (msgflg)
  1514.       printf("rnConnection closed due to telnet policy");
  1515. #ifdef NOSETBUF
  1516.     fflush(stdout);
  1517. #endif /* NOSETBUF */
  1518.     debug(F111,"CONNECT i/o error 4",ck_errstr(),errno);
  1519.     goto conret0;
  1520. } else if ((tx == 1) && (!duplex)) { /* ECHO change */
  1521.     duplex = 1; /* Turn on local echo */
  1522.     continue;
  1523. } else if ((tx == 2) && (duplex)) { /* ECHO change */
  1524.     duplex = 0;
  1525.     continue;
  1526. } else if (tx == 3) { /* Quoted IAC */
  1527.     c = parity ? 127 : 255;
  1528. }
  1529. #ifdef IKS_OPTION
  1530.                 else if (tx == 4) {   /* IKS State Change */
  1531.                     if (TELOPT_SB(TELOPT_KERMIT).kermit.u_start &&
  1532. !tcp_incoming
  1533. ) {
  1534.                         /* here we need to print a msg that the other */
  1535.                         /* side is in SERVER mode and that REMOTE     */
  1536.                         /* commands should be used.  And CONNECT mode */
  1537.                         /* should be ended.                           */
  1538. active = 0;
  1539.                     }
  1540.                 }
  1541. #endif /* IKS_OPTION */
  1542.                 else if (tx == 6) {
  1543.                     /* DO LOGOUT was received */
  1544.     if (msgflg)
  1545.       printf("rnRemote Logout ");
  1546. #ifdef NOSETBUF
  1547.     fflush(stdout);
  1548. #endif /* NOSETBUF */
  1549.     debug(F100,"CONNECT Remote Logout","",0);
  1550.     goto conret0;
  1551.                 } else
  1552.   continue; /* Negotiation OK, get next char. */
  1553.     } else if (parity)
  1554.       c &= 0x7f;
  1555.     /* I'm echoing for the remote */
  1556.             if (TELOPT_ME(TELOPT_ECHO) && tn_rem_echo)
  1557.       ttoc((char)c);
  1558. #endif /* TNCODE */
  1559.     if (debses) { /* Output character to screen */
  1560. char *s; /* Debugging display... */
  1561. s = dbchr(c);
  1562. while (*s)
  1563.   ckcputc(*s++);
  1564.     } else { /* Regular display ... */
  1565. c &= cmask; /* Apply Kermit-to-remote mask */
  1566. if (seslog && sessft) /* If binary session log */
  1567.   logchar((char)c); /* log the character now. */
  1568. #ifndef NOXFER
  1569. #ifdef CK_AUTODL
  1570. /*
  1571.   Autodownload.  Check for Kermit S packet prior to translation, since that
  1572.   can change the packet and make it unrecognizable (as when the terminal
  1573.   character set is an ISO 646 one)...  Ditto for Zmodem start packet.
  1574. */
  1575. if (autodl /* Autodownload enabled? */
  1576. #ifdef IKS_OPTION
  1577.     || TELOPT_SB(TELOPT_KERMIT).kermit.me_start
  1578. #endif /* IKS_OPTION */
  1579.     ) {
  1580.     int k;
  1581.     k = kstart((CHAR)c); /* Kermit S or I packet? */
  1582. #ifdef CK_XYZ
  1583.     if (!k && zmdlok) /* Or an "sz" start? */
  1584.       k = zstart((CHAR)c);
  1585. #endif /* CK_XYZ */
  1586.     if (k) {
  1587. int ksign = 0;
  1588. debug(F101,"CONNECT autodownload k","",k);
  1589. if (k < 0) { /* Minus-Protocol? */
  1590. #ifdef NOSERVER
  1591.     goto noserver; /* Need server mode for this */
  1592. #else
  1593.     ksign = 1; /* Remember */
  1594.     k = 0 - k; /* Convert to actual protocol */
  1595.     justone = 1; /* Flag for protocol module */
  1596. #endif /* NOSERVER */
  1597. } else
  1598.   justone = 0;
  1599. k--; /* Adjust [kz]start's return value */
  1600. if (k == PROTO_K
  1601. #ifdef CK_XYZ
  1602.     || k == PROTO_Z
  1603. #endif /* CK_XYZ */
  1604.     ) {
  1605.                             /* Damage the packet so that it doesn't trigger */
  1606.     /* autodownload detection downstream. */
  1607.                             if (k == PROTO_K) {
  1608.                                 int i, len = strlen((char *)ksbuf);
  1609.                                 for (i = 0; i < len; i++)
  1610.   ckcputc(BS);
  1611.                             }
  1612. #ifdef CK_XYZ
  1613.                             else {
  1614.                                 int i;
  1615.                                 for (i = 0; i < 3; i++)
  1616.   ckcputc(CAN);
  1617.                             }
  1618. #endif /* CK_XYZ */
  1619. #ifndef NOICP
  1620.     sprintf(apcbuf,
  1621.     "set proto %s, %s, set proto %s",
  1622.     ptab[k].p_name,
  1623.     ksign ? "server" : "receive",
  1624.     ptab[protocol].p_name
  1625.     );
  1626.     apclength = strlen(apcbuf);
  1627.     debug(F111,"CONNECT ksbuf",ksbuf,k);
  1628.     debug(F110,"CONNECT autodownload",apcbuf,0);
  1629.     apcactive = APC_LOCAL;
  1630.     ckcputf(); /* Force screen update */
  1631.     goto conret1;
  1632. #else
  1633. /*
  1634.   Here's another way that doesn't require APC, but then we'll have to change
  1635.   all the other CONNECT modules, and then the mainline code that calls them.
  1636. */
  1637.     {
  1638. extern char sstate;
  1639. sstate = ksign ? 'x' : 'v';
  1640. proto();
  1641.     }
  1642. #endif /* NOICP */
  1643. }
  1644.     }
  1645. }
  1646. #ifdef NOSERVER
  1647.       noserver:
  1648. #endif /* NOSERVER */
  1649. #endif /* CK_AUTODL */
  1650. #endif /* NOXFER */
  1651. if (sosi) { /* Handle SI/SO */
  1652.     if (c == SO) { /* Shift Out */
  1653. inshift = 1;
  1654. continue;
  1655.     } else if (c == SI) { /* Shift In */
  1656. inshift = 0;
  1657. continue;
  1658.     }
  1659.     if (inshift) c |= 0200;
  1660. }
  1661. inxbuf[0] = c; /* In case there is no translation */
  1662. inxcount = 1; /* ... */
  1663. #ifndef NOCSETS
  1664. if (inesc[0] == ES_NORMAL /* If not in an escape sequence */
  1665.     && !printing /* and not in transparent print */
  1666.     ) { /* Translate character sets */
  1667. #ifdef UNICODE
  1668.     int x;
  1669.     if (unicode == 1) { /* Remote is UTF-8 */
  1670. x = u_to_b((CHAR)c);
  1671. if (x == -1)
  1672.   continue;
  1673. else if (x == -2) { /* LS or PS */
  1674.     inxbuf[0] = CR;
  1675.     inxbuf[1] = LF;
  1676.     inxcount = 2;
  1677. } else if (x == -9) { /* UTF-8 error */
  1678.     inxbuf[0] = '?';
  1679.     inxbuf[1] = u_to_b2();
  1680.     inxcount = 2;
  1681. } else {
  1682.     inxbuf[0] = (unsigned)(x & 0xff);
  1683. }
  1684. c = inxbuf[0];
  1685.     } else if (unicode == 2) { /* Local is UTF-8 */
  1686. inxcount = b_to_u((CHAR)c,inxbuf,OUTXBUFSIZ,tcssize);
  1687. c = inxbuf[0];
  1688.     } else {
  1689. #endif /* UNICODE */
  1690. if (sxi) c = (*sxi)((CHAR)c);
  1691. if (rxi) c = (*rxi)((CHAR)c);
  1692. inxbuf[0] = c;
  1693. #ifdef UNICODE
  1694.     }
  1695. #endif /* UNICODE */
  1696. }
  1697. #endif /* NOCSETS */
  1698. #ifndef NOESCSEQ
  1699. if (escseq) { /* If handling escape sequences */
  1700.     oldprt = printing;      /* remember printer state */
  1701.     apcrc = chkaes((char)c,0); /* and update escseq state. */
  1702.     if (printing && !oldprt) /* If printer was turned on */
  1703.       continue; /* don't print final char of escseq */
  1704. }
  1705. #ifdef CK_APC
  1706. /*
  1707.   If we are handling APCs, we have several possibilities at this point:
  1708.    1. Ordinary character to be written to the screen.
  1709.    2. An Esc; we can't write it because it might be the beginning of an APC.
  1710.    3. The character following an Esc, in which case we write Esc, then char,
  1711.       but only if we have not just entered an APC sequence.
  1712. */
  1713. if (escseq && apcstatus != APC_OFF) {
  1714.     if (inesc[0] == ES_GOTESC) /* Don't write ESC yet */
  1715.       continue;
  1716.     else if (oldesc[0] == ES_GOTESC && !apcactive) {
  1717. debug(F100,"XXX WRITING ESC","",0);
  1718. ckcputc(ESC); /* Write saved ESC */
  1719. if (seslog && !sessft) logchar((char)ESC);
  1720.     } else if (apcrc) { /* We have an APC */
  1721. debug(F111,"CONNECT APC complete",apcbuf,apclength);
  1722. ckcputf(); /* Force screen update */
  1723. goto conret1;
  1724.     }
  1725. }
  1726. #endif /* CK_APC */
  1727. #endif /* NOESCSEQ */
  1728. debug(F111,"INXBUF",inxbuf,inxcount);
  1729. for (i = 0; i < inxcount; i++) { /* Loop thru */
  1730.     c = inxbuf[i]; /* input expansion buffer... */
  1731.     if (
  1732. #ifdef CK_APC
  1733. !apcactive && /* Don't display APC sequences */
  1734. #endif /* CK_APC */
  1735. !printing /* or transparent print material */
  1736. ) {
  1737. c &= cmdmsk; /* Apply command mask. */
  1738. if (c == CR && tt_crd) { /* SET TERM CR-DISPLA CRLF? */
  1739.     ckcputc(c); /* Yes, output CR */
  1740.     if (seslog && !sessft) logchar((char)c);
  1741.     c = LF; /* and insert a linefeed */
  1742. }
  1743. ckcputc(c); /* Write character to screen */
  1744.     }
  1745.     if (seslog && !sessft) /* Handle session log. */
  1746.       logchar((char)c);
  1747. #ifdef XPRINT
  1748. if (printing && !inesc[0]) { /* Do transparent printing. */
  1749.     /* zchout() can't be used because */
  1750.     /* it's buffered differently. */
  1751.     cbuf[0] = c;
  1752.     zsoutx(ZMFILE,(char *)cbuf,1);
  1753. }
  1754. #endif /* XPRINT */
  1755. #ifdef CK_TRIGGER
  1756.     /* Check for trigger string */
  1757.     if (tt_trigger[0]) {
  1758. int i;
  1759. if ((i = autoexitchk((CHAR)c)) > -1) {
  1760.     makestr(&triggerval,tt_trigger[i]);
  1761.     ckcputf(); /* Force screen update */
  1762. #ifdef NOSETBUF
  1763.     fflush(stdout); /* I mean really force it */
  1764. #endif /* NOSETBUF */
  1765.     goto conret1;
  1766. }
  1767.     }
  1768. #endif /* CK_TRIGGER */
  1769. }
  1770.     }
  1771. }
  1772. #ifndef BEBOX
  1773. if (FD_ISSET(scrnout, &out)) {
  1774.     FD_CLR(scrnout, &out);
  1775. }
  1776. #endif /* BEBOX */
  1777.     } /* End of big loop */
  1778.   conret1: /* Come here to succeed */
  1779.     rc = 1;
  1780.   conret0: /* Common exit point */
  1781. #ifdef BEBOX
  1782.     {
  1783. long ret_val;
  1784. closesocket(pair[0]);
  1785. closesocket(pair[1]);
  1786. x = kill(tid,SIGKILLTHR); /* Kill thread */
  1787. wait_for_thread (tid, &ret_val);
  1788.     }
  1789. #endif /* BEBOX */
  1790.     conres();
  1791.     if (dohangup > 0) {
  1792. #ifndef NODIAL
  1793. extern int dialmhu;
  1794. #endif /* NODIAL */
  1795. #ifdef NETCONN
  1796. if (network)
  1797.   ttclos(0);
  1798. #endif /* NETCONN */
  1799. #ifndef COMMENT
  1800. /*
  1801.   This is bad because if they said SET MODEM HANGUP-METHOD MODEM-COMMAND,
  1802.   they mean it -- we shouldn't fall back on tthang() if mdmhup() fails,
  1803.   because maybe they have some special kind of connection.  On the other
  1804.   hand, making this change prevents dialing from working at all in some
  1805.   cases.  Further study needed.
  1806. */
  1807. #ifndef NODIAL
  1808. if (dohangup > 1) /* User asked for it */
  1809.   if (mdmhup() < 1) /* Maybe hang up via modem */
  1810. #endif /* NODIAL */
  1811.     tthang(); /* And make sure we don't hang up */
  1812. #else
  1813. if (!network) { /* Serial connection. */
  1814.     if (dialmhu) /* Hang up the way they said. */
  1815.       mdmhup();
  1816.     else
  1817.       tthang();
  1818. }
  1819. #endif /* COMMENT */
  1820. dohangup = 0; /* again unless requested again. */
  1821.     }
  1822.     if (quitnow) /* Exit now if requested. */
  1823.       doexit(GOOD_EXIT,xitsta);
  1824.     if (msgflg
  1825. #ifdef CK_APC
  1826. && !apcactive
  1827. #endif /* CK_APC */
  1828. )
  1829.       printf("(Back at %s)", *myhost ? myhost : "local UNIX system");
  1830. #ifdef CK_APC
  1831.     if (!apcactive)
  1832. #endif /* CK_APC */
  1833.       printf("n");
  1834.     what = W_NOTHING; /* So console modes set right. */
  1835. #ifndef NOCSETS
  1836.     language = langsv; /* Restore language */
  1837. #endif /* NOCSETS */
  1838. #ifdef CK_APC
  1839.     debug(F101,"CONNECT exit apcactive","",apcactive);
  1840.     debug(F101,"CONNECT exit justone","",justone);
  1841. #endif /* CK_APC */
  1842.     if (msgflg) {
  1843. #ifdef CK_APC
  1844. if (apcactive == APC_LOCAL)
  1845.   printf("n");
  1846. #endif /* CK_APC */
  1847. printf("----------------------------------------------------n");
  1848. printbar = 1;
  1849.     } else
  1850. printbar = 0;
  1851.     fflush(stdout);
  1852.     return(1);
  1853. }
  1854. /*  H C O N N E  --  Give help message for connect.  */
  1855. #define CXM_SER 1 /* Serial connections only */
  1856. #define CXM_NET 2 /* Network only (but not Telnet) */
  1857. #define CXM_TEL 4 /* Telnet only */
  1858. static struct hmsgtab {
  1859.     char * hmsg;
  1860.     int hflags;
  1861. } hlpmsg[] = {
  1862.     "  ? or H for this message",                0,
  1863.     "  0 (zero) to send the NUL (0) character", 0,
  1864.     "  B to send a BREAK signal (0.275sec)",  CXM_SER,
  1865. #ifdef NETCONN
  1866.     "  B to send a network BREAK",            CXM_NET,
  1867.     "  B to send a Telnet BREAK",             CXM_TEL,
  1868. #endif /* NETCONN */
  1869. #ifdef CK_LBRK
  1870.     "  L to send a Long BREAK (1.5sec)",      CXM_SER,
  1871. #endif /* CK_LBRK */
  1872. #ifdef NETCONN
  1873.     "  I to send a network interrupt packet", CXM_NET,
  1874.     "  I to send a Telnet Interrupt request", CXM_TEL,
  1875. #ifdef TNCODE
  1876.     "  A to send Telnet Are-You-There?",      CXM_TEL,
  1877. #endif /* TNCODE */
  1878. #endif /* NETCONN */
  1879.     "  U to hangup and close the connection", 0,
  1880.     "  Q to hangup and quit Kermit",          0,
  1881.     "  S for status",                         0,
  1882. #ifdef NOPUSH
  1883.     "  ! to push to local shell (disabled)",  0,
  1884.     "  Z to suspend (disabled)",              0,
  1885. #else
  1886.     "  ! to push to local shell",             0,
  1887. #ifdef NOJC
  1888.     "  Z to suspend (disabled)",              0,
  1889. #else
  1890.     "  Z to suspend",                         0,
  1891. #endif /* NOJC */
  1892. #endif /* NOPUSH */
  1893.     "  \ backslash code:",                   0,
  1894.     "    \nnn  decimal character code",      0,
  1895.     "    \Onnn octal character code",        0,
  1896.     "    \Xhh  hexadecimal character code;", 0,
  1897.     "    terminate with Carriage Return.",    0,
  1898.     "  Type the escape character again to send the escape character itself,",0,
  1899.     "  or press the space-bar to resume the CONNECT session.",               0,
  1900.     NULL, 0
  1901. };
  1902. int
  1903. hconne() {
  1904.     int c, i, cxtype;
  1905.     if (network)
  1906.       cxtype = (ttnproto == NP_TELNET) ? CXM_TEL : CXM_NET;
  1907.     else
  1908.       cxtype = CXM_SER;
  1909.     conol("rn----------------------------------------------------rn");
  1910.     conoll("Press:");
  1911.     conol("  C to return to ");
  1912.     conoll(*myhost ? myhost : "the C-Kermit prompt");
  1913.     for (i = 0; hlpmsg[i].hmsg; i++) {
  1914. if (!(hlpmsg[i].hflags) || (hlpmsg[i].hflags == cxtype))
  1915.   conoll(hlpmsg[i].hmsg);
  1916.     }
  1917.     conol("Press a key>"); /* Prompt for command. */
  1918.     c = CONGKS() & 0177; /* Get character, strip any parity. */
  1919.     /* No key mapping or translation here */
  1920.     if (c != CMDQ)
  1921.       conoll("");
  1922.     conoll("----------------------------------------------------");
  1923.     return(c); /* Return it. */
  1924. }
  1925. /*  D O E S C  --  Process an escape character argument  */
  1926. VOID
  1927. #ifdef CK_ANSIC
  1928. doesc(char c)
  1929. #else
  1930. doesc(c) char c;
  1931. #endif /* CK_ANSIC */
  1932. /* doesc */ {
  1933.     CHAR d;
  1934.     debug(F101,"CONNECT doesc","",c);
  1935.     while (1) {
  1936. if (c == escape) { /* Send escape character */
  1937.     d = dopar((CHAR) c); ttoc((char) d); return;
  1938.      } else /* Or else look it up below. */
  1939.     if (isupper(c)) c = tolower(c);
  1940. switch(c) {
  1941.   case 'c': /* Escape back to prompt */
  1942.   case '3':
  1943. #ifdef NOICP
  1944.     conoll("");
  1945.     conoll("");
  1946.     conoll(
  1947. "  WARNING: This version of C-Kermit has no command processor to escape"
  1948.    );
  1949.     conoll(
  1950. "  back to.  To return to your local system, log out from the remote and/or"
  1951.    );
  1952.     conoll(
  1953. "  use the escape character followed by the letter U to close (hang Up) the"
  1954.    );
  1955.     conoll(
  1956. "  connection.  Resuming your session..."
  1957.    );
  1958.     conoll("");
  1959.     return;
  1960. #else
  1961.     active = 0; conol("rn"); return;
  1962. #endif /* NOICP */
  1963.   case 'b': /* Send a BREAK signal */
  1964.   case '2':
  1965.     ttsndb(); return;
  1966. #ifdef NETCONN
  1967.   case 'i': /* Send Interrupt */
  1968.   case '11':
  1969. #ifdef TCPSOCKET
  1970. #ifndef IP
  1971. #define IP 244
  1972. #endif /* IP */
  1973.     if (network && ttnproto == NP_TELNET) { /* TELNET */
  1974. temp[0] = (CHAR) IAC; /* I Am a Command */
  1975. temp[1] = (CHAR) IP; /* Interrupt Process */
  1976. temp[2] = NUL;
  1977. ttol((CHAR *)temp,2);
  1978.     } else
  1979. #endif /* TCPSOCKET */
  1980.       conoc(BEL);
  1981.     return;
  1982. #ifdef TCPSOCKET
  1983.   case 'a': /* "Are You There?" */
  1984.   case '1':
  1985. #ifndef AYT
  1986. #define AYT 246
  1987. #endif /* AYT */
  1988.     if (network && ttnproto == NP_TELNET) {
  1989. temp[0] = (CHAR) IAC; /* I Am a Command */
  1990. temp[1] = (CHAR) AYT; /* Are You There? */
  1991. temp[2] = NUL;
  1992. ttol((CHAR *)temp,2);
  1993.     } else conoc(BEL);
  1994.     return;
  1995. #endif /* TCPSOCKET */
  1996. #endif /* NETCONN */
  1997. #ifdef CK_LBRK
  1998.   case 'l': /* Send a Long BREAK signal */
  1999.     ttsndlb(); return;
  2000. #endif /* CK_LBRK */
  2001.   case 'u': /* Hangup */
  2002.        /* case '10': */ /* No, too dangerous */
  2003.     dohangup = 2; active = 0; conol("rnHanging up "); return;
  2004.   case 'q': /* Quit */
  2005.     dohangup = 2; quitnow = 1; active = 0; conol("rn"); return;
  2006.   case 's': /* Status */
  2007.     conoll("");
  2008.     conoll("----------------------------------------------------");
  2009. #ifdef PTYORPIPE
  2010.     if (ttpipe)
  2011.       sprintf(temp, " Pipe: "%s"", ttname);
  2012.     else if (ttpty)
  2013.       sprintf(temp, " Pty: "%s"", ttname);
  2014.     else
  2015. #endif /* PTYORPIPE */
  2016.       sprintf(temp, " %s: %s", (network ? "Host" : "Device"), ttname);
  2017.     conoll(temp);
  2018.     if (!network && speed >= 0L) {
  2019. sprintf(temp,"Speed %ld", speed);
  2020. conoll(temp);
  2021.     }
  2022.     sprintf(temp," Terminal echo: %s", duplex ? "local" : "remote");
  2023.     conoll(temp);
  2024.     sprintf(temp," Terminal bytesize: %d", (cmask  == 0177) ? 7 : 8);
  2025.     conoll(temp);
  2026.     sprintf(temp," Command bytesize: %d", (cmdmsk == 0177) ? 7 : 8 );
  2027.     conoll(temp);
  2028.     sprintf(temp," Parity: %s", parnam(parity));
  2029.     conoll(temp);
  2030. #ifndef NOXFER
  2031.     sprintf(temp," Autodownload: %s", autodl ? "on" : "off");
  2032.     conoll(temp);
  2033. #endif /* NOXFER */
  2034.     sprintf(temp," Session log: %s", *sesfil ? sesfil : "(none)");
  2035.     conoll(temp);
  2036. #ifndef NOSHOW
  2037.     if (!network) shomdm();
  2038. #endif /* NOSHOW */
  2039. #ifdef CKLOGDIAL
  2040.     {
  2041. long z;
  2042. z = dologshow(0);
  2043. if (z > -1L) {
  2044.     sprintf(temp," Elapsed time: %s",hhmmss(z));
  2045.     conoll(temp);
  2046. }
  2047.     }
  2048. #endif /* CKLOGDIAL */
  2049.     conoll("----------------------------------------------------");
  2050.     return;
  2051.   case 'h': /* Help */
  2052.   case '?': /* Help */
  2053.     c = hconne(); continue;
  2054.   case '0': /* Send a null */
  2055.     c = ''; d = dopar((CHAR) c); ttoc((char) d); return;
  2056.   case 'z': case '32': /* Suspend */
  2057. #ifndef NOPUSH
  2058.     if (!nopush)
  2059.       stptrap(0);
  2060.     else
  2061.       conoc(BEL);
  2062. #else
  2063.     conoc(BEL);
  2064. #endif /* NOPUSH */
  2065.     return;
  2066.   case '@': /* Start inferior command processor */
  2067.   case '!':
  2068. #ifndef NOPUSH
  2069.     if (!nopush) {
  2070. conres();       /* Put console back to normal */
  2071. zshcmd("");       /* Fork a shell. */
  2072. if (conbin((char)escape) < 0) {
  2073.     printf("Error resuming CONNECT sessionn");
  2074.     active = 0;
  2075. }
  2076.     } else conoc(BEL);
  2077. #else
  2078.     conoc(BEL);
  2079. #endif /* NOPUSH */
  2080.     return;
  2081.   case SP: /* Space, ignore */
  2082.     return;
  2083.   default: /* Other */
  2084.     if (c == CMDQ) { /* Backslash escape */
  2085. int x;
  2086. ecbp = ecbuf;
  2087. *ecbp++ = c;
  2088. while (((c = (CONGKS() & cmdmsk)) != 'r') && (c != 'n'))
  2089.   *ecbp++ = c;
  2090. *ecbp = NUL; ecbp = ecbuf;
  2091. x = xxesc(&ecbp); /* Interpret it */
  2092. if (x >= 0) { /* No key mapping here */
  2093.     c = dopar((CHAR) x);
  2094.     ttoc((char) c);
  2095.     return;
  2096. } else { /* Invalid backslash code. */
  2097.     conoc(BEL);
  2098.     return;
  2099. }
  2100.     }
  2101.     conoc(BEL); return;  /* Invalid esc arg, beep */
  2102.      }
  2103.     }
  2104. }
  2105. #endif /* NOLOCAL */