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 139 140 141 142 143 144 145 146 147 148 149 150
|
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "platform/impl/tls_connection_posix.h"
#include <errno.h>
#include <fcntl.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <openssl/ssl.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
#include <cstring>
#include <memory>
#include <utility>
#include <vector>
#include "absl/types/optional.h"
#include "absl/types/span.h"
#include "platform/api/task_runner.h"
#include "platform/base/error.h"
#include "platform/impl/stream_socket.h"
#include "util/crypto/openssl_util.h"
#include "util/osp_logging.h"
namespace openscreen {
// TODO(jophba, rwkeane): implement write blocking/unblocking
TlsConnectionPosix::TlsConnectionPosix(IPEndpoint local_address,
TaskRunner* task_runner)
: task_runner_(task_runner),
socket_(std::make_unique<StreamSocketPosix>(local_address)) {
OSP_DCHECK(task_runner_);
}
TlsConnectionPosix::TlsConnectionPosix(IPAddress::Version version,
TaskRunner* task_runner)
: task_runner_(task_runner),
socket_(std::make_unique<StreamSocketPosix>(version)) {
OSP_DCHECK(task_runner_);
}
TlsConnectionPosix::TlsConnectionPosix(std::unique_ptr<StreamSocket> socket,
TaskRunner* task_runner)
: task_runner_(task_runner), socket_(std::move(socket)) {
OSP_DCHECK(task_runner_);
}
TlsConnectionPosix::~TlsConnectionPosix() {
if (platform_client_) {
platform_client_->tls_data_router()->DeregisterConnection(this);
}
// TODO(issuetracker.google.com/169966671): This is only tested by CastSocket
// E2E tests at the moment.
if (ssl_) {
SSL_shutdown(ssl_.get());
}
}
void TlsConnectionPosix::TryReceiveMessage() {
OSP_DCHECK(ssl_);
constexpr int kMaxApplicationDataBytes = 4096;
std::vector<uint8_t> block(kMaxApplicationDataBytes);
ClearOpenSSLERRStack(CURRENT_LOCATION);
const int bytes_read =
SSL_read(ssl_.get(), block.data(), kMaxApplicationDataBytes);
// Read operator was not successful, either due to a closed connection,
// no application data available, an error occurred, or we have to take an
// action.
if (bytes_read <= 0) {
const Error error = GetSSLError(ssl_.get(), bytes_read);
if (!error.ok() && (error != Error::Code::kAgain)) {
DispatchError(error);
}
return;
}
block.resize(bytes_read);
task_runner_->PostTask([weak_this = weak_factory_.GetWeakPtr(),
moved_block = std::move(block)]() mutable {
if (auto* self = weak_this.get()) {
if (auto* client = self->client_) {
client->OnRead(self, std::move(moved_block));
}
}
});
}
void TlsConnectionPosix::SetClient(Client* client) {
OSP_DCHECK(task_runner_->IsRunningOnTaskRunner());
client_ = client;
}
bool TlsConnectionPosix::Send(const void* data, size_t len) {
OSP_DCHECK(task_runner_->IsRunningOnTaskRunner());
return buffer_.Push(data, len);
}
IPEndpoint TlsConnectionPosix::GetRemoteEndpoint() const {
OSP_DCHECK(task_runner_->IsRunningOnTaskRunner());
absl::optional<IPEndpoint> endpoint = socket_->remote_address();
OSP_DCHECK(endpoint.has_value());
return endpoint.value();
}
void TlsConnectionPosix::RegisterConnectionWithDataRouter(
PlatformClientPosix* platform_client) {
OSP_DCHECK(!platform_client_);
platform_client_ = platform_client;
platform_client_->tls_data_router()->RegisterConnection(this);
}
void TlsConnectionPosix::SendAvailableBytes() {
absl::Span<const uint8_t> sendable_bytes = buffer_.GetReadableRegion();
if (sendable_bytes.empty()) {
return;
}
ClearOpenSSLERRStack(CURRENT_LOCATION);
const int result =
SSL_write(ssl_.get(), sendable_bytes.data(), sendable_bytes.size());
if (result <= 0) {
const Error result_error = GetSSLError(ssl_.get(), result);
if (!result_error.ok() && (result_error.code() != Error::Code::kAgain)) {
DispatchError(result_error);
}
} else {
buffer_.Consume(static_cast<size_t>(result));
}
}
void TlsConnectionPosix::DispatchError(Error error) {
task_runner_->PostTask([weak_this = weak_factory_.GetWeakPtr(),
moved_error = std::move(error)]() mutable {
if (auto* self = weak_this.get()) {
if (auto* client = self->client_) {
client->OnError(self, std::move(moved_error));
}
}
});
}
} // namespace openscreen
|