home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / protocol / tagged3.txt < prev    next >
Text File  |  2020-01-01  |  10KB  |  194 lines

  1. Kermit programs presently differentiate between text and binary files via
  2. the SET FILE TYPE command.  When the file type is TEXT, the Kermit program
  3. that is sending the file converts the file's record format and character set
  4. from its local form to a standard form, and the receiving Kermit program
  5. converts from the standard form into its own local record format and character
  6. set.  When the file type is BINARY, the file is sent as-is, byte for byte.
  7.  
  8. These two ways of handling files are sufficient in many cases, but fall short
  9. when one or both computers has a complex file system, such as the Macintosh or
  10. DEC operating systems like VAX/VMS.  The Kermit protocol includes a mechanism
  11. for transmitting a file's attributes in a generic way, but these attributes
  12. are of little use when the file is being received by a computer with a simple
  13. file system, such as UNIX or MS-DOS, that can't do anything with them.  And
  14. they are not sufficient to convey every conceivable bit of information about
  15. about every kind of file on every kind of computer.
  16.  
  17. To allow a complicated file to be transferred, a new file type is proposed:
  18.  
  19.   SET FILE TYPE LABELED
  20.  
  21. Notice the spelling of "LABELED" (only one L between the E's).  When this
  22. setting is in effect, the sending Kermit sends not only the file's data, but
  23. also system-dependent structural information about the file.  Since this
  24. information can be quite lengthy, it is sent as if it were file data, in data
  25. packets preceding the actual file data, rather than in attribute packets.  All
  26. of this information is sent in binary mode (no conversions).
  27.  
  28. The receiver of the file can elect whether to act upon the label information,
  29. or simply store it.  Kermit programs for simple file systems need no changes,
  30. and can still act as repositories for labeled files, to be sent back later to
  31. the system of origin.  On the other hand, labeled file transfers between like
  32. systems (e.g. two VAX/VMS computers) will result in the reception of a file
  33. with all the correct characteristics.
  34.  
  35. There are two possible modes of operation.  The first (and safer) mode
  36. requires human intervention on a per-file basis, but an automatic mode is also
  37. possible.
  38.  
  39. DEFINITIONS
  40.  
  41. A "bare" file is a file stored on disk that does NOT contain, as part of
  42. its contents, Kermit-constructed label information.
  43.  
  44. A "labeled" file is a file stored on disk whose contents include
  45. Kermit-constructed label information.
  46.  
  47. FORMAT OF A LABELED FILE
  48.  
  49. This description applies to a labeled file as stored on disk and to a bare
  50. file that has label information added to it by a sending Kermit.
  51.  
  52.   BANNER  The literal text string "KERMIT LABELED FILE:", just the twenty
  53.           characters within the quotes including the trailing colon, in 7-bit
  54.           ASCII.  ASCII is used even on non-ASCII systems (like IBM mainframes
  55.           with EBCDIC).
  56.  
  57.   IDLEN   A 2-byte ASCII decimal numeric length field, with leading zeros if
  58.           necessary, for example "02".
  59.  
  60.   SYSID   The system ID, one of the codes listed on pp.275-278 of the Kermit
  61.       book.  This is a string of 1 to 99 ASCII characters (but typically
  62.           1-3 characters), for example "D7" for VAX/VMS.  The length of the
  63.           SYSID field is given by the preceding field (IDLEN).
  64.  
  65.   LBLEN   A 2-byte ASCII numeric length field, with leading zeros if
  66.           necessary, for example "00", "02", "09", "99".
  67.  
  68.   LABEL   A label field, 1 to 99 ASCII characters.  The length is given by
  69.           the preceding length field (LBLEN).  The LABEL field contains the
  70.           name of the file descriptor data that follows.
  71.  
  72.   VALEN   An 8-byte ASCII numeric length field, with leading zeros if 
  73.           necessary, for example "00000512".  Zero ("00000000") is a
  74.           permissible length for a value.
  75.  
  76.   VALUE   The value associated with the label, 0 to 99999999 bytes of
  77.           information about the file in system-dependent format.  The labels
  78.           and the format and layout of the associated values for each system
  79.           type should be clearly defined and documented.
  80.  
  81.      The sequence (LBLEN, LABEL, VALEN, VALUE) may be repeated for as many
  82.      labeled values are needed (if VALEN is zero, then VALUE is omitted).
  83.  
  84.   CONTENT The file's contents, encoded in whatever form that, in combination
  85.           with the labeled values, allows for its eventual reconstruction in
  86.           its original form.
  87.  
  88. REQUIRED LABELS
  89.  
  90. The following labels (composed of ASCII uppercase letters) are reserved, and
  91. are required in every labeled file:
  92.  
  93.   VERS    The operating system version, e.g. "5.3-1"
  94.  
  95.   DATA    This is the final label.  It has a zero-length value, which is
  96.           followed immediately by the file's contents, as defined above.
  97.           See example below.
  98.  
  99. EFFECTS ON THE KERMIT PROTOCOL
  100.  
  101. When SET FILE TYPE LABELED is in effect, the sending Kermit should include
  102. the file type (") attribute, specifying a type of binary (B), if attribute
  103. packets have been negotiated.  Otherwise, there is no effect on the protocol
  104. at all.  In particular, a label-wise Kermit program can interoperate perfectly
  105. well with another Kermit program that is completely ignorant of labeling, in
  106. which case the latter program simply "archives" the file, labels and all.
  107.  
  108. This proposal does not rule out the system-independent type of file archiving,
  109. based on file attribute packets, that is described in the Kermit book.
  110. However, if the "system-dependent" attributes suggested by this proposal can
  111. be worked out in a sufficiently generic fashion, this may lead to a more
  112. effective type of transmission of complex files between unlike systems that
  113. share similar types of file characteristics (block size, record format,
  114. character set, carriage control, etc).
  115.  
  116. On the other hand, for the first pass at an implementation (for VMS), it might
  117. make more sense to simply have a single system-dependent label, like "FAB",
  118. whose value is simply the File Access Block, and perhaps another one like
  119. "ACL" for its Access Control List.  The two approaches do not rule each other
  120. out.
  121.  
  122. USER INTERFACE
  123.  
  124. When SENDING a file, the user should first determine whether it is a bare file
  125. or a labeled file.  This can be done by visual inspection (looking at the
  126. first 20 bytes), or from memory (e.g. because all labeled files have a
  127. particular filetype, or are kept together in a certain directory).  Then:
  128.  
  129.   (a) If it is a bare file, use SET FILE TYPE LABELED if you want to send 
  130.       label information too.
  131.  
  132.   (b) If it is a labeled file, use SET FILE TYPE BINARY.
  133.  
  134. When receiving a file, use SET FILE TYPE LABELED if you want labels in the
  135. incoming file to be interpreted and applied, and:
  136.  
  137.  (a) The other Kermit is sending a bare file from a like system using SET 
  138.      FILE TYPE LABELED, or:
  139.  
  140.  (b) The other Kermit is sending a labeled file, of the receiving system's
  141.      system type, from any kind of system, without SET FILE TYPE LABELED.
  142.  
  143. The receiving Kermit program that has been given a SET FILE TYPE LABELED
  144. command must inspect the incoming data.  The first 30-36 bytes of the first
  145. packet contain the BANNER, IDLEN, SYSID, and the first LBLEN, and LABEL (which
  146. should be "04VERS").  If these five items are in correct format, and the SYSID
  147. matches the program's own, then the program will accept the file in labeled
  148. mode.  Otherwise, it will treat it as a binary file and store all the data,
  149. including BANNER, SYSID, LABELs, VALUEs, and all length fields.
  150.  
  151. If a receiving Kermit program has accepted the file in labeled mode, but then
  152. encounters an unknown label or other inconsistency in the labeled file format,
  153. it must interrupt the file transfer (by putting an X in the data field of the
  154. first available ACK) and discard the file.  This is because it cannot be
  155. expected to back up and undo whatever label interpretation it has already done.
  156.  
  157. It is also conceivable that "similar" systems -- such as the DEC operating
  158. systems VMS and RSX-11 -- might be able to honor each other's labels.  This
  159. eventuality should be allowed for, possibly with SET commands.
  160.  
  161. At the discretion of the programmer, a command such as SET FILE
  162. LABEL-DETECTION { AUTOMATIC, MANUAL } could be installed.  If so, the default
  163. must be MANUAL, that is, processing of labeled files occurs only if the user
  164. asks for it explicitly.  For an arriving file, AUTOMATIC mode would detect the
  165. BANNER, SYSID, and first LABEL and go into action as if the user had SET FILE
  166. TYPE LABELED.  When sending a file, the program would avoid adding surrounding
  167. label information if the user had already SET FILE TYPE LABELED.  This sort of
  168. thing is obviously dangerous, and users should be cautioned about it.
  169.  
  170. EXAMPLE
  171.  
  172. A hypothetical example for VMS (ignore the indentation and line breaks);
  173. the length fields are marked with L's:
  174.  
  175.                       LL  LL    LLLLLLLL     LL   LLLLLLLL
  176.   KERMIT LABELED FILE:02D704VERS000000055.3-103FAB00000512<512 bytes here>
  177.   03ACL00000723<723 bytes here>02DATA00000000<file's contents here>
  178.   LL   LLLLLLLL                LL    LLLLLLLL
  179.  
  180. Note: FAB and ACL are not necessarily real labels.
  181.  
  182. POSTPROCESSING
  183.  
  184. Separate programs should be provided to translate a labeled file into a real
  185. file, to be used in case the user forgot to SET FILE TYPE LABELED, or the file
  186. was deposited by means other than Kermit.  Such a program might have two
  187. options (or come in two forms): interpret the labels, and simply strip the
  188. labels.
  189.  
  190. ACKS
  191.  
  192. Thanks to Terry Kennedy and Frank da Cruz for suggesting this idea, and to Joe
  193. Doupnik, John Chandler, and Paul Placeway for many valuable suggestions.
  194.