release4.ms 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. .TL
  2. Plan 9 From Bell Labs
  3. .br
  4. Fourth Release Notes
  5. .br
  6. April, 2002
  7. .br
  8. updated June, 2003
  9. .LP
  10. .sp -.4i
  11. .nf
  12. .ce 1000
  13. Copyright © 2002-2003 Lucent Technologies Inc.
  14. All Rights Reserved
  15. .sp .2i
  16. .fi
  17. .LP
  18. The fourth release of the Plan 9 operating system from Bell Labs
  19. packages a major overhaul of the system at every level.
  20. From the underlying file system protocol, 9P, through the kernel,
  21. libraries, and applications, almost everything has been modified
  22. and, in many cases, redesigned or rewritten.
  23. .LP
  24. The most significant change is that 9P has been redesigned to address
  25. a number of shortcomings, most important, its previous inability to handle long
  26. file names.
  27. Unfortunately, squeezing long names onto the disks of existing
  28. file servers is a messy business that we're still grappling with,
  29. so at the moment
  30. .I fs (4)
  31. and
  32. .I kfs (4)
  33. can't yet handle long names,
  34. although they do talk the new protocol.
  35. (In fact, they
  36. talk both old and new, as required, to ease transition.)
  37. In the meantime, there is a workaround \(em
  38. .I lnfs (4)
  39. \(em
  40. and many of the other file servers such as
  41. .I ramfs (4)
  42. and
  43. .I u9fs (4)
  44. work just fine with long names.
  45. It's only the old disk-resident file servers
  46. that don't.
  47. The new file server
  48. .I fossil (4)
  49. handles supports long names and many other features.
  50. The older servers are now deprecated.
  51. .LP
  52. The following is a partial list of the major changes throughout the system.
  53. .de Xx
  54. .LP
  55. \(bu
  56. ..
  57. .Xx
  58. The file system protocol, 9P, has been reworked.
  59. It now has variable-length names, so it can handle long names
  60. but also is more compact when handling short ones.
  61. It uses a different format that is easily parsed, eliminating the need for the old
  62. .CW aux/fcall
  63. utility,
  64. and delegates its authentication duties to an external agent,
  65. .CW factotum .
  66. .Xx
  67. Security has been a focus of attention.
  68. A new security agent,
  69. .I factotum (4),
  70. manages passwords and other secrets and, coupled with a new secure file store
  71. .I secstore (8),
  72. enables secure single sign-on.
  73. .Xx
  74. .CW Cpu ,
  75. .CW import ,
  76. and
  77. .CW exportfs
  78. all encrypt their connections now, and since they use the new 9P they
  79. also use new network port numbers.
  80. A new service
  81. .I aan (1)
  82. is used by
  83. .CW import
  84. to make its network connections more reliable in the face of network outages.
  85. The old ports still work, through the agency of a protocol conversion filter
  86. .I srvold9p (4).
  87. .Xx
  88. We are phasing out the IL protocol since it doesn't handle long-distance connections
  89. well (and long-distance networks don't handle it well, either).
  90. IL is still used by
  91. .I fs (4)
  92. but TCP has become the standard protocol for all other services.
  93. .Xx
  94. The software for the new network-resident secure block store,
  95. .I venti (8),
  96. is included with this distribution.
  97. The new
  98. file server
  99. .I fossil (4)
  100. uses Venti rather than a WORM as its permanent block repository/backup medium.
  101. It is still being developed, but is mature enough that a handful of users
  102. throughout the world are using it as their primary file server.
  103. .Xx
  104. The need to handle longer file names triggered a rethinking of the way the
  105. system handles strings in general.
  106. The kernel is now more explanatory when it gives an error message and
  107. more consistent in how it handles strings such as commands to devices.
  108. The interfaces to many of the system calls, such as
  109. .I errstr (2)
  110. and
  111. .I wait (2)
  112. all had to change as a result, as did the library interface to read directories,
  113. .I stat (2)
  114. and its relatives.
  115. .Xx
  116. The formatted I/O package described in
  117. .I print (2)
  118. and
  119. .I fmtinstall (2)
  120. has been redesigned.
  121. Although the basic interface is unchanged, it now runs without locks and
  122. has an internal buffer management mechanism that means
  123. .CW print
  124. no longer needs a large on-stack buffer.
  125. The interface for writing custom print verbs and custom formatted I/O routines
  126. has also been greatly improved.
  127. .Xx
  128. The thread library
  129. .I thread (2)
  130. has been completely rewritten.
  131. The main visible change is that, coupled with the changes to printing,
  132. .CW threadprint
  133. is gone; you can just use
  134. .CW print
  135. or
  136. .CW fprint
  137. at will.
  138. .Xx
  139. Support for electronic mail has been extended in many ways and now includes
  140. some new spam filtering tools,
  141. much better (and more standard) handling of MIME messages,
  142. the ability to render incoming HTML mail,
  143. and much more.
  144. .LP
  145. There are so many changes to the programming interfaces of the system
  146. that they are described in a separate document, entitled
  147. .I
  148. Changes to the Programming Environment in the Fourth Release of Plan 9.
  149. .R
  150. Please read it before you start updating your own software to run under the new system.
  151. .LP
  152. The installation method has also changed and we're moving towards a new
  153. method for maintaining updates.
  154. The Plan 9 Wiki
  155. .CW http://plan9.bell-labs.com/wiki/plan9 ) (
  156. and Usenet group
  157. .CW comp.os.plan9 ) (
  158. are the places to visit to learn more and stay current.
  159. In particular, the installation notes are now maintained in the Wiki;
  160. the traditional papers on installation and start-up are gone.
  161. .LP
  162. There's lots more new stuff.
  163. If you have problems, mail
  164. .CW 9trouble@plan9.bell-labs.com
  165. or, better, check the wiki
  166. .CW http://plan9.bell-labs.com/wiki/plan9
  167. or ask the Usenet newsgroup
  168. .CW comp.os.plan9 .
  169. .LP
  170. Good Luck!