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

Unified Diff: net/socket/tcp_client_socket_win.cc

Issue 660194: Return a soft error when we detect the 3rd party problem causing bug 27870. (Closed)
Patch Set: Make excessively large return values return a soft error Created 10 years, 10 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
« no previous file with comments | « net/http/http_stream_parser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/tcp_client_socket_win.cc
diff --git a/net/socket/tcp_client_socket_win.cc b/net/socket/tcp_client_socket_win.cc
index a2159ce7122be6d1517c582b697516e1c6d9c4d6..1f13d9f0f2af7e224affdef1537a7b1700508000 100644
--- a/net/socket/tcp_client_socket_win.cc
+++ b/net/socket/tcp_client_socket_win.cc
@@ -147,8 +147,7 @@ class TCPClientSocketWin::Core : public base::RefCounted<Core> {
WSABUF write_buffer_;
scoped_refptr<IOBuffer> read_iobuffer_;
scoped_refptr<IOBuffer> write_iobuffer_;
- // TODO(vandebo) remove when bug 27870 is resolved.
- size_t write_buffer_length_;
+ int write_buffer_length_;
// Throttle the read size based on our current slow start state.
// Returns the throttled read size.
@@ -505,7 +504,7 @@ int TCPClientSocketWin::Write(IOBuffer* buf,
core_->write_buffer_.len = buf_len;
core_->write_buffer_.buf = buf->data();
- core_->write_buffer_length_ = static_cast<size_t>(buf_len);
+ core_->write_buffer_length_ = buf_len;
TRACE_EVENT_BEGIN("socket.write", this, "");
// TODO(wtc): Remove the CHECK after enough testing.
@@ -516,10 +515,18 @@ int TCPClientSocketWin::Write(IOBuffer* buf,
&core_->write_overlapped_, NULL);
if (rv == 0) {
if (ResetEventIfSignaled(core_->write_overlapped_.hEvent)) {
- TRACE_EVENT_END("socket.write", this, StringPrintf("%d bytes", num));
+ rv = static_cast<int>(num);
+ if (rv > buf_len || rv < 0) {
+ // It seems that some winsock interceptors report that more was written
+ // than was available. Treat this as an error. http://crbug.com/27870
+ LOG(ERROR) << "Detected broken LSP: Asked to write " << buf_len
+ << " bytes, but " << rv << " bytes reported.";
+ return ERR_WINSOCK_UNEXPECTED_WRITTEN_BYTES;
+ }
+ TRACE_EVENT_END("socket.write", this, StringPrintf("%d bytes", rv));
static StatsCounter write_bytes("tcp.write_bytes");
- write_bytes.Add(num);
- return static_cast<int>(num);
+ write_bytes.Add(rv);
+ return rv;
}
} else {
int os_error = WSAGetLastError();
@@ -696,12 +703,22 @@ void TCPClientSocketWin::DidCompleteWrite() {
WSAResetEvent(core_->write_overlapped_.hEvent);
TRACE_EVENT_END("socket.write", this, StringPrintf("%d bytes", num_bytes));
waiting_write_ = false;
- if (ok) {
- CHECK(num_bytes <= core_->write_buffer_length_) <<
- core_->write_buffer_length_;
+ int rv;
+ if (!ok) {
+ rv = MapWinsockError(WSAGetLastError());
+ } else {
+ rv = static_cast<int>(num_bytes);
+ if (rv > core_->write_buffer_length_ || rv < 0) {
+ // It seems that some winsock interceptors report that more was written
+ // than was available. Treat this as an error. http://crbug.com/27870
+ LOG(ERROR) << "Detected broken LSP: Asked to write "
+ << core_->write_buffer_length_ << " bytes, but " << rv
+ << " bytes reported.";
+ rv = ERR_WINSOCK_UNEXPECTED_WRITTEN_BYTES;
+ }
}
core_->write_iobuffer_ = NULL;
- DoWriteCallback(ok ? num_bytes : MapWinsockError(WSAGetLastError()));
+ DoWriteCallback(rv);
}
} // namespace net
« no previous file with comments | « net/http/http_stream_parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698