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

Unified Diff: net/spdy/bidirectional_stream_spdy_impl.cc

Issue 2032733002: Do not crash on null stream in writing to bidirectional streams (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix_crash
Patch Set: Address Andrei's comments Created 4 years, 6 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/spdy/bidirectional_stream_spdy_impl.h ('k') | net/spdy/bidirectional_stream_spdy_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/bidirectional_stream_spdy_impl.cc
diff --git a/net/spdy/bidirectional_stream_spdy_impl.cc b/net/spdy/bidirectional_stream_spdy_impl.cc
index a8531d961a5f1ebeb116d2e6554c3de3c435191b..94d478c2e8049fc61918882ba43118ec12c9bfd7 100644
--- a/net/spdy/bidirectional_stream_spdy_impl.cc
+++ b/net/spdy/bidirectional_stream_spdy_impl.cc
@@ -60,7 +60,10 @@ void BidirectionalStreamSpdyImpl::Start(
timer_ = std::move(timer);
if (!spdy_session_) {
- delegate_->OnFailed(ERR_CONNECTION_CLOSED);
+ base::ThreadTaskRunnerHandle::Get()->PostTask(
+ FROM_HERE,
+ base::Bind(&BidirectionalStreamSpdyImpl::NotifyError,
+ weak_factory_.GetWeakPtr(), ERR_CONNECTION_CLOSED));
return;
}
@@ -104,9 +107,17 @@ int BidirectionalStreamSpdyImpl::ReadData(IOBuffer* buf, int buf_len) {
void BidirectionalStreamSpdyImpl::SendData(const scoped_refptr<IOBuffer>& data,
int length,
bool end_stream) {
- DCHECK(!stream_closed_);
- DCHECK(stream_);
+ DCHECK(length > 0 || (length == 0 && end_stream));
+
+ if (!stream_) {
+ LOG(ERROR) << "Trying to send data after stream has been destroyed.";
+ base::ThreadTaskRunnerHandle::Get()->PostTask(
+ FROM_HERE, base::Bind(&BidirectionalStreamSpdyImpl::NotifyError,
+ weak_factory_.GetWeakPtr(), ERR_UNEXPECTED));
+ return;
+ }
+ DCHECK(!stream_closed_);
stream_->SendData(data.get(), length,
end_stream ? NO_MORE_DATA_TO_SEND : MORE_DATA_TO_SEND);
}
@@ -115,10 +126,17 @@ void BidirectionalStreamSpdyImpl::SendvData(
const std::vector<scoped_refptr<IOBuffer>>& buffers,
const std::vector<int>& lengths,
bool end_stream) {
- DCHECK(!stream_closed_);
- DCHECK(stream_);
DCHECK_EQ(buffers.size(), lengths.size());
+ if (!stream_) {
+ LOG(ERROR) << "Trying to send data after stream has been destroyed.";
+ base::ThreadTaskRunnerHandle::Get()->PostTask(
+ FROM_HERE, base::Bind(&BidirectionalStreamSpdyImpl::NotifyError,
+ weak_factory_.GetWeakPtr(), ERR_UNEXPECTED));
+ return;
+ }
+
+ DCHECK(!stream_closed_);
int total_len = 0;
for (int len : lengths) {
total_len += len;
@@ -142,6 +160,9 @@ void BidirectionalStreamSpdyImpl::Cancel() {
// Cancels the stream and detaches the delegate so it doesn't get called back.
stream_->DetachDelegate();
DCHECK(!stream_);
kapishnikov 2016/06/03 22:46:41 nit: This DCheck will always succeed and can be re
xunjieli 2016/06/04 01:31:05 Done.
+ delegate_ = nullptr;
kapishnikov 2016/06/03 22:46:41 Should go ahead of "if (!stream_)".
xunjieli 2016/06/04 01:31:05 Done.
+ // Cancel any pending callback.
+ weak_factory_.InvalidateWeakPtrs();
}
NextProto BidirectionalStreamSpdyImpl::GetProtocol() const {
@@ -172,14 +193,17 @@ void BidirectionalStreamSpdyImpl::OnRequestHeadersSent() {
DCHECK(stream_);
negotiated_protocol_ = stream_->GetProtocol();
- delegate_->OnStreamReady(/*request_headers_sent=*/true);
+ if (delegate_)
+ delegate_->OnStreamReady(/*request_headers_sent=*/true);
}
SpdyResponseHeadersStatus BidirectionalStreamSpdyImpl::OnResponseHeadersUpdated(
const SpdyHeaderBlock& response_headers) {
DCHECK(stream_);
- delegate_->OnHeadersReceived(response_headers);
+ if (delegate_)
+ delegate_->OnHeadersReceived(response_headers);
+
return RESPONSE_HEADERS_ARE_COMPLETE;
}
@@ -208,14 +232,16 @@ void BidirectionalStreamSpdyImpl::OnDataSent() {
DCHECK(!stream_closed_);
pending_combined_buffer_ = nullptr;
- delegate_->OnDataSent();
+ if (delegate_)
+ delegate_->OnDataSent();
}
void BidirectionalStreamSpdyImpl::OnTrailers(const SpdyHeaderBlock& trailers) {
DCHECK(stream_);
DCHECK(!stream_closed_);
- delegate_->OnTrailersReceived(trailers);
+ if (delegate_)
+ delegate_->OnTrailersReceived(trailers);
}
void BidirectionalStreamSpdyImpl::OnClose(int status) {
@@ -225,12 +251,12 @@ void BidirectionalStreamSpdyImpl::OnClose(int status) {
closed_stream_status_ = status;
closed_stream_received_bytes_ = stream_->raw_received_bytes();
closed_stream_sent_bytes_ = stream_->raw_sent_bytes();
- stream_.reset();
if (status != OK) {
- delegate_->OnFailed(status);
+ NotifyError(status);
return;
}
+ stream_.reset();
// Complete any remaining read, as all data has been buffered.
// If user has not called ReadData (i.e |read_buffer_| is nullptr), this will
// do nothing.
@@ -267,7 +293,18 @@ void BidirectionalStreamSpdyImpl::OnStreamInitialized(int rv) {
return;
}
}
- delegate_->OnFailed(rv);
+ NotifyError(rv);
+}
+
+void BidirectionalStreamSpdyImpl::NotifyError(int rv) {
kapishnikov 2016/06/03 22:46:41 Should we call "stream_->DetachDelegate()" here? T
xunjieli 2016/06/04 01:31:05 Done, I added a if-conditional though. Since Detac
+ stream_.reset();
+ if (!delegate_)
+ return;
+ BidirectionalStreamImpl::Delegate* delegate = delegate_;
+ delegate_ = nullptr;
+ // Cancel any pending callback.
+ weak_factory_.InvalidateWeakPtrs();
+ delegate->OnFailed(rv);
}
void BidirectionalStreamSpdyImpl::ScheduleBufferedRead() {
@@ -303,7 +340,8 @@ void BidirectionalStreamSpdyImpl::DoBufferedRead() {
DCHECK_NE(ERR_IO_PENDING, rv);
read_buffer_ = nullptr;
read_buffer_len_ = 0;
- delegate_->OnDataRead(rv);
+ if (delegate_)
+ delegate_->OnDataRead(rv);
}
}
« no previous file with comments | « net/spdy/bidirectional_stream_spdy_impl.h ('k') | net/spdy/bidirectional_stream_spdy_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698