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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/host/security_key/security_key_extension_session.h"
#include <string>
#include <utility>
#include "base/functional/bind.h"
#include "base/json/json_reader.h"
#include "base/json/json_writer.h"
#include "base/logging.h"
#include "base/task/single_thread_task_runner.h"
#include "base/values.h"
#include "remoting/base/logging.h"
#include "remoting/host/client_session_details.h"
#include "remoting/host/security_key/security_key_auth_handler.h"
#include "remoting/proto/control.pb.h"
#include "remoting/protocol/client_stub.h"
namespace {
// Used as the type attribute of all Security Key protocol::ExtensionMessages.
const char kExtensionMessageType[] = "gnubby-auth";
// SecurityKey extension message data members.
const char kConnectionId[] = "connectionId";
const char kControlMessage[] = "control";
const char kControlOption[] = "option";
const char kDataMessage[] = "data";
const char kDataPayload[] = "data";
const char kErrorMessage[] = "error";
const char kSecurityKeyAuthV1[] = "auth-v1";
const char kMessageType[] = "type";
// Returns the command code (the first byte of the data) if it exists, or -1 if
// the data is empty.
unsigned int GetCommandCode(const std::string& data) {
return data.empty() ? -1 : static_cast<unsigned int>(data[0]);
}
// Creates a string of byte data from a ListValue of numbers. Returns true if
// all of the list elements are numbers.
bool ConvertListToString(const base::Value::List& bytes, std::string* out) {
out->clear();
unsigned int byte_count = bytes.size();
if (byte_count != 0) {
out->reserve(byte_count);
for (unsigned int i = 0; i < byte_count; i++) {
auto value = bytes[i].GetIfInt();
if (!value.has_value()) {
return false;
}
out->push_back(static_cast<char>(*value));
}
}
return true;
}
} // namespace
namespace remoting {
SecurityKeyExtensionSession::SecurityKeyExtensionSession(
ClientSessionDetails* client_session_details,
protocol::ClientStub* client_stub,
scoped_refptr<base::SingleThreadTaskRunner> file_task_runner)
: client_stub_(client_stub) {
DCHECK(client_stub_);
security_key_auth_handler_ = remoting::SecurityKeyAuthHandler::Create(
client_session_details,
base::BindRepeating(&SecurityKeyExtensionSession::SendMessageToClient,
base::Unretained(this)),
file_task_runner);
}
SecurityKeyExtensionSession::~SecurityKeyExtensionSession() {
DCHECK(thread_checker_.CalledOnValidThread());
}
// Returns true if the |message| is a Security Key ExtensionMessage.
// This is done so the host does not pass |message| to other HostExtensions.
// TODO(joedow): Use |client_session_details| to disconnect the session if we
// receive an invalid extension message.
bool SecurityKeyExtensionSession::OnExtensionMessage(
ClientSessionDetails* client_session_details,
protocol::ClientStub* client_stub,
const protocol::ExtensionMessage& message) {
DCHECK(thread_checker_.CalledOnValidThread());
if (message.type() != kExtensionMessageType) {
return false;
}
std::optional<base::Value::Dict> value =
base::JSONReader::ReadDict(message.data());
if (!value) {
LOG(WARNING) << "Failed to retrieve data from gnubby-auth message.";
return true;
}
const std::string* type = value->FindString(kMessageType);
if (!type) {
LOG(WARNING) << "Invalid gnubby-auth message format.";
return true;
}
if (*type == kControlMessage) {
ProcessControlMessage(*value);
} else if (*type == kDataMessage) {
ProcessDataMessage(*value);
} else if (*type == kErrorMessage) {
ProcessErrorMessage(*value);
} else {
VLOG(2) << "Unknown gnubby-auth message type: " << type;
}
return true;
}
#if BUILDFLAG(IS_WIN)
void SecurityKeyExtensionSession::BindSecurityKeyForwarder(
mojo::PendingReceiver<mojom::SecurityKeyForwarder> receiver) {
security_key_auth_handler_->BindSecurityKeyForwarder(std::move(receiver));
}
#endif // BUILDFLAG(IS_WIN)
void SecurityKeyExtensionSession::ProcessControlMessage(
const base::Value::Dict& message_data) const {
const std::string* option = message_data.FindString(kControlOption);
if (!option) {
LOG(WARNING) << "Could not extract control option from message.";
return;
}
if (*option == kSecurityKeyAuthV1) {
security_key_auth_handler_->CreateSecurityKeyConnection();
} else {
VLOG(2) << "Invalid gnubby-auth control option: " << *option;
}
}
void SecurityKeyExtensionSession::ProcessDataMessage(
const base::Value::Dict& message_data) const {
std::optional<int> connection_id_opt = message_data.FindInt(kConnectionId);
if (!connection_id_opt.has_value()) {
LOG(WARNING) << "Could not extract connection id from message.";
return;
}
auto connection_id = *connection_id_opt;
if (!security_key_auth_handler_->IsValidConnectionId(connection_id)) {
LOG(WARNING) << "Unknown gnubby-auth data connection: '" << connection_id
<< "'";
return;
}
std::string response;
const base::Value::List* bytes_list = message_data.FindList(kDataPayload);
if (bytes_list && ConvertListToString(*bytes_list, &response)) {
HOST_LOG << "Processing security key response: "
<< GetCommandCode(response);
security_key_auth_handler_->SendClientResponse(connection_id, response);
} else {
LOG(WARNING) << "Could not extract response data from message.";
security_key_auth_handler_->SendErrorAndCloseConnection(connection_id);
return;
}
}
void SecurityKeyExtensionSession::ProcessErrorMessage(
const base::Value::Dict& message_data) const {
std::optional<int> connection_id_opt = message_data.FindInt(kConnectionId);
if (!connection_id_opt.has_value()) {
LOG(WARNING) << "Could not extract connection id from message.";
return;
}
auto connection_id = *connection_id_opt;
if (security_key_auth_handler_->IsValidConnectionId(connection_id)) {
HOST_LOG << "Sending security key error";
security_key_auth_handler_->SendErrorAndCloseConnection(connection_id);
} else {
LOG(WARNING) << "Unknown gnubby-auth connection id: " << connection_id;
}
}
void SecurityKeyExtensionSession::SendMessageToClient(
int connection_id,
const std::string& data) const {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(client_stub_);
HOST_LOG << "Sending security key request: " << GetCommandCode(data);
base::Value::Dict request_dict;
request_dict.Set(kMessageType, kDataMessage);
request_dict.Set(kConnectionId, connection_id);
base::Value::List bytes;
for (auto& byte : data) {
bytes.Append(static_cast<unsigned char>(byte));
}
request_dict.Set(kDataPayload, std::move(bytes));
base::Value request(std::move(request_dict));
std::string request_json;
CHECK(base::JSONWriter::Write(request, &request_json));
protocol::ExtensionMessage message;
message.set_type(kExtensionMessageType);
message.set_data(request_json);
client_stub_->DeliverHostMessage(message);
}
void SecurityKeyExtensionSession::SetSecurityKeyAuthHandlerForTesting(
std::unique_ptr<SecurityKeyAuthHandler> security_key_auth_handler) {
DCHECK(security_key_auth_handler);
security_key_auth_handler_ = std::move(security_key_auth_handler);
security_key_auth_handler_->SetSendMessageCallback(
base::BindRepeating(&SecurityKeyExtensionSession::SendMessageToClient,
base::Unretained(this)));
}
} // namespace remoting
|