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

Unified Diff: net/base/file_stream_context_win.cc

Issue 920123002: Fix a crash in the FileStream::Context::Read code path where we were invoking a NULL callback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 5 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/base/file_stream_context.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/file_stream_context_win.cc
diff --git a/net/base/file_stream_context_win.cc b/net/base/file_stream_context_win.cc
index 5ffbde72388293a339e46430846f4be6df62695c..a41a74c431e672539494390947e8444574f835d7 100644
--- a/net/base/file_stream_context_win.cc
+++ b/net/base/file_stream_context_win.cc
@@ -81,6 +81,7 @@ int FileStream::Context::Read(IOBuffer* buf,
IOCompletionIsPending(callback, buf);
async_read_initiated_ = true;
+ result_ = 0;
task_runner_->PostTask(
FROM_HERE,
@@ -96,6 +97,8 @@ int FileStream::Context::Write(IOBuffer* buf,
const CompletionCallback& callback) {
CHECK(!async_in_progress_);
+ result_ = 0;
+
DWORD bytes_written = 0;
if (!WriteFile(file_.GetPlatformFile(), buf->data(), buf_len,
&bytes_written, &io_context_.overlapped)) {
@@ -150,10 +153,12 @@ void FileStream::Context::OnIOCompleted(
async_in_progress_ = false;
if (orphaned_) {
- async_in_progress_ = false;
- callback_.Reset();
- in_flight_buf_ = NULL;
- CloseAndDelete();
+ io_complete_for_read_received_ = true;
+ // If we are called due to a pending read and the asynchronous read task
+ // has not completed we have to keep the context around until it completes.
+ if (async_read_initiated_ && !async_read_completed_)
+ return;
+ DeleteOrphanedContext();
return;
}
@@ -163,6 +168,8 @@ void FileStream::Context::OnIOCompleted(
IOResult error_result = IOResult::FromOSError(error);
result_ = static_cast<int>(error_result.result);
} else {
+ if (result_)
+ DCHECK_EQ(result_, static_cast<int>(bytes_read));
result_ = bytes_read;
IncrementOffset(&io_context_.overlapped, bytes_read);
}
@@ -192,6 +199,13 @@ void FileStream::Context::InvokeUserCallback() {
temp_callback.Run(result_);
}
+void FileStream::Context::DeleteOrphanedContext() {
+ async_in_progress_ = false;
+ callback_.Reset();
+ in_flight_buf_ = NULL;
+ CloseAndDelete();
+}
+
// static
void FileStream::Context::ReadAsync(
FileStream::Context* context,
@@ -203,29 +217,34 @@ void FileStream::Context::ReadAsync(
DWORD bytes_read = 0;
BOOL ret = ::ReadFile(file, buf->data(), buf_len, &bytes_read, overlapped);
origin_thread_loop->PostTask(
- FROM_HERE, base::Bind(&FileStream::Context::ReadAsyncResult,
- base::Unretained(context), ret ? bytes_read : 0,
- ret ? 0 : ::GetLastError()));
+ FROM_HERE,
+ base::Bind(&FileStream::Context::ReadAsyncResult,
+ base::Unretained(context), ret, bytes_read, ::GetLastError()));
}
-void FileStream::Context::ReadAsyncResult(DWORD bytes_read, DWORD os_error) {
- if (!os_error)
+void FileStream::Context::ReadAsyncResult(BOOL read_file_ret,
+ DWORD bytes_read,
+ DWORD os_error) {
+ // If the context is orphaned and we already received the io completion
+ // notification then we should delete the context and get out.
+ if (orphaned_ && io_complete_for_read_received_) {
+ DeleteOrphanedContext();
+ return;
+ }
+
+ async_read_completed_ = true;
+ if (read_file_ret) {
result_ = bytes_read;
+ InvokeUserCallback();
+ return;
+ }
IOResult error = IOResult::FromOSError(os_error);
- if (error.os_error == ERROR_HANDLE_EOF) {
- // Report EOF by returning 0 bytes read.
+ if (error.os_error == ERROR_IO_PENDING) {
+ InvokeUserCallback();
+ } else {
OnIOCompleted(&io_context_, 0, error.os_error);
- } else if (error.os_error != ERROR_IO_PENDING) {
- // We don't need to inform the caller about ERROR_PENDING_IO as that was
- // already done when the ReadFile call was queued to the worker pool.
- if (error.os_error) {
- LOG(WARNING) << "ReadFile failed: " << error.os_error;
- OnIOCompleted(&io_context_, 0, error.os_error);
- }
}
- async_read_completed_ = true;
- InvokeUserCallback();
}
} // namespace net
« no previous file with comments | « net/base/file_stream_context.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698