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

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