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

通讯/手机编程

开发平台:

Windows_Unix

  1. /* WARNING -- This C source program generated by Wart preprocessor. */
  2. /* Do not edit this file; edit the Wart-format source file instead, */
  3. /* and then run it through Wart to produce a new C source file.     */
  4. /* Wart Version Info: */
  5. char *wartv = "Wart Version 2.14, 10 Nov 1999";
  6. char *protv =                                                     /* -*-C-*- */
  7. "C-Kermit Protocol Module 7.0.135, 1 Jan 2000";
  8. int kactive = 0; /* Kermit protocol is active */
  9. #define PKTZEROHACK
  10. /* C K C P R O  -- C-Kermit Protocol Module, in Wart preprocessor notation. */
  11. /*
  12.   Author: Frank da Cruz <fdc@columbia.edu>,
  13.   Columbia University Academic Information Systems, New York City.
  14.   Copyright (C) 1985, 2000,
  15.     Trustees of Columbia University in the City of New York.
  16.     All rights reserved.  See the C-Kermit COPYING.TXT file or the
  17.     copyright text in the ckcmai.c module for disclaimer and permissions.
  18. */
  19. #ifndef NOXFER
  20. #include "ckcsym.h"
  21. #include "ckcdeb.h"
  22. #include "ckcasc.h"
  23. #include "ckcker.h"
  24. #ifdef OS2
  25. #ifndef NT
  26. #define INCL_NOPM
  27. #define INCL_VIO /* Needed for ckocon.h */
  28. #include <os2.h>
  29. #undef COMMENT
  30. #endif /* NT */
  31. #include "ckocon.h"
  32. #endif /* OS2 */
  33. /*
  34.  Note -- This file may also be preprocessed by the UNIX Lex program, but
  35.  you must indent the above #include statements before using Lex, and then
  36.  restore them to the left margin in the resulting C program before compilation.
  37.  Also, the invocation of the "wart()" function below must be replaced by an
  38.  invocation  of the "yylex()" function.  It might also be necessary to remove
  39.  comments in the (%)(%)...(%)(%) section.
  40. */
  41. /* State definitions for Wart (or Lex) */
  42. #define ipkt 1
  43. #define rfile 2
  44. #define rattr 3
  45. #define rdpkt 4
  46. #define ssinit 5
  47. #define ssfile 6
  48. #define ssattr 7
  49. #define ssdata 8
  50. #define sseof 9
  51. #define sseot 10
  52. #define serve 11
  53. #define generic 12
  54. #define get 13
  55. #define rgen 14
  56. #define ssopkt 15
  57. #define ropkt 16
  58. _PROTOTYP(static VOID xxproto,(void));
  59. _PROTOTYP(int wart,(void));
  60. _PROTOTYP(static int sgetinit,(int,int));
  61. _PROTOTYP(int sndspace,(int));
  62. /* External C-Kermit variable declarations */
  63.   extern char *versio, *srvtxt, *cmarg, *cmarg2, **cmlist, *rf_err;
  64.   extern char *cdmsgfile[];
  65.   extern char * snd_move, * snd_rename, * srimsg;
  66.   extern char filnam[], fspec[], ttname[], ofn1[];
  67.   extern CHAR sstate, *srvptr, *data;
  68.   extern int timint, rtimo, nfils, hcflg, xflg, flow, mdmtyp, network;
  69.   extern int oopts, omode, oname, opath, nopush, isguest;
  70.   extern int rejection, moving, fncact, bye_active, urserver, fatalio;
  71.   extern int protocol, prefixing, filcnt, carrier, fnspath, interrupted;
  72.   extern int recursive, inserver, nzxopts, idletmo, srvidl, xfrint;
  73.   extern struct ck_p ptab[];
  74.   extern int remfile, rempipe, xferstat, filestatus, wearealike, fackpath;
  75.   extern char * remdest;
  76. #ifdef PKTZEROHACK
  77. #define PKTZEROLEN 32
  78. static char ipktack[PKTZEROLEN];
  79. static int ipktlen = 0;
  80. #endif /* PKTZEROHACK */
  81. static int s_timint = -1; /* For saving timeout value */
  82. static int havefs = 0;
  83. #ifdef CK_LOGIN
  84. static int logtries = 0;
  85. #endif /* CK_LOGIN */
  86. #ifdef STREAMING
  87. extern int streaming, streamok;
  88. static int cancel = 0;
  89. int fackbug = 0;
  90. static VOID
  91. streamon() {
  92.     if (streamok) {
  93. debug(F100,"streamon","",0);
  94. streaming = 1;
  95. timint = 0; /* No timeouts while streaming. */
  96.     }
  97. }
  98. #ifdef COMMENT /* (not used) */
  99. static VOID
  100. streamoff() {
  101.     if (streaming) {
  102. debug(F100,"streamoff","",0);
  103. streaming = 0;
  104. timint = s_timint; /* Restore timeout */
  105.     }
  106. }
  107. #endif /* COMMENT */
  108. #else /* STREAMING */
  109. #define streamon()
  110. #define streamoff()
  111. #endif /* STREAMING */
  112. #ifndef NOSPL
  113. _PROTOTYP( int addmac, (char *, char *) );
  114. _PROTOTYP( int zzstring, (char *, char **, int *) );
  115. #endif /* NOSPL */
  116. #ifndef NOICP
  117. _PROTOTYP( int cmdsrc, (void) );
  118. #endif /* NOICP */
  119. #ifndef NOSERVER
  120.   extern char * x_user, * x_passwd, * x_acct;
  121.   extern int x_login, x_logged;
  122. #endif /* NOSERVER */
  123. #ifdef CK_SPEED
  124.   extern int ttnproto; /* Network protocol */
  125.   extern short ctlp[]; /* Control-character prefix table */
  126. #endif /* CK_SPEED */
  127. #include "ckcnet.h"
  128. #ifdef TNCODE
  129.   extern int tn_b_nlm, tn_b_xfer, tn_nlm;
  130. #ifdef CK_ENCRYPTION
  131.   extern int tn_no_encrypt_xfer;
  132. #endif /* CK_ENCRYPTION */
  133. #endif /* TNCODE */
  134. #ifdef TCPSOCKET
  135. #ifndef NOLISTEN
  136.   extern int tcpsrfd;
  137. #endif /* NOLISTEN */
  138. #endif /* TCPSOCKET */
  139.   extern int cxseen, czseen, server, srvdis, local, displa, bctu, bctr, bctl;
  140.   extern int quiet, tsecs, parity, backgrd, nakstate, atcapu, wslotn, winlo;
  141.   extern int wslots, success, xitsta, rprintf, discard, cdtimo, keep, fdispla;
  142.   extern int timef, stdinf, rscapu, sendmode, epktflg, epktrcvd, epktsent;
  143.   extern int binary, fncnv;
  144.   extern long speed, ffc, crc16, calibrate, dest;
  145. #ifdef COMMENT
  146.   extern char *TYPCMD, *DIRCMD, *DIRCM2;
  147. #endif /* COMMENT */
  148. #ifndef OS2
  149.   extern char *SPACMD, *SPACM2, *WHOCMD;
  150. #endif /* OS2 */
  151.   extern CHAR *rdatap;
  152.   extern struct zattr iattr;
  153. #ifdef VMS
  154.   extern int batch;
  155. #endif /* VMS */
  156. #ifdef GFTIMER
  157.   extern CKFLOAT fptsecs;
  158. #endif /* GFTIMER */
  159.   extern CHAR *srvcmd;
  160.   extern CHAR *epktmsg;
  161. #ifdef CK_TMPDIR
  162. extern int f_tmpdir; /* Directory changed temporarily */
  163. extern char savdir[]; /* For saving current directory */
  164. extern char * dldir;
  165. #endif /* CK_TMPDIR */
  166.   extern int query; /* Query-active flag */
  167. #ifndef NOSPL
  168.   extern int cmdlvl;
  169.   char querybuf[QBUFL+1] = { NUL, NUL }; /* QUERY response buffer */
  170.   char *qbufp = querybuf; /* Pointer to it */
  171.   int qbufn = 0; /* Length of data in it */
  172. #else
  173.   extern int tlevel;
  174. #endif /* NOSPL */
  175. #ifndef NOICP
  176.   extern int escape;
  177. #endif /* NOICP */
  178. /*
  179.   If the following flag is nonzero when the protocol module is entered,
  180.   then server mode persists for exactly one transaction, rather than
  181.   looping until BYE or FINISH is received.
  182. */
  183. extern int justone;
  184. static int r_save = -1;
  185. static int p_save = -1;
  186. static VOID
  187. rdebug() {
  188.     if (server)
  189.       debug(F111,"RESUME","server=1",justone);
  190.     else
  191.       debug(F111,"RESUME","server=0",justone);
  192. }
  193. /* Flags for the ENABLE and DISABLE commands */
  194. extern int
  195.   en_cpy, en_cwd, en_del, en_dir, en_fin, en_get, en_bye, en_mai, en_pri,
  196.   en_hos, en_ren, en_sen, en_spa, en_set, en_typ, en_who, en_ret, en_xit,
  197.   en_mkd, en_rmd;
  198. #ifndef NOSPL
  199. extern int en_asg, en_que;
  200. #endif /* NOSPL */
  201. extern int what, lastxfer;
  202. /* Global variables declared here */
  203.   int whatru = 0; /* What are you. */
  204.   int whatru2 = 0; /* What are you, cont'd. */
  205. /* Local variables */
  206.   static char vstate = 0;   /* Saved State   */
  207.   static char vcmd = 0;     /* Saved Command */
  208.   static int reget = 0; /* Flag for executing REGET */
  209.   static int retrieve = 0; /* Flag for executing RETRIEVE */
  210.   static int opkt = 0; /* Send Extended GET packet */
  211.   static int x; /* General-purpose integer */
  212.   static char *s; /* General-purpose string pointer */
  213. /* Macros - Note, BEGIN is predefined by Wart (and Lex) as "state = ", */
  214. /* BEGIN is NOT a GOTO! */
  215. #define TINIT if (tinit(1) < 0) return(-9)
  216. #define SERVE { TINIT; resetc(); nakstate=1; what=W_NOTHING; cmarg2=""; 
  217. sendmode=SM_SEND; havefs=0; recursive=r_save; fnspath=p_save; BEGIN serve; }
  218. #define RESUME { rdebug(); if (!server) { return(0); } else 
  219. if (justone) { justone=0; return(0); } else { SERVE; } }
  220. #ifdef GFTIMER
  221. #define QUIT x=quiet; quiet=1; clsif(); clsof(1); tsecs=gtimer(); 
  222.  fptsecs=gftimer(); quiet=x; return(success)
  223. #else
  224. #define QUIT x=quiet; quiet=1; clsif(); clsof(1); tsecs=gtimer(); quiet=x; 
  225.  return(success)
  226. #endif /* GFTIMER */
  227. /*
  228.   By late 1999, the big switch() statement generated from the following state
  229.   table began choking even gcc, so here we extract the code from the larger
  230.   states into static void routines to reduce the size of the cases and the
  231.   switch() overall.  The routines follow the state table; the prototypes are
  232.   here.  Each of these routines simply contains the text from the
  233.   corresponding case, but with return(-1) added in appropriate places; see
  234.   instructions after the state table switcher.
  235. */
  236. static int rc; /* Return code for these routines */
  237. static int rcv_s_pkt(); /* Received an S packet */
  238. static int rcv_firstdata(); /* Received first Data packet */
  239. static int rcv_shortreply(); /* Short reply to a REMOTE command  */
  240. static int srv_query(); /* Server answers an query */
  241. static int srv_copy(); /* Server executes REMOTE COPY */
  242. static int srv_rename(); /* Server executes REMOTE RENAME */
  243. static int srv_login(); /* Server executes REMOTE LOGIN */
  244. static int srv_timeout(); /* Server times out */
  245. #define BEGIN state =
  246. int state = 0;
  247. int
  248. wart()
  249. {
  250.     int c,actno;
  251.     extern char tbl[];
  252.     while (1) {
  253. c = input() - 32;
  254. debug(F000,"PROTO input",ckitoa(state),c+32);
  255. if (c < 0 || c > 95) c = 0;
  256. if ((actno = tbl[c + state*96]) != -1)
  257.     switch(actno) {
  258. case 1:
  259.     { TINIT; /* Send file(s) */
  260.     if (sinit() > 0) BEGIN ssinit;
  261.        else RESUME; }
  262.     break;
  263. case 2:
  264.     { TINIT; nakstate = 1; BEGIN get; }
  265.     break;
  266. case 3:
  267.     { /* Client sends a GET command */
  268.     TINIT;
  269.     vstate = get;
  270.     reget = 0;
  271.     retrieve = 0;
  272.     opkt = 0;
  273.     vcmd = 0;
  274. #ifdef PKTZEROHACK
  275.     ipktack[0] = NUL;
  276. #endif /* PKTZEROHACK */
  277.     if (sipkt('I') >= 0)
  278.       BEGIN ipkt;
  279.     else
  280.       RESUME;
  281. }
  282.     break;
  283. case 4:
  284.     { /* Client sends a RETRIEVE command */
  285.     TINIT;
  286.     vstate = get;
  287.     reget = 0;
  288.     retrieve = 1;
  289.     opkt = 0;
  290.     vcmd = 0;
  291.     if (sipkt('I') >= 0)
  292.       BEGIN ipkt;
  293.     else
  294.       RESUME;
  295. }
  296.     break;
  297. case 5:
  298.     { /* Client sends a REGET command */
  299.     TINIT;
  300.     vstate = get;
  301.     reget = 1;
  302.     retrieve = 0;
  303.     opkt = 0;
  304.     vcmd = 0;
  305.     if (sipkt('I') >= 0)
  306.       BEGIN ipkt;
  307.     else
  308.       RESUME;
  309. }
  310.     break;
  311. case 6:
  312.     { /* Client sends Extended GET Packet */
  313.     TINIT;
  314.     vstate = get;
  315.     reget = oopts & GOPT_RES;
  316.     retrieve = oopts & GOPT_DEL;
  317.     opkt = 1;
  318.     vcmd = 0;
  319.     if (sipkt('I') >= 0)
  320.       BEGIN ipkt;
  321.     else
  322.       RESUME;
  323. }
  324.     break;
  325. case 7:
  326.     { /* Client sends a Host command */
  327.     TINIT;
  328.     vstate = rgen;
  329.     vcmd = 'C';
  330.     if (sipkt('I') >= 0)
  331.       BEGIN ipkt;
  332.     else
  333.       RESUME;
  334. }
  335.     break;
  336. case 8:
  337.     { TINIT; /* Client sends a Kermit command */
  338.     vstate = rgen;
  339.     vcmd = 'K';
  340.     if (sipkt('I') >= 0)
  341.       BEGIN ipkt;
  342.     else
  343.       RESUME;
  344. }
  345.     break;
  346. case 9:
  347.     { /* Client sends a REMOTE command */
  348.     TINIT;
  349.     vstate = rgen;
  350.     vcmd = 'G';
  351.     if (sipkt('I') >= 0)
  352.       BEGIN ipkt;
  353.     else
  354.       RESUME;
  355. }
  356.     break;
  357. case 10:
  358.     { /* Enter server mode */
  359.     int x;
  360.     x = justone;
  361.     if (!ENABLED(en_del)) { /* If DELETE is disabled */
  362. if (fncact == XYFX_B || /* undo any file collision action */
  363.     fncact == XYFX_U || /* that could result in deletion or */
  364.     fncact == XYFX_A || /* modification of existing files. */
  365.     fncact == XYFX_X) {
  366. #ifndef NOICP
  367.     extern int g_fncact;
  368.     g_fncact = fncact; /* Save current setting */
  369. #endif /* NOICP */
  370.     fncact = XYFX_R; /* Change to RENAME */
  371.     debug(F101,"server DELETE disabled so fncact RENAME","",fncact);
  372. }
  373.     }
  374.     SERVE; /* tinit() clears justone... */
  375.     justone = x;
  376. #ifdef IKSDB
  377.     if (ikdbopen) slotstate(what, "SERVER", "", "");
  378. #endif /* IKSDB */
  379. }
  380.     break;
  381. case 11:
  382.     {
  383.     int b1 = 0, b2 = 0;
  384.     if (!data) TINIT; /* "ABEND" -- Tell other side. */
  385. #ifndef pdp11
  386.     if (epktflg) { /* If because of E-PACKET command */
  387. b1 = bctl; b2 = bctu; /* Save block check type */
  388. bctl = bctu = 1; /* set it to 1 */
  389.     }
  390. #endif /* pdp11 */
  391.     errpkt((CHAR *)"User cancelled"); /* Send the packet */
  392. #ifndef pdp11
  393.     if (epktflg) { /* Restore the block check */
  394. epktflg = 0;
  395. bctl = b1; bctu = b2;
  396.     }
  397. #endif /* pdp11 */
  398.     success = 0;
  399.     return(0); /* Return from protocol. */
  400. }
  401.     break;
  402. case 12:
  403.     { /* Receive Send-Init packet. */
  404.     rc = rcv_s_pkt();
  405.     debug(F101,"rcv_s_pkt","",rc);
  406.     if (rc > -1) return(rc); /* (see below) */
  407. }
  408.     break;
  409. case 13:
  410.     { /* Get ack for I-packet */
  411.     int x = 0;
  412. #ifdef PKTZEROHACK
  413.     ckstrncpy(ipktack,(char *)rdatap,PKTZEROLEN); /* Save a copy of the ACK */
  414.     ipktlen = strlen(ipktack);
  415. #endif /* PKTZEROHACK */
  416.     spar(rdatap); /* Set parameters */
  417.     winlo = 0; /* Set window-low back to zero */
  418.     debug(F101,"<ipkt>Y winlo","",winlo);
  419.     urserver = 1; /* So I know I'm talking to a server */
  420.     if (vcmd) { /* If sending a generic command */
  421. if (tinit(0) < 0) return(-9); /* Initialize many things */
  422. x = scmd(vcmd,(CHAR *)cmarg); /* Do that */
  423. if (x >= 0) x = 0; /* (because of O-Packet) */
  424. debug(F101,"proto G packet scmd","",x);
  425. vcmd = 0; /* and then un-remember it. */
  426.     } else if (vstate == get) {
  427. debug(F101,"REGET sstate","",sstate);
  428. x = srinit(reget, retrieve, opkt); /* GET or REGET, etc */
  429.     }
  430.     if (x < 0) { /* If command was too long */
  431. if (!srimsg)
  432.   srimsg = "Error sending string";
  433. errpkt((CHAR *)srimsg); /* cancel both sides. */
  434. success = 0;
  435. RESUME;
  436.     } else if (x > 0) { /* Need to send more O-Packets */
  437. BEGIN ssopkt;
  438.     } else {
  439. rtimer(); /* Reset the elapsed seconds timer. */
  440. #ifdef GFTIMER
  441. rftimer();
  442. #endif /* GFTIMER */
  443. winlo = 0; /* Window back to 0, again. */
  444. debug(F101,"<ipkt>Y vstate","",vstate);
  445. nakstate = 1; /* Can send NAKs from here. */
  446. BEGIN vstate; /* Switch to desired state */
  447.     }
  448. }
  449.     break;
  450. case 14:
  451.     { /* Got ACK to O-Packet */
  452.     debug(F100,"CPCPRO <ssopkt>Y","",0);
  453.     x = sopkt();
  454.     debug(F101,"CPCPRO <ssopkt>Y x","",x);
  455.     if (x < 0) { /* If error */
  456. errpkt((CHAR *)srimsg); /* cancel both sides. */
  457. success = 0;
  458. RESUME;
  459.     } else if (x == 0) { /* This was the last O-Packet */
  460. rtimer(); /* Reset the elapsed seconds timer. */
  461. #ifdef GFTIMER
  462. rftimer();
  463. #endif /* GFTIMER */
  464. winlo = 0; /* Window back to 0, again. */
  465. debug(F101,"<ssopkt>Y winlo","",winlo);
  466. nakstate = 1; /* Can send NAKs from here. */
  467. BEGIN vstate; /* Switch to desired state */
  468.     }
  469.     debug(F101,"CPCPRO <ssopkt>Y not changing state","",x);
  470. }
  471.     break;
  472. case 15:
  473.     { /* Ignore Error reply to I packet */
  474.     int x = 0;
  475.     winlo = 0; /* Set window-low back to zero */
  476.     debug(F101,"<ipkt>E winlo","",winlo);
  477.     if (vcmd) { /* In case other Kermit doesn't */
  478. if (tinit(0) < 0) return(-9);
  479. x = scmd(vcmd,(CHAR *)cmarg); /* understand I-packets. */
  480. if (x >= 0) x = 0; /* (because of O-Packet) */
  481. vcmd = 0; /* Otherwise act as above... */
  482.     } else if (vstate == get) x = srinit(reget, retrieve, opkt);
  483.     if (x < 0) { /* If command was too long */
  484. errpkt((CHAR *)srimsg); /* cancel both sides. */
  485. success = 0;
  486. RESUME;
  487.     } else if (x > 0) { /* Need to send more O-Packets */
  488. BEGIN ssopkt;
  489.     } else {
  490. winlo = 0; /* Back to packet 0 again. */
  491. debug(F101,"<ipkt>E winlo","",winlo);
  492. freerpkt(winlo); /* Discard the Error packet. */
  493. nakstate = 1; /* Can send NAKs from here. */
  494. BEGIN vstate;
  495.     }
  496. }
  497.     break;
  498. case 16:
  499.     { /* Resend of previous I-pkt ACK, same seq number! */
  500.     srinit(reget, retrieve, opkt); /* Send the GET packet again. */
  501. }
  502.     break;
  503. case 17:
  504.     { /* Get I-packet */
  505. #ifndef NOSERVER
  506.     spar(rdatap); /* Set parameters from it */
  507.     ack1(rpar()); /* Respond with our own parameters */
  508. #ifdef COMMENT
  509.     pktinit(); /* Reinitialize packet numbers */
  510. #else
  511. #ifdef COMMENT
  512.     /* This can't be right - it undoes the stuff we just negotiated */
  513.     x = justone;
  514.     tinit(1); /* Reinitialize EVERYTHING */
  515.     justone = x; /* But this... */
  516. #else
  517.     tinit(0); /* Initialize most things */
  518. #endif /* COMMENT */
  519. #endif /* COMMENT */
  520. #endif /* NOSERVER */
  521. }
  522.     break;
  523. case 18:
  524.     { /* GET */
  525. #ifndef NOSERVER
  526.     if (x_login && !x_logged) {
  527. errpkt((CHAR *)"Login required");
  528. SERVE;
  529.     } else if (sgetinit(0,0) < 0) {
  530. RESUME;
  531.     } else {
  532. #ifdef CKSYSLOG
  533. if (ckxsyslog >= SYSLG_PR && ckxlogging)
  534.   cksyslog(SYSLG_PR, 1, "server", "GET", (char *)srvcmd);
  535. #endif /* CKSYSLOG */
  536. BEGIN ssinit;
  537.     }
  538. #endif /* NOSERVER */
  539. }
  540.     break;
  541. case 19:
  542.     { /* GET /DELETE (RETRIEVE) */
  543. #ifndef NOSERVER
  544.     if (x_login && !x_logged) {
  545. errpkt((CHAR *)"Login required");
  546. RESUME;
  547.     } else if (!ENABLED(en_del)) {
  548. errpkt((CHAR *)"Deleting files is disabled");
  549. RESUME;
  550.     } else if (sgetinit(0,0) < 0) {
  551. RESUME;
  552.     } else {
  553. moving = 1;
  554. #ifdef CKSYSLOG
  555. if (ckxsyslog >= SYSLG_PR && ckxlogging)
  556.   cksyslog(SYSLG_PR, 1, "server", "GET /DELETE", (char *)srvcmd);
  557. #endif /* CKSYSLOG */
  558. BEGIN ssinit;
  559.     }
  560. #endif /* NOSERVER */
  561. }
  562.     break;
  563. case 20:
  564.     { /* GET /RECURSIVE */
  565. #ifndef NOSERVER
  566.     recursive = 1; /* Set these before sgetinit() */
  567.     if (fnspath == PATH_OFF)
  568.       fnspath = PATH_REL; /* Don't worry, they will be */
  569.     if (x_login && !x_logged) { /* reset next time through. */
  570. errpkt((CHAR *)"Login required");
  571. RESUME;
  572.     } else if (sgetinit(0,0) < 0) {
  573. RESUME;
  574.     } else {
  575. #ifdef CKSYSLOG
  576. if (ckxsyslog >= SYSLG_PR && ckxlogging)
  577.   cksyslog(SYSLG_PR, 1, "server", "GET /RECURSIVE", (char *)srvcmd);
  578. #endif /* CKSYSLOG */
  579. BEGIN ssinit;
  580.     }
  581. #endif /* NOSERVER */
  582. }
  583.     break;
  584. case 21:
  585.     { /* GET /RECURSIVE /DELETE */
  586. #ifndef NOSERVER
  587.     recursive = 1; /* Set these before sgetinit() */
  588.     if (fnspath == PATH_OFF)
  589.       fnspath = PATH_REL; /* Don't worry, they will be */
  590.     moving = 1; /* reset next time through. */
  591.     if (x_login && !x_logged) {
  592. errpkt((CHAR *)"Login required");
  593. RESUME;
  594.     } else if (!ENABLED(en_del)) {
  595. errpkt((CHAR *)"Deleting files is disabled");
  596. RESUME;
  597.     } else if (sgetinit(0,0) < 0) {
  598. RESUME;
  599.     } else {
  600. #ifdef CKSYSLOG
  601. if (ckxsyslog >= SYSLG_PR && ckxlogging)
  602.   cksyslog(SYSLG_PR,1,"server",
  603.    "GET /RECURSIVE /DELETE",(char *)srvcmd);
  604. #endif /* CKSYSLOG */
  605. BEGIN ssinit;
  606.     }
  607. #endif /* NOSERVER */
  608. }
  609.     break;
  610. case 22:
  611.     { /* GET /RECOVER (REGET) */
  612. #ifndef NOSERVER
  613.     if (x_login && !x_logged) {
  614. errpkt((CHAR *)"Login required");
  615. SERVE;
  616.     } else if (sgetinit(1,0) < 0) {
  617. RESUME;
  618.     } else {
  619. #ifdef CKSYSLOG
  620. if (ckxsyslog >= SYSLG_PR && ckxlogging)
  621.   cksyslog(SYSLG_PR, 1, "server", "GET /RECOVER", (char *)srvcmd);
  622. #endif /* CKSYSLOG */
  623. BEGIN ssinit;
  624.     }
  625. #endif /* NOSERVER */
  626. }
  627.     break;
  628. case 23:
  629.     { /* Extended GET */
  630. #ifndef NOSERVER
  631.     if (x_login && !x_logged) { /* (any combination of options) */
  632. errpkt((CHAR *)"Login required");
  633. SERVE;
  634.     } else if ((x = sgetinit(0,1)) < 0) {
  635. debug(F101,"CKCPRO <serve>O sgetinit fail","",x);
  636. RESUME;
  637.     } else if (x == 0) {
  638. debug(F101,"CKCPRO <serve>O sgetinit done","",x);
  639. #ifdef CKSYSLOG
  640. if (ckxsyslog >= SYSLG_PR && ckxlogging)
  641.   cksyslog(SYSLG_PR, 1, "server", "EXTENDED GET", (char *)srvcmd);
  642. #endif /* CKSYSLOG */
  643. BEGIN ssinit;
  644.     } else { /* Otherwise stay in this state */
  645. debug(F101,"CKCPRO <serve>O sgetinit TBC","",x);
  646. ack();
  647. BEGIN ropkt;
  648.     }
  649. #endif /* NOSERVER */
  650. }
  651.     break;
  652. case 24:
  653.     {
  654. #ifndef NOSERVER
  655.     if (x_login && !x_logged) { /* (any combination of options) */
  656. errpkt((CHAR *)"Login required");
  657. SERVE;
  658.     } else if ((x = sgetinit(0,1)) < 0) {
  659. debug(F101,"CKCPRO <ropkt>O sgetinit fail","",x);
  660. RESUME;
  661.     } else if (x == 0) {
  662. debug(F101,"CKCPRO <ropkt>O sgetinit done","",x);
  663. #ifdef CKSYSLOG
  664. if (ckxsyslog >= SYSLG_PR && ckxlogging)
  665.   cksyslog(SYSLG_PR, 1, "server", "EXTENDED GET", (char *)srvcmd);
  666. #endif /* CKSYSLOG */
  667. BEGIN ssinit;
  668.     } else { /* Otherwise stay in this state */
  669. debug(F101,"CKCPRO <ropkt>O sgetinit TBC","",x);
  670. ack();
  671.     }
  672. #endif /* NOSERVER */
  673. }
  674.     break;
  675. case 25:
  676.     { /* Generic server command */
  677. #ifndef NOSERVER
  678.     srvptr = srvcmd; /* Point to command buffer */
  679.     decode(rdatap,putsrv,0); /* Decode packet data into it */
  680.     putsrv(NUL); /* Insert a couple nulls */
  681.     putsrv(NUL); /* for termination */
  682.     if (srvcmd[0]) {
  683. sstate = srvcmd[0]; /* Set requested start state */
  684. if (x_login && !x_logged && /* Login required? */
  685.     /* Login, Logout, and Help are allowed when not logged in */
  686.     sstate != 'I' && sstate != 'L' && sstate != 'H') {
  687.     errpkt((CHAR *)"Login required");
  688.     SERVE;
  689. } else {
  690.     nakstate = 0; /* Now I'm the sender. */
  691.     what = W_REMO; /* Doing a REMOTE command. */
  692. #ifdef STREAMING
  693.     if (!streaming)
  694. #endif /* STREAMING */
  695.       if (timint < 1)
  696. timint = chktimo(rtimo,timef); /* Switch to per-packet timer */
  697.     binary = XYFT_T; /* Switch to text mode */
  698.     BEGIN generic; /* Switch to generic command state */
  699. }
  700.     } else {
  701. errpkt((CHAR *)"Badly formed server command"); /* report error */
  702. RESUME; /* & go back to server command wait */
  703.     }
  704. #endif /* NOSERVER */
  705. }
  706.     break;
  707. case 26:
  708.     { /* Receive Host command */
  709. #ifndef NOSERVER
  710.     if (x_login && !x_logged) {
  711. errpkt((CHAR *)"Login required");
  712. SERVE;
  713.     } else if (!ENABLED(en_hos)) {
  714. errpkt((CHAR *)"REMOTE HOST disabled");
  715. RESUME;
  716.     } else if (nopush) {
  717. errpkt((CHAR *)"HOST commands not available");
  718. RESUME;
  719.     } else {
  720. srvptr = srvcmd; /* Point to command buffer */
  721. decode(rdatap,putsrv,0); /* Decode command packet into it */
  722. putsrv(NUL); /* Null-terminate */
  723. nakstate = 0; /* Now sending, not receiving */
  724. binary = XYFT_T; /* Switch to text mode */
  725. if (syscmd((char *)srvcmd,"")) { /* Try to execute the command */
  726.     what = W_REMO; /* Doing a REMOTE command. */
  727. #ifdef STREAMING
  728.     if (!streaming)
  729. #endif /* STREAMING */
  730.       if (timint < 1)
  731. timint = chktimo(rtimo,timef); /* Switch to per-packet timer */
  732. #ifdef CKSYSLOG
  733.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  734.       cksyslog(SYSLG_PR, 1, "server", "REMOTE HOST", (char *)srvcmd);
  735. #endif /* CKSYSLOG */
  736.     BEGIN ssinit; /* If OK, send back its output */
  737. } else { /* Otherwise */
  738.     errpkt((CHAR *)"Can't do system command"); /* report error */
  739.     RESUME; /* & go back to server command wait */
  740. }
  741.     }
  742. #endif /* NOSERVER */
  743. }
  744.     break;
  745. case 27:
  746.     { /* Interrupted or connection lost */
  747.     rc = srv_timeout();
  748.     debug(F101,"srv_timeout","",rc);
  749.     if (rc > -1) return(rc); /* (see below) */
  750. }
  751.     break;
  752. case 28:
  753.     { /* Server got a NAK in command-wait */
  754. #ifndef NOSERVER
  755.     errpkt((CHAR *)"Did you say RECEIVE instead of GET?");
  756.     RESUME;
  757. #endif /* NOSERVER */
  758. }
  759.     break;
  760. case 29:
  761.     { /* Any other command in this state */
  762. #ifndef NOSERVER
  763.     if (c != ('E' - SP) && c != ('Y' - SP)) /* except E and Y packets. */
  764.       errpkt((CHAR *)"Unimplemented server function");
  765.     /* If we answer an E with an E, we get an infinite loop. */
  766.     /* A Y (ACK) can show up here if we sent back a short-form reply to */
  767.     /* a G packet and it was echoed.  ACKs can be safely ignored here. */
  768.     RESUME; /* Go back to server command wait. */
  769. #endif /* NOSERVER */
  770. }
  771.     break;
  772. case 30:
  773.     { /* Login/Out */
  774.     rc = srv_login();
  775.     debug(F101,"<generic>I srv_login","",rc);
  776.     if (rc > -1) return(rc); /* (see below) */
  777. }
  778.     break;
  779. case 31:
  780.     { /* Got REMOTE CD command */
  781. #ifndef NOSERVER
  782. #ifdef CKSYSLOG
  783.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  784.       cksyslog(SYSLG_PR, 1, "server", "REMOTE CD", (char *)srvcmd);
  785. #endif /* CKSYSLOG */
  786.     if (!ENABLED(en_cwd)) {
  787. errpkt((CHAR *)"REMOTE CD disabled");
  788. RESUME;
  789.     } else {
  790. char * p = NULL;
  791. x = cwd((char *)(srvcmd+1)); /* Try to change directory */
  792. #ifdef IKSDB
  793. if (ikdbopen) slotstate(what,"REMOTE CD", (char *)(srvcmd+2), "");
  794. #endif /* IKSDB */
  795. if (!x) { /* Failed */
  796.     errpkt((CHAR *)"Can't change directory");
  797.     RESUME; /* Back to server command wait */
  798. } else if (x == 2) { /* User wants message */
  799.     if (!ENABLED(en_typ)) { /* Messages (REMOTE TYPE) disabled? */
  800. errpkt((CHAR *)"REMOTE TYPE disabled");
  801. RESUME;
  802.     } else { /* TYPE is enabled */
  803. int i;
  804. for (i = 0; i < 8; i++) {
  805.     if (zchki(cdmsgfile[i]) > -1) {
  806. break;
  807.     }
  808. }
  809. binary = XYFT_T; /* Use text mode for this. */
  810. if (i < 8 && sndtype(cdmsgfile[i])) { /* Have readme file? */
  811.     BEGIN ssinit; /* OK */
  812. } else { /* not OK */
  813.     p = zgtdir();
  814.     if (!p) p = "";
  815.     success = (*p) ? 1 : 0;
  816.     ack1((CHAR *)p); /* ACK with new directory name */
  817.     success = 1;
  818.     RESUME; /* wait for next server command */
  819. }
  820.     }
  821. } else { /* User doesn't want message */
  822.     p =zgtdir();
  823.     if (!p) p = "";
  824.     success = (*p) ? 1 : 0;
  825.     ack1((CHAR *)p);
  826.     success = 1;
  827.     RESUME; /* Wait for next server command */
  828. }
  829.     }
  830. #endif /* NOSERVER */
  831. }
  832.     break;
  833. case 32:
  834.     { /* Got REMOTE PWD command */
  835. #ifndef NOSERVER
  836. #ifdef CKSYSLOG
  837.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  838.       cksyslog(SYSLG_PR, 1, "server", "REMOTE PWD", NULL);
  839. #endif /* CKSYSLOG */
  840.     if (!ENABLED(en_cwd)) {
  841. errpkt((CHAR *)"REMOTE CD disabled");
  842. RESUME;
  843.     } else {
  844. if (encstr((CHAR *)zgtdir()) > -1) { /* Encode current directory */
  845.     ack1(data); /* If it fits, send it back in ACK */
  846.     success = 1;
  847. } else { /* Failed */
  848.     ack(); /* Send empty ACK */
  849.     success = 0; /* and indicate failure locally */
  850. }
  851. RESUME; /* Back to server command wait */
  852.     }
  853. #endif /* NOSERVER */
  854. }
  855.     break;
  856. case 33:
  857.     { /* REMOTE DIRECTORY command */
  858. #ifndef NOSERVER
  859.     char *n2;
  860. #ifdef CKSYSLOG
  861.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  862.       cksyslog(SYSLG_PR, 1, "server", "REMOTE DIRECTORY", (char *)srvcmd);
  863. #endif /* CKSYSLOG */
  864.     if (!ENABLED(en_dir)) { /* If DIR is disabled, */
  865. errpkt((CHAR *)"REMOTE DIRECTORY disabled"); /* refuse. */
  866. RESUME;
  867.     } else { /* DIR is enabled. */
  868. #ifdef IKSDB
  869. if (ikdbopen) slotstate(what,"REMOTE DIR", (char *)(srvcmd+2), "");
  870. #endif /* IKSDB */
  871. if (!ENABLED(en_cwd)) { /* But CWD is disabled */
  872.     zstrip((char *)(srvcmd+2),&n2); /* and they included a pathname, */
  873.     if (strcmp((char *)(srvcmd+2),n2)) { /* so refuse. */
  874. errpkt((CHAR *)"Access denied");
  875. RESUME; /* Remember, this is not a goto! */
  876.     }
  877. }
  878. if (state == generic) { /* It's OK to go ahead. */
  879. #ifdef COMMENT
  880.     n2 = (*(srvcmd+2)) ? DIRCMD : DIRCM2;
  881.     if (syscmd(n2,(char *)(srvcmd+2)))  /* If it can be done */
  882. #else
  883.     int x;
  884.     if ((x = snddir((char*)(srvcmd+2))) > 0)
  885. #endif /* COMMENT */
  886.     {
  887. BEGIN ssinit; /* send the results back; */
  888.     } else { /* otherwise */
  889. if (x < 0)
  890.   errpkt((CHAR *)"No files match");
  891. else
  892.   errpkt((CHAR *)"Can't list directory");
  893. RESUME; /* return to server command wait */
  894.     }
  895. }
  896.     }
  897. #endif /* NOSERVER */
  898. }
  899.     break;
  900. case 34:
  901.     { /* REMOTE DELETE (Erase) */
  902. #ifndef NOSERVER
  903.     char *n2;
  904. #ifdef CKSYSLOG
  905.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  906.       cksyslog(SYSLG_PR, 1, "server", "REMOTE DELETE", (char *)srvcmd);
  907. #endif /* CKSYSLOG */
  908.     if (!ENABLED(en_del)) {
  909. errpkt((CHAR *)"REMOTE DELETE disabled");
  910. RESUME;
  911.     } else { /* DELETE is enabled */
  912. #ifdef IKSDB
  913. if (ikdbopen) slotstate(what,"REMOTE DELETE", (char *)(srvcmd+2), "");
  914. #endif /* IKSDB */
  915. if (!ENABLED(en_cwd)) { /* but CWD is disabled */
  916.     zstrip((char *)(srvcmd+2),&n2); /* and they included a pathname, */
  917.     if (strcmp((char *)(srvcmd+2),n2)) { /* so refuse. */
  918. errpkt((CHAR *)"Access denied");
  919. RESUME; /* Remember, this is not a goto! */
  920.     }
  921. } else if (isdir((char *)(srvcmd+2))) { /* A directory name? */
  922.     errpkt((CHAR *)"It's a directory");
  923.     RESUME;
  924. }
  925. if (state == generic) { /* It's OK to go ahead. */
  926.     int x;
  927.     if ((x = snddel((char*)(srvcmd+2))) > 0) {
  928. BEGIN ssinit; /* If OK send results back */
  929.     } else { /* otherwise */
  930. if (x < 0)
  931.   errpkt((CHAR *)"File not found"); /* report failure */
  932. else
  933.   errpkt((CHAR *)"DELETE failed");
  934. RESUME; /* & return to server command wait */
  935.     }
  936. }
  937.     }
  938. #endif /* NOSERVER */
  939. }
  940.     break;
  941. case 35:
  942.     { /* FINISH */
  943. #ifndef NOSERVER
  944. #ifdef CKSYSLOG
  945.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  946.       cksyslog(SYSLG_PR, 1, "server", "FINISH", NULL);
  947. #endif /* CKSYSLOG */
  948. #ifdef IKSDB
  949.     if (ikdbopen) slotstate(what,"SERVER FINISH", "", "");
  950. #endif /* IKSDB */
  951.     if (!ENABLED(en_fin)) {
  952. errpkt((CHAR *)"FINISH disabled");
  953. RESUME;
  954.     } else {
  955. ack(); /* Acknowledge */
  956. xxscreen(SCR_TC,0,0L,""); /* Display */
  957. success = 1;
  958. return(0); /* Done */
  959.     }
  960. #endif /* NOSERVER */
  961. }
  962.     break;
  963. case 36:
  964.     { /* EXIT */
  965. #ifndef NOSERVER
  966. #ifdef CKSYSLOG
  967.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  968.       cksyslog(SYSLG_PR, 1, "server", "REMOTE EXIT", NULL);
  969. #endif /* CKSYSLOG */
  970. #ifdef IKSDB
  971.     if (ikdbopen) slotstate(what,"REMOTE EXIT", "", "");
  972. #endif /* IKSDB */
  973.     if (!ENABLED(en_xit)) {
  974. errpkt((CHAR *)"EXIT disabled");
  975. RESUME;
  976.     } else {
  977. ack(); /* Acknowledge */
  978. xxscreen(SCR_TC,0,0L,""); /* Display */
  979. doexit(GOOD_EXIT,xitsta);
  980.     }
  981. #endif /* NOSERVER */
  982. }
  983.     break;
  984. case 37:
  985.     { /* BYE (Logout) */
  986. #ifndef NOSERVER
  987. #ifdef CKSYSLOG
  988.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  989.       cksyslog(SYSLG_PR, 1, "server", "BYE", NULL);
  990. #endif /* CKSYSLOG */
  991. #ifdef IKSDB
  992.     if (ikdbopen) slotstate(what,"SERVER BYE", "", "");
  993. #endif /* IKSDB */
  994.     if (!ENABLED(en_bye)) {
  995. errpkt((CHAR *)"BYE disabled");
  996. RESUME;
  997.     } else {
  998. ack(); /* Acknowledge */
  999. success = 1;
  1000. msleep(750); /* Give the ACK time to get out */
  1001. if (local)
  1002.   ttres(); /* Reset the terminal */
  1003. xxscreen(SCR_TC,0,0L,""); /* Display */
  1004. doclean(1); /* Clean up files, etc */
  1005. #ifdef DEBUG
  1006. debug(F100,"C-Kermit BYE - Loggin out...","",0);
  1007. zclose(ZDFILE);
  1008. #endif /* DEBUG */
  1009. #ifdef IKSD
  1010. #ifdef CK_LOGIN
  1011. if (inserver)
  1012.   ckxlogout();
  1013. else
  1014. #endif /* CK_LOGIN */
  1015. #endif /* IKSD */
  1016. #ifdef TCPSOCKET
  1017. #ifndef NOLISTEN
  1018.   if (network && tcpsrfd > 0 && !inserver)
  1019.     doexit(GOOD_EXIT,xitsta);
  1020. else
  1021. #endif /* NOLISTEN */
  1022. #endif /* TCPSOCKET */
  1023.   return(zkself()); /* Try to log self out */
  1024.     }
  1025. #endif /* NOSERVER */
  1026. }
  1027.     break;
  1028. case 38:
  1029.     { /* REMOTE HELP */
  1030. #ifdef CKSYSLOG
  1031.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  1032.       cksyslog(SYSLG_PR, 1, "server", "REMOTE HELP", NULL);
  1033. #endif /* CKSYSLOG */
  1034. #ifdef IKSDB
  1035.     if (ikdbopen) slotstate(what,"REMOTE HELP", "", "");
  1036. #endif /* IKSDB */
  1037. #ifndef NOSERVER
  1038.     if (sndhlp(NULL)) {
  1039. BEGIN ssinit; /* try to send it */
  1040.     } else { /* If not ok, */
  1041. errpkt((CHAR *)"Can't send help"); /* send error message instead */
  1042. RESUME; /* and return to server command wait */
  1043.     }
  1044. #endif /* NOSERVER */
  1045. }
  1046.     break;
  1047. case 39:
  1048.     {                            /* REMOTE RENAME */
  1049.     rc = srv_rename();
  1050.     debug(F101,"srv_rename","",rc);
  1051.     if (rc > -1) return(rc); /* (see below) */
  1052. }
  1053.     break;
  1054. case 40:
  1055.     {                            /* REMOTE COPY */
  1056.     rc = srv_copy();
  1057.     debug(F101,"srv_copy","",rc);
  1058.     if (rc > -1) return(rc); /* (see below) */
  1059. }
  1060.     break;
  1061. case 41:
  1062.     { /* REMOTE SET */
  1063. #ifdef CKSYSLOG
  1064.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  1065.       cksyslog(SYSLG_PR, 1, "server", "REMOTE SET", (char *)srvcmd);
  1066. #endif /* CKSYSLOG */
  1067. #ifndef NOSERVER
  1068. #ifdef IKSDB
  1069.     if (ikdbopen) slotstate(what,"REMOTE SET", (char *)(srvcmd+1), "");
  1070. #endif /* IKSDB */
  1071.     if (!ENABLED(en_set)) {
  1072. errpkt((CHAR *)"REMOTE SET disabled");
  1073. RESUME;
  1074.     } else {
  1075. if (remset((char *)(srvcmd+1))) { /* Try to do what they ask */
  1076.     success = 1;
  1077.     ack(); /* If OK, then acknowledge */
  1078. } else /* Otherwise */
  1079.   errpkt((CHAR *)"Unknown REMOTE SET parameter"); /* give error msg */
  1080. RESUME; /* Return to server command wait */
  1081.     }
  1082. #endif /* NOSERVER */
  1083. }
  1084.     break;
  1085. case 42:
  1086.     { /* REMOTE TYPE */
  1087. #ifndef NOSERVER
  1088.     char *n2;
  1089. #ifdef CKSYSLOG
  1090.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  1091.       cksyslog(SYSLG_PR, 1, "server", "REMOTE TYPE", (char *)srvcmd);
  1092. #endif /* CKSYSLOG */
  1093.     if (!ENABLED(en_typ)) {
  1094. errpkt((CHAR *)"REMOTE TYPE disabled");
  1095. RESUME;
  1096.     } else {
  1097. #ifdef IKSDB
  1098. if (ikdbopen) slotstate(what,"REMOTE TYPE", (char *)(srvcmd+2), "");
  1099. #endif /* IKSDB */
  1100. if (!ENABLED(en_cwd)) { /* If CWD disabled */
  1101.     zstrip((char *)(srvcmd+2),&n2); /* and they included a pathname, */
  1102.     if (strcmp((char *)(srvcmd+2),n2)) { /* refuse. */
  1103. errpkt((CHAR *)"Access denied");
  1104. RESUME; /* Remember, this is not a goto! */
  1105.     }
  1106. }
  1107. if (state == generic) { /* It's OK to go ahead. */
  1108.     binary = XYFT_T; /* Use text mode for this. */
  1109.     if ( /* (RESUME didn't change state) */
  1110. #ifdef COMMENT
  1111.       syscmd(TYPCMD,(char *)(srvcmd+2)) /* Old way */
  1112. #else
  1113.       sndtype((char *)(srvcmd+2)) /* New way */
  1114. #endif /* COMMENT */
  1115. )
  1116.       BEGIN ssinit; /* OK */
  1117.     else { /* not OK */
  1118. errpkt((CHAR *)"Can't type file"); /* give error message */
  1119. RESUME; /* wait for next server command */
  1120.     }
  1121. }
  1122.     }
  1123. #endif /* NOSERVER */
  1124. }
  1125.     break;
  1126. case 43:
  1127.     { /* REMOTE MKDIR */
  1128. #ifndef NOSERVER
  1129. #ifdef CK_MKDIR
  1130. #ifdef CKSYSLOG
  1131.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  1132.       cksyslog(SYSLG_PR, 1, "server", "REMOTE MKDIR", (char *)srvcmd);
  1133. #endif /* CKSYSLOG */
  1134. #ifdef IKSDB
  1135.     if (ikdbopen) slotstate(what,"REMOTE MKDIR", (char *)(srvcmd+2), "");
  1136. #endif /* IKSDB */
  1137.     if (!ENABLED(en_mkd)) {
  1138. errpkt((CHAR *)"REMOTE MKDIR disabled");
  1139. RESUME;
  1140.     } else if (!ENABLED(en_cwd)) { /* If CWD disabled */
  1141. errpkt((CHAR *)"Directory access restricted");
  1142. RESUME; /* Remember, this is not a goto! */
  1143.     }
  1144.     if (state == generic) { /* OK to go ahead. */
  1145. char *p = NULL;
  1146. x = ckmkdir(0,(char *)(srvcmd+2),&p,0,1); /* Make the directory */
  1147. if (!p) p = "";
  1148. if (x > -1) {
  1149.     encstr((CHAR *)p); /* OK - encode the name */
  1150.     ack1(data); /* Send short-form response */
  1151.     success = 1;
  1152.     RESUME;
  1153. } else { /* not OK */
  1154.     if (!*p) p = "Directory creation failure";
  1155.     errpkt((CHAR *)p); /* give error message */
  1156.     RESUME; /* Wait for next server command */
  1157. }
  1158.     }
  1159. #else
  1160.     errpkt((CHAR *)"REMOTE MKDIR not available");
  1161.     RESUME;
  1162. #endif /* CK_MKDIR */
  1163. #endif /* NOSERVER */
  1164. }
  1165.     break;
  1166. case 44:
  1167.     { /* REMOTE RMDIR */
  1168. #ifndef NOSERVER
  1169. #ifdef CK_MKDIR
  1170. #ifdef CKSYSLOG
  1171.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  1172.       cksyslog(SYSLG_PR, 1, "server", "REMOTE RMDIR", (char *)srvcmd);
  1173. #endif /* CKSYSLOG */
  1174. #ifdef IKSDB
  1175.     if (ikdbopen) slotstate(what,"REMOTE RMDIR", (char *)(srvcmd+2), "");
  1176. #endif /* IKSDB */
  1177.     if (!ENABLED(en_rmd)) {
  1178. errpkt((CHAR *)"REMOTE RMDIR disabled");
  1179. RESUME;
  1180.     } else if (!ENABLED(en_cwd)) { /* If CWD disabled */
  1181. errpkt((CHAR *)"Directory access restricted");
  1182. RESUME; /* Remember, this is not a goto! */
  1183.     }
  1184.     if (state == generic) { /* OK to go ahead. */
  1185. char *p = NULL;
  1186. x = ckmkdir(1,(char *)(srvcmd+2),&p,0,1);
  1187. if (!p) p = "";
  1188. if (x > -1) {
  1189.     encstr((CHAR *)p); /* OK - encode the name */
  1190.     ack1(data); /* Send short-form response */
  1191.     success = 1;
  1192.     RESUME;
  1193. } else { /* not OK */
  1194.     if (!*p) p = "Directory removal failure";
  1195.     errpkt((CHAR *)p); /* give error message */
  1196.     RESUME; /* Wait for next server command */
  1197. }
  1198.     }
  1199. #else
  1200.     errpkt((CHAR *)"REMOTE RMDIR not available");
  1201.     RESUME;
  1202. #endif /* CK_MKDIR */
  1203. #endif /* NOSERVER */
  1204. }
  1205.     break;
  1206. case 45:
  1207.     { /* REMOTE SPACE */
  1208. #ifndef NOSERVER
  1209. #ifdef CKSYSLOG
  1210.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  1211.       cksyslog(SYSLG_PR, 1, "server", "REMOTE SPACE", (char *)srvcmd);
  1212. #endif /* CKSYSLOG */
  1213.     if (!ENABLED(en_spa)) {
  1214. errpkt((CHAR *)"REMOTE SPACE disabled");
  1215. RESUME;
  1216.     } else {
  1217. x = srvcmd[1]; /* Get area to check */
  1218. x = ((x == NUL) || (x == SP)
  1219. #ifdef OS2
  1220.      || (x == '!') || (srvcmd[3] == ':')
  1221. #endif /* OS2 */
  1222.      );
  1223. #ifdef IKSDB
  1224. if (ikdbopen) slotstate(what,
  1225.       "REMOTE SPACE",
  1226.       (x ? "" : (char *)srvcmd),
  1227.       ""
  1228.       );
  1229. #endif /* IKSDB */
  1230. if (!x && !ENABLED(en_cwd)) { /* CWD disabled */
  1231.     errpkt((CHAR *)"Access denied"); /* and non-default area given, */
  1232.     RESUME; /* refuse. */
  1233. } else {
  1234. #ifdef OS2
  1235. _PROTOTYP(int sndspace,(int));
  1236.     if (sndspace(x ? toupper(srvcmd[2]) : 0)) {
  1237. BEGIN ssinit; /* send the report. */
  1238.     } else { /* If not ok, */
  1239. errpkt((CHAR *)"Can't send space"); /* send error message */
  1240. RESUME; /* and return to server command wait */
  1241.     }
  1242. #else
  1243.             if (nopush)
  1244.               x = 0;
  1245.             else
  1246.               x = (x ? syscmd(SPACMD,"") : syscmd(SPACM2,(char *)(srvcmd+2)));
  1247.     if (x) { /* If we got the info */
  1248. BEGIN ssinit; /* send it */
  1249.     } else { /* otherwise */
  1250. errpkt((CHAR *)"Can't check space"); /* send error message */
  1251. RESUME; /* and await next server command */
  1252.     }
  1253. #endif /* OS2 */
  1254. }
  1255.     }
  1256. #endif /* NOSERVER */
  1257. }
  1258.     break;
  1259. case 46:
  1260.     { /* REMOTE WHO */
  1261. #ifndef NOSERVER
  1262. #ifdef CKSYSLOG
  1263.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  1264.       cksyslog(SYSLG_PR, 1, "server", "REMOTE WHO", (char *)srvcmd);
  1265. #endif /* CKSYSLOG */
  1266. #ifdef IKSDB
  1267.     if (ikdbopen) slotstate(what,"REMOTE WHO", (char *)(srvcmd+2), "");
  1268. #endif /* IKSDB */
  1269.     if (!ENABLED(en_who)) {
  1270. errpkt((CHAR *)"REMOTE WHO disabled");
  1271. RESUME;
  1272.     } else {
  1273. #ifdef OS2
  1274. _PROTOTYP(int sndwho,(char *));
  1275.     if (sndwho((char *)(srvcmd+2))) {
  1276. BEGIN ssinit; /* try to send it */
  1277.     } else { /* If not ok, */
  1278. errpkt((CHAR *)"Can't do who command"); /* send error msg */
  1279. RESUME; /* and return to server command wait */
  1280.     }
  1281. #else
  1282. if (syscmd(WHOCMD,(char *)(srvcmd+2))) {
  1283.     BEGIN ssinit;
  1284. } else {
  1285.     errpkt((CHAR *)"Can't do who command");
  1286.     RESUME;
  1287. }
  1288. #endif /* OS2 */
  1289.     }
  1290. #endif /* NOSERVER */
  1291. }
  1292.     break;
  1293. case 47:
  1294.     { /* Variable query or set */
  1295.     rc = srv_query();
  1296.     debug(F101,"srv_query","",rc);
  1297.     if (rc > -1) return(rc);
  1298. }
  1299.     break;
  1300. case 48:
  1301.     { /* Interrupted or connection lost */
  1302. #ifndef NOSERVER
  1303.     if (fatalio) { /* Connection lost */
  1304. #ifdef CKSYSLOG
  1305. if (ckxsyslog >= SYSLG_PR && ckxlogging)
  1306.   cksyslog(SYSLG_PR, 1, "server", "Interrupted", NULL);
  1307. #endif /* CKSYSLOG */
  1308. success = 0;
  1309. xitsta |= what;
  1310. QUIT;
  1311.     } else if (interrupted) {
  1312. if (!ENABLED(en_fin)) { /* Ctrl-C typed */
  1313.     errpkt((CHAR *)"QUIT disabled");
  1314.     RESUME;
  1315. } else {
  1316. #ifdef CKSYSLOG
  1317.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  1318.       cksyslog(SYSLG_PR, 1, "server", "Interrupted", NULL);
  1319. #endif /* CKSYSLOG */
  1320.     success = 0;
  1321.     xitsta |= what;
  1322.     QUIT;
  1323. }
  1324.     } else { /* Shouldn't happen */
  1325. debug(F100,"SERVER (generic) GOT UNEXPECTED 'q'","",0);
  1326. QUIT;
  1327.     }
  1328. #endif /* NOSERVER */
  1329. }
  1330.     break;
  1331. case 49:
  1332.     { /* Anything else in this state... */
  1333. #ifndef NOSERVER
  1334.     errpkt((CHAR *)"Unimplemented REMOTE command"); /* Complain */
  1335.     RESUME; /* and return to server command wait */
  1336. #endif /* NOSERVER */
  1337. }
  1338.     break;
  1339. case 50:
  1340.     { /* Sent BYE and connection broken */
  1341.     if (bye_active && ttchk() < 0) {
  1342. msleep(500);
  1343. bye_active = 0;
  1344. ttclos(0); /* Close our end of the connection */
  1345. clsof(0);
  1346. return(success = 1);
  1347.     } else { /* Other generic command */
  1348. return(success = 0); /* or connection not broken */
  1349.     }
  1350. }
  1351.     break;
  1352. case 51:
  1353.     { /* Short-Form reply */
  1354.     rc = rcv_shortreply();
  1355.     debug(F101,"<rgen>Y rcv_shortreply","",rc);
  1356.     if (rc > -1) return(rc);
  1357. }
  1358.     break;
  1359. case 52:
  1360.     { /* File header */
  1361.     char *n2;
  1362.     extern int rsn;
  1363.     debug(F101,"<rfile>F winlo 1","",winlo);
  1364.     xflg = 0; /* Not screen data */
  1365.     cancel = 0; /* Reset cancellation counter */
  1366. #ifdef CALIBRATE
  1367.     if (dest == DEST_N)
  1368.       calibrate = 1;
  1369. #endif /* CALIBRATE */
  1370.     if (!rcvfil(filnam)) { /* Figure out local filename */
  1371. errpkt((CHAR *)rf_err); /* Trouble */
  1372. RESUME;
  1373.     } else { /* Real file, OK to receive */
  1374. char * fnp;
  1375. debug(F111,"<rfile>F winlo 2",fspec,winlo);
  1376. if (filcnt == 1) /* rcvfil set this to 1 for 1st file */
  1377.   crc16 = 0L; /* Clear file CRC */
  1378. fnp = fspec; /* This is the full path */
  1379. if (server && !ENABLED(en_cwd) || /* if DISABLE CD */
  1380.     !fackpath   /* or F-ACK-PATH OFF */
  1381.     ) {
  1382.     zstrip(fspec,&fnp); /* don't send back full path */
  1383. }
  1384. encstr((CHAR *)fnp);
  1385. if (fackbug)
  1386.   ack();
  1387. else
  1388.   ack1(data); /* Send it back in ACK */
  1389. initattr(&iattr); /* Clear file attribute structure */
  1390. streamon();
  1391. if (window(wslotn) < 0) { /* Allocate negotiated window slots */
  1392.     errpkt((CHAR *)"Can't open window");
  1393.     RESUME;
  1394. }
  1395. #ifdef IKSDB
  1396. if (ikdbopen) slotstate(what,
  1397.       server ? "SERVER" : "",
  1398.       "RECEIVE",
  1399.       fspec
  1400.       );
  1401. #endif /* IKSDB */
  1402. BEGIN rattr; /* Now expect Attribute packets */
  1403.     }
  1404. }
  1405.     break;
  1406. case 53:
  1407.     { /* X-packet instead of file header */
  1408.     xflg = 1; /* Screen data */
  1409.     cancel = 0; /* Reset cancellation counter */
  1410.     ack(); /* Acknowledge the X-packet */
  1411.     initattr(&iattr); /* Initialize attribute structure */
  1412.     streamon();
  1413.     if (window(wslotn) < 0) { /* allocate negotiated window slots */
  1414. errpkt((CHAR *)"Can't open window");
  1415. RESUME;
  1416.     }
  1417. #ifndef NOSPL
  1418.     if (query) { /* If this is the response to */
  1419. qbufp = querybuf; /* a query that we sent, initialize */
  1420. qbufn = 0; /* the response buffer */
  1421. querybuf[0] = NUL;
  1422.     }
  1423. #endif /* NOSPL */
  1424.     what = W_REMO; /* we're doing a REMOTE command */
  1425. #ifdef IKSDB
  1426.     if (ikdbopen) slotstate(what,
  1427.   server ? "SERVER" : "",
  1428.   "RECEIVE",
  1429.   fspec
  1430.   );
  1431. #endif /* IKSDB */
  1432.     BEGIN rattr; /* Expect Attribute packets */
  1433. }
  1434.     break;
  1435. case 54:
  1436.     { /* Attribute packet */
  1437.     if (gattr(rdatap,&iattr) == 0) { /* Read into attribute structure */
  1438. #ifdef CK_RESEND
  1439. ack1((CHAR *)iattr.reply.val); /* Reply with data */
  1440. #else
  1441. ack(); /* If OK, acknowledge */
  1442. #endif /* CK_RESEND */
  1443.     } else { /* Otherwise */
  1444. extern long fsize;
  1445. char *r;
  1446. r = getreason(iattr.reply.val);
  1447. ack1((CHAR *)iattr.reply.val); /* refuse to accept the file */
  1448. xxscreen(SCR_ST,ST_REFU,0L,r); /* reason */
  1449. #ifdef TLOG
  1450. if (tralog && !tlogfmt)
  1451.   doxlog(what,filnam,fsize,binary,1,r);
  1452. #endif /* TLOG */
  1453.     }
  1454. }
  1455.     break;
  1456. case 55:
  1457.     { /* First data packet */
  1458.     rc = rcv_firstdata();
  1459.     debug(F101,"srv_firstdata","",rc);
  1460.     if (rc > -1) return(rc); /* (see below) */
  1461. }
  1462.     break;
  1463. case 56:
  1464.     { /* EOT, no more files */
  1465.     ack(); /* Acknowledge the B packet */
  1466.     reot(); /* Do EOT things */
  1467. #ifdef CK_TMPDIR
  1468. /* If we were cd'd temporarily to another device or directory ... */
  1469.     if (f_tmpdir) {
  1470. int x;
  1471. x = zchdir((char *) savdir); /* ... restore previous directory */
  1472. f_tmpdir = 0; /* and remember we did it. */
  1473. debug(F111,"ckcpro.w B tmpdir restoring",savdir,x);
  1474.     }
  1475. #endif /* CK_TMPDIR */
  1476.     RESUME; /* and quit */
  1477. }
  1478.     break;
  1479. case 57:
  1480.     { /* Data packet */
  1481.     if (cxseen || discard) { /* If file interrupt */
  1482. #ifdef STREAMING
  1483. if (streaming) {
  1484.     if (cancel++ == 0)
  1485.       ack1((CHAR *)"X"); /* put "X" in ACK */
  1486.     else
  1487.       fastack();
  1488. } else
  1489. #endif /* STREAMING */
  1490.     ack1((CHAR *)"X"); /* put "X" in ACK */
  1491.     } else if (czseen) { /* If file-group interrupt */
  1492. #ifdef STREAMING
  1493. if (streaming) {
  1494.     if (cancel++ == 0)
  1495.       ack1((CHAR *)"Z"); /* put "Z" in ACK */
  1496.     else
  1497.       fastack();
  1498. } else
  1499. #endif /* STREAMING */
  1500.     ack1((CHAR *)"Z"); /* put "Z" in ACK */
  1501.     } else {
  1502. int rc, qf;
  1503. #ifndef NOSPL
  1504. qf = query;
  1505. #else
  1506. qf = 0;
  1507. #endif /* NOSPL */
  1508. #ifdef CKTUNING
  1509. rc = (binary && !parity) ?
  1510.   bdecode(rdatap,putfil):
  1511.     decode(rdatap, qf ? puttrm : putfil, 1);
  1512. #else
  1513. rc = decode(rdatap, qf ? puttrm : putfil, 1);
  1514. #endif /* CKTUNING */
  1515. if (rc < 0) {
  1516.     discard = (keep == 0 || (keep == SET_AUTO && binary != XYFT_T));
  1517.     errpkt((CHAR *)"Error writing data"); /* If failure, */
  1518.     RESUME;
  1519. } else /* Data written OK, send ACK */
  1520. #ifdef STREAMING
  1521.   if (streaming)
  1522.     fastack();
  1523. else
  1524. #endif /* STREAMING */
  1525.   ack();
  1526.     }
  1527. }
  1528.     break;
  1529. case 58:
  1530.     { /* EOF immediately after A-Packet. */
  1531.     rf_err = "Can't create file";
  1532.     timint = s_timint;
  1533.     if (discard) { /* Discarding a real file... */
  1534. x = 1;
  1535.     } else if (xflg) { /* If screen data */
  1536. if (remfile) { /* redirected to file */
  1537.     if (rempipe) /* or pipe */
  1538.       x = openc(ZOFILE,remdest); /* Pipe: start command */
  1539.     else
  1540.       x = opena(remdest,&iattr); /* File: open with attributes */
  1541. } else { /* otherwise */
  1542.     x = opent(&iattr); /* "open" the screen */
  1543. }
  1544. #ifdef CALIBRATE
  1545.     } else if (calibrate) { /* If calibration run */
  1546. x = ckopenx(&iattr); /* do this */
  1547. #endif /* CALIBRATE */
  1548.     } else { /* otherwise */
  1549. x = opena(filnam,&iattr); /* open the file, with attributes */
  1550.     }
  1551.     if (!x || reof(filnam, &iattr) < 0) { /* Now close & dispose of the file */
  1552. errpkt((CHAR *) rf_err); /* If problem, send error msg */
  1553. RESUME; /* and quit */
  1554.     } else { /* otherwise */
  1555. ack(); /* acknowledge the EOF packet */
  1556. BEGIN rfile; /* and await another file */
  1557.     }
  1558. }
  1559.     break;
  1560. case 59:
  1561.     {   /* Ctrl-C or connection loss. */
  1562.     timint = s_timint;
  1563.     window(1); /* Set window size back to 1... */
  1564.     cxseen = 1;
  1565.     x = clsof(1); /* Close file */
  1566.     return(success = 0); /* Failed */
  1567. }
  1568.     break;
  1569. case 60:
  1570.     { /* End Of File (EOF) Packet */
  1571. /*  wslots = 1; */ /* (don't set) Window size back to 1 */
  1572. #ifndef COHERENT /* Coherent compiler blows up on this switch() statement. */
  1573.     x = reof(filnam, &iattr); /* Handle the EOF packet */
  1574.     switch (x) { /* reof() sets the success flag */
  1575.       case -3: /* If problem, send error msg */
  1576. errpkt((CHAR *)"Can't print file"); /* Fatal */
  1577. RESUME;
  1578. break;
  1579.       case -2:
  1580. errpkt((CHAR *)"Can't mail file"); /* Fatal */
  1581. RESUME;
  1582. break;
  1583.       case 2:
  1584.       case 3:
  1585. xxscreen(SCR_EM,0,0L,"Can't delete temp file"); /* Not fatal */
  1586. RESUME;
  1587. break;
  1588.       default:
  1589. if (x < 0) { /* Fatal */
  1590.     errpkt((CHAR *)"Can't close file");
  1591.     RESUME;
  1592. } else { /* Success */
  1593. #ifndef NOSPL
  1594.     if (query) /* Query reponses generally */
  1595.       conoll(""); /* don't have line terminators */
  1596. #endif /* NOSPL */
  1597.     ack(); /* Acknowledge the EOF packet */
  1598.     BEGIN rfile; /* and await another file */
  1599. }
  1600.     }
  1601. #else
  1602.     if (reof(filnam, &iattr) < 0) { /* Close the file */
  1603. errpkt((CHAR *)"Error at end of file");
  1604. RESUME;
  1605.     } else { /* reof() sets success flag */
  1606. ack();
  1607. BEGIN rfile;
  1608.     }
  1609. #endif /* COHERENT */
  1610. }
  1611.     break;
  1612. case 61:
  1613.     { /* ACK for Send-Init */
  1614.     spar(rdatap); /* set parameters from it */
  1615.     bctu = bctr; /* switch to agreed-upon block check */
  1616.     bctl = (bctu == 4) ? 2 : bctu; /* Set block-check length */
  1617. #ifdef CK_RESEND
  1618.     if ((sendmode == SM_RESEND) && (!atcapu || !rscapu)) { /* RESEND */
  1619. errpkt((CHAR *) "RESEND capabilities not negotiated");
  1620. RESUME;
  1621.     } else {
  1622. #endif /* CK_RESEND */
  1623. what = W_SEND; /* Remember we're sending */
  1624. lastxfer = W_SEND;
  1625. x = sfile(xflg); /* Send X or F header packet */
  1626. cancel = 0; /* Reset cancellation counter */
  1627. if (x) { /* If the packet was sent OK */
  1628.     if (!xflg && filcnt == 1) /* and it's a real file */
  1629.       crc16 = 0L; /* Clear the file CRC */
  1630.     resetc(); /* reset per-transaction counters */
  1631.     rtimer(); /* reset timers */
  1632. #ifdef GFTIMER
  1633.     rftimer();
  1634. #endif /* GFTIMER */
  1635.     streamon(); /* turn on streaming */
  1636. #ifdef IKSDB
  1637.     if (ikdbopen) slotstate(what,
  1638.   (server ? "SERVER" : ""),
  1639.   "SEND",
  1640.   filnam,
  1641.   "");
  1642. #endif /* IKSDB */
  1643.     BEGIN ssfile; /* and switch to receive-file state */
  1644. } else { /* otherwise send error msg & quit */
  1645.     s = xflg ? "Can't execute command" : (char *)epktmsg;
  1646.     if (!*s) s = "Can't open file";
  1647.     errpkt((CHAR *)s);
  1648.     RESUME;
  1649. }
  1650. #ifdef CK_RESEND
  1651.     }
  1652. #endif /* CK_RESEND */
  1653. }
  1654.     break;
  1655. case 62:
  1656.     { /* R packet was retransmitted. */
  1657.     xsinit(); /* Resend packet 0 */
  1658. }
  1659.     break;
  1660. case 63:
  1661.     { /* Same deal if G packet comes again */
  1662.     xsinit();
  1663. }
  1664.     break;
  1665. case 64:
  1666.     { /* Same deal if C packet comes again */
  1667.     xsinit();
  1668. }
  1669.     break;
  1670. case 65:
  1671.     { /* ACK for F or X packet */
  1672.     srvptr = srvcmd; /* Point to string buffer */
  1673.     decode(rdatap,putsrv,0); /* Decode data field, if any */
  1674.     putsrv(NUL); /* Terminate with null */
  1675.     ffc = 0L; /* Reset file byte counter */
  1676.     if (*srvcmd) { /* If remote name was recorded */
  1677.         if (sendmode != SM_RESEND) {
  1678.     extern char * srfspec;
  1679.     if (fdispla == XYFD_C || fdispla == XYFD_S)
  1680.       xxscreen(SCR_AN,0,0L,(char *)srvcmd);
  1681.     tlog(F110," remote name:",(char *) srvcmd,0L);
  1682.     makestr(&srfspec,(char *)srvcmd);
  1683.         }
  1684.     }
  1685.     if (atcapu) { /* If attributes are to be used */
  1686. if (sattr(xflg | stdinf, 1) < 0) { /* send them */
  1687.     errpkt((CHAR *)"Can't send attributes"); /* if problem, say so */
  1688.     RESUME; /* and quit */
  1689. } else BEGIN ssattr; /* if ok, switch to attribute state */
  1690.     } else { /* Attributes not negotiated */
  1691. if (window(wslotn) < 0) { /* Open window */
  1692.     errpkt((CHAR *)"Can't open window");
  1693.     RESUME;
  1694. }
  1695. if ((x = sdata()) == -2) { /* Send first data packet data */
  1696.     window(1); /* Failed, put window size back to 1 */
  1697.     x = clsif(); /* Close input file */
  1698.     return(success = 0); /* Return failure */
  1699. } else if (x == -9) { /* User interrupted */
  1700.     errpkt((CHAR *)"User cancelled"); /* Send Error packet */
  1701.     window(1); /* Set window size back to 1... */
  1702.     timint = s_timint; /* Restore timeout */
  1703.     return(success = 0); /* Failed */
  1704. } else if (x == -1) { /* EOF (empty file) */
  1705.     window(1); /* put window size back to 1, */
  1706.     debug(F101,"<ssfile>Y cxseen","",cxseen);
  1707.     x = clsif(); /* If not ok, close input file, */
  1708.     if (x < 0) /* treating failure as interruption */
  1709.       cxseen = 1; /* Send EOF packet */
  1710.     seof(cxseen||czseen);
  1711.     BEGIN sseof; /* and switch to EOF state. */
  1712. } else { /* First data sent OK */
  1713.     BEGIN ssdata; /* All ok, switch to send-data state */
  1714. }
  1715.     }
  1716. }
  1717.     break;
  1718. case 66:
  1719.     { /* Got ACK to A packet */
  1720.     ffc = 0L; /* Reset file byte counter */
  1721.     if (rsattr(rdatap) < 0) { /* Was the file refused? */
  1722. discard = 1; /* Set the discard flag */
  1723. clsif(); /* Close the file */
  1724. sxeof(1); /* send EOF with "discard" code */
  1725. BEGIN sseof; /* switch to send-EOF state */
  1726.     } else if ((x = sattr(xflg | stdinf, 0)) < 0) { /* Send more? */
  1727. errpkt((CHAR *)"Can't send attributes"); /* Trouble... */
  1728. RESUME;
  1729.     } else if (x == 0) { /* No more to send so now the data */
  1730. if (window(wslotn) < 0) { /* Allocate negotiated window slots */
  1731.     errpkt((CHAR *)"Can't open window");
  1732.     RESUME;
  1733. }
  1734. if ((x = sdata()) == -2) { /* File accepted, send first data */
  1735.     return(success = 0); /* Failed */
  1736. } else if (x == -9) { /* User interrupted */
  1737.     errpkt((CHAR *)"User cancelled"); /* Send Error packet */
  1738.     window(1); /* Set window size back to 1... */
  1739.     timint = s_timint; /* Restore timeout */
  1740.     return(success = 0); /* Failed */
  1741. } else if (x == -1) { /* EOF */
  1742.     window(1); /* put window size back to 1, */
  1743.     debug(F101,"<ssattr>Y cxseen","",cxseen);
  1744.     if (clsif() < 0) /* Close input file */
  1745.       cxseen = 1; /* Send EOF packet */
  1746.     seof(cxseen||czseen);
  1747.     BEGIN sseof; /* and switch to EOF state. */
  1748. } else {
  1749.     BEGIN ssdata; /* All ok, switch to send-data state */
  1750. }
  1751.     }
  1752. }
  1753.     break;
  1754. case 67:
  1755.     {   /* Ctrl-C or connection loss. */
  1756.     window(1); /* Set window size back to 1... */
  1757.     cxseen = 1; /* To indicate interruption */
  1758.     x = clsif(); /* Close file */
  1759.     return(success = 0); /* Failed */
  1760. }
  1761.     break;
  1762. case 68:
  1763.     { /* Got ACK to Data packet */
  1764.     canned(rdatap); /* Check if file transfer cancelled */
  1765.     if ((x = sdata()) == -2) { /* Try to send next data */
  1766. window(1); /* Set window size back to 1... */
  1767. x = clsif(); /* Close file */
  1768. return(success = 0); /* Failed */
  1769.     } else if (x == -9) { /* User interrupted */
  1770. errpkt((CHAR *)"User cancelled"); /* Send Error packet */
  1771. window(1); /* Set window size back to 1... */
  1772. timint = s_timint; /* Restore original timeout */
  1773. return(success = 0); /* Failed */
  1774.     } else if (x == -1) { /* EOF - finished sending data */
  1775. debug(F101,"<ssdata>Y cxseen","",cxseen);
  1776. window(1); /* Set window size back to 1... */
  1777. if (clsif() < 0) /* Close input file */
  1778.   cxseen = 1; /* Send EOF packet */
  1779. debug(F101,"<ssdata>Y CALLING SEOF()","",cxseen);
  1780. seof(cxseen||czseen);
  1781. BEGIN sseof; /* and enter send-eof state */
  1782.     }
  1783. }
  1784.     break;
  1785. case 69:
  1786.     { /* Got ACK to EOF */
  1787.     int g;
  1788.     success = (cxseen == 0 && czseen == 0); /* Transfer status... */
  1789.     if (success && rejection > 0)     /* If rejected, succeed if */
  1790.       if (rejection != '#' &&     /* reason was date */
  1791.   rejection != 1 && rejection != '?') /* or name; */
  1792. success = 0;     /* fail otherwise. */
  1793.     cxseen = 0; /* This goes back to zero. */
  1794.     if (success) { /* Only if transfer succeeded... */
  1795. if (moving) { /* If MOVE'ing */
  1796.     tlog(F110," deleting",filnam,0); /* delete the file */
  1797.     zdelet(filnam);
  1798. } else if (snd_move) { /* Or move it */
  1799.     int x;
  1800.     tlog(F110," moving source to",snd_move,0);
  1801.     x = zrename(filnam,snd_move);
  1802.     debug(F111,"send MOVE zrename",snd_move,x);
  1803. } else if (snd_rename) { /* Or rename it */
  1804.     char *s = snd_rename; /* Renaming string */
  1805. #ifndef NOSPL
  1806.     int y; /* Pass it thru the evaluator */
  1807.     extern int cmd_quoting; /* for v(filename) */
  1808.     if (cmd_quoting) { /* But only if cmd_quoting is on */
  1809. y = MAXRP;
  1810. s = (char *)srvcmd;
  1811. zzstring(snd_rename,&s,&y);
  1812. s = (char *)srvcmd;
  1813.     }
  1814. #endif /* NOSPL */
  1815.     if (s) if (*s) {
  1816. int x;
  1817. x = zrename(filnam,s);
  1818. debug(F111,"send RENAME zrename",snd_rename,x);
  1819. if (x > -1)
  1820.   tlog(F110," renaming source to",s,0);
  1821. #ifdef COMMENT
  1822. *s = NUL;
  1823. #endif /* COMMENT */
  1824.     }
  1825. }
  1826.     }
  1827.     g = gnfile();
  1828.     debug(F111,"<seof>Y gnfile",filnam,g);
  1829.     if (g > 0) { /* Any more files to send? */
  1830. if (sfile(xflg)) /* Yes, try to send next file header */
  1831.   BEGIN ssfile; /* if ok, enter send-file state */
  1832. else { /* otherwise */
  1833.     s = xflg ? "Can't execute command" : (char *)epktmsg;
  1834.     if (!*s) s = "Can't open file";
  1835.     errpkt((CHAR *)s); /* send error message */
  1836.     RESUME; /* and quit */
  1837. }
  1838.     } else { /* No next file */
  1839. tsecs = gtimer(); /* get statistics timers */
  1840. #ifdef GFTIMER
  1841. fptsecs = gftimer();
  1842. #endif /* GFTIMER */
  1843. seot(); /* send EOT packet */
  1844. BEGIN sseot; /* enter send-eot state */
  1845.     }
  1846. }
  1847.     break;
  1848. case 70:
  1849.     { /* Got ACK to EOT */
  1850.     debug(F101,"sseot justone","",justone);
  1851.     RESUME; /* All done, just quit */
  1852. }
  1853.     break;
  1854. case 71:
  1855.     { /* Got Error packet, in any state */
  1856.     char *s = "";
  1857.     window(1); /* Close window */
  1858.     timint = s_timint; /* Restore original timeout */
  1859.     if (*epktmsg) /* Message from Error packet */
  1860.       s = (char *)epktmsg;
  1861.     if (!*s) { /* If not there then maybe here */
  1862. s = (char *)rdatap;
  1863. ckstrncpy((char *)epktmsg,(char *)rdatap,PKTMSGLEN);
  1864.     }
  1865.     if (!*s) /* Hopefully we'll never see this. */
  1866.       s = "Unknown error";
  1867.     success = 0; /* For IF SUCCESS/FAIL. */
  1868.     debug(F101,"ckcpro.w justone at E pkt","",justone);
  1869.     x = quiet; quiet = 1; /* Close files silently, */
  1870.     epktrcvd = 1; /* Prevent messages from clsof() */
  1871.     clsif(); clsof(1);  /* discarding any output file. */
  1872.     success = 0; /* Transfer failed */
  1873.     xferstat = success; /* Remember transfer status */
  1874.     ermsg(s); /* Issue the message (calls screen). */
  1875.     tstats(); /* Get stats */
  1876.     quiet = x; /* Restore quiet state */
  1877. /*
  1878.   If we are executing commands from a command file or macro, let the command
  1879.   file or macro decide whether to exit, based on SET { TAKE, MACRO } ERROR.
  1880. */
  1881.     if (
  1882. #ifndef NOICP
  1883. !cmdsrc() &&
  1884. #endif /* NOICP */
  1885. backgrd && !server)
  1886.       fatal("Protocol error");
  1887.     xitsta |= what; /* Save this for doexit(). */
  1888. #ifdef CK_TMPDIR
  1889. /* If we were cd'd temporarily to another device or directory ... */
  1890.     if (f_tmpdir) {
  1891. int x;
  1892. x = zchdir((char *) savdir); /* ... restore previous directory */
  1893. f_tmpdir = 0; /* and remember we did it. */
  1894. debug(F111,"ckcpro.w E tmpdir restored",savdir,x);
  1895.     }
  1896. #endif /* CK_TMPDIR */
  1897. #ifdef IKSDB
  1898.     if (ikdbopen) slotstate(what,"ERROR", (char *)epktmsg, "");
  1899. #endif /* IKSDB */
  1900.     RESUME;
  1901. }
  1902.     break;
  1903. case 72:
  1904.     { success = 0; QUIT; }
  1905.     break;
  1906. case 73:
  1907.     { /* Anything not accounted for above */
  1908.     errpkt((CHAR *)"Unexpected packet type"); /* Give error message */
  1909.     window(1);
  1910.     xitsta |= what; /* Save this for doexit(). */
  1911.     RESUME; /* and quit */
  1912. }
  1913.     break;
  1914.     }
  1915.     }
  1916. }
  1917. char tbl[] = {
  1918.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1919.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1920.  73, 73, 73, 73, 73, 71, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1921.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1922.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  1923.  73, 72,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  1924.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1925.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1926.  73, 73, 73, 73, 73, 15, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1927.  73, 73, 73, 73, 73, 73, 73, 73, 73, 13, 73, 73, 73, 73, 73, 73,
  1928.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  1929.  73, 72,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  1930.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1931.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1932.  73, 73, 56, 73, 73, 71, 52, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1933.  73, 73, 73, 73, 73, 73, 73, 73, 53, 73, 73, 73, 73, 73, 73, 73,
  1934.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  1935.  73, 72,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  1936.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1937.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1938.  73, 54, 73, 73, 55, 71, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1939.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 58, 73, 73, 73, 73, 73,
  1940.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  1941.  73, 72,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  1942.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1943.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1944.  73, 73, 73, 73, 57, 71, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1945.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 60, 73, 73, 73, 73, 73,
  1946.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  1947.  73, 59,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  1948.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1949.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1950.  73, 73, 73, 64, 73, 71, 73, 63, 73, 73, 73, 73, 73, 73, 73, 73,
  1951.  73, 73, 62, 73, 73, 73, 73, 73, 73, 61, 73, 73, 73, 73, 73, 73,
  1952.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  1953.  73, 72,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  1954.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1955.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1956.  73, 73, 73, 73, 73, 71, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1957.  73, 73, 73, 73, 73, 73, 73, 73, 73, 65, 73, 73, 73, 73, 73, 73,
  1958.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  1959.  73, 72,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  1960.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1961.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1962.  73, 73, 73, 73, 73, 71, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1963.  73, 73, 73, 73, 73, 73, 73, 73, 73, 66, 73, 73, 73, 73, 73, 73,
  1964.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  1965.  73, 72,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  1966.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1967.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1968.  73, 73, 73, 73, 73, 71, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1969.  73, 73, 73, 73, 73, 73, 73, 73, 73, 68, 73, 73, 73, 73, 73, 73,
  1970.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  1971.  73, 67,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  1972.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1973.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1974.  73, 73, 73, 73, 73, 71, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1975.  73, 73, 73, 73, 73, 73, 73, 73, 73, 69, 73, 73, 73, 73, 73, 73,
  1976.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  1977.  73, 72,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  1978.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1979.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1980.  73, 73, 73, 73, 73, 71, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1981.  73, 73, 73, 73, 73, 73, 73, 73, 73, 70, 73, 73, 73, 73, 73, 73,
  1982.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  1983.  73, 72,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  1984.  -1, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
  1985.  29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
  1986.  29, 29, 29, 26, 29, 29, 29, 25, 19, 17, 22, 29, 29, 29, 28, 23,
  1987.  29, 29, 18, 12, 29, 29, 20, 21, 29, 29, 29, 29, 29, 29, 29, 29,
  1988.  29, 11, 29,  7, 29, 29, 29,  9,  4, 29,  5,  8, 29, 29, 29,  6,
  1989.  29, 27,  3,  1, 29, 29,  2, 29, 10, 29, 29, 29, 29, 29, 29, 29,
  1990.  -1, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1991.  49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1992.  49, 32, 49, 31, 33, 34, 35, 49, 38, 30, 49, 40, 37, 49, 49, 49,
  1993.  49, 49, 39, 41, 42, 45, 47, 46, 36, 49, 49, 49, 49, 49, 49, 49,
  1994.  49, 11, 49,  7, 44, 49, 49,  9,  4, 49,  5,  8, 49, 43, 49,  6,
  1995.  49, 48,  3,  1, 49, 49,  2, 49, 10, 49, 49, 49, 49, 49, 49, 49,
  1996.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1997.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  1998.  73, 73, 73, 73, 73, 71, 73, 73, 73, 17, 73, 73, 73, 73, 73, 73,
  1999.  73, 73, 73, 12, 73, 73, 73, 73, 73, 16, 73, 73, 73, 73, 73, 73,
  2000.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  2001.  73, 72,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  2002.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  2003.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  2004.  73, 73, 73, 73, 73, 71, 52, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  2005.  73, 73, 73, 12, 73, 73, 73, 73, 53, 51, 73, 73, 73, 73, 73, 73,
  2006.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  2007.  73, 50,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  2008.  -1, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  2009.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  2010.  73, 73, 73, 73, 73, 71, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  2011.  73, 73, 73, 73, 73, 73, 73, 73, 73, 14, 73, 73, 73, 73, 73, 73,
  2012.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  2013.  73, 72,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73, 73,
  2014.   0, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  2015.  73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  2016.  73, 73, 73, 73, 73, 71, 73, 73, 73, 73, 73, 73, 73, 73, 73, 24,
  2017.  73, 73, 73, 12, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  2018.  73, 11, 73,  7, 73, 73, 73,  9,  4, 73,  5,  8, 73, 73, 73,  6,
  2019.  73, 72,  3,  1, 73, 73,  2, 73, 10, 73, 73, 73, 73, 73, 73,73
  2020. };
  2021. /*
  2022.   From here down to proto() are routines that were moved out of the state
  2023.   table switcher because the resulting switch() had become too large.
  2024.   To move the contents of a state-table case to a routine:
  2025.     1. Add a prototype to the list above the state table switcher.
  2026.     2. Make a routine with an appropriate name, returning int.
  2027.     3. Move the code into it.
  2028.     4. Put a call to the new routine in the former spot:
  2029.          rc = name_of_routine();
  2030.          if (rc > -1) return(rc);
  2031.     5. Add "return(-1);" after every RESUME, SERVE, or BEGIN macro and
  2032.        at the end if the code is open-ended.
  2033. */
  2034. static int
  2035. rcv_firstdata() {
  2036.     if (discard) { /* if we're discarding the file */
  2037. ack1((CHAR *)"X"); /* just ack the data like this. */
  2038. cancel++; /* and count it */
  2039. BEGIN rdpkt; /* and wait for more data packets. */
  2040. return(-1);
  2041.     } else { /* Not discarding. */
  2042. rf_err = "Can't open file";
  2043. if (xflg) { /* If screen data */
  2044.     if (remfile) { /* redirected to file */
  2045. if (rempipe) /* or pipe */
  2046.   x = openc(ZOFILE,remdest); /* Pipe: start command */
  2047. else
  2048.   x = opena(remdest,&iattr); /* File: open with attributes */
  2049.     } else { /* otherwise */
  2050. x = opent(&iattr); /* "open" the screen */
  2051.     }
  2052. } else { /* otherwise */
  2053. #ifdef CALIBRATE
  2054.     if (calibrate) { /* If calibration run */
  2055. x = ckopenx(&iattr); /* open nothing */
  2056. #ifdef STREAMING
  2057. if (streaming) /* Streaming */
  2058.   fastack(); /* ACK without ACKing. */
  2059. else
  2060. #endif /* STREAMING */
  2061.   ack(); /* Send real ACK */
  2062. BEGIN rdpkt; /* Proceed to next state */
  2063. return(-1);
  2064.     } else
  2065. #endif /* CALIBRATE */
  2066. #ifdef UNIX
  2067. /*
  2068.   In UNIX we can pipe the file data into the mail program, which is to be
  2069.   preferred to writing it out to a temp file and then mailing it afterwards.
  2070.   This depends rather heavily on all UNIXes having a mail command that
  2071.   accepts '-s "subject"' on the command line.  MAILCMD (e.g. mail, Mail, mailx)
  2072.   is defined in ckufio.c.
  2073. */
  2074.     if (*(iattr.disp.val) == 'M') {
  2075. char *s;
  2076. char tmp[1024];
  2077. extern char *MAILCMD;
  2078. s = iattr.disp.val + 1;
  2079. sprintf(tmp,"%s -s %c%s%c %s", MAILCMD, '"', ofn1, '"', s);
  2080. x = openc(ZOFILE,(char *)tmp);
  2081.     } else if (*(iattr.disp.val) == 'P') { /* Ditto for print */
  2082. char tmp[1024];
  2083. extern char *PRINTCMD;
  2084. sprintf(tmp,"%s %s", PRINTCMD, iattr.disp.val + 1);
  2085. x = openc(ZOFILE,(char *)tmp);
  2086.     } else
  2087. #endif /* UNIX */
  2088.       x = opena(filnam,&iattr); /* open the file, with attributes */
  2089. }
  2090. if (x) { /* If file was opened ok */
  2091.     int rc, qf;
  2092. #ifndef NOSPL
  2093.     qf = query;
  2094. #else
  2095.     qf = 0;
  2096. #endif /* NOSPL */
  2097. #ifdef CKTUNING
  2098.     rc = (binary && !parity) ?
  2099.       bdecode(rdatap,putfil):
  2100.        decode(rdatap, qf ? puttrm : putfil, 1);
  2101. #else
  2102.     rc = decode(rdatap, qf ? puttrm : putfil, 1);
  2103. #endif /* CKTUNING */
  2104.     if (rc < 0) {
  2105. errpkt((CHAR *)"Error writing data");
  2106. RESUME;
  2107. return(-1);
  2108.     }
  2109. #ifdef STREAMING
  2110.     if (streaming) /* Streaming was negotiated */
  2111.       fastack(); /* ACK without ACKing. */
  2112.     else
  2113. #endif /* STREAMING */
  2114.       ack(); /* acknowledge it */
  2115.     BEGIN rdpkt; /* and switch to receive-data state */
  2116.     return(-1);
  2117. } else { /* otherwise */
  2118.     errpkt((CHAR *) rf_err); /* send error packet */
  2119.          RESUME; /* and quit. */
  2120.     return(-1);
  2121. }
  2122.     }
  2123. }
  2124. static int
  2125. rcv_shortreply() {
  2126. #ifdef PKTZEROHACK
  2127.     success = 0;
  2128.     debug(F111,"rcv_shortreply",rdatap,ipktlen);
  2129.     if (!strncmp(ipktack,(char *)rdatap,ipktlen)) {
  2130. /* No it's the ACK to the I packet again */
  2131. x = scmd(vcmd,(CHAR *)cmarg); /* So send the REMOTE command again */
  2132. /* Maybe this should be resend() */
  2133. debug(F110,"IPKTZEROHACK",ipktack,x);
  2134. if (x < 0) {
  2135.     errpkt((CHAR *)srimsg);
  2136.     RESUME;
  2137.     return(-1);
  2138. }
  2139.     } else {
  2140. ipktack[0] = NUL;
  2141. #endif /* PKTZEROHACK */
  2142. urserver = 1;
  2143. #ifndef NOSERVER
  2144. #ifndef NOSPL
  2145. if (query) { /* If to query, */
  2146.     qbufp = querybuf; /*  initialize query response buffer */
  2147.     qbufn = 0;
  2148.     querybuf[0] = NUL;
  2149. }
  2150. #endif /* NOSPL */
  2151. x = 1;
  2152. if (remfile) { /* Response redirected to file */
  2153.     rf_err = "Can't open file";
  2154.     if (rempipe) /* or pipe */
  2155.       x =
  2156. #ifndef NOPUSH
  2157. zxcmd(ZOFILE,remdest) /* Pipe: Start command */
  2158. #else
  2159. 0
  2160. #endif /* NOPUSH */
  2161. ;
  2162.     else
  2163.       x = opena(remdest,&iattr); /* File: Open with attributes */
  2164.     debug(F111,"rcv_shortreply remfile",remdest,x);
  2165. } else {
  2166.     x = opent(&iattr); /* "open" the screen */
  2167. }
  2168. if (x) { /* If file was opened ok */
  2169.     if (decode(rdatap,
  2170. #ifndef NOSPL
  2171.        (query || !remfile) ? puttrm :
  2172. #else
  2173.        !remfile ? puttrm :
  2174. #endif /* NOSPL */
  2175.        zputfil, 1) < 0) { /* Note: zputfil, not putfil. */
  2176. errpkt((CHAR *)"Error writing data");
  2177. RESUME;
  2178. return(-1);
  2179.     } else {
  2180. if (rdatap) /* If we had data */
  2181.   if (*rdatap) /* add a line terminator */
  2182.     if (remfile) { /* to file */
  2183. zsoutl(ZOFILE,"");
  2184.     } else { /* or to screen. */
  2185. #ifndef NOICP
  2186. if (!query || !cmdsrc())
  2187. #endif /* NOICP */
  2188.   conoll("");
  2189.     }
  2190. if (bye_active && network) { /* I sent BYE or REMOTE LOGOUT */
  2191.     msleep(500); /* command and got the ACK... */
  2192.     bye_active = 0;
  2193.     ttclos(0);
  2194. }
  2195. clsof(0);
  2196. if (!epktsent && !epktrcvd) /* If no error packet... */
  2197.   success = 1; /* success. */
  2198. RESUME;
  2199. return(-1);
  2200.     }
  2201. } else { /* File not opened OK */
  2202.     errpkt((CHAR *) rf_err); /* send error message */
  2203.     RESUME; /* and quit. */
  2204.     return(-1);
  2205. }
  2206. #endif /* NOSERVER */
  2207. #ifdef PKTZEROHACK
  2208.     }
  2209. #endif /* PKTZEROHACK */
  2210.     debug(F101,"rcv_shortreply fallthru","",success);
  2211.     return(-1);
  2212. }
  2213. static int
  2214. srv_query() {
  2215. #ifndef NOSERVER
  2216. #ifndef NOSPL
  2217.     char c;
  2218. #ifdef CKSYSLOG
  2219.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  2220.       cksyslog(SYSLG_PR, 1, "server", "REMOTE QUERY", (char *)srvcmd);
  2221. #endif /* CKSYSLOG */
  2222. #ifdef IKSDB
  2223.     if (ikdbopen) slotstate(what,"REMOTE QUERY", (char *)(srvcmd+2), "");
  2224. #endif /* IKSDB */
  2225.     c = *(srvcmd+2); /* Q = Query, S = Set */
  2226.     if (c == 'Q') { /* Query */
  2227. if (!ENABLED(en_que)) { /* Security */
  2228.     errpkt((CHAR *)"REMOTE QUERY disabled");
  2229.     RESUME;
  2230.     return(-1);
  2231. } else { /* Query allowed */
  2232.     int n; char *p, *q;
  2233.     qbufp = querybuf; /* Wipe out old stuff */
  2234.     qbufn = 0;
  2235.     querybuf[0] = NUL;
  2236.     p = (char *) srvcmd + 3; /* Pointer for making wrapper */
  2237.     n = strlen((char *)srvcmd); /* Position of end */
  2238.     c = *(srvcmd+4); /* Which type of variable */
  2239.     if (*(srvcmd+6) == CMDQ) { /* Starts with command quote? */
  2240. p = (char *) srvcmd + 6; /* Take it literally */
  2241. if (*p == CMDQ) p++;
  2242.     } else { /* They played by the rules */
  2243. if (c == 'K') { /* Kermit variable */
  2244.     int k;
  2245.     k = (int) strlen(p);
  2246.     if (k > 0 && p[k-1] == ')') {
  2247. p = (char *)(srvcmd + 4);
  2248. *(srvcmd+4) = CMDQ;
  2249. *(srvcmd+5) = 'f'; /* Function, so make it f...() */
  2250.     } else {
  2251. *(srvcmd+3) = CMDQ; /* Stuff wrapping into buffer */
  2252. *(srvcmd+4) = 'v';  /* Variable, so make it v(...) */
  2253. *(srvcmd+5) = '(';  /* around variable name */
  2254. *(srvcmd+n) = ')';
  2255. *(srvcmd+n+1) = NUL;
  2256.     }
  2257. } else {
  2258.     *(srvcmd+3) = CMDQ; /* Stuff wrapping into buffer */
  2259.     *(srvcmd+4) = 'v'; /*  Variable, so make it v(...) */
  2260.     *(srvcmd+5) = '('; /* around variable name */
  2261.     *(srvcmd+n) = ')';
  2262.     *(srvcmd+n+1) = NUL;
  2263.     if (c == 'S') { /* System variable */
  2264. *(srvcmd+4) = '$'; /*  so it's $(...) */
  2265.     } else if (c == 'G') { /* Non- Global variable */
  2266. *(srvcmd+4) = 'm'; /*  so wrap it in m(...) */
  2267.     }
  2268. }
  2269.     } /* Now evaluate it */
  2270.     n = QBUFL; /* Max length */
  2271.     q = querybuf; /* Where to put it */
  2272.     if (zzstring(p,&q,&n) < 0) {
  2273. errpkt((n > 0) ? (CHAR *)"Can't get value"
  2274.                : (CHAR *)"Value too long"
  2275.        );
  2276. RESUME;
  2277. return(-1);
  2278.     } else {
  2279. if (encstr((CHAR *)querybuf) > -1) { /* Encode it */
  2280.     ack1(data); /* If it fits, send it back in ACK */
  2281.     success = 1;
  2282.     RESUME;
  2283.     return(-1);
  2284. } else if (sndstring(querybuf)) { /* Long form response */
  2285.     BEGIN ssinit;
  2286.     return(-1);
  2287. } else { /* sndhlp() fails */
  2288.     errpkt((CHAR *)"Can't send value");
  2289.     RESUME;
  2290.     return(-1);
  2291. }
  2292.     }
  2293. }
  2294.     } else if (c == 'S') { /* Set (assign) */
  2295. if (!ENABLED(en_asg)) { /* Security */
  2296.     errpkt((CHAR *)"REMOTE ASSIGN disabled");
  2297.     RESUME;
  2298.     return(-1);
  2299. } else { /* OK */
  2300.     int n;
  2301.     n = xunchar(*(srvcmd+3)); /* Length of name */
  2302.     n = 3 + n + 1; /* Position of length of value */
  2303.     *(srvcmd+n) = NUL; /* Don't need it */
  2304.     if (addmac((char *)(srvcmd+4),(char *)(srvcmd+n+1)) < 0)
  2305.       errpkt((CHAR *)"REMOTE ASSIGN failed");
  2306.     else {
  2307. ack();
  2308. success = 1;
  2309.     }
  2310.     RESUME;
  2311.     return(-1);
  2312. }
  2313.     } else {
  2314. errpkt((CHAR *)"Badly formed server command");
  2315. RESUME;
  2316. return(-1);
  2317.     }
  2318. #else
  2319.     errpkt((CHAR *)"Variable query/set not available");
  2320.     RESUME;
  2321.     return(-1);
  2322. #endif /* NOSPL */
  2323. #endif /* NOSERVER */
  2324. }
  2325. static int
  2326. srv_copy() {
  2327. #ifndef NOSERVER
  2328. #ifdef CKSYSLOG
  2329.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  2330.       cksyslog(SYSLG_PR, 1, "server", "REMOTE COPY", (char *)srvcmd);
  2331. #endif /* CKSYSLOG */
  2332. #ifdef ZCOPY
  2333.     if (!ENABLED(en_cpy)) {
  2334. errpkt((CHAR *)"REMOTE COPY disabled");
  2335. RESUME;
  2336. return(-1);
  2337.     } else {
  2338. char *str1, *str2, f1[256], f2[256];
  2339. int  len1, len2;
  2340.         len1 = xunchar(srvcmd[1]); /* Separate the parameters */
  2341.         len2 = xunchar(srvcmd[2+len1]);
  2342.         strncpy(f1,(char *)(srvcmd+2),len1);
  2343.         f1[len1] = NUL;
  2344.         strncpy(f2,(char *)(srvcmd+3+len1),len2);
  2345.         f2[len2] = NUL;
  2346. #ifdef IKSDB
  2347. if (ikdbopen) slotstate(what,"REMOTE COPY", f1, f2);
  2348. #endif /* IKSDB */
  2349. if (!ENABLED(en_cwd)) { /* If CWD is disabled */
  2350.     zstrip(f1,&str1); /* and they included a pathname, */
  2351.             zstrip(f2,&str2);
  2352.     if (strcmp(f1,str1) || strcmp(f2,str2)) { /* Refuse. */
  2353. errpkt((CHAR *)"Access denied");
  2354. RESUME; /* Remember, this is not a goto! */
  2355. return(-1);
  2356.     }
  2357. }
  2358. if (state == generic) { /* It's OK to go ahead. */
  2359.             if (zcopy(f1,f2)) { /* Try */
  2360. errpkt((CHAR *)"Can't copy file"); /* give error message */
  2361.     } else {
  2362. success = 1;
  2363. ack();
  2364.     }
  2365.             RESUME; /* wait for next server command */
  2366.     return(-1);
  2367. }
  2368.     }
  2369.     return(-1);
  2370. #else /* no ZCOPY */
  2371.     errpkt((CHAR *)"REMOTE COPY not available"); /* give error message */
  2372.     RESUME; /* wait for next server command */
  2373.     return(-1);
  2374. #endif /* ZCOPY */
  2375. #endif /* NOSERVER */
  2376. }
  2377. static int
  2378. srv_rename() {
  2379. #ifndef NOSERVER
  2380. #ifdef CKSYSLOG
  2381.     if (ckxsyslog >= SYSLG_PR && ckxlogging)
  2382.       cksyslog(SYSLG_PR, 1, "server", "REMOTE RENAME", (char *)srvcmd);
  2383. #endif /* CKSYSLOG */
  2384. #ifdef ZRENAME
  2385.     if (!ENABLED(en_ren)) {
  2386. errpkt((CHAR *)"REMOTE RENAME disabled");
  2387. RESUME;
  2388. return(-1);
  2389.     } else { /* RENAME is enabled */
  2390. char *str1, *str2, f1[256], f2[256];
  2391. int len1, len2;
  2392. len1 = xunchar(srvcmd[1]); /* Separate the parameters */
  2393. len2 = xunchar(srvcmd[2+len1]);
  2394. strncpy(f1,(char *)(srvcmd+2),len1);
  2395. f1[len1] = NUL;
  2396. strncpy(f2,(char *)(srvcmd+3+len1),len2);
  2397. f2[len2] = NUL;
  2398. len2 = xunchar(srvcmd[2+len1]);
  2399. strncpy(f1,(char *)(srvcmd+2),len1);
  2400. f1[len1] = NUL;
  2401. strncpy(f2,(char *)(srvcmd+3+len1),len2);
  2402. f2[len2] = NUL;
  2403. #ifdef IKSDB
  2404. if (ikdbopen) slotstate(what,"REMOTE RENAME", f1, f2);
  2405. #endif /* IKSDB */
  2406. if (!ENABLED(en_cwd)) { /* If CWD is disabled */
  2407.     zstrip(f1,&str1); /* and they included a pathname, */
  2408.     zstrip(f2,&str2);
  2409.     if ( strcmp(f1,str1) || strcmp(f2,str2) ) { /* refuse. */
  2410. errpkt((CHAR *)"Access denied");
  2411. RESUME; /* Remember, this is not a goto! */
  2412. return(-1);
  2413.     }
  2414. }
  2415. if (state == generic) { /* It's OK to go ahead. */
  2416.     if (zrename(f1,f2)) { /* Try */
  2417. errpkt((CHAR *)"Can't rename file"); /* Give error msg */
  2418.     } else {
  2419. success = 1;
  2420. ack();
  2421.     }
  2422.     RESUME; /* Wait for next server command */
  2423.     return(-1);
  2424. }
  2425.     }
  2426.     return(-1);
  2427. #else /* no ZRENAME */
  2428.     /* Give error message */
  2429.     errpkt((CHAR *)"REMOTE RENAME not available");
  2430.     RESUME; /* Wait for next server command */
  2431.     return(-1);
  2432. #endif /* ZRENAME */
  2433. #endif /* NOSERVER */
  2434. }
  2435. static int
  2436. srv_login() {
  2437. #ifndef NOSERVER
  2438.     char f1[LOGINLEN+1], f2[LOGINLEN+1], f3[LOGINLEN+1];
  2439.     CHAR *p;
  2440.     int len, i;
  2441.     debug(F101,"REMOTE LOGIN x_login","",x_login);
  2442.     debug(F101,"REMOTE LOGIN x_logged","",x_logged);
  2443.     f1[0] = NUL; f2[0] = NUL; f3[0] = NUL;
  2444.     len = 0;
  2445.     if (srvcmd[1]) /* First length field */
  2446.       len = xunchar(srvcmd[1]); /* Separate the parameters */
  2447.     if (x_login) { /* Login required */
  2448. if (x_logged) { /* And already logged in */
  2449.     if (len > 0) { /* Logging in again */
  2450. errpkt((CHAR *)"Already logged in.");
  2451.     } else { /* Logging out */
  2452. debug(F101,"REMOTE LOGOUT","",x_logged);
  2453. #ifdef CKSYSLOG
  2454. if (ckxsyslog >= SYSLG_PR && ckxlogging)
  2455.   cksyslog(SYSLG_PR, 1, "server", "REMOTE LOGOUT", NULL);
  2456. #endif /* CKSYSLOG */
  2457. #ifdef IKSDB
  2458. if (ikdbopen) slotstate(what,"REMOTE LOGOUT", "", "");
  2459. #endif /* IKSDB */
  2460. tlog(F110,"Logged out",x_user,0);
  2461. ack1((CHAR *)"Logged out");
  2462. success = 1;
  2463. msleep(500);
  2464. #ifdef CK_LOGIN
  2465. x_logged = 0;
  2466. #ifdef IKSD
  2467. if (inserver)
  2468.   ckxlogout();
  2469. #endif /* IKSD */
  2470. #endif /* CK_LOGIN */
  2471.     }
  2472. } else { /* Not logged in yet */
  2473.     debug(F101,"REMOTE LOGIN len","",len);
  2474.     if (len > 0) { /* Have username */
  2475. #ifdef CKSYSLOG
  2476. if (ckxsyslog >= SYSLG_PR && ckxlogging)
  2477.   cksyslog(SYSLG_PR, 1, "server", "REMOTE LOGIN", NULL);
  2478. #endif /* CKSYSLOG */
  2479. if (len > LOGINLEN) {
  2480.     errpkt((CHAR *)"Username too long");
  2481. }
  2482. p = srvcmd + 2; /* Point to it */
  2483. for (i = 0; i < len; i++) /* Copy it */
  2484.   f1[i] = p[i];
  2485. f1[len] = NUL; /* Terminate it */
  2486. p += len; /* Point to next length field */
  2487. if (*p) { /* If we have one */
  2488.     len = xunchar(*p++); /* decode it */
  2489.     if (len > 0 && len <= LOGINLEN) {
  2490. for (i = 0; i < len; i++) /* Same deal for password */
  2491.   f2[i] = p[i];
  2492. f2[len] = NUL;
  2493. p += len; /* And account */
  2494. if (*p) {
  2495.     len = xunchar(*p++);
  2496.     if (len > 0 && len <= LOGINLEN) {
  2497. for (i = 0; i < len; i++)
  2498.   f3[i] = p[i]; /* Set but never used */
  2499. f3[len] = NUL; /* (because account not used) */
  2500.     }
  2501. }
  2502.     }
  2503. }
  2504. debug(F101,"REMOTE LOGIN 1","",x_logged);
  2505. #ifdef IKSD
  2506. #ifdef CK_LOGIN
  2507. if (inserver) { /* Log in to system for real */
  2508.     x_logged = ckxlogin((CHAR *)f1,(CHAR *)f2,NULL,0);
  2509.     debug(F101,"REMOTE LOGIN 2","",x_logged);
  2510.     if (x_logged) { /* Count attempts */
  2511. logtries = 0;
  2512. justone = 1;
  2513.     } else {
  2514. logtries++;
  2515. sleep(logtries);
  2516.     }
  2517. } else
  2518. #endif /* CK_LOGIN */
  2519. #endif /* IKSD */
  2520.   if (x_user && x_passwd) { /* User and password must match */
  2521.       if (!strcmp(x_user,f1)) /* SET SERVER LOGIN */
  2522. if (!strcmp(x_passwd,f2))
  2523.   x_logged = 1;
  2524.       debug(F101,"REMOTE LOGIN 3","",x_logged);
  2525.   } else if (x_user) { /* Only username given, no password */
  2526.       if (!strcmp(x_user,f1)) /* so only username must match */
  2527. x_logged = 1;
  2528.       debug(F101,"REMOTE LOGIN 4","",x_logged);
  2529.   }
  2530. if (x_logged) { /* Logged in? */
  2531.     tlog(F110,"Logged in", x_user, 0);
  2532.     if (isguest)
  2533.       ack1((CHAR *)"Logged in as guest - restrictions apply");
  2534.     else
  2535.       ack1((CHAR *)"Logged in");
  2536.     success = 1;
  2537. } else {
  2538.     tlog(F110,"Login failed", f1, 0);
  2539.     errpkt((CHAR *)"Access denied.");
  2540. #ifdef IKSD
  2541. #ifdef CK_LOGIN
  2542.     if (inserver && logtries > 2)
  2543.       ckxlogout();
  2544. #endif /* CK_LOGIN */
  2545. #endif /* IKSD */
  2546. }
  2547.     } else { /* LOGOUT */
  2548. errpkt((CHAR *)"Logout ignored");
  2549.     }
  2550. }
  2551.     } else { /* Login not required */
  2552. if (len > 0)
  2553.   errpkt((CHAR *)"Login ignored.");
  2554. else
  2555.   errpkt((CHAR *)"Logout ignored.");
  2556.     }
  2557. #endif /* NOSERVER */
  2558.     RESUME;
  2559.     return(-1);
  2560. }
  2561. static int
  2562. srv_timeout() {
  2563. #ifndef OS2
  2564.     /* K95 does this its own way */
  2565.     if (idletmo) {
  2566. #ifdef IKSD
  2567.         if (inserver) {
  2568.            printf("rnIKSD IDLE TIMEOUT: %d secrn", srvidl);
  2569.            doexit(GOOD_EXIT,xitsta);
  2570.         }
  2571. #endif /* IKSD */
  2572. idletmo = 0;
  2573. printf("rnSERVER IDLE TIMEOUT: %d secrn", srvidl);
  2574. xitsta |= what;
  2575. QUIT;
  2576.     }
  2577. #endif /* OS2 */
  2578. #ifndef NOSERVER
  2579. #ifndef OS2
  2580.     else
  2581. #endif /* OS2 */
  2582.       if (fatalio) { /* Connection lost */
  2583. #ifdef CKSYSLOG
  2584.   if (ckxsyslog >= SYSLG_PR && ckxlogging)
  2585.     cksyslog(SYSLG_PR, 1, "server", "Connection lost", NULL);
  2586. #endif /* CKSYSLOG */
  2587. #ifdef IKSDB
  2588.   if (ikdbopen) slotstate(what,"SERVER DISCONNECT",(char *)srvcmd, "");
  2589. #endif /* IKSDB */
  2590. xitsta |= what;
  2591. QUIT;
  2592.     } else if (interrupted) { /* Interrupted by hand */
  2593. if (!ENABLED(en_fin)) {
  2594.     errpkt((CHAR *)"QUIT disabled");
  2595.     RESUME;
  2596.     return(-1);
  2597. } else {
  2598.     if (what == W_SEND || what == W_RECV || what == W_REMO) {
  2599. success = 0;
  2600. #ifdef CKSYSLOG
  2601. if (ckxsyslog >= SYSLG_PR && ckxlogging)
  2602.   cksyslog(SYSLG_PR, 1, "server", "Interrupted", NULL);
  2603. #endif /* CKSYSLOG */
  2604.     } else if (what == W_NOTHING && filcnt == 0) {
  2605. success = 1;
  2606.     } /* Otherwise leave success alone */
  2607.     xitsta |= what;
  2608.     QUIT;
  2609. }
  2610.     } else { /* Shouldn't happen */
  2611. debug(F100,"SERVER (top) GOT UNEXPECTED 'q'","",0);
  2612. QUIT;
  2613.     }
  2614. #endif /* NOSERVER */
  2615. }
  2616. static int
  2617. rcv_s_pkt() {
  2618. #ifndef NOSERVER
  2619.     if (state == rgen)
  2620.       urserver = 1;
  2621.     if (/* state == serve && */ x_login && !x_logged) {
  2622. errpkt((CHAR *)"Login required");
  2623. SERVE;
  2624.     } else
  2625. #endif /* NOSERVER */
  2626.       if (state == serve && !ENABLED(en_sen)) { /* Not in server mode */
  2627. errpkt((CHAR *)"SEND disabled"); /* when SEND is disabled. */
  2628. RESUME;
  2629. return(-1);
  2630.     } else { /* OK to go ahead. */
  2631. #ifdef CK_TMPDIR
  2632. if (dldir && !f_tmpdir) { /* If they have a download directory */
  2633.     debug(F110,"receive download dir",dldir,0);
  2634.     if (s = zgtdir()) { /* Get current directory */
  2635. debug(F110,"receive current dir",s,0);
  2636. if (zchdir(dldir)) { /* Change to download directory */
  2637.     debug(F100,"receive zchdir ok","",0);
  2638.     ckstrncpy(savdir,s,TMPDIRLEN);
  2639.     f_tmpdir = 1; /* Remember that we did this */
  2640. } else
  2641.   debug(F100,"receive zchdir failed","",0);
  2642.     }
  2643. }
  2644. #endif /* CK_TMPDIR */
  2645. nakstate = 1; /* Can send NAKs from here. */
  2646. rinit(rdatap); /* Set parameters */
  2647. bctu = bctr; /* Switch to agreed-upon block check */
  2648. bctl = (bctu == 4) ? 2 : bctu; /* Set block-check length */
  2649. what = W_RECV; /* Remember we're receiving */
  2650. lastxfer = W_RECV;
  2651. resetc(); /* Reset counters */
  2652. rtimer(); /* Reset timer */
  2653. #ifdef GFTIMER
  2654. rftimer();
  2655. #endif /* GFTIMER */
  2656. streamon();
  2657. BEGIN rfile; /* Go into receive-file state */
  2658.     }
  2659.     return(-1);
  2660. }
  2661. /* END OF ROUTINES MOVED OUT OF STATE MACHINE */
  2662. /*  P R O T O  --  Protocol entry function  */
  2663. static int is_tn = 0; /* It's a Telnet connection */
  2664. #ifdef CK_SPEED
  2665. int f_ctlp = 0; /* Control-character prefix table */
  2666. #ifdef COMMENT
  2667. short s_ctlp[256];
  2668. #endif /* COMMENT */
  2669. #endif /* CK_SPEED */
  2670. /*
  2671.   This is simply a wrapper for the real protocol function just below,
  2672.   that saves any items that might be changed automatically by protocol
  2673.   negotiations and then restores them upon exit from protocol mode.
  2674. */
  2675. VOID
  2676. proto() {
  2677.     extern int b_save, f_save, c_save, ss_save, slostart, reliable, urclear;
  2678. #ifndef NOCSETS
  2679.     extern int fcharset, fcs_save, tcharset, tcs_save;
  2680. #endif /* NOCSETS */
  2681. #ifdef PIPESEND
  2682.     extern int pipesend;
  2683. #endif /* PIPESEND */
  2684. #ifdef OS2
  2685.     extern int cursorena[], cursor_save, term_io;
  2686.     extern BYTE vmode;
  2687.     extern int display_demo;
  2688.     int term_io_save;
  2689. #endif /* OS2 */
  2690. #ifdef TNCODE
  2691.     int _u_bin=0, _me_bin=0;
  2692. #ifdef IKS_OPTION
  2693.     int _u_start=0, _me_start=0;
  2694. #endif /* IKS_OPTION */
  2695. #endif /* TNCODE */
  2696. #ifdef PATTERNS
  2697.     extern int patterns;
  2698.     int pa_save;
  2699.     int i;
  2700. #endif /* PATTERNS */
  2701. #ifdef PATTERNS
  2702.     pa_save = patterns;
  2703. #endif /* PATTERNS */
  2704. #ifdef CK_LOGIN
  2705.     if (isguest) { /* If user is anonymous */
  2706. en_pri = 0; /* disable printing */
  2707. en_mai = 0; /* and disable email */
  2708. en_del = 0; /* and file deletion */
  2709.     }
  2710. #endif /* CK_LOGIN */
  2711. #ifdef OS2
  2712.     cursor_save = cursorena[vmode];
  2713.     cursorena[vmode] = 0;
  2714.     term_io_save = term_io;
  2715.     term_io = 0;
  2716. #endif /* OS2 */
  2717.     b_save = binary; /* SET FILE TYPE */
  2718.     f_save = fncnv; /* SET FILE NAMES */
  2719.     c_save = bctr;
  2720.     p_save = fnspath;
  2721.     r_save = recursive;
  2722.     s_timint = timint;
  2723.     ss_save = slostart;
  2724. #ifndef NOCSETS
  2725.     fcs_save = fcharset;
  2726.     tcs_save = tcharset;
  2727. #endif /* NOCSETS */
  2728. #ifdef COMMENT
  2729. /* Don't do this because then user can never find out what happened. */
  2730. #ifdef CK_SPEED
  2731.     for (i = 0; i < 256; i++)
  2732.       s_ctlp[i] = ctlp[i];
  2733.     f_ctlp = 1;
  2734. #endif /* CK_SPEED */
  2735. #endif /* COMMENT */
  2736.     if (reliable == SET_ON)
  2737.       slostart = 0;
  2738.     is_tn = (!local && sstelnet)
  2739. #ifdef TNCODE
  2740.       || (local && network && ttnproto == NP_TELNET)
  2741. #endif /* TNCODE */
  2742. ;
  2743. #ifdef TNCODE
  2744.     if (is_tn) {
  2745.         if (tn_b_xfer && !(sstelnet || inserver)) {
  2746.     /* Save the current state of Telnet Binary */
  2747.     _u_bin = TELOPT_U(TELOPT_BINARY);
  2748.     _me_bin = TELOPT_ME(TELOPT_BINARY);
  2749.     /* If either direction is not Binary attempt to negotiate it */
  2750.     if (!_u_bin && TELOPT_U_MODE(TELOPT_BINARY) != TN_NG_RF) {
  2751. tn_sopt(DO,TELOPT_BINARY);
  2752. TELOPT_UNANSWERED_DO(TELOPT_BINARY) = 1;
  2753.     }
  2754.     if (!_me_bin && TELOPT_ME_MODE(TELOPT_BINARY) != TN_NG_RF) {
  2755. tn_sopt(WILL,TELOPT_BINARY);
  2756. TELOPT_UNANSWERED_WILL(TELOPT_BINARY) = 1;
  2757.     }
  2758.     if (!(_me_bin && _u_bin))
  2759.       tn_wait("proto set binary mode");
  2760.         }
  2761. #ifdef IKS_OPTION
  2762.         if (sstate == 'x' || sstate == 'v') { /* Responding to a request */
  2763.             if (!inserver && TELOPT_U(TELOPT_KERMIT) &&
  2764.                 TELOPT_SB(TELOPT_KERMIT).kermit.u_start) {
  2765.                 iks_wait(KERMIT_REQ_STOP,0); /* Stop the other Server */
  2766. _u_start = 1;
  2767.             }
  2768.             if (TELOPT_ME(TELOPT_KERMIT) &&
  2769.                 !TELOPT_SB(TELOPT_KERMIT).kermit.me_start) {
  2770.                 tn_siks(KERMIT_START); /* Send Kermit-Server Start */
  2771.   TELOPT_SB(TELOPT_KERMIT).kermit.me_start = 1;
  2772.             }
  2773.         } else { /* Initiating a request */
  2774.             if (TELOPT_ME(TELOPT_KERMIT) &&
  2775.                 TELOPT_SB(TELOPT_KERMIT).kermit.me_start) {
  2776.                 tn_siks(KERMIT_STOP); /* I'm not servering */
  2777.   TELOPT_SB(TELOPT_KERMIT).kermit.me_start = 0;
  2778. _me_start = 1;
  2779.             }
  2780.             if (TELOPT_U(TELOPT_KERMIT) &&
  2781.         !TELOPT_SB(TELOPT_KERMIT).kermit.u_start) {
  2782. /* Send Req-Server-Start */
  2783.                 if (!iks_wait(KERMIT_REQ_START,0)) {
  2784.                     if (sstate != 's') {
  2785. success = 0; /* Other Kermit refused to serve */
  2786. if (local)
  2787.   printf("A Kermit server is not availablern");
  2788. debug(F110,"proto()",
  2789.                              "A Kermit Server is not available",0);
  2790. tlog(F110,"IKS client/server failure",
  2791.                              "A Kermit Server is not available",0);
  2792. goto xxprotox;
  2793.                     }
  2794. }
  2795.             }
  2796.         }
  2797. #endif /* IKS_OPTION */
  2798. #ifdef CK_ENCRYPTION
  2799.         if (tn_no_encrypt_xfer && !(sstelnet || inserver)) {
  2800.             ck_tn_enc_stop();
  2801.         }
  2802. #endif /* CK_ENCRYPTION */
  2803.     }
  2804. #endif /* TNCODE */
  2805.     if (!xfrint) connoi();
  2806.     xxproto(); /* Call the real protocol function */
  2807. #ifdef IKS_OPTION
  2808.   xxprotox:
  2809. #endif /* IKS_OPTION */
  2810.     xferstat = success; /* Remember transfer status */
  2811.     kactive = 0;
  2812. #ifdef TNCODE
  2813. #ifdef CK_ENCRYPTION
  2814.         if (tn_no_encrypt_xfer && !(sstelnet || inserver)) {
  2815.             ck_tn_enc_start();
  2816.         }
  2817. #endif /* CK_ENCRYPTION */
  2818. #ifdef IKS_OPTION
  2819.     if (TELOPT_ME(TELOPT_KERMIT) &&
  2820.         TELOPT_SB(TELOPT_KERMIT).kermit.me_start && !_me_start) {
  2821.         tn_siks(KERMIT_STOP); /* Server is stopped */
  2822.   TELOPT_SB(TELOPT_KERMIT).kermit.me_start = 0;
  2823.     }
  2824. #endif /* IKS_OPTION */
  2825.     if (is_tn && tn_b_xfer && !(sstelnet || inserver)) {
  2826.         /* if we negotiated Binary mode try to reset it */
  2827.         if (!_u_bin) {
  2828.             /* Check to see if the state changed during the transfer */
  2829.     if (TELOPT_U(TELOPT_BINARY)) {
  2830. tn_sopt(DONT,TELOPT_BINARY);
  2831. TELOPT_UNANSWERED_DONT(TELOPT_BINARY) = 1;
  2832.     } else
  2833.       _u_bin = 1; /* So we don't call tn_wait() */
  2834.         }
  2835.         if (!_me_bin) {
  2836.             /* Check to see if the state changed during the transfer */
  2837.     if (TELOPT_ME(TELOPT_BINARY)) {
  2838. tn_sopt(WONT,TELOPT_BINARY);
  2839. TELOPT_UNANSWERED_WONT(TELOPT_BINARY) = 1;
  2840.     } else
  2841.       _me_bin = 1; /* So we don't call tn_wait() */
  2842. }
  2843. if (!(_me_bin && _u_bin))
  2844.   tn_wait("proto reset binary mode");
  2845.     }
  2846. #endif /* TNCODE */
  2847. #ifdef PATTERNS
  2848.     patterns = pa_save;
  2849. #endif /* PATTERNS */
  2850. #ifdef STREAMING
  2851.     streaming = 0;
  2852.     /* streamok = 0; */
  2853. #endif /* STREAMING */
  2854. #ifdef COMMENT
  2855. #ifdef CK_SPEED
  2856.     for (i = 0; i < 256; i++)
  2857.       ctlp[i] = s_ctlp[i];
  2858.     f_ctlp = 0;
  2859. #endif /* CK_SPEED */
  2860. #endif /* COMMENT */
  2861.     urclear = 0;
  2862.     if (!success) {
  2863. xitsta |= what;
  2864. tlog(F110," failed:",(char *)epktmsg,0);
  2865.     }
  2866.     debug(F111,"proto xferstat",epktmsg,xferstat);
  2867.     slostart = ss_save;
  2868.     if (s_timint > -1) { /* Because of REMOTE SET */
  2869. timint = s_timint;
  2870. s_timint = -1;
  2871.     }
  2872.     recursive = r_save;
  2873.     fnspath = p_save;
  2874.     if (c_save > -1) { /* Because of REMOTE SET */
  2875. bctr = c_save;
  2876. c_save = -1;
  2877.     }
  2878.     fncnv   = f_save;
  2879.     binary  = b_save;
  2880. #ifdef PIPESEND
  2881.     pipesend = 0;     /* Next time might not be pipesend */
  2882. #endif /* PIPESEND */
  2883. #ifdef OS2
  2884.     cursorena[vmode] = cursor_save;
  2885.     term_io = term_io_save;
  2886.     display_demo = 1;
  2887. #endif /* OS2 */
  2888. }
  2889. static VOID
  2890. xxproto() {
  2891.     int x;
  2892.     long lx;
  2893. #ifdef CK_XYZ
  2894. #ifdef XYZ_INTERNAL
  2895. _PROTOTYP( int pxyz, (int) );
  2896. #endif /* XYZ_INTERNAL */
  2897. #endif /* CK_XYZ */
  2898.     char xss[2]; /* String representation of sstate */
  2899.     xss[0] = sstate;
  2900.     xss[1] = NUL;
  2901.     s_timint = timint;
  2902.     debug(F101,"xxproto entry justone","",justone);
  2903.     success = 0;
  2904.     retrieve = 0; /* Reset these ... */
  2905.     reget = 0;
  2906.     opkt = 0;
  2907.     if (local && ttchk() < 0) { /* Giving BYE or FIN */
  2908. if (bye_active) { /* but there is no connection */
  2909.     ttclos(0);
  2910.     success = 1;
  2911.     return;
  2912. }
  2913. /* Ditto for any REMOTE command */
  2914. if (sstate == 'g' && cmarg ) {
  2915.     if (*cmarg == 'L' || *cmarg == 'F' || *cmarg == 'X')
  2916.       success = 1;
  2917.     else
  2918.       printf("?No connectionrn");
  2919.     return;
  2920. }
  2921.     }
  2922. /* Set up the communication line for file transfer. */
  2923.     if (local && (speed < 0L) && (network == 0)) {
  2924. xxscreen(SCR_EM,0,0L,"Sorry, you must 'set speed' first");
  2925. return;
  2926.     }
  2927.     x = -1;
  2928.     if (ttopen(ttname,&x,mdmtyp,cdtimo) < 0) {
  2929. debug(F111,"failed: proto ttopen local",ttname,local);
  2930. xxscreen(SCR_EM,0,0L,"Can't open line");
  2931. return;
  2932.     }
  2933.     if (x > -1) local = x;
  2934.     debug(F111,"proto ttopen local",ttname,local);
  2935.     lx = (local && !network) ? speed : -1;
  2936. #ifdef NETCONN
  2937. #ifdef CK_SPEED
  2938.     if (is_tn) {
  2939. ctlp[(unsigned)255] = ctlp[CR] = 1;
  2940. if (parity == 'e' || parity == 'm') ctlp[127] = 1;
  2941. if (flow == FLO_XONX) { /* Also watch out for Xon/Xoff */
  2942.     ctlp[17] = ctlp[19] = 1;
  2943.     ctlp[17+128] = ctlp[19+128] = 1;
  2944. }
  2945.     }
  2946. #endif /* CK_SPEED */
  2947. #endif /* NETCONN */
  2948.     if (ttpkt(lx,flow,parity) < 0) { /* Put line in packet mode, */
  2949. xxscreen(SCR_EM,0,0L,"Can't condition line");
  2950. return;
  2951.     }
  2952.     if (local && !network && carrier != CAR_OFF) {
  2953. int x; /* Serial connection */
  2954. x = ttgmdm(); /* with carrier checking */
  2955. if (x > -1) {
  2956.     if (!(x & BM_DCD)) {
  2957. debug(F101,"proto ttgmdm","",0);
  2958. xxscreen(SCR_EM,0,0L,"Carrier required but not detected");
  2959. return;
  2960.     }
  2961. }
  2962.     }
  2963.     /* Send remote side's "receive" or "server" startup string, if any */
  2964.     if (local && ckindex((char *)xss,"srgcjhk",0,0,1)) {
  2965. char *s = NULL;
  2966.         if (
  2967. #ifdef IKS_OPTION
  2968.     /* Don't send auto-blah string if we know other side is serving */
  2969.     !TELOPT_U(TELOPT_KERMIT) ||
  2970.     !TELOPT_SB(TELOPT_KERMIT).kermit.u_start
  2971. #else
  2972.     1
  2973. #endif /* IKS_OPTION */
  2974.     ) {
  2975.     if (sstate == 's') { /* Sending file(s) */
  2976. s = binary ? ptab[protocol].h_b_init : ptab[protocol].h_t_init;
  2977.     } else if (protocol == PROTO_K) { /* Command for server */
  2978. s = ptab[protocol].h_x_init;
  2979.     }
  2980. }
  2981. #ifdef CK_SPEED
  2982. #ifndef UNPREFIXZERO
  2983. if (protocol == PROTO_K) /* Because of C-strings... */
  2984.   ctlp[0] = 1;
  2985. #endif /* UNPREFIXZERO */
  2986. #endif /* CK_SPEED */
  2987. if (s) if (*s) { /* If we have a command to send... */
  2988.     char tmpbuf[356];
  2989.     int stuff = -1, stuff2 = -1, len = 0;
  2990.     extern int tnlm;
  2991.     strcpy(tmpbuf,s);
  2992.     if (sstate == 's') /* Sending file(s) */
  2993.       sprintf(tmpbuf, s, cmarg2[0] ? cmarg2 : cmarg); /* For XMODEM */
  2994.     else /* Command for server */
  2995.       sprintf(tmpbuf, s);
  2996.     strcat(tmpbuf, "15");
  2997.     if (tnlm) /* TERMINAL NEWLINE ON */
  2998.       stuff = LF; /* Stuff LF */
  2999. #ifdef TNCODE
  3000.     /* TELNET NEWLINE MODE */
  3001.     if (is_tn) {
  3002. switch (TELOPT_ME(TELOPT_BINARY) ? tn_b_nlm : tn_nlm) {
  3003.   case TNL_CR:
  3004.     break;
  3005.   case TNL_CRNUL:
  3006.     break;
  3007.   case TNL_CRLF:
  3008.     stuff2 = stuff;
  3009.     stuff = LF;
  3010.     break;
  3011. }
  3012.     }
  3013. #endif /* TNCODE */
  3014. #ifdef NETCONN
  3015. #ifdef TCPSOCKET
  3016. #ifdef RLOGCODE
  3017.     if (network && ttnproto == NP_RLOGIN) {
  3018. switch (tn_b_nlm) { /* Always BINARY */
  3019.   case TNL_CR:
  3020.     break;
  3021.   case TNL_CRNUL:
  3022.     stuff2 = stuff;
  3023.     stuff  = NUL;
  3024.     break;
  3025.   case TNL_CRLF:
  3026.     stuff2 = stuff;
  3027.     stuff = LF;
  3028.     break;
  3029. }
  3030.     }
  3031. #endif /* RLOGCODE */
  3032. #endif /* TCPSOCKET */
  3033. #endif /* NETCONN */
  3034.     len = strlen(tmpbuf);
  3035.     if (stuff >= 0) {
  3036. tmpbuf[len++] = stuff;
  3037. if (stuff2 >= 0)
  3038.   tmpbuf[len++] = stuff2;
  3039. tmpbuf[len] = NUL;
  3040.     }
  3041.     ttol((CHAR *)tmpbuf,len);
  3042.     if (protocol == PROTO_K) /* Give remote Kermit time to start */
  3043.       msleep(400);
  3044. }
  3045.     }
  3046. #ifdef CK_XYZ
  3047.     if (protocol != PROTO_K) { /* Non-Kermit protocol selected */
  3048. char tmpbuf[356];
  3049. char * s = "";
  3050. #ifdef XYZ_INTERNAL /* Internal */
  3051. success = !pxyz(sstate);
  3052. #else
  3053. #ifdef CK_REDIR /* External */
  3054. switch (sstate) {
  3055.   case 's': /* 'Tis better to SEND... */
  3056.     s = binary ? ptab[protocol].p_b_scmd : ptab[protocol].p_t_scmd;
  3057.     break;
  3058.   case 'v': /* ... than RECEIVE */
  3059.     s = binary ? ptab[protocol].p_b_rcmd : ptab[protocol].p_t_rcmd;
  3060.     break;
  3061. }
  3062. if (!s) s = "";
  3063. if (*s) {
  3064.     sprintf(tmpbuf,s,(sstate == 's') ? fspec : cmarg2);
  3065.     debug(F110,"ckcpro ttruncmd",tmpbuf,0);
  3066.     success = ttruncmd(tmpbuf);
  3067. } else {
  3068.     printf("?Sorry, no external protocol defined for %srn",
  3069.    ptab[protocol].p_name
  3070.    );
  3071. }
  3072. #else
  3073. printf(
  3074. "Sorry, only Kermit protocol is supported in this version of Kermitn"
  3075.        );
  3076. #endif /* CK_REDIR */
  3077. #endif /* XYZ_INTERNAL */
  3078. return;
  3079.     }
  3080. #endif /* CK_XYZ */
  3081. #ifdef NTSIGX
  3082.     conraw();
  3083.     connoi();
  3084. #else
  3085.     if (!local)
  3086.       connoi(); /* No console interrupts if remote */
  3087. #endif /* NTSIG */
  3088.     kactive = 1;
  3089.     if (sstate == 'x') { /* If entering server mode, */
  3090. server = 1; /* set flag, */
  3091. debug(F101,"server backgrd","",backgrd);
  3092. debug(F101,"server quiet","",quiet);
  3093. debug(F100,"SHOULD NOT SEE THIS IF IN BACKGROUND!","",0);
  3094. if (!local) { /* and issue appropriate message. */
  3095.     if (!quiet && !backgrd
  3096. #ifdef IKS_OPTION
  3097.                 && !TELOPT_ME(TELOPT_KERMIT) /* User was told by negotiation */
  3098. #endif /* IKS_OPTION */
  3099. ) {
  3100. conoll(srvtxt);
  3101. conoll("KERMIT READY TO SERVE...");
  3102.     }
  3103. } else {
  3104.     conol("Entering server mode on ");
  3105.     conoll(ttname);
  3106.     conoll("Type Ctrl-C to quit.");
  3107.     if (srvdis) intmsg(-1L);
  3108. #ifdef TCPSOCKET
  3109. #ifndef NOLISTEN
  3110.     if (network && tcpsrfd > 0)
  3111.       ttol((CHAR *)"KERMIT READY TO SERVE...1512",26);
  3112. #endif /* NOLISTEN */
  3113. #endif /* TCPSOCKET */
  3114. }
  3115.     } else
  3116.       server = 0;
  3117. #ifdef VMS
  3118.     if (!quiet && !backgrd)    /* So message doesn't overwrite prompt */
  3119.       conoll("");
  3120.     if (local) conres();       /* So Ctrl-C will work */
  3121. #endif /* VMS */
  3122. /*
  3123.   If in remote mode, not shushed, not in background, and at top command level,
  3124.   issue a helpful message telling what to do...
  3125. */
  3126.     if (!local && !quiet && !backgrd) {
  3127. if (sstate == 'v') {
  3128.     conoll("Return to your local Kermit and give a SEND command.");
  3129.     conoll("");
  3130.     conoll("KERMIT READY TO RECEIVE...");
  3131. } else if (sstate == 's') {
  3132.     conoll("Return to your local Kermit and give a RECEIVE command.");
  3133.     conoll("");
  3134.     conoll("KERMIT READY TO SEND...");
  3135. } else if ( sstate == 'g' || sstate == 'r' || sstate == 'h' ||
  3136.     sstate == 'j' || sstate == 'c' ) {
  3137.     conoll("Return to your local Kermit and give a SERVER command.");
  3138.     conoll("");
  3139.     conoll((sstate == 'r' || sstate == 'j' || sstate == 'h') ?
  3140.    "KERMIT READY TO GET..." :
  3141.    "KERMIT READY TO SEND SERVER COMMAND...");
  3142. }
  3143.     }
  3144. #ifdef COMMENT
  3145.     if (!local) sleep(1);
  3146. #endif /* COMMENT */
  3147. /*
  3148.   The 'wart()' function is generated by the wart program.  It gets a
  3149.   character from the input() routine and then based on that character and
  3150.   the current state, selects the appropriate action, according to the state
  3151.   table above, which is transformed by the wart program into a big case
  3152.   statement.  The function is active for one transaction.
  3153. */
  3154.     rtimer(); /* Reset elapsed-time timer */
  3155. #ifdef GFTIMER
  3156.     rftimer();
  3157. #endif /* GFTIMER */
  3158.     resetc(); /* & other per-transaction counters. */
  3159.     debug(F101,"proto calling wart, justone","",justone);
  3160.     wart(); /* Enter the state table switcher. */
  3161. /*
  3162.   Note: the following is necessary in case we have just done a remote-mode
  3163.   file transfer, in which case the controlling terminal modes have been
  3164.   changed by ttpkt().  In particular, special characters like Ctrl-C and
  3165.   Ctrl- might have been turned off (see ttpkt).  So this call to ttres() is
  3166.   essential.  IMPORTANT: restore interrupt handlers first, otherwise any
  3167.   terminal interrupts that occur before this is done in the normal place
  3168.   later will cause a crash.
  3169. */
  3170. #ifdef OS2
  3171.     ttres(); /* Reset the communication device */
  3172. #else
  3173.     if (!local) {
  3174. setint(); /* Arm interrupt handlers FIRST */
  3175. msleep(500);
  3176. ttres(); /* Then restore terminal. */
  3177.     }
  3178. #endif /* OS2 */
  3179.     xxscreen(SCR_TC,0,0L,""); /* Transaction complete */
  3180.     x = quiet;
  3181.     quiet=1;
  3182.     clsif(); /* Failsafe in case we missed */
  3183.     clsof(1); /* a case in the state machine. */
  3184.     quiet = x;
  3185.     if (server) { /* Back from packet protocol. */
  3186.      if (!quiet && !backgrd
  3187. #ifdef IKSD
  3188.     && !inserver
  3189. #endif /* IKSD */
  3190.     ) { /* Give appropriate message */
  3191.     conoll("");
  3192.     conoll("C-Kermit server done");
  3193.         }
  3194.         server = 0; /* Not a server any more */
  3195.     }
  3196. }
  3197. /*  S G E T I N I T  --  Handle incoming GET-Class packets  */
  3198. /*
  3199.   Returns:
  3200.    -1: On error
  3201.     0: GET packet processed OK - ready to Send.
  3202.     1: Extended GET processed OK - wait for another.
  3203. */
  3204. static int
  3205. sgetinit(reget,xget) int reget, xget; { /* Server end of GET command */
  3206.     char * fs = NULL; /* Pointer to filespec */
  3207.     int i, n, done = 0;
  3208. #ifdef PATTERNS
  3209.     extern int patterns;
  3210. #endif /* PATTERNS */
  3211. #ifdef PIPESEND
  3212.     extern int usepipes, pipesend;
  3213. #endif /* PIPESEND */
  3214.     if (!ENABLED(en_get)) { /* Only if not disabled!  */
  3215. errpkt((CHAR *)"GET disabled");
  3216. return(-1);
  3217.     }
  3218.     /* OK to proceed */
  3219. #ifdef WHATAMI
  3220.     /* If they are alike this was already done in whoarewe() */
  3221.     debug(F101,"sgetinit whatru","",whatru);
  3222.     if (whatru & WMI_FLAG) { /* Did we get WHATAMI info? */
  3223. debug(F101,"sgetinit binary (1)","",binary);
  3224. #ifdef VMS
  3225. if (binary != XYFT_I && binary != XYFT_L)
  3226. #else
  3227. #ifdef OS2
  3228.   if (binary != XYFT_L)
  3229. #endif /* OS2 */
  3230. #endif /* VMS */
  3231.     binary = (whatru & WMI_FMODE) ? /* Yes, set file type */
  3232.       XYFT_B : XYFT_T; /* automatically */
  3233. debug(F101,"sgetinit binary (2)","",binary);
  3234. if (!wearealike)
  3235.   fncnv = (whatru & WMI_FNAME) ? 1 : 0; /* And name conversion */
  3236.     }
  3237. #endif /* WHATAMI */
  3238.     fs = (char *)srvcmd;
  3239.     srvptr = srvcmd; /* Point to server command buffer */
  3240.     decode(rdatap,putsrv,0); /* Decode the GET command into it */
  3241.     /* Accept multiple filespecs */
  3242.     cmarg2 = ""; /* Don't use cmarg2 */
  3243.     cmarg = ""; /* Don't use cmarg */
  3244.     done = 1; /* Only 1 packet needed... */
  3245.     if (xget) { /* Special decoding for Extended GET */
  3246. char L, next, c; /* PLV items */
  3247. int len, val; /* More PLV items */
  3248. char * p = (char *)srvcmd; /* String to decode */
  3249. done = 0; /* Maybe more packets needed */
  3250. fs = NULL; /* We don't know the filespec yet */
  3251. c = *p++; /* Get first parameter */
  3252. while (c) { /* For all parameters... */
  3253.     debug(F000,"sgetinit c","",c);
  3254.     L = *p++; /* Get length */
  3255.     if (L >= SP) /* Decode length */
  3256.       len = xunchar(L);
  3257.     else if (c == '@') { /* Allow missing EOP length field */
  3258. len = 0;
  3259.     } else {
  3260. len = (xunchar(*p++) * 95);
  3261. len += xunchar(*p++);
  3262.     }
  3263.     debug(F101,"sgetinit len","",len);
  3264.     next = *(p+len); /* Get next parameter */
  3265.     *(p+len) = NUL; /* Zero it out to terminal value */
  3266.     debug(F110,"sgetinit p",p,0);
  3267.     switch (c) { /* Do the parameter */
  3268.       case 'O': /* GET Options */
  3269. val = atoi(p); /* Convert to int */
  3270. debug(F101,"sgetinit O val","",val);
  3271. if (val & GOPT_DEL) moving = 1;
  3272. if (val & GOPT_RES) reget = 1;
  3273. if (val & GOPT_REC) {
  3274.     recursive = 1;
  3275.     if (fnspath == PATH_OFF)
  3276.       fnspath = PATH_REL;
  3277. }
  3278. break;
  3279.       case 'M': /* Transfer Mode */
  3280. val = atoi(p);
  3281. debug(F101,"sgetinit M val","",val);
  3282. if (val < 1)
  3283.   break;
  3284. #ifdef PATTERNS
  3285. patterns = 0; /* Takes precedence over patterns */
  3286. #endif /* PATTERNS */
  3287. if (val == GMOD_TXT) binary = XYFT_T; /* Text */
  3288. if (val == GMOD_BIN) binary = XYFT_B; /* Binary */
  3289. if (val == GMOD_LBL) binary = XYFT_L; /* Labeled */
  3290. break;
  3291.       case 'F': /* Filename */
  3292. fs = p;
  3293. debug(F110,"sgetinit filename",fs,0);
  3294. break;
  3295.       case '@': /* End Of Parameters */
  3296. done = 1;
  3297. debug(F100,"sgetinit EOP","",0);
  3298. break;
  3299.       default:
  3300. errpkt((CHAR *)"Unknown GET Parameter");
  3301. debug(F100,"sgetinit unknown parameter","",0);
  3302. return(-1);
  3303.     }
  3304.     p += (len + 1);
  3305.     c = next;
  3306. }
  3307.     }
  3308.     if (!fs) fs = ""; /* A filename is required */
  3309.     if (*fs) {
  3310. havefs = 1;
  3311. n = 0; /* Check for quoted name */
  3312. if ((n = strlen(fs)) > 1) {
  3313.     /* Note: this does not allow for multiple quoted names */
  3314.     if ((fs[0] == '{' && fs[n-1] == '}') ||
  3315. (fs[0] == '"' && fs[n-1] == '"')) {
  3316. fs[n-1] = '';
  3317. fs++;
  3318. debug(F111,"sgetinit unquoted filename",fs,n);
  3319.     } else
  3320.       n = 0; /* This means no quoting */
  3321. }
  3322. #ifdef PIPESEND
  3323. debug(F111,"sgetinit",fs,usepipes);
  3324. if (usepipes && ENABLED(en_hos) && *fs == '!') {
  3325.     cmarg = fs + 1; /* Point past the bang */
  3326.     *fs = NUL;
  3327.     nfils = -1;
  3328.     pipesend = 1;
  3329.     debug(F111,"sgetinit pipesend",cmarg,pipesend);
  3330. }
  3331. if (!pipesend) { /* If it's not a pipe */
  3332. #endif /* PIPESEND */
  3333.     if (n == 0) { /* If the name was not quoted */
  3334. #ifndef NOMSEND
  3335. nfils = fnparse(fs); /* Allow it to be a list of names */
  3336.     } else { /* If it was quoted */
  3337. #endif /* NOMSEND */
  3338. nzxopts = 0;
  3339. #ifdef UNIXOROSK
  3340. if (matchdot)  nzxopts |= ZX_MATCHDOT;
  3341. #endif /* UNIXOROSK */
  3342. if (recursive) nzxopts |= ZX_RECURSE;
  3343. /* Treat as a single filespec */
  3344. nfils = 0 - nzxpand(fs,nzxopts);
  3345. cmarg = fs;
  3346.     }
  3347. #ifdef PIPESEND
  3348. }
  3349. #endif /* PIPESEND */
  3350.     }
  3351.     if (!done) { /* Need more O packets... */
  3352. debug(F100,"sgetinit O-Packet TBC","",0); /* To Be Continued */
  3353. return(1);
  3354.     }
  3355.     debug(F100,"sgetinit O-Packet done - havefs","",havefs);
  3356.     if (!havefs) { /* Done - make sure we have filename */
  3357. errpkt((CHAR *)"GET without filename");
  3358. return(-1);
  3359.     }
  3360.     freerpkt(winlo);
  3361.     winlo = 0; /* Back to packet 0 again. */
  3362.     debug(F101,"sgetinit winlo","",winlo);
  3363.     nakstate = 0; /* Now I'm the sender! */
  3364.     if (reget) sendmode = SM_RESEND;
  3365.     if (sinit() > 0) { /* Send Send-Init */
  3366. #ifdef STREAMING
  3367. if (!streaming)
  3368. #endif /* STREAMING */
  3369.   timint = chktimo(rtimo,timef); /* Switch to per-packet timer */
  3370. return(0); /* If successful, switch state */
  3371.     } else return(-1); /* Else back to server command wait */
  3372. }
  3373. #else  /* NOXFER */
  3374. #include "ckcdeb.h"
  3375. VOID
  3376. proto() {
  3377.     extern int success;
  3378.     success = 0;
  3379. }
  3380. #endif /* NOXFER */