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

Unified Diff: chrome/common/partial_circular_buffer.cc

Issue 1061053002: Fix PartialCircularBuffer OOB memcpy(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CHECK to DCHECK Created 5 years, 8 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: chrome/common/partial_circular_buffer.cc
diff --git a/chrome/common/partial_circular_buffer.cc b/chrome/common/partial_circular_buffer.cc
index 4161cc1864706b2ddbce9037d26c72ecf0203e48..2239f885e9a3263fc86e4da0a3c417aba27a8790 100644
--- a/chrome/common/partial_circular_buffer.cc
+++ b/chrome/common/partial_circular_buffer.cc
@@ -139,23 +139,17 @@ uint32 PartialCircularBuffer::Read(void* buffer, uint32 buffer_size) {
void PartialCircularBuffer::Write(const void* buffer, uint32 buffer_size) {
DCHECK(buffer_data_);
- uint32 position_before_write = position_;
-
- uint32 to_eof = data_size_ - position_;
- uint32 to_write = std::min(buffer_size, to_eof);
- DoWrite(buffer_data_->data + position_, buffer, to_write);
- if (position_ >= data_size_) {
- DCHECK_EQ(position_, data_size_);
- position_ = buffer_data_->wrap_position;
- }
-
- if (to_write < buffer_size) {
- uint32 remainder_to_write = buffer_size - to_write;
- DCHECK_LT(position_, position_before_write);
- DCHECK_LE(position_ + remainder_to_write, position_before_write);
- DoWrite(buffer_data_->data + position_,
- reinterpret_cast<const uint8*>(buffer) + to_write,
- remainder_to_write);
+ const uint8* input = static_cast<const uint8*>(buffer);
Nico 2015/04/07 16:42:16 I can't see the bug, but if writing a buffer sever
gzobqq 2015/04/08 12:59:03 The second DoWrite() lacks a bounds check and can
+ while (buffer_size > 0) {
+ uint32 space_left = data_size_ - position_;
+ uint32 write_size = std::min(buffer_size, space_left);
+ DoWrite(buffer_data_->data + position_, input, write_size);
+ if (position_ >= data_size_) {
+ DCHECK_EQ(position_, data_size_);
+ position_ = buffer_data_->wrap_position;
+ }
+ input += write_size;
+ buffer_size -= write_size;
}
}
« no previous file with comments | « no previous file | chrome/common/partial_circular_buffer_unittest.cc » ('j') | chrome/common/partial_circular_buffer_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698