-
Bug
-
Resolution: Fixed
-
P2
-
orion3, 1.4.2, 5.0
-
beta
-
generic, x86, sparc
-
generic, solaris_9, windows_2000
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2126660 | 5.0u7 | Xuelei Fan | P2 | Resolved | Fixed | b01 |
JDK-2131640 | 1.4.2_11 | Sean Coffey | P2 | Resolved | Fixed | b02 |
Typically, we will receive all TCP packets that make up an SSL record in quick succession. This makes it very unlikely that a timeout occurs in the middle of reading a record. Consequently, timeouts will work in those cases. However, there may be situations where this does not hold, which would make applications that use socket timeouts with SSL sockets unreliable.
Still, I am filing this as a low priority bug because timeouts are typically used for two reasons:
. simulate non-blocking I/O by setting the timeout to a low value (1 ms). This is vastly less efficient than the real non-blocking I/O functionality offered by the NIO APIs, which will be supported with JSSE in Tiger (see 4495742). Therefore, this pattern should no longer be used.
. detect "dead" peers. In many cases, the socket will simply be closed if a dead peer is detected. As such, it does not matter if further reads from the socket would fail.
- backported by
-
JDK-2126660 Socket timeouts for SSLSockets causes data corruption
-
- Resolved
-
-
JDK-2131640 Socket timeouts for SSLSockets causes data corruption
-
- Resolved
-
- duplicates
-
JDK-6270821 SSLSocket - sockettimeout corrupts data
-
- Closed
-
-
JDK-5078467 java.net.SocketTimeoutException may consume data incorrectly.
-
- Closed
-
-
JDK-6213649 SocketTimeoutException corrupts SSLSocket
-
- Closed
-
- relates to
-
JDK-4495997 SocketTimeoutException probably doesn't mean much in JSSE.
-
- Closed
-
-
JDK-4495742 Add non-blocking SSL/TLS functionality, usable with any I/O abstraction
-
- Resolved
-