char *versio = "PC-DOS C-Kermit, file transfer module, 4LC(001) 27 July 85.\n\ Jan A. van der Eijk, NUS Corporation, 26 June 85."; /* C K C M A I -- C-Kermit Main program */ /* Authors: Frank da Cruz, Bill Catchings, Jeff Damens; Columbia University Center for Computing Activities, 1984-85. Copyright (C) 1985, Trustees of Columbia University in the City of New York. Permission is granted to any individual or institution to use, copy, or redistribute this software so long as it is not sold for profit, provided this copyright notice is retained. */ /* The Kermit file transfer protocol was developed at Columbia University. It is named after Kermit the Frog, star of the television series THE MUPPET SHOW; the name is used by permission of Henson Associates, Inc. "Kermit" is also Celtic for "free". */ /* Thanks to Herm Fischer of Encino, CA, for extensive contributions to version 4, and to the following people for their contributions over the years: Larry Afrin, Clemson U Charles Brooks, EDN Bob Cattani & Chris Maio, Columbia CS Dept Alan Crosswell, CUCCA Carl Fongheiser, CWRU Yekta Gursel, MIT Jim Guyton, Rand Corp Stan Hanks, Rice U. Ken Harrenstein, SRI Steve Hemminger, Tektronix Randy Huntziger, NLM Martin Minow, DEC Tony Movshon, NYU Ken Poulton, HP Labs Frank Prindle, NADC Stew Rubenstein, Harvard Dan Schullman, DEC Bradley Smith, UCLA Dave Tweten, AMES-NAS Walter Underwood, Ford Aerospace Pieter Van Der Linden, Centre Mondial (Paris) Mark Vasoll & Gregg Wonderly, Oklahoma State University Lauren Weinstein, Vortex and many others. */ #include "lckerm.h" #include "lckdeb.h" #include "asiports.h" /* JAV, NUS use for Greenleaf COM libs */ #include "stdios.h" /* JAV, NUS special Greenleaf and Lattice header * /* Declarations for Send-Init Parameters */ int spsiz = DSPSIZ, /* Biggest packet size we can send */ rpsiz = DRPSIZ, /* Biggest we want to receive */ timint = DMYTIM, /* Timeout interval I use */ rtimo = URTIME, /* Timeout I want you to use */ timef = 0, /* Flag to override what you ask */ npad = MYPADN, /* How much padding to send */ mypadn = MYPADN, /* How much padding to ask for */ chklen = 1, /* Length of block check */ bctr = 3, /* Block check type requested */ bctu = 1, /* Block check type used */ ebq = MYEBQ, /* 8th bit prefix */ ebqflg = 0, /* 8th-bit quoting flag */ rpt = 0, /* Repeat count */ rptq = MYRPTQ, /* Repeat prefix */ rptflg = 0, /* Repeat processing flag */ capas = MYCAPA; /* Capabilities */ char padch = MYPADC, /* Padding character to send */ mypadc = MYPADC, /* Padding character to ask for */ seol = MYEOL, /* End-Of-Line character to send */ eol = MYEOL, /* End-Of-Line character to look for */ ctlq = CTLQ, /* Control prefix in incoming data */ myctlq = CTLQ; /* Outbound control character prefix */ wndmax = 31; /* Maximum window size for table */ wndsiz = 31; /* Window size I want */ /* Packet-related variables */ int pktnum = 0, /* Current packet number */ prvpkt = -1, /* Previous packet number */ sndtyp, /* Type of packet just sent */ size, /* Current size of output pkt data */ osize, /* Previous output packet data size */ maxsize, /* Max size for building data field */ spktl; /* Length packet being sent */ char sndpkt[MAXPACK*2], /* Entire packet being sent */ recpkt[RBUFL+2], /* Packet most recently received */ data[MAXPACK+4], /* Packet data buffer */ srvcmd[MAXPACK*2], /* Where to decode server command */ *srvptr, /* Pointer to above */ mystch = SOH, /* Outbound packet-start character */ stchr = SOH; /* Incoming packet-start character */ /* File-related variables */ char filnam[50]; /* Name of current file. */ char fildat[20]; /* File creation date */ int nfils; /* Number of files in file group */ long fsize; /* Size of current file */ /* Communication line variables */ char ttname[50]; /* Name of communication line. */ int parity, /* Parity specified, 0,'e','o',etc */ flow, /* Flow control, 1 = xon/xoff */ speed = 1200, /* Line speed */ turn = 0, /* Line turnaround handshake flag */ turnch = XON, /* Line turnaround character */ duplex = 0, /* Duplex, full by default */ escape = 034, /* Escape character for connect */ delay = DDELAY, /* Initial delay before sending */ cdetect = FALSE, /* Carrier detect not required */ mdmtyp = 0; /* Modem type (initially none) */ /* Statistics variables */ long filcnt, /* Number of files in transaction */ flci, /* Characters from line, current file */ flco, /* Chars to line, current file */ tlci, /* Chars from line in transaction */ tlco, /* Chars to line in transaction */ ffc, /* Chars to/from current file */ tfc; /* Chars to/from files in transaction */ /* Flags */ int deblog = 0, /* Flag for debug logging */ pktlog = 0, /* Flag for packet logging */ seslog = 0, /* Session logging */ tralog = 0, /* Transaction logging */ displa = 0, /* File transfer display on/off */ stdouf = 0, /* Flag for output to stdout */ xflg = 0, /* Flag for X instead of F packet */ hcflg = 0, /* Doing Host command */ fncnv = 1, /* Flag for file name conversion */ binary = 1, /* Flag for binary file */ warn = 1, /* Flag for file warning */ quiet = 0, /* Be quiet during file transfer */ local = 0, /* Flag for external tty vs stdout */ server = 0, /* Flag for being a server */ cnflg = 0, /* Connect after transaction */ cxseen = 0, /* Flag for cancelling a file */ czseen = 0; /* Flag for cancelling file group */ filatr = 0; /* Flag for sending file attributes */ nxtcas = 1; /* Flag for sending next attribute */ capflg = 0; /* Which capas are supported */ sldwnd = 0; /* Flag for sliding window support */ window = 0; /* Flag for windowing state */ /* Variables passed from command parser to protocol module */ char parser(); /* The parser itself */ char sstate = 0; /* Starting state for automaton */ char *cmarg = ""; /* Pointer to command data */ char *cmarg2 = ""; /* Pointer to 2nd command data */ char **cmlist; /* Pointer to file list in argv */ /* Miscellaneous */ char **xargv; /* Global copies of argv */ int xargc; /* and argc */ extern char *dftty; /* Default tty name from ckx???.c */ extern int dfloc; /* Default location: remote/local */ extern int dfprty; /* Default parity */ extern int dfflow; /* Default flow control */ /* M A I N -- C-Kermit main program */ main(argc,argv) int argc; char **argv; { char *strcpy(); char *ptr; /* Do some initialization */ xargc = argc; /* Make global copies of argc */ xargv = argv; /* ...and argv. */ while (--xargc > 0) { /* Go through command line words */ xargv++; /* and low case it all */ ptr = *xargv; for ( ; *ptr != '\0';*ptr++) { *ptr = tolower(*ptr); } } xargc = argc; xargv = argv; sstate = 0; /* No default start state. */ strcpy(ttname,dftty); /* Set up default tty name. */ local = dfloc; /* And whether it's local or remote. */ flow = dfflow; /* and flow control. */ /* Look for a UNIX-style command line... */ if (argc > 1) { /* Command line arguments? */ sstate = cmdlin(); /* Yes, parse. */ if (sstate) { proto(); /* Take any requested action */ doexit(GOOD_EXIT); /* and then exit with status 0. */ } } else { usage(); } }