Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1651)

Unified Diff: net/socket/ssl_server_socket_nss.cc

Issue 7399025: Fix instability in SSL client/server sockets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update FakeSocketTest. Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/socket/ssl_server_socket_nss.cc
diff --git a/net/socket/ssl_server_socket_nss.cc b/net/socket/ssl_server_socket_nss.cc
index bdcff2c1002aab343b04c8327ea970b7ec844524..00054ef56085f252738a6046b948edae55a94574 100644
--- a/net/socket/ssl_server_socket_nss.cc
+++ b/net/socket/ssl_server_socket_nss.cc
@@ -528,14 +528,25 @@ void SSLServerSocketNSS::BufferRecvComplete(int result) {
OnRecvComplete(result);
}
-// Do network I/O between the given buffer and the given socket.
-// Return true if some I/O performed, false otherwise (error or ERR_IO_PENDING)
+// Do as much as possible network I/O between the buffer and the
wtc 2011/07/21 00:27:12 as much as possible network I/O => as much network
Sergey Ulanov 2011/07/21 00:51:15 Done.
+// transport socket. Return true if some I/O performed, false
+// otherwise (error or ERR_IO_PENDING).
bool SSLServerSocketNSS::DoTransportIO() {
bool network_moved = false;
if (nss_bufs_ != NULL) {
- int nsent = BufferSend();
- int nreceived = BufferRecv();
- network_moved = (nsent > 0 || nreceived >= 0);
+ int rv;
+ // Read and write as much data as we can. Loops are neccessary
+ // because Read() and Write() may return synchronously.
+ do {
+ rv = BufferSend();
+ if (rv > 0)
+ network_moved = true;
+ } while (rv > 0);
wtc 2011/07/21 00:27:12 IMPORTANT: Unless this BufferSend loop empties the
Sergey Ulanov 2011/07/21 00:33:28 This loop can exit in 3 cases: 1. There is no pen
wtc 2011/07/21 00:56:45 It is case 2 that I am worried about. The caller
Sergey Ulanov 2011/07/21 01:09:51 Yes, write callback doesn't mean that the data was
+ do {
+ rv = BufferRecv();
+ if (rv >= 0)
+ network_moved = true;
+ } while (rv > 0);
wtc 2011/07/21 00:27:12 The loop around BufferRecv should not be necessary
Sergey Ulanov 2011/07/21 00:51:15 Yes, agree, this loop isn't neccessary, but it may
}
return network_moved;
}

Powered by Google App Engine
This is Rietveld 408576698