summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chromium/mojo/edk/system/data_pipe_consumer_dispatcher.cc8
-rw-r--r--chromium/mojo/edk/system/data_pipe_producer_dispatcher.cc8
2 files changed, 14 insertions, 2 deletions
diff --git a/chromium/mojo/edk/system/data_pipe_consumer_dispatcher.cc b/chromium/mojo/edk/system/data_pipe_consumer_dispatcher.cc
index e1ecc853c25..03c1c2fcdf4 100644
--- a/chromium/mojo/edk/system/data_pipe_consumer_dispatcher.cc
+++ b/chromium/mojo/edk/system/data_pipe_consumer_dispatcher.cc
@@ -370,7 +370,9 @@ DataPipeConsumerDispatcher::Deserialize(const void* data,
const SerializedState* state = static_cast<const SerializedState*>(data);
if (!state->options.capacity_num_bytes || !state->options.element_num_bytes ||
- state->options.capacity_num_bytes < state->options.element_num_bytes) {
+ state->options.capacity_num_bytes < state->options.element_num_bytes ||
+ state->read_offset >= state->options.capacity_num_bytes ||
+ state->bytes_available > state->options.capacity_num_bytes) {
return nullptr;
}
@@ -404,6 +406,10 @@ DataPipeConsumerDispatcher::Deserialize(const void* data,
dispatcher->peer_closed_ = state->flags & kFlagPeerClosed;
if (!dispatcher->InitializeNoLock())
return nullptr;
+ if (state->options.capacity_num_bytes >
+ dispatcher->ring_buffer_mapping_->GetLength()) {
+ return nullptr;
+ }
dispatcher->UpdateSignalsStateNoLock();
}
diff --git a/chromium/mojo/edk/system/data_pipe_producer_dispatcher.cc b/chromium/mojo/edk/system/data_pipe_producer_dispatcher.cc
index de0b768b63b..add4c004423 100644
--- a/chromium/mojo/edk/system/data_pipe_producer_dispatcher.cc
+++ b/chromium/mojo/edk/system/data_pipe_producer_dispatcher.cc
@@ -333,7 +333,9 @@ DataPipeProducerDispatcher::Deserialize(const void* data,
const SerializedState* state = static_cast<const SerializedState*>(data);
if (!state->options.capacity_num_bytes || !state->options.element_num_bytes ||
- state->options.capacity_num_bytes < state->options.element_num_bytes) {
+ state->options.capacity_num_bytes < state->options.element_num_bytes ||
+ state->write_offset >= state->options.capacity_num_bytes ||
+ state->available_capacity > state->options.capacity_num_bytes) {
return nullptr;
}
@@ -366,6 +368,10 @@ DataPipeProducerDispatcher::Deserialize(const void* data,
dispatcher->peer_closed_ = state->flags & kFlagPeerClosed;
if (!dispatcher->InitializeNoLock())
return nullptr;
+ if (state->options.capacity_num_bytes >
+ dispatcher->ring_buffer_mapping_->GetLength()) {
+ return nullptr;
+ }
dispatcher->UpdateSignalsStateNoLock();
}