.rm 66 .c;The Kermit protocol and the PDP-11 .s 2 .c;Brian Nelson 07-Aug-84 10:56:35 .s 2 Abstract .s 1 #This article will describe the author's implementation of the Kermit file transfer protocol for the PDP-11 series under RSTS/E, RSX11M/M+ and RT11. This protocol allows many (if not most) types of computer systems to effect, at minimum, error free file transfer with other systems and microcomputers over asynchronous lines. .s 1 The Kermit protocol .s 1 #The Kermit protocol is designed to operate over normal asynchronous terminal lines. Communications is half duplex, in that for every packet sent, the sender must wait for either an acknowledgement packet (ACK) or a negative acknowledgement packet (NAK). Transmission is in ascii, with no requirements needed for the transmission of eight bit characters or control characters other than the choice of control-A for marking the start of a packet. All 'control' characters imbedded in the data are prefixed to convert them to printable characters, the same applying to eight bit characters if required by the characteristics of the line. .br #Rather than to go into more detail about the the Kermit protocol, the reader should the references listed at the end of this article. .s 1 The PDP-11 Kermit-11 implementation .s 1 #The author's version of Kermit-11 is written in Macro-11 and can run on RSTS/E, RSX11M, RSX11M Plus and RT11. The RSTS and RSX file system interface is via RMS11 version 2, while the RT11 interface attempts to emulate the RMS11 subsystem. The choice of Macro-11 for the implementation language was made for several reasons, one being the availability of the assembler on all systems, another being speed and compactness of the code, and yet another the author's experience with Macro-11. .br #RMS11 was used for RSTS/E and RSX to provide a common i/o interface to the host file system. Additionally, Bob Denny of Alisa Systems further extended the RMS interface to support remote file access over DECNET with Kermit, allowing commands such as SEND NODENAME::[BRIAN.FUBAR]FILE.TYPE and other remote file accesses over DECNET. RMS11 version 2 also provides a very simple and powerfull means of doing wildcard searching, file renames and file deletion via the $PARSE, $SEARCH, $RENAME and $DELETE macros. Points against RMS basically amount to it's size, RMS is quite large even if overlayed. This is helped by using the segmented RMSRES available on RSTS/E and RSX11M Plus, though there is no remote file access for RMSRES in the current release of Kermit-11. The other objection to RMS will come from RSTS/E users, who are used to using files that normally lack file attributes. This is overcome by the ability of RMS v2 to create stream ascii files. In answer to this, Kermit-11 has a SET command to change the default ascii file organization from SEQUENTIAL VARIABLE to STREAM ASCII. .s 1 The RSTS/E Kermit, while it does 'run' under RSX emulation, does NOT use any RSX directives (apart from GTSK$S) to interface to the executive, as (one) the RSX directive emulation in far from complete, and (two) there is no need to go though an additional layer of overhead to make RSTS/E map RSX calls to native calls. The 'multiple private delimiters' feature is used to avoid losing read pass all (binary) mode on read timeouts, as well as setting the link to '8-bit' mode to keep the terminal driver from stripping the high bit from data received. Additional use of psuedo keyboards is made to implement the HOST and REMOTE HOST commands, which allow execution of CCL/DCL commands from the local or remote Kermit-11 respectively. .s 1 #The RSX11M/M+ version does not (at this time) make use of any unusual directives, though a future version will use virtual terminals to implement the HOST and REMOTE host commands. Like the RSTS/E and RT11 versions, it can receive eight bit data assuming no parity is used. Where parity is a must, Kermit-11 has to use a prefixing scheme for eight bit binary data. Like the RSTS/E version, binary files are created as FIXED no carriage control files such as used for task images. Note that parity generation is done by software in Kermit-11. .s 1 #The RT11 version of Kermit-11 maintains source module compatibility with the RSTS/E and RSX versions. Each version of Kermit-11 has it's own source file to deal with the operating system, for RSX it is K11M41.MAC, for RSTS/E they are K11E80.MAC and K1180S.MAC, and for RT11 they are K11RT4.MAC, K11RTT.MAC, K11RTD.MAC and K11RTU.MAC. Apart from these specific files, all other source files are shared. The RT11 Kermit-11 uses multiple terminal service to do all its terminal i/o. This allows the use of any interface supported, including the PDT150 modem port, DL/DLV11's and DZ/DZV11's. The drawback is overhead, the RT11 MT service can't sustain a rate much past 1200 baud at most. This is not a problem for Kermit, however, due to it's half duplex nature and the fact that no packet received is ever longer than the ring buffer size. The only problem is in when Kermit-11 is running as a terminal emulator (the Kermit CONNECT command) where the data coming from the remote host can easily overrun the executive's buffer. A SET RTFLOW ON/OFF command was added to force Kermit-11 to send its own flow control to the host via XON and XOFF. The disk i/o emulates the RSTS/E and RSX RMS11 version, and each executive directive has its error codes mapped into an unique global error code, with the symbolic names corresponding to the nearest RMS11 error name. Wilcarding is handled, of course, by non file-structured access to the directory on the desired volume, and supports full RT11 wildcard filenames. .s 1 Transmission of file attributes .s 1 One of the optional features of the Kermit protocol is the ATTRIBUTE packet. The attribute packets allow a Kermit program to send to a receiving Kermit information regarding the file organization, size, cluster/retrieval size, protection and so forth. There is even a system dependant attribute packet type that can be used to transfer things like the RMS11 IFAB (the RMS/FCS attributes). One of the things that two Kermits exchange before any file transfer is an information packet, this packet tells the receiving Kermit about itself. The last field in this packet, the CAPAS mask, tells Kermit if the other one can process attribute packets. If two Kermit-11's are communicating, they will find that each can do so, and the sender of a file will then send over attribute packets indicating the need (or lack of) for binary transmission, based on the file organization, filetype and protection code (for RSTS/E). If the sending Kermit is running on RSTS/E or RSX11M/M+ it will also send a copy of the RMS/FCS attributes so the received file will be identical (to FCS and/or RMS) to the copy on the sender's system. Since other implementations of Kermit may use this special system attribute packet, Kermit-11 always sends an attribute packet telling the receiver what hardware and operating system it is running on, and thus will only use such data if they are compatible. Of course, there will be times when a file may be binary and Kermit-11 can't tell so, many Kermit's have a SET FILE BINARY and SET FILE ASCII to allow the user to override defaults. Kermit-11 also has a SET FILE AUTO/NOAUTO to disable it from trying to determine a file's binary status. .s 1 Summary .s 1 #This article describes only the PDP-11 Kermit-11 implementation, for further reading see: .lit Kermit: A File-transfer Protocol for Universities Frank da Cruz and Bill Catchings BYTE Magazine, June/July 1984 The Kermit Protocol Manual, version 5 Frank da Cruz April 1984 Columbia University Center for Computing Activities .eli .rm 72 .page .s 1 Kermit is currently available for: .lit Machine Operating System Language DECsystem-10,20 TOPS-10,20 MACRO-10,20 IBM 370 Series VM/CMS, MVS/TSO IBM Assembler IBM 370 Series MTS Pascal CDC Cyber 170 NOS Fortran-77 Sperry/Univac-1100 EXEC EXEC Assembler Honeywell MULTICS PL/I DEC VAX-11 VMS Bliss-32, Macro-32 DEC PDP-11 RT,RSX,RSTS,MUMPS MACRO-11 & others DEC Pro-300 Series P/OS Bliss-16, Macro-11 VAX,PDP-11,SUN,etc UNIX C PRIME PRIMOS PL/P HP1000 RTE Fortran Apollo Aegis Fortran Terak, HP-98x6, IBM PC UCSD p-System 8080, 8085, or Z80 CP/M-80 ASM 8086, 8088 PC-DOS, MS-DOS MS MASM-86 8086, 8088 CP/M-86 DR ASM86 Apple II 6502 Apple DOS DEC-10/20 CROSS TRS80 I, III TRSDOS Z80 Assembler Atari DOS Action! .eli .rm 66 The 8080 version runs on the DEC VT180, DECmate II (CP/M), Heath/Zenith-89 and 100, Superbrain, Apple II/Z80, TRS-80 II (CP/M), Osborne, Kaypro, and others. There are 8086 MS DOS versions for the IBM PC, DEC Rainbow, Wang PC, Compaq, Heath/Zenith-100, HP-150, Tandy 2000, Victor 9000, and others. The 8086 CP/M-86 version runs on the DEC Rainbow and the NEC APC. .lit Information on obtaining Kermit can be obtained from: KERMIT Distribution Columbia University Center for Computing Activities 7th Floor, Watson Laboratory 612 West 115th Street New York, N.Y. 10025 Additionally, Kermit will be on the Spring 1984 SIG tapes of the RT11, RSTS/E, RSX, VMS, TOPS10 and TOPS20 sig groups. .eli