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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/test/chromedriver/net/pipe_writer_posix.h"
#include <errno.h>
#include <memory>
#include <utility>
#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/task/current_thread.h"
#include "net/base/io_buffer.h"
#include "net/base/net_errors.h"
#if BUILDFLAG(IS_FUCHSIA)
#include <poll.h>
#include <sys/ioctl.h>
#endif // BUILDFLAG(IS_FUCHSIA)
PipeWriterPosix::PipeWriterPosix()
: fd_(base::kInvalidPlatformFile), write_fd_watcher_(FROM_HERE) {}
PipeWriterPosix::~PipeWriterPosix() {
Close();
}
int PipeWriterPosix::Bind(base::ScopedFD fd) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(!fd_.is_valid());
fd_ = std::move(fd);
if (!base::SetNonBlocking(fd_.get())) {
int rv = net::MapSystemError(errno);
Close();
return rv;
}
is_connected_ = true;
return net::OK;
}
bool PipeWriterPosix::IsConnected() const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return is_connected_;
}
int PipeWriterPosix::Write(net::IOBuffer* buf,
int buf_len,
net::CompletionOnceCallback callback) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(fd_.is_valid());
CHECK(write_callback_.is_null());
// Synchronous operation not supported
CHECK(!callback.is_null());
CHECK_LT(0, buf_len);
int rv = DoWrite(buf, buf_len);
if (rv == net::ERR_IO_PENDING) {
rv = WaitForWrite(buf, buf_len, std::move(callback));
}
is_connected_ = (rv == net::ERR_IO_PENDING) || (rv > 0);
return rv;
}
int PipeWriterPosix::WaitForWrite(net::IOBuffer* buf,
int buf_len,
net::CompletionOnceCallback callback) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(fd_.is_valid());
DCHECK(write_callback_.is_null());
// Synchronous operation not supported
DCHECK(!callback.is_null());
DCHECK_LT(0, buf_len);
if (!base::CurrentIOThread::Get()->WatchFileDescriptor(
fd_.get(), true, base::MessagePumpForIO::WATCH_WRITE,
&write_fd_watcher_, this)) {
PLOG(ERROR) << "WatchFileDescriptor failed on write";
return net::MapSystemError(errno);
}
write_buf_ = buf;
write_buf_len_ = buf_len;
write_callback_ = std::move(callback);
return net::ERR_IO_PENDING;
}
int PipeWriterPosix::DoWrite(net::IOBuffer* buf, int buf_len) {
int rv = HANDLE_EINTR(write(fd_.get(), buf->data(), buf_len));
if (rv >= 0) {
CHECK_LE(rv, buf_len);
}
return rv >= 0 ? rv : net::MapSystemError(errno);
}
void PipeWriterPosix::Close() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
is_connected_ = false;
bool ok = write_fd_watcher_.StopWatchingFileDescriptor();
DCHECK(ok);
// These needs to be done after the StopWatchingFileDescriptor() calls, but
// before deleting the write buffer.
fd_.reset();
if (!write_callback_.is_null()) {
write_buf_.reset();
write_buf_len_ = 0;
write_callback_.Reset();
}
}
void PipeWriterPosix::DetachFromThread() {
DETACH_FROM_THREAD(thread_checker_);
}
void PipeWriterPosix::OnFileCanReadWithoutBlocking(int fd) {}
void PipeWriterPosix::OnFileCanWriteWithoutBlocking(int fd) {
DCHECK(!write_callback_.is_null());
int rv = DoWrite(write_buf_.get(), write_buf_len_);
if (rv == net::ERR_IO_PENDING) {
return;
}
is_connected_ = (rv == net::ERR_IO_PENDING) || (rv > 0);
bool ok = write_fd_watcher_.StopWatchingFileDescriptor();
DCHECK(ok);
write_buf_.reset();
write_buf_len_ = 0;
std::move(write_callback_).Run(rv);
}
|