1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "extensions/browser/api/socket/mojo_data_pump.h"
#include <utility>
#include "base/containers/span.h"
#include "base/functional/bind.h"
#include "base/memory/ptr_util.h"
#include "base/numerics/safe_conversions.h"
#include "net/base/completion_once_callback.h"
#include "net/base/io_buffer.h"
#include "net/base/net_errors.h"
namespace extensions {
MojoDataPump::MojoDataPump(mojo::ScopedDataPipeConsumerHandle receive_stream,
mojo::ScopedDataPipeProducerHandle send_stream)
: receive_stream_(std::move(receive_stream)),
receive_stream_watcher_(FROM_HERE,
mojo::SimpleWatcher::ArmingPolicy::MANUAL),
send_stream_(std::move(send_stream)),
send_stream_watcher_(FROM_HERE,
mojo::SimpleWatcher::ArmingPolicy::MANUAL) {
DCHECK(receive_stream_.is_valid());
DCHECK(send_stream_.is_valid());
receive_stream_watcher_.Watch(
receive_stream_.get(),
MOJO_HANDLE_SIGNAL_READABLE | MOJO_HANDLE_SIGNAL_PEER_CLOSED,
MOJO_TRIGGER_CONDITION_SIGNALS_SATISFIED,
base::BindRepeating(&MojoDataPump::ReceiveMore, base::Unretained(this)));
send_stream_watcher_.Watch(
send_stream_.get(),
MOJO_HANDLE_SIGNAL_WRITABLE | MOJO_HANDLE_SIGNAL_PEER_CLOSED,
MOJO_TRIGGER_CONDITION_SIGNALS_SATISFIED,
base::BindRepeating(&MojoDataPump::SendMore, base::Unretained(this)));
}
MojoDataPump::~MojoDataPump() = default;
void MojoDataPump::Read(int count, ReadCallback callback) {
DCHECK(callback);
DCHECK(!read_callback_);
if (count <= 0) {
std::move(callback).Run(net::ERR_INVALID_ARGUMENT, nullptr);
return;
}
read_size_ = count;
read_callback_ = std::move(callback);
receive_stream_watcher_.ArmOrNotify();
}
void MojoDataPump::Write(net::IOBuffer* io_buffer,
int io_buffer_size,
net::CompletionOnceCallback callback) {
DCHECK(callback);
DCHECK(!write_callback_);
write_callback_ = std::move(callback);
pending_write_buffer_ = io_buffer;
pending_write_buffer_size_ = io_buffer_size;
send_stream_watcher_.ArmOrNotify();
}
void MojoDataPump::ReceiveMore(MojoResult result,
const mojo::HandleSignalsState& /* ignored */) {
DCHECK(read_callback_);
DCHECK_NE(0u, read_size_);
size_t actually_read_bytes = 0;
scoped_refptr<net::IOBuffer> io_buffer;
if (result == MOJO_RESULT_OK) {
io_buffer = base::MakeRefCounted<net::IOBufferWithSize>(read_size_);
result = receive_stream_->ReadData(MOJO_READ_DATA_FLAG_NONE,
io_buffer->span(), actually_read_bytes);
}
if (result == MOJO_RESULT_SHOULD_WAIT) {
receive_stream_watcher_.ArmOrNotify();
return;
}
read_size_ = 0;
if (result != MOJO_RESULT_OK) {
// Read 0 bytes. This signals an EOF (connection closed by the peer).
std::move(read_callback_).Run(0, nullptr);
return;
}
std::move(read_callback_)
.Run(base::checked_cast<int>(actually_read_bytes), io_buffer);
}
void MojoDataPump::SendMore(MojoResult result,
const mojo::HandleSignalsState& state) {
DCHECK(write_callback_);
size_t actually_written_bytes = 0;
if (result == MOJO_RESULT_OK) {
base::span<const uint8_t> bytes = pending_write_buffer_->span();
bytes = bytes.first(base::checked_cast<size_t>(pending_write_buffer_size_));
result = send_stream_->WriteData(bytes, MOJO_WRITE_DATA_FLAG_NONE,
actually_written_bytes);
}
if (result == MOJO_RESULT_SHOULD_WAIT) {
send_stream_watcher_.ArmOrNotify();
return;
}
pending_write_buffer_ = nullptr;
pending_write_buffer_size_ = 0;
if (result != MOJO_RESULT_OK) {
std::move(write_callback_).Run(net::ERR_FAILED);
return;
}
std::move(write_callback_)
.Run(base::checked_cast<int>(actually_written_bytes));
}
} // namespace extensions
|