Jump to content

XMODEM

From Wikipedia, the free encyclopedia
XMODEM
Communication protocol
Purposefile transfer protocol
Developer(s)Ward Christensen[1][2]
Introduction1977;47 years ago(1977)
InfluencedYMODEM,many others
Hardwaremodems

XMODEMis a simplefile transferprotocol developed as a quickhackbyWard Christensenfor use in his 1977MODEM.ASMterminal program.It allowed users to transmit files between their computers when both sides used MODEM. Keith Petersen made a minor update to always turn on "quiet mode", and called the result XMODEM.[3][4]

XMODEM, like most file transfer protocols, breaks up the original data into a series of "packets"that are sent to the receiver, along with additional information allowing the receiver to determine whether that packet was correctly received. If an error is detected, the receiver requests that the packet be re-sent. A string of bad packets causes the transfer to abort.

XMODEM became extremely popular in the earlybulletin board system(BBS) market, largely because it was simple to implement. It was also fairly inefficient, and as modem speeds increased, this problem led to the development of a number of modified versions of XMODEM to improve performance or address other problems with the protocol.[4]Christensen believed his original XMODEM to be "the single most modified program in computing history".[5]

Chuck Forsbergcollected a number of common modifications into hisYMODEMprotocol, but poor implementation led to a further fracturing before they were re-unified by his laterZMODEMprotocol. ZMODEM became very popular, but never completely replaced XMODEM in the BBS market.

Packet structure

[edit]

The original XMODEM used a 128-byte data packet, the basic block size used onCP/Mfloppy disks.The packet was prefixed by a simple 3-byte header containing a<SOH>character, a "block number" from 1-255, and the "inverse" block number—255 minus the block number. Block numbering starts with 1 for the first block sent, not 0. The header was followed by the 128 bytes of data, and then a single-bytechecksum.The checksum was the sum of all 128 data bytes in the packetmodulo256. The complete packet was thus 132 bytes long, containing 128 bytes ofpayload data,for a totalchannel efficiencyof about 97%.

The file was marked "complete" with a<EOT>character sent after the last block. This character was not in a packet, but sent alone as a single byte. Since the file length was not sent as part of the protocol, the last packet was padded out with a "known character" that could be dropped. In the original specification, this defaulted to<SUB>or 26 decimal, which CP/M used as the end-of-file marker inside its own disk format. The standard suggested any character could be used for padding, but there was no way for it to be changedwithin the protocolitself – if an implementation changed the padding character, only clients using the same implementation would correctly interpret the new padding character.

Transfer details

[edit]

Files were transferred one packet at a time. When received, the packet's checksum was calculated by the receiver and compared to the one received from the sender at the end of the packet. If the two matched, the receiver sent an<ACK>message back to the sender, which then sent the next packet in sequence. If there was a problem with the checksum, the receiver instead sent a<NAK>.If a<NAK>was received, the sender would re-send the packet,[4]and continued to try several times, normally ten, before aborting the transfer.

A<NAK>was also sent if the receiver did not receive a valid packet within ten seconds while still expecting data due to the lack of a<EOT>character. A seven-second timeout was also usedwithina packet, guarding against dropped connections in mid-packet.

The block numbers were also examined in a simple way to check for errors. After receiving a packet successfully, the next packet should have a one-higher number. If it instead received the same block number this was not considered serious, it was implied that the<ACK>had not been received by the sender, which had then re-sent the packet. Any other packet number signalled that packets had been lost.

Transfers were receiver-driven; the transmitter would not send any data until an initial<NAK>was sent by the receiver. This was a logical outcome of the way the user interacted with the sending machine, which would be remotely located. The user would navigate to the requested file on the sending machine, and then ask that machine to transfer it. Once this command was issued, the user would then execute a command in their local software to start receiving. Since the delay between asking the remote system for the file and issuing a local command to receive was unknown, XMODEM allowed up to 90 seconds for the receiver to begin issuing requests for data packets.

Problems

[edit]

Although XMODEM was robust enough for a journalist in 1982 to transmit stories from Pakistan to the United States with anOsborne 1andacoustic couplerover poor-quality telephone lines,[6]the protocol had several flaws.

Minor problems

[edit]

XMODEM was written forCP/Mmachines, and bears several marks of thatoperating system.Notably, files on CP/M were always multiples of 128 bytes, and their end was marked within a block with the<EOT>character. These characteristics were transplanted directly into XMODEM. However, other operating systems did not feature either of these peculiarities, and the widespread introduction ofMS-DOSin the early 1980s led to XMODEM having to be updated to notice either a<EOT>or<EOF>as the end-of-file marker.

For some time it was suggested that sending a<CAN>character instead of an<ACK>or<NAK>should be supported in order to easily abort the transfer from the receiving end. Likewise, a<CAN>received in place of the<SOH>indicated the sender wished to cancel the transfer. However, this character could be easily "created" via simple noise-related errors of what was meant to be an<ACK>or<NAK>.A double-<CAN>was proposed to avoid this problem, but it is not clear if this was widely implemented.

Major problems

[edit]

XMODEM was designed for simplicity, without much knowledge of other file transfer protocols – which were fairly rare anyway. Due to its simplicity, there were a number of very basic errors that could cause a transfer to fail, or worse, result in an incorrect file which went unnoticed by the protocol. Most of this was due to the use of a simple checksum for error correction,[4]which is susceptible to missing errors in the data iftwobits are reversed, which can happen with a suitably short burst of noise. Additionally, similar damage to the header or checksum could lead to a failed transfer in cases where the data itself was undamaged.

Many authors introduced extensions to XMODEM to address these and other problems. Many asked for these extensions to be included as part of a new XMODEM standard. However, Ward Christensen refused to do this, as it was precisely thelackof these features, and the associated coding needed to support them, which led to XMODEM's widespread use. As he explained:

It was a quick hack I threw together, very unplanned (like everything I do), to satisfy a personal need to communicate with some other people. ONLY the fact that it was done in 8/77, and that I put it in the public domain immediately, made it become the standard that it is...
...People who suggest I make SIGNIFICANT changes to the protocol, such as 'full duplex', 'multiple outstanding blocks', 'multiple destinations', etc etc don't understand that the incredible simplicity of the protocol is one of the reasons it survived.

Batch transfers

[edit]

Another problem with XMODEM was that it required the transfer to be user-driven rather than automated.[4]Typically this meant the user would navigate on the sender's system to select the file they wanted, and then use a command to put that system into the "ready to send" mode. They would then trigger the transfer from their end using a command in their terminal emulator. If the user wanted to transfer another file, they would have to repeat this process again.

For automated transfers between two sites, a number of add-ons to the XMODEM protocol were implemented over time. These generally assumed the sender would continue sending file after file, with the receiver attempting to trigger the next file by sending aNAKas normal at the start of a transfer. When theNAKs timed out, it could be assumed that either there were no more files, or the link was broken anyway.

MODEM7

[edit]

MODEM7,also known asMODEM7 batchorBatch XMODEM,was the first known extension of the XMODEM protocol. A normal XMODEM file transfer starts with the receiver sending a singleNAKcharacter to the sender, which then starts sending a singleSOHto indicate the start of the data, and then packets of data.

MODEM7 changed this behavior only slightly, by sending the filename, in8.3 filenameformat, before the<SOH>.Each character was sent individually and had to be echoed by the receiver as a form of error correction. For a non-aware XMODEM implementation, this data would simply be ignored while it waited for theSOHto arrive, so the characters would not be echoed and the implementation could fall back to conventional XMODEM. With "aware" software, the file name could be used to save the file locally. Transfers could continue with another<NAK>,each file is saved under the name being sent to the receiver.

Jerry Pournellein 1983 described MODEM7 as "probably the most popular microcomputer communications program in existence".[7]

[edit]

MODEM7 sent the filename as normal text, which meant it could be corrupted by the same problems that XMODEM was attempting to avoid. This led to the introduction ofTeLinkbyTom Jennings,author of the originalFidoNetmailers.

TeLink avoided MODEM7's problems by standardizing a new "zero packet" containing information about the original file. This included the file's name, size, andtimestamp,which were placed in a regular 128 byte XMODEM block. Whereas a normal XMODEM transfer would start with the sender sending "block 1" with a<SOH>header, the TeLink header packet was labeled "block 0" and began with a<SYN>.The packet contained the file creation date and time, filename up to 16 characters, the file size as a 4-byte value, and the name of the program sending the file.[8]

A normal XMODEM implementation would simply discard the packet, the assumption being that the packet number had been corrupted. But this led to a potential time delay if the packet were discarded, as the sender could not tell whether the receiver had responded with a<NAK>because it did not understand the zero packet or because there was a transmission error. As TeLink was normally used only byFidoNetsoftware, which demanded it as part of the FidoNet standards, this did not present a real-world problem as both ends would always support this standard.[8]

The basic "block 0" system became a standard in the FidoNet community, and was re-used by a number of future protocols likeSEAlinkandYMODEM.

XMODEM-CRC

[edit]

The checksum used in the original protocol was extremely simple, and errors within the packet could go unnoticed. This led to the introduction ofXMODEM-CRCby John Byrns,[9][10]which used a 16-bitCRCin place of the 8-bit checksum.[4]CRCs encode not only the data in the packet, but its location as well, allowing it to notice the bit-replacement errors that a checksum would miss. Statistically, this made the chance of detecting an error less than 16 bits long 99.9969%, and even higher for longer error bit strings.[11]

XMODEM-CRC was designed to be backwardly compatible with XMODEM. To do this, the receiver sent aC(capital C) character instead of a<NAK>to start the transfer. If the sender responded by sending a packet, it was assumed the sender "knew" XMODEM-CRC, and the receiver continued sendingC's. If no packet was forthcoming, the receiver assumed the sender did not know the protocol, and sent an<NAK>to start a "traditional" XMODEM transfer.[11]

Unfortunately, this attempt at backward compatibility had a downside. Since it was possible that the initialCcharacter would be lost or corrupted, it could not be assumed that the receiver did not support XMODEM-CRC if the first attempt to trigger the transfer failed. The receiver thus tried to start the transfer three times withC,waiting three seconds between each attempt. This meant that if the user selected XMODEM-CRC while attempting to talk toanyXMODEM, as it was intended, there was a potential 10 second delay before the transfer started.[11]

To avoid the delay, the sender and receiver would generally list XMODEM-CRC separately from XMODEM, allowing the user to select "basic" XMODEM if the sender didn't explicitly list it. To the average user, XMODEM-CRC was essentially a "second protocol", and treated as such. This was not true of FidoNet mailers, however, where CRC was defined as the standard for all TeLink transfers.[8]

Higher throughput

[edit]

Since the XMODEM protocol required the sender to stop and wait for an<ACK>or<NAK>message from the receiver, it tended to be quite slow. In the era of 300 bit/s modems, the entire 132-byte packet required 4.4 seconds to send (132 bytes * (8 bits per byte + 1 start bit + 1 stop bit) / 300 bits per second). Assuming it takes 0.2 seconds for the receiver's<ACK>to make it back to the sender and the next packet to start hitting the receiver (0.1 seconds in both directions), the overall time for one packet would be 4.6 seconds, just over 92% channel efficiency.

The time for the<ACK>/<NAK>process was a fixed function of the underlying communications network, not of the performance of the modems. As modem speeds increased, the fixed delay grew in proportion to time needed to send the packet. For instance, at 2400 bit/s the packets took only 0.55 seconds to send, so if the<ACK>/<NAK>still took 0.2 seconds to make it back to the user's machine, the efficiency has fallen to 71%. At 9600 bit/s it is just under 40% – more time is spent waiting for the reply than is needed to send the packet.

A number of new versions of XMODEM were introduced in order to address these problems. Like earlier extensions, these versions tended to be backward-compatible with the original XMODEM, and like those extensions, this led to further fracturing of the XMODEM landscape in the user's terminal emulator. In the end, dozens of versions of XMODEM emerged.

WXModem

[edit]

WXmodem,short for "Windowed Xmodem", is a variant of XMODEM developed by Peter Boswell in 1986 for use on high-latency lines, specifically publicX.25systems andPC Pursuit.These have latencies that are far higher than theplain-old telephone service,which leads to very poor efficiency in XMODEM. Additionally, these networks often usecontrol charactersforflow controland other tasks, notablyXON/XOFFwill stop the data flow. Finally, in the case of an error that required a resend, it was sometimes difficult to know whether aSOHwas a packet indicator or more noise. WXmodem adapted XMODEM-CRC to address these problems.[11]

One change was to escape a small set of control characters:DLE,XON,XOFFandSYN.These were escaped by inserting aDLEin front of them, and then modifying the character by XORing it with 64. In theory, this meant the packet might be as long as 264 bytes if it originally consisted entirely of characters that required escaping. These inserted and modified characters are not part of the CRC calculation, they are removed and converted at the receiving end before calculating the CRC.[11]

Additionally, all packets were prefixed with aSYNcharacter, which meant the packet lead-in wasSYNSOH,reducing the chance that a straySOHwould be confused for a packet header in various error cases. An unescapedSYNfound in the body of a packet was an error.[11]

The major change in WXMODEM is the use of asliding windowto improve throughput on high-latency links. To do so, theACKmessages were followed by the packet number they wereACKing orNAKing. The receiver does not have toACKevery packet; it is allowed toACKany number between one and four packets. AnACKwith the fourth packet sequence number is assumed toACKall four packets. An error causes aNAKto be sent immediately, with all packets from that number and after being re-sent.[11]

Requiring anACKevery four packets makes the system work like it has a packet size of 512 bytes, but in the case of an error, typically only requires 128 bytes to be re-sent. Moreover, it reduces the amount of data flowing in the reverse direction by four times. This is of little interest in the typical modem'sfull duplexoperation, but is important inhalf duplexsystems likeTelebitmodels which have 19 kB speed in one direction and 75 bits/s in the return channel.

[edit]

One of the first third-party mailers for theFidoNetsystem wasSEAdog,written by the same author as the then-popular.arcdata compressionformat. SEAdog included a wide variety of improvements, includingSEAlink,an improved transfer protocol based on the same sliding window concept as WXmodem.[12]It differed from WXmodem mostly in details.

One difference is that SEAlink supported the "zero packet" introduced by TeLink, which is needed in order to operate as a drop-in replacement for TeLink in FidoNet systems where the header was expected.ACKs andNAKs were extended to three-byte "packets", starting with theACKorNAK,then the packet number, then the complement of the packet number, in the same fashion as the original XMODEM packet header. The window size was normally set to six packets.[12]

SEAlink was not expected to operate over X.25 or similar links, and thus did not perform escaping. This was also needed so the zero packet would work properly, as this standard used theSYNcharacter that WXmodem had re-purposed.[12]On top of these changes, it added an "Overdrive" mode for half duplex links. This suppressed ACKs for packets that were successfully transferred, in effect making the window of infinite size. This mode was indicated by a flag in the zero block.[12]

SEAlink later added a number of other improvements and was a useful general-purpose protocol. However, it remained rare outside the FidoNet world, and was rarely seen in user-facing software.

XMODEM-1K

[edit]

Another way to solve the throughput problem is to increase the packet size. Although the fundamental problem of latency remains, the speed at which it becomes a problem is higher. XMODEM-1K with 1024-byte packets[4]was the most popular such solution. In this case, the throughput at 9600 bit/s is 81%, given the same assumptions as above.

XMODEM-1K was an expanded version of XMODEM-CRC, which indicated the longer block size in thesenderby starting a packet with the<STX>character instead of<SOH>.Like other backward-compatible XMODEM extensions, it was intended that a -1K transfer could be started with any implementation of XMODEM on the other end, backing off features as required.

XMODEM-1K was originally one of the many improvements to XMODEM introduced byChuck Forsbergin hisYMODEMprotocol. Forsberg suggested that the various improvements were optional, expecting software authors to implement as many of them as possible. Instead, they generally implemented the bare minimum, leading to a profusion of semi-compatible implementations, and eventually, the splitting out of the name "YMODEM" into "XMODEM-1K" and a variety of YMODEMs. Thus XMODEM-1K actually post-dates YMODEM, but remained fairly common anyway.

NMODEM

[edit]

NMODEM is afile transferprotocol developed by L. B. Neal, who released it in 1990. NMODEM is essentially a version of XMODEM-CRC using larger 2048 byte blocks, as opposed to XMODEM's 128 byte blocks. NMODEM was implemented as a separate program, written in Turbo Pascal 5.0 for theIBM PC compatiblefamily of computers. The block size was chosen to match the common cluster size of theMS-DOSFATfile system on contemporaryhard drives,making buffering data for writing simpler.[13][14]

Protocol spoofing

[edit]

Over reliable (error-free) connections, it is possible to eliminate latency by "pre-acknowledging" the packets, a technique known more generally as "protocol spoofing".This is normally accomplished in the link hardware, notably Telebit modems. The modems, when the option was turned on, would notice the XMODEM header and immediately sent anACK.This would cause the sending XMODEM program to immediately send the next packet, making the transfer continuous, like an infinite-sized window. The modems also suppress theACKbeing sent by the XMODEM software at the far end, thereby freeing up the low-speed return channel.

The system can also be implemented in the protocol itself, and variations of XMODEM offered this feature. In these cases, the receiver would send theACKas soon as the packet started, in the same fashion as the Telebit modems. Since this feature is only an alteration of the receiver-side behavior, it does not require any changes in the protocol on the sender's side.YMODEMformalized this system.

This concept should be contrasted with the one used in SEAlink, which changes the behavior on both sides of the link. In SEAlink, the receiver stops sending theACKentirely, and the sender changes its behavior to not expect them.

See also

[edit]

References

[edit]

Citations

[edit]
  1. ^Telecommunications: XMODEM: A Standard Is Born,By Alfred Glossbrenner, PC Mag, 17 April 1984, Page 451-452,... but the protocol itself was long ago placed in the public domain by its creator, Chicagoan Ward Christensen. Since its introduction in 1978, XMODEM...
  2. ^In Focus: History lesson: Ward Christensen's free free-exchange software,By Michael Swaine, InfoWorld, 1 Nov 1982, Page 26
  3. ^Ward Christensen,"Memories",25 November 1992
  4. ^abcdefgMeeks, Brock (February 1989)."The ABCs of X-, Y-, and ZMODEM".BYTE.pp. 163–166.Retrieved2024-10-08.
  5. ^"The Virtual Community".
  6. ^Kline, David (July 1982)."Osborne—Behind Guerrilla Lines".Microcomputing.pp. 42–50.Retrieved15 February2016.
  7. ^Pournelle, Jerry (July 1983)."Interstellar Drives, Osborne Accessories, DEDICATE/32, and Death Valley".BYTE.p. 334.Retrieved28 August2016.
  8. ^abcBush 1995,p. G.1.
  9. ^Christensen 1982.
  10. ^Forsberg 1986.
  11. ^abcdefgBoswell 1986.
  12. ^abcdSEAlink 1987.
  13. ^"NMODEM 1.12 program and source code".Archived fromthe originalon 2011-08-07.Retrieved2020-02-13.
  14. ^"NMODEM documentation".Archived fromthe originalon 2016-04-09.Retrieved2020-02-13.

Bibliography

[edit]
[edit]