notes.txt
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:5k
源码类别:

CA认证

开发平台:

WINDOWS

  1. The contents of this file are subject to the Mozilla Public
  2. License Version 1.1 (the "License"); you may not use this file
  3. except in compliance with the License. You may obtain a copy of
  4. the License at http://www.mozilla.org/MPL/
  5. Software distributed under the License is distributed on an "AS
  6. IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  7. implied. See the License for the specific language governing
  8. rights and limitations under the License.
  9. The Original Code is the Netscape security libraries.
  10. The Initial Developer of the Original Code is Netscape
  11. Communications Corporation.  Portions created by Netscape are 
  12. Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  13. Rights Reserved.
  14. Contributor(s):
  15. Alternatively, the contents of this file may be used under the
  16. terms of the GNU General Public License Version 2 or later (the
  17. "GPL"), in which case the provisions of the GPL are applicable 
  18. instead of those above.  If you wish to allow use of your 
  19. version of this file only under the terms of the GPL and not to
  20. allow others to use your version of this file under the MPL,
  21. indicate your decision by deleting the provisions above and
  22. replace them with the notice and other provisions required by
  23. the GPL.  If you do not delete the provisions above, a recipient
  24. may use your version of this file under either the MPL or the
  25. GPL.
  26. SSL's Buffers: enumerated and explained.
  27. ---------------------------------------------------------------------------
  28. incoming:
  29. gs = ss->gather
  30. hs = ss->ssl3->hs
  31. gs->inbuf SSL3 only: incoming (encrypted) ssl records are placed here,
  32. and then decrypted (or copied) to gs->buf.
  33. gs->buf SSL2: incoming SSL records are put here, and then decrypted
  34. in place.
  35. SSL3: ssl3_HandleHandshake puts decrypted ssl records here.
  36. hs.msg_body (SSL3 only) When an incoming handshake message spans more 
  37. than one ssl record, the first part(s) of it are accumulated 
  38. here until it all arrives.
  39. hs.msgState (SSL3 only) an alternative set of pointers/lengths for gs->buf.
  40. Used only when a handleHandshake function returns SECWouldBlock.
  41. ssl3_HandleHandshake remembers how far it previously got by
  42. using these pointers instead of gs->buf when it is called 
  43. after a previous SECWouldBlock return.
  44. ---------------------------------------------------------------------------
  45. outgoing:
  46. sec = ss->sec
  47. ci  = ss->sec->ci /* connect info */
  48. ci->sendBuf Outgoing handshake messages are appended to this buffer.
  49. This buffer will then be sent as a single SSL record.
  50. sec->writeBuf outgoing ssl records are constructed here and encrypted in 
  51. place before being written or copied to pendingBuf.
  52. ss->pendingBuf contains outgoing ciphertext that was saved after a write
  53. attempt to the socket failed, e.g. EWouldBlock. 
  54. Generally empty with blocking sockets (should be no incomplete
  55. writes).
  56. ss->saveBuf Used only by socks code.  Intended to be used to buffer 
  57. outgoing data until a socks handshake completes.  However,
  58. this buffer is always empty.  There is no code to put 
  59. anything into it.
  60. ---------------------------------------------------------------------------
  61. SECWouldBlock means that the function cannot make progress because it is 
  62. waiting for some event OTHER THAN socket I/O completion (e.g. waiting for 
  63. user dialog to finish).  It is not the same as EWOULDBLOCK.
  64. ---------------------------------------------------------------------------
  65. Rank (order) of locks
  66. [ReadLock ->] [firstHandshake ->] [ssl3Handshake ->] recvbuf  -> "spec"
  67. [WriteLock->]/                                        xmitbuf /
  68. crypto and hash Data that must be protected while turning plaintext into
  69. ciphertext:
  70. SSL2:  (in ssl2_Send*)
  71. sec->hash*
  72. sec->hashcx  (ptr and data)
  73. sec->enc
  74. sec->writecx* (ptr and content)
  75. sec->sendSecret*(ptr and content)
  76. sec->sendSequence locked by xmitBufLock
  77. sec->blockSize
  78. sec->writeBuf*  (ptr & content) locked by xmitBufLock
  79. "in" locked by xmitBufLock
  80. SSl3: (in ssl3_SendPlainText)
  81. ss->ssl3     (the pointer)
  82. ss->ssl3->current_write*    (the pointer and the data in the spec
  83.      and any data referenced by the spec.
  84. ss->sec->isServer
  85. ss->sec->writebuf* (ptr & content) locked by xmitBufLock
  86. "buf"     locked by xmitBufLock
  87. crypto and hash data that must be protected while turning ciphertext into 
  88. plaintext:
  89. SSL2: (in ssl2_GatherData)
  90. gs->* (locked by recvBufLock )
  91. sec->dec
  92. sec->readcx
  93. sec->hash*  (ptr and data)
  94. sec->hashcx  (ptr and data)
  95. SSL3: (in ssl3_HandleRecord )
  96. ssl3->current_read* (the pointer and all data refernced)
  97. ss->sec->isServer
  98. Data that must be protected while being used by a "writer":
  99. ss->pendingBuf.*
  100. ss->saveBuf.* (which is dead)
  101. in ssl3_sendPlainText
  102. ss->ssl3->current_write-> (spec)
  103. ss->sec->writeBuf.*
  104. ss->sec->isServer 
  105. in SendBlock
  106. ss->sec->hash->length
  107. ss->sec->blockSize
  108. ss->sec->writeBuf.*
  109. ss->sec->sendSecret
  110. ss->sec->sendSequence
  111. ss->sec->writecx *
  112. ss->pendingBuf
  113. --------------------------------------------------------------------------
  114. Data variables (not const) protected by the "sslGlobalDataLock".  
  115. Note, this really should be a reader/writer lock.
  116. allowedByPolicy sslcon.c
  117. maybeAllowedByPolicy sslcon.c
  118. chosenPreference sslcon.c
  119. policyWasSet sslcon.c
  120. cipherSuites[]  ssl3con.c